Data preprocessing scripts and preprocessed data storage for COVID-19 Scenarios project
Simulator | Source code repository | Data repository | Updates | ||
---|---|---|---|---|---|
This repository serves as the source of observational data for covid19_scenarios.
It ingests data from a variety of sources listed in sources.json.
For each source there is a parser written in python in the directory parsers
.
The data is stored as tsv
files (tab separated values) for each location or country.
These tabular files are mainly meant to enable data curation and storage, while the web application needs json files as input.
The following commands assume that you have cloned this repository as covid19_scenarios_data
and run these commands from outside this repository.
To run the parsers, call
python3 covid19_scenarios_data/generate_data.py --fetch
This will update the tables in the directory case-counts
.
For each parser there is a separate directory which contains individual case counts for each location covered by the parser.
To only run specific parsers, run
python3 covid19_scenarios_data/generate_data.py --fetch --parsers netherlands switzerland
To generate jsons for the app, specific the path the location of the target. This can either be done in combination with updating the tsv
files or separately depending on whether the command is run with --fetch
or not.
python3 covid19_scenarios_data/generate_data.py \
--output-cases path/case-counts.json \
--output-population path/population.json
To generate the integrated scenario json, run
python3 covid19_scenarios_data/generate_data.py \
--output-cases path/case-counts.json \
--output-scenarios path/scenarios.json
List of countries associated to regions, subregions, and three letter codes supplied by the U.N.
List of settings used by the default scenario by COVID-19 epidemic simulation for different regions of interest.
Within the directory ./case-counts
is a structured set of tsv files containing aggregated data for select country and subregion/city.
We welcome contributions to keep this data up to date.
The format chosen is:
time cases deaths hospitalized ICU recovered
2020-03-14 ...
We are actively looking for people to supply data to be used for our modeling!
The steps to follow are:
YYYY-MM-DD
python3 covid19_scenarios_data/generate_data.py --fetch --parsers <yourparsername>
Case count data is most useful when tied to data on the population it refers to. To ensure new case counts are correctly included in the population presets, add a line to the populationData.tsv
for each new region (see Adding/editing population data for a country and/or region below).
We note that this option is not preferred relative to a script that automatically updates as outlined above. However, if there is no accessible data sources, one can manually enter the data. To do so
As of now all data used to initialize scenarios used by our model is found within populationData.tsv It has the following form:
name populationServed ageDistribution hospitalBeds ICUBeds suspectedCaseMarch1st importsPerDay hemisphere
Switzerland ...
At least one of suspectedCasesMarch1st
and importsPerDay
needs to be non-zero. Otherwise there is no outbreak (good news in principle, but not useful for exploring scenarios).