GithubHelp home page GithubHelp logo

hongqin / covid19 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pomber/covid19

0.0 1.0 0.0 411 KB

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

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

JavaScript 100.00%

covid19's Introduction

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)

APIs

Visualizations

Analysis

License

The code from this repo is MIT licensed.
The data is under CSSEGISandData/COVID-19 terms of use.

covid19's People

Contributors

pomber avatar actions-user avatar f2acode avatar nickmccullum avatar backtrackbaba avatar twei55 avatar main-sh4 avatar daniel-karl avatar agaktr avatar thomas-alrek avatar remdelaportemathurin avatar mugabodeo avatar neniemsu avatar dhanushkac avatar ormesam avatar rlindskog avatar royriojas avatar robert-northmind avatar ritomsonowal avatar randallarms avatar rahulchauhan049 avatar psyzoo avatar paroj avatar pcmnac avatar ossamarafique avatar nicolaschenet avatar notnavindu avatar michetonu avatar 0xflotus avatar mrsunshyne avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.