Completed overall testing and cases dashboard.

This commit is contained in:
Joshua Bemenderfer
2021-12-31 12:57:47 -05:00
parent bbaef02acb
commit e37988dd2f
518 changed files with 17463 additions and 285 deletions

View File

@@ -19,7 +19,9 @@ async function processSingleZip ({ date, zip }) {
if (!county) return counties
totalPopulation += +row.population
counties[county] = {
population: +row.population
population: +row.population,
cases_14_days: +row['14 day case rate'],
case_rate_14_days: +row['14 day case rate']
}
return counties
}, {})