valorumdata / cmdc-tools

3 stars 4 forks source link

Arkansas counties have 0 *_tests_total numbers since 2020-09-12 #125

Closed mikelehen closed 4 years ago

mikelehen commented 4 years ago
curl -X GET "https://api.covidcountydata.org/covid_us?dt=gt.2020-09-10&location=eq.05119&variable=eq.positive_tests_total&limit=100" \
 -H "Accept: application/json, application/vnd.pgrst.object+json, text/csv" \
 -H "Range-Unit: items" 

returns:

[
  {
    "dt": "2020-09-11",
    "location": 5119,
    "variable": "positive_tests_total",
    "value": 7795,
    "fips": "05119"
  },
  {
    "dt": "2020-09-12",
    "location": 5119,
    "variable": "positive_tests_total",
    "value": 0,
    "fips": "05119"
  },
  ...

The value is 0 for all dates after 2020-09-11. Same for negative_tests_total.

sglyon commented 4 years ago

Another instance of changing the arcgis resource name -- We definitely need some better tracking/validation.

cc7768 commented 4 years ago

This should be updated and we've cleared out the garbage data.

Please confirm if you start seeing non-garbage data or re-open if there's a problem. @mikelehen

mikelehen commented 4 years ago

Looks good, thank you!