Skip to content

Latest commit

 

History

History
61 lines (53 loc) · 1.76 KB

README.md

File metadata and controls

61 lines (53 loc) · 1.76 KB

covid-19-time-series

Daily updated COVID-19 global time-series in csv and json format

Reference

COVID-*.csv data are mirrored from Johns Hopkins University repository.

All json data are generated from csv.

These data are used for Max Pierini COVID-19 maps, plots and forecasts website.


Structure

  • json
    • WORLD, WORLD_EXCEPT_CHINA, ITALY, EUROPE*, AFRICA*, NORTH_AMERICA*, SOUTH_AMERICA*, ASIA*, OCEANIA*
      {
        "Confirmed": {"YYYY-MM-DD": int, ...},
        "Deaths": {"YYYY-MM-DD": int, ...},
        "Recovered": {"YYYY-MM-DD": int, ...}
      }
    • COUNTRIES
      {
        "Country Name":
        {
          "Confirmed": {"YYYY-MM-DD": int, ...},
          "Deaths": {"YYYY-MM-DD": int, ...},
          "Recovered": {"YYYY-MM-DD": int, ...}
        },
        ...
      }
    • DETAILS (smaller areas: provinces, states, where available)
      {
        "Area Name":
        {
          "Confirmed": {"YYYY-MM-DD": int, ...},
          "Deaths": {"YYYY-MM-DD": int, ...},
          "Recovered": {"YYYY-MM-DD": int, ...}
        },
        ...
      }
  • csv
    • all COVID-* csv are:

      Province/State Country/Region Lat Lon M/D/YY
      string string float float int
    • lockdowns.csv is

      Country Place Start date End date Level lat lon
      string string YYYY-MM-DD YYYY-MM-DD string float float

      parsed from Wikipedia


* see zones.geojson for areas coordinates