The timeseries Solano county cases has an erroneous, huge bump in the data on September 2, 2020:
{
"cases": [
// ...
{
"date": "2020-09-01",
"cumul_cases": 5547
},
{
"date": "2020-09-02",
"cumul_cases": 25806
},
{
"date": "2020-09-10",
"cumul_cases": 5778
},
// ...
]
}
This is coming from the underlying data source (https://www.arcgis.com/home/webmap/viewer.html?url=https://services2.arcgis.com/SCn6czzcqKAFwdGU/ArcGIS/rest/services/COVID19Surveypt1v3_view/FeatureServer&source=sd):

We should figure out a way to smooth this out, whether by hardcoding a manual correction for that date, pulling data from the state, or something else.
The timeseries Solano county cases has an erroneous, huge bump in the data on September 2, 2020:
This is coming from the underlying data source (https://www.arcgis.com/home/webmap/viewer.html?url=https://services2.arcgis.com/SCn6czzcqKAFwdGU/ArcGIS/rest/services/COVID19Surveypt1v3_view/FeatureServer&source=sd):
We should figure out a way to smooth this out, whether by hardcoding a manual correction for that date, pulling data from the state, or something else.