-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
48 lines (40 loc) · 1.55 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
使用说明
两个部分
1.
python是用于从网络抓取资源数据,存储mysql。
2.
其他为maven web项目,展示数据。
整个项目自动运行。
demo: http://ncov.yao-wei.com
添加一个全球看板
https://www.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6 桌面端
http://www.arcgis.com/apps/opsdashboard/index.html#/85320e2ea5424dfaaa75ae62e5c06e61 手机端
发现一个新的较好的数据源,含全球数据和中国省份数据,Serving data from John Hopkins University CSSE as a [JSON API](https://covid19.mathdro.id/)
api格式:
{
"confirmed": {
"value": 162687,
"detail": "https://covid19.mathdro.id/api/confirmed"
},
"recovered": {
"value": 75620,
"detail": "https://covid19.mathdro.id/api/recovered"
},
"deaths": {
"value": 6065,
"detail": "https://covid19.mathdro.id/api/deaths"
},
"dailySummary": "https://covid19.mathdro.id/api/daily",
"dailyTimeSeries": {
"pattern": "https://covid19.mathdro.id/api/daily/[dateString]",
"example": "https://covid19.mathdro.id/api/daily/2-14-2020"
},
"image": "https://covid19.mathdro.id/api/og",
"source": "https://github.com/mathdroid/covid19",
"countries": "https://covid19.mathdro.id/api/countries",
"countryDetail": {
"pattern": "https://covid19.mathdro.id/api/countries/[country]",
"example": "https://covid19.mathdro.id/api/countries/USA"
},
"lastUpdate": "2020-03-15T18:20:19.000Z"
}