Skip to content

jsanjay63/covid19-geoextractor

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Covid 19 - GeoExtractor

GeoFormats like Geojson time-series of Coronavirus cases (confirmed, deaths and recovered) per country - updated daily

Transforms the data from CSSEGISandData/COVID-19 into a GeoFormat datasets like Geojson file. Available at https://jsanjay63.github.io/covid19-geoextractor/output/covid19_time_series.geojson. Updated every 2 hours using GitHub Actions.

Note: Deprecated - This project is no longer supported/maintained anymore.

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

{
  "type": "FeatureCollection",
  "features": [{
    "type": "Feature",
    "id": "Afghanistan",
    "properties": {
      "iso": "AFG",
      "name": "Afghanistan",
      "dates": {
        "2020-1-22": {
          "confirmed": 0,
          "recovered": 0,
          "deaths": 0
        },
        "2020-1-23": {
          "confirmed": 0,
          "recovered": 0,
          "deaths": 0
        },
        ...
      },
      "current_confirmed": 1279,
      "current_recovered": 179,
      "current_deaths": 42
    },
    "geometry": {
      "type": "Polygon",
      "coordinates": [
        [
          [61.210817, 35.650072],
          [62.230651,35.270664],
          ...
        ]
      ]
    }
  ],
  ...
}

Project Ideation

Credits: https://github.com/pomber/covid19, https://github.com/CSSEGISandData/COVID-19

Projects using this dataset ([+ add yours])

Visualizations

License

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

About

GeoFormats like Geojson time-series of Coronavirus cases (confirmed, deaths and recovered) per country - updated daily

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published