Allow users to generate their own visualizations of the covid-19 pandemic, comparing timeseries for countries, states, and US counties.
node -v
from command line.
If your version is lower than 8, easiest way to install a modern version is to use nvm
. Google "install nvm" for more info.)git clone
it, if you know how.npm i
(this is just short for npm install
)npm start
(this should download all dataset files and catch you up to the latest)Click countries, states, or counties on the right hand menu to plot data from those areas of interest.
Some clickable buttons appear below the chart:
See "Issues" tab above.
Country and State data is from the public repo made available by Johns Hopkins CSSE. All US county data since 3/23/2020 is read from their daily reports, which are automatically uploaded to their repo.
From the JH CSSE README: "This is the data repository for the 2019 Novel Coronavirus Visual Dashboard operated by the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE). Also, Supported by ESRI Living Atlas Team and the Johns Hopkins University Applied Physics Lab (JHU APL)."
Link: https://github.com/CSSEGISandData/COVID-19
Additional US County level data for the period between 1/22/2020 - 3/23/2020 is borrowed from USAFacts.org. This data was manually aggregated and verified by pulling directly from the department of public health for each of the states. From their website: "If you'd like to use USAFacts county-level COVID-19 data, we've provided a download. The data is available under a Creative Commons license. We request that you cite USAFacts as the data provider and include a hyperlink back to this page."
Link: https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/
Some corrections have been applied to historical data by cross-referencing numbers form the New York Times dataset. (Example: Ney York state numbers from 3/1 - 3/10) Link: https://github.com/nytimes/covid-19-data
Population data for US states and counties: https://www2.census.gov/programs-surveys/popest/datasets/2010-2019/counties/totals/
Population for world countries from: https://github.com/samayo/country-json (Some population numbers were fixed by searching google.)
Create an issue or a pull request to get in touch (see tabs above).