项目作者: jsanjay63

项目描述 :
GeoFormats like Geojson time-series of Coronavirus cases (confirmed, deaths and recovered) per country - updated daily
高级语言: JavaScript
项目地址: git://github.com/jsanjay63/covid19-geoextractor.git
创建时间: 2020-04-25T07:42:02Z
项目社区:https://github.com/jsanjay63/covid19-geoextractor

开源协议:MIT License

下载


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:

  1. {
  2. "type": "FeatureCollection",
  3. "features": [{
  4. "type": "Feature",
  5. "id": "Afghanistan",
  6. "properties": {
  7. "iso": "AFG",
  8. "name": "Afghanistan",
  9. "dates": {
  10. "2020-1-22": {
  11. "confirmed": 0,
  12. "recovered": 0,
  13. "deaths": 0
  14. },
  15. "2020-1-23": {
  16. "confirmed": 0,
  17. "recovered": 0,
  18. "deaths": 0
  19. },
  20. ...
  21. },
  22. "current_confirmed": 1279,
  23. "current_recovered": 179,
  24. "current_deaths": 42
  25. },
  26. "geometry": {
  27. "type": "Polygon",
  28. "coordinates": [
  29. [
  30. [61.210817, 35.650072],
  31. [62.230651,35.270664],
  32. ...
  33. ]
  34. ]
  35. }
  36. ],
  37. ...
  38. }

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.