Add deaths chart & new data.

This commit is contained in:
Joshua Bemenderfer
2021-12-31 15:30:43 -05:00
parent c19601b8f3
commit 6da7af9c3e
665 changed files with 1228 additions and 497 deletions

View File

@@ -6,6 +6,7 @@ import Counties from './parser/counties.js'
import OverallTesting from './parser/overall/testing.js'
import OverallCases from './parser/overall/cases.js'
import OverallHospitalizations from './parser/overall/hospitalizations.js'
import OverallDeaths from './parser/overall/deaths.js'
async function main() {
const sources = await fg(['./data/raw/*.zip'])
@@ -21,6 +22,7 @@ async function main() {
await OverallTesting(zips)
await OverallCases(zips, counties)
await OverallHospitalizations(zips, counties)
await OverallDeaths(zips, counties)
}
main()