-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
79 lines (79 loc) · 1.59 KB
/
datapackage.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "great-east-japan-earthquake-evacuees",
"title": "所在都道府県別の避難者等の数",
"license": "ODC-PDDL-1.0",
"keywords": [
"Japan",
"3/11",
"earthquake",
"evacuees",
"refugees"
],
"sources": [
{
"name": "Reconstruction Agency",
"web": "http://www.reconstruction.go.jp/topics/main-cat2/sub-cat2-1/hinanshasuu.html"
}
],
"resources": [
{
"name": "monthly",
"path": "data/monthly.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "計",
"type": "integer"
},
{
"name": "年月日",
"type": "date"
}
]
}
},
{
"name": "monthly-by-prefecture",
"path": "data/monthly-by-prefecture.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "都道府県コード",
"type": "string",
"description": "ISO 3166-2:JPコード"
},
{
"name": "都道府県名",
"type": "string"
},
{
"name": "計",
"type": "integer"
},
{
"name": "年月日",
"type": "date"
}
]
}
}
],
"views": [
{
"id": "graph",
"label": "Graph",
"type": "Graph",
"state": {
"group": "年月日",
"series": [
"計"
],
"graphType": "lines-and-points"
}
}
]
}