Skip to content

Commit cfa90a2

Browse files
authored
Merge pull request #787 from cmu-delphi/release/delphi-epidata-0.3.5
Release Delphi Epidata 0.3.5
2 parents f5661a0 + 5cc2996 commit cfa90a2

File tree

8 files changed

+24
-15
lines changed

8 files changed

+24
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.4
2+
current_version = 0.3.5
33
commit = False
44
tag = False
55

docs/api/covidcast-signals/google-symptoms.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ grand_parent: COVIDcast Epidata API
1111
* **Earliest issue available:** November 30, 2020
1212
* **Number of data revisions since May 19, 2020:** 0
1313
* **Date of last change:** Never
14-
* **Available for:** county, MSA, HRR, state (see [geography coding docs](../covidcast_geography.md))
14+
* **Available for:** county, MSA, HRR, state, HHS, nation (see [geography coding docs](../covidcast_geography.md))
1515
* **Time type:** day (see [date format docs](../covidcast_times.md))
1616
* **License:** To download or use the data, you must agree to the Google [Terms of Service](https://policies.google.com/terms)
1717

@@ -57,13 +57,22 @@ The state-level and county-level `raw_search` signals for specific symptoms such
5757
as _anosmia_ and _ageusia_ are taken directly from the [COVID-19 Search Trends
5858
symptoms
5959
dataset](https://github.com/google-research/open-covid-19-data/tree/master/data/exports/search_trends_symptoms_dataset)
60-
without changes. We aggregate the county-level data to the MSA and HRR levels
61-
using the population-weighted average. For MSAs/HRRs that include counties that
62-
have no data provided due to quality or privacy issues for a certain day, we
63-
simply assume the values to be 0 during aggregation. The values for MSAs/HRRs
64-
with no counties having non-NaN values will not be reported. Thus, the resulting
65-
MSA/HRR level data does not fully match the _actual_ MSA/HRR level data (which
66-
we are not provided).
60+
without changes.
61+
62+
We aggregate county and state data to other geographic levels using
63+
population-weighted averaging.
64+
65+
| Source level | Aggregated level |
66+
| ------------ | ---------------- |
67+
| county | MSA, HRR |
68+
| state | HHS, nation |
69+
70+
For aggregation purposes only, we assign a value of 0 to source regions that
71+
have no data provided due to quality or privacy issues for a certain day (see
72+
Limitations for details). We do not report aggregated regions if none of their
73+
source regions have data. Because of this censoring behavior, the resulting data
74+
for aggregated regions does not fully match the _actual_ search volume for these
75+
regions (which is not provided to us).
6776

6877
## Lag and Backfill
6978
Google does not currently update the search data daily, but usually twice a week.

src/client/delphi_epidata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
1515
# API base url
1616
BASE_URL <- 'https://delphi.cmu.edu/epidata/api.php'
1717

18-
client_version <- '0.3.4'
18+
client_version <- '0.3.5'
1919

2020
# Helper function to cast values and/or ranges to strings
2121
.listitem <- function(value) {

src/client/delphi_epidata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
})(this, function (exports, fetchImpl, jQuery) {
2424
const BASE_URL = "https://delphi.cmu.edu/epidata/";
25-
const client_version = "0.3.4";
25+
const client_version = "0.3.5";
2626

2727
// Helper function to cast values and/or ranges to strings
2828
function _listitem(value) {

src/client/packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "delphi_epidata",
33
"description": "Delphi Epidata API Client",
44
"authors": "Delphi Group",
5-
"version": "0.3.4",
5+
"version": "0.3.5",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .delphi_epidata import Epidata
22

33
name = 'delphi_epidata'
4-
__version__ = '0.3.4'
4+
__version__ = '0.3.5'

src/client/packaging/pypi/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="0.3.4",
8+
version="0.3.5",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",

src/server/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
load_dotenv()
77

8-
VERSION = "0.3.4"
8+
VERSION = "0.3.5"
99

1010
MAX_RESULTS = int(10e6)
1111
MAX_COMPATIBILITY_RESULTS = int(3650)

0 commit comments

Comments
 (0)