Awesome
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
- Mobile Friendly COVID-19 Report (repo): Coronavirus daily report in a mobile friendly website (PWA)
- COVID-19 Daily Report (repo): Coronavirus daily report, updated hourly
- COVID-19 GLOBAL Report (repo)
- covid-charts (repo): chart widget with Coronavirus stats for specified country
- COVID-19 GraphQL API (repo)
- COVID-19 Global Chart (repo): Chart GeoMap with last status by country.
- COVID-19 Stats (repo): A simple mobile friendly dashboard visualizing the latest stats of the COVID-19 outbreak.
- Corona.log (repo): A simple COVID-19 data checker per region
- COVID-19 Trends and Growth Rate: A Python implementation of growth rate and other trend analysis
- Are we dead yet (repo): Live graphs of confirmed, infected and infection rate. Outbreak normalised for comparison.
- COVID-19 How Bad Is It (repo): Live graphs with latest news involving Covid-19,
- epidemic-simulator: Mathematical model using Macroscopic Rate Equations for simulating the future of the epidemic
- COVID-19 Sri Lanka Tracker (repo): Live Updates of COVID-19 Patients in Sri Lanka
- COVID-19 Countries Trends & Comparison (repo): Country comparison of COVID-19 cases, with per-capita and growth views.