Skip to content

Commit d83accb

Browse files
authored
Merge pull request #310 from cmu-delphi/release/v2.3.0
Release v2.3.0
2 parents 1acc36e + 9f0540f commit d83accb

File tree

13 files changed

+85
-28
lines changed

13 files changed

+85
-28
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,22 @@ jobs:
6161
echo "::set-output name=tag::$imageTag"
6262
echo "::set-output name=repo::ghcr.io/${{ github.repository }}"
6363
- name: Push Dev Tag
64-
if: startsWith(github.ref, 'refs/heads/dev')
6564
run: |
6665
docker tag repo ${{ steps.tagname.outputs.repo }}:${{ steps.tagname.outputs.tag }}
6766
docker push ${{ steps.tagname.outputs.repo }}:${{ steps.tagname.outputs.tag }}
6867
- name: Extract version
6968
if: startsWith(github.ref, 'refs/heads/main')
7069
id: extract_version
7170
run: node -pe "'::set-output name=version::' + require('./package.json').version"
72-
- name: Push Version Tag Tag
73-
if: startsWith(github.ref, 'refs/heads/main')
74-
run: |
75-
docker tag repo ${{ steps.tagname.outputs.repo }}:v{{ steps.extract_version.outputs.version }}
76-
docker push ${{ steps.tagname.outputs.repo }}:v{{ steps.extract_version.outputs.version }}
7771
- name: Trigger Webhook
7872
run: |
7973
# trigger a webhook update
8074
curl -H "Authorization: Bearer ${{ secrets.DELPHI_DEPLOY_WEBHOOK_TOKEN }}" \
8175
-X POST ${{ secrets.DELPHI_DEPLOY_WEBHOOK_URL }} \
8276
-H "Content-Type: application/x-www-form-urlencoded" \
8377
-d "repository=${{ steps.tagname.outputs.repo }}&tag=${{ steps.tagname.outputs.tag }}"
78+
- name: Push Version Tag Tag
79+
if: startsWith(github.ref, 'refs/heads/main')
80+
run: |
81+
docker tag repo ${{ steps.tagname.outputs.repo }}:v${{ steps.extract_version.outputs.version }}
82+
docker push ${{ steps.tagname.outputs.repo }}:v${{ steps.extract_version.outputs.version }}

config.toml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,16 @@ relativeURLs = false
5656
name = "Explore an Indicator"
5757
url = "/covidcast/indicator"
5858
weight = 3
59+
[[menu.main]]
60+
parent = "covidcast"
61+
name = "Explore Correlations"
62+
url = "/covidcast/correlation"
63+
weight = 4
5964
[[menu.main]]
6065
parent = "covidcast"
6166
name = "Classic Map"
6267
url = "/covidcast/classic"
63-
weight = 4
68+
weight = 30
6469
[[menu.main]]
6570
parent = "covidcast"
6671
name = "Forecast Evaluation"
@@ -86,6 +91,11 @@ relativeURLs = false
8691
name = "Export Data"
8792
url = "/covidcast/export"
8893
weight = 70
94+
[[menu.main]]
95+
parent = "covidcast"
96+
name = "Data Anomalies"
97+
url = "/covidcast/data-anomalies"
98+
weight = 71
8999
[[menu.main]]
90100
parent = "covidcast"
91101
name = "Release Log"
@@ -132,4 +142,4 @@ relativeURLs = false
132142
feedbackDelayMin = 45 # in sec
133143
feedbackDelayMax = 180 # in sec
134144
feedbackDuration = 60 # show it for 60sec
135-
highlightLinks = "/covidcast/,/covidcast/summary,/covidcast/indicator,/covidcast/indicator-status,/forecast-eval/"
145+
highlightLinks = "/covidcast/correlation,/covidcast/data-anomalies"
97.6 KB
Loading

content/about/publications/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
---
22
title: Research and White Papers
33
papers:
4+
- title: "Causal inference in the time of COVID-19"
5+
image: causal.jpg
6+
authors: Bonvini, Kennedy, Ventura, Wasserman
7+
link: https://arxiv.org/abs/2103.04472
8+
journal: ArXiv preprint
9+
year: 2021
410
- title: "Pancasting: forecasting epidemics from provisional data"
511
image: pancasting.jpg
612
authors: Brooks

content/blog/2020-08-28-api.Rmd

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -285,21 +285,20 @@ can change for _weeks_ as new data arrives:
285285
```{r q-versioning, warning=FALSE, message=FALSE, cache=TRUE}
286286
library(covidcast)
287287
library(dplyr)
288-
# DISABLED for now since the API is not ready
289288
query_date <- "2020-08-01"
290-
# covidcast_signal(
291-
# data_source = "quidel",
292-
# signal = "covid_ag_raw_pct_positive",
293-
# start_day = query_date,
294-
# end_day = query_date,
295-
# geo_type = "state",
296-
# geo_value = "ny",
297-
# issues = c(query_date, "2020-09-04")) %>%
298-
# select(time_value, value, sample_size, issue, lag) %>%
299-
# distinct(value, .keep_all=TRUE) %>%
300-
# knitr::kable("html", digits = 2,
301-
# col.names = c("Test date", "Positivity rate (%)", "Sample size",
302-
# "Issued on", "Lag (days)"))
289+
covidcast_signal(
290+
data_source = "quidel",
291+
signal = "covid_ag_raw_pct_positive",
292+
start_day = query_date,
293+
end_day = query_date,
294+
geo_type = "state",
295+
geo_value = "ny",
296+
issues = c(query_date, "2020-09-04")) %>%
297+
select(time_value, value, sample_size, issue, lag) %>%
298+
distinct(value, .keep_all=TRUE) %>%
299+
knitr::kable("html", digits = 2,
300+
col.names = c("Test date", "Positivity rate (%)", "Sample size",
301+
"Issued on", "Lag (days)"))
303302
```
304303

305304
Many data sources are subject to revisions:

content/covidcast/correlation.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: COVIDcast | Indicator Correlation
3+
linkTitle: Indicator Correlation
4+
description: COVIDcast tracks and forecasts the spread of COVID-19. By Carnegie Mellon's Delphi Research Group.
5+
layout: covidcast_app
6+
app_mode: correlation
7+
order: 4
8+
heroImage: /images/landing-page/hero-images/covidcast_v2.jpg
9+
feedback: true
10+
---

content/covidcast/data-anomalies.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: COVIDcast | Data Anomalies
3+
linkTitle: Data Anomalies
4+
description: COVIDcast tracks and forecasts the spread of COVID-19. By Carnegie Mellon's Delphi Research Group.
5+
layout: covidcast_app
6+
app_mode: data-anomalies
7+
order: 7
8+
heroImage: /images/landing-page/hero-images/covidcast_v2.jpg
9+
feedback: true
10+
---

content/covidcast/export.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ description: Use COVIDcast data in your own analysis
55
layout: covidcast_app
66
app_mode: export
77
order: 6
8-
icon: solid/download
98
heroImage: /images/landing-page/hero-images/covidcast_v2.jpg
109
feedback: true
1110
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: v2.2.0
3+
date: 2021-04-01
4+
---
5+
6+
### New Features
7+
* Indicator Status Overview dashboard: Explore the status of API indicators and their coverages
8+
9+
10+
More information: https://github.com/cmu-delphi/www-covidcast/releases/tag/v2.2.0
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: v2.3.0
3+
date: 2021-04-15
4+
---
5+
6+
### New Features
7+
* Explore Correlations: Explore correlations between different indicators
8+
* Annotation Overview: Show all data anomalies recorded in COVIDcast in a central place
9+
* Expandable Line Charts: Expand the line chart of indicators to show the full historic range
10+
* HHS and Nation Support: The classic map now supports displaying HHS region and national level data
11+
12+
13+
More information: https://github.com/cmu-delphi/www-covidcast/releases/tag/v2.3.0

0 commit comments

Comments
 (0)