Skip to content

Commit

Permalink
Merge pull request #914 from cmu-delphi/release/delphi-epidata-0.3.19
Browse files Browse the repository at this point in the history
Release Delphi Epidata 0.3.19
  • Loading branch information
krivard committed May 24, 2022
2 parents 17d44a7 + 673794a commit 68276a2
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.18
current_version = 0.3.19
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion docs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ GEM
jekyll-seo-tag (~> 2.1)
minitest (5.14.4)
multipart-post (2.1.1)
nokogiri (1.13.4)
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
octokit (4.20.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/api/covidcast-signals/dsew-cpr.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ grand_parent: COVIDcast Epidata API
* **Time type:** day (see [date format docs](../covidcast_times.md))
* **License:** [Public Domain US Government](https://www.usa.gov/government-works)

The Community Profile Report (CPR) is published by the Data Strategy and Execution Workgroup (DSEW) of the White House COVID-19 Team. For more information, see the [official description and data dictionary at healthdata.gov](https://healthdata.gov/Health/COVID-19-Community-Profile-Report/gqxm-d9w9) for "COVID-19 Community Profile Report".
The Community Profile Report (CPR) is published by the Data Strategy and Execution Workgroup (DSEW) of the White House COVID-19 Team. For more information, see the [official description at healthdata.gov](https://healthdata.gov/Health/COVID-19-Community-Profile-Report/gqxm-d9w9) for "COVID-19 Community Profile Report". Each issue of the CPR is made available as an attachment on that page. You can view all attachments by scrolling to the bottom of the "About this dataset" panel and clicking "Show more".

This data source provides various COVID-19 related metrics, of which we report hospital admissions and vaccinations.

Expand Down
13 changes: 7 additions & 6 deletions docs/symptom-survey/weights.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ by Facebook. These weights are also used to produce our
[public contingency tables](./contingency-tables.md) and the geographic aggregates
[in the COVIDcast Epidata API](../api/covidcast-signals/fb-survey.md).

Facebook has provided documentation to describe the calculation and usage of
these weights, [available here](symptom-survey-weights.pdf). This documentation
explains the weight methodology, gives examples of how to use the weights when
calculating estimates, and states the known limitations of the weights. We also
have separate information about the [survey's limitations](limitations.md) that
affect what conclusions can be drawn from the survey data.
Facebook has developed a [User Guide for the CTIS
Weights](https://dataforgood.facebook.com/dfg/resources/user-guide-for-ctis-weights)
(updated May 2022). This manual explains the weight methodology, gives examples
of how to use the weights when calculating estimates, and states the known
limitations of the weights. We also have separate information about the
[survey's limitations](limitations.md) that affect what conclusions can be drawn
from the survey data.
2 changes: 1 addition & 1 deletion src/client/delphi_epidata.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Epidata <- (function() {
# API base url
BASE_URL <- 'https://delphi.cmu.edu/epidata/api.php'

client_version <- '0.3.18'
client_version <- '0.3.19'

# Helper function to cast values and/or ranges to strings
.listitem <- function(value) {
Expand Down
2 changes: 1 addition & 1 deletion src/client/delphi_epidata.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
})(this, function (exports, fetchImpl, jQuery) {
const BASE_URL = "https://delphi.cmu.edu/epidata/";
const client_version = "0.3.18";
const client_version = "0.3.19";

// Helper function to cast values and/or ranges to strings
function _listitem(value) {
Expand Down
2 changes: 1 addition & 1 deletion src/client/packaging/npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "delphi_epidata",
"description": "Delphi Epidata API Client",
"authors": "Delphi Group",
"version": "0.3.18",
"version": "0.3.19",
"license": "MIT",
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/client/packaging/pypi/delphi_epidata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .delphi_epidata import Epidata

name = 'delphi_epidata'
__version__ = '0.3.18'
__version__ = '0.3.19'
2 changes: 1 addition & 1 deletion src/client/packaging/pypi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="delphi_epidata",
version="0.3.18",
version="0.3.19",
author="David Farrow",
author_email="dfarrow0@gmail.com",
description="A programmatic interface to Delphi's Epidata API.",
Expand Down
2 changes: 1 addition & 1 deletion src/server/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

load_dotenv()

VERSION = "0.3.18"
VERSION = "0.3.19"

MAX_RESULTS = int(10e6)
MAX_COMPATIBILITY_RESULTS = int(3650)
Expand Down

0 comments on commit 68276a2

Please sign in to comment.