-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
53 lines (53 loc) · 1.13 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
{
"name": "tabular-geo",
"title": "Tabular and GeoJSON data types",
"description": "Example DataPackage: datasets with two different types - tabular and GeoJSON",
"resources": [
{
"name": "gdp",
"path": "data/gdp_2014.csv",
"format": "csv",
"schema": {
"fields": [
{
"name": "Country Name",
"type": "string"
},
{
"name": "Country Code",
"type": "string"
},
{
"name": "Year",
"type": "date",
"format": "fmt:%Y"
},
{
"name": "Value",
"description": "GDP in current USD",
"type": "number"
}
]
}
},
{
"name": "example",
"path": "data/example.geojson",
"format": "geojson",
"mediatype": "application/json"
}
],
"views": [
{
"name": "simple-view-line",
"title": "GDP",
"resources": ["gdp"],
"specType": "simple",
"spec": {
"type": "bar",
"group": "Country Name",
"series": ["Value"]
}
}
]
}