gabrielcesar / covid19

JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily

Home Page:https://pomber.github.io/covid19/timeseries.json

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transforms the data from CSSEGISandData/COVID-19 into a json file. Available at https://pomber.github.io/covid19/timeseries.json. Updated three times a day using GitHub Actions.

The json contains the number of Coronavirus confirmed cases, deaths, and recovered cases for every country and every day since 2020-1-22:

{
  "Thailand": [
    {
      "date": "2020-1-22",
      "confirmed": 2,
      "deaths": 0,
      "recovered": 0
    },
    {
      "date": "2020-1-23",
      "confirmed": 3,
      "deaths": 0,
      "recovered": 0
    },
    ...
  ],
  ...
}

For example, if you want to use it from a web site:

fetch("https://pomber.github.io/covid19/timeseries.json")
  .then(response => response.json())
  .then(data => {
    data["Argentina"].forEach(({ date, confirmed, recovered, deaths }) =>
      console.log(`${date} active cases: ${confirmed - recovered - deaths}`)
    )
  })

Projects using this dataset

+ Add yours

About

JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily

https://pomber.github.io/covid19/timeseries.json


Languages

Language:JavaScript 100.0%