Skip to content

Commit 87cdb01

Browse files
authored
Merge pull request #1651 from cmu-delphi/release/delphi-epidata-4.1.34
Release Delphi Epidata 4.1.34
2 parents d5287ba + c046328 commit 87cdb01

File tree

12 files changed

+27
-25
lines changed

12 files changed

+27
-25
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 = 4.1.33
2+
current_version = 4.1.34
33
commit = False
44
tag = False
55

dev/local/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 4.1.33
3+
version = 4.1.34
44

55
[options]
66
packages =

docs/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ GEM
214214
jekyll-seo-tag (~> 2.1)
215215
minitest (5.17.0)
216216
multipart-post (2.1.1)
217-
nokogiri (1.18.4)
217+
nokogiri (1.18.8)
218218
mini_portile2 (~> 2.8.2)
219219
racc (~> 1.4)
220220
octokit (4.20.0)

docs/api/covidcast-signals/nssp.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ As of May 2024, NSSP received data from 78% of US EDs.
4242
## Estimation
4343

4444
The percent visits signals are calculated as a fraction of visits at facilities reporting to NSSP, rather than all facilities in the area.
45-
`county`, `state` and `nation` level data is reported as-is from NSSP, without modification, while `hhs`, `hrr` and `msa` are estimated by Delphi.
46-
State and HSA-level values are calculated and published by NSSP; County level values are not published individually, but are approximations copied from the HSA the county is in (every county in an HSA will have identical values).
45+
NSSP publishes this data based on reporting facilities aggregated to the level of Health Service Areas (`HSA`s, which are clusters of adjacent counties).
46+
NSSP also publishes these percentages aggregated to `state` and `nation` levels.
47+
While NSSP also publishes what appears like `county`-level data, these values are actually inherited from the parent HSA, such that all counties in an HSA have identical values.
48+
Delphi publishes NSSP's reported values for all these geo-levels, and also calculates and publishes values for `HRR`s and `MSA`s (based on the approximated `county` values), as well as for `HHS` regions."
4749

4850
### Geographic weighting
4951
As the original data is a percentage and raw case counts are not available, `hrr`,`msa`, and `hhs` values are computed from county-level data using a weighted mean. Each county is assigned a weight equal to its population in the last census (2020). Unreported counties are implicitly treated as having a weight of 0 or a value equal to the group mean.

requirements.api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pandas==1.2.3
99
python-dotenv==0.15.0
1010
pyyaml
1111
redis==3.5.3
12-
requests==2.32.0
12+
requests==2.32.4
1313
scipy==1.10.0
1414
sentry-sdk[flask]
1515
SQLAlchemy==1.4.40

requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp==3.9.4
1+
aiohttp==3.10.11
22
black>=20.8b1
33
covidcast==0.1.5
44
delphi_utils

src/acquisition/fluview/fluview_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@
131131

132132
# sheet names
133133
ILINET_SHEET = "ILINet.csv"
134-
PHL_SHEET = "WHO_NREVSS_Public_Health_Labs.csv"
135-
CL_SHEET = "WHO_NREVSS_Clinical_Labs.csv"
134+
PHL_SHEET = "ICL_NREVSS_Public_Health_Labs.csv"
135+
CL_SHEET = "ICL_NREVSS_Clinical_Labs.csv"
136136
# table names
137137
CL_TABLE = "fluview_clinical"
138138
PHL_TABLE = "fluview_public"

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 <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/')
1717

18-
client_version <- '4.1.33'
18+
client_version <- '4.1.34'
1919

2020
auth <- getOption("epidata.auth", default = NA)
2121

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://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.33";
25+
const client_version = "4.1.34";
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": "4.1.33",
5+
"version": "4.1.34",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {

src/server/_config.py

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

88
load_dotenv()
99

10-
VERSION = "4.1.33"
10+
VERSION = "4.1.34"
1111

1212
MAX_RESULTS = int(10e6)
1313
MAX_COMPATIBILITY_RESULTS = int(3650)

src/server/endpoints/covidcast_utils/db_signals.csv

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)