forked from cividi/ch-municipalities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
80 lines (80 loc) · 2.02 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
80
{
"name": "ch-municipalities",
"title": "Swiss Municipalities",
"description": "Swiss Municipalities list as GeoJSON, CSV and JSON",
"format": "csv",
"datapackage_version": "1.0.0",
"last_modified": "2020-01-21",
"license": "PDDL-1.0",
"licenses": [
{
"type": "ODC-PDDL-1.0",
"url": "http://opendatacommons.org/licenses/pddl/1.0/"
}
],
"sources": [
{
"title": "SwissBOUNDARIES3D",
"url": "https://shop.swisstopo.admin.ch/en/products/landscape/boundaries3D"
}
],
"resources": [
{
"path": "data/gemeinden.json",
"title": "CH Gemeindeliste JSON",
"name": "gemeinden-json",
"mediatype": "application/json"
},{
"path": "data/gemeinden.csv",
"title": "CH Gemeindeliste CSV",
"name": "gemeinden-csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "gemeinde.BFS_NUMMER",
"type": "integer",
"unique": true
},
{
"name": "gemeinde.NAME",
"type": "string",
"format": "default",
"unique": true
},
{
"name": "kanton.KUERZEL",
"type": "string",
"format": "default",
"minLength": 2,
"maxLength": 2,
"unique": true
},
{
"name": "kanton.NAME",
"type": "string",
"format": "default"
}
]
}
},
{
"path": "data/gemeinden.geojson",
"title": "CH Gemeindeliste GeoJSON",
"name": "gemeinden-geojson",
"mediatype": "application/geo+json"
}
],
"contributors":[
{
"title": "cividi GmbH",
"email": "[email protected]",
"web": "http://cividi.ch"
}],
"maintainers":[
{
"name": "Thorben Westerhuys",
"web": "https://github.com/n0rdlicht/"
}
]
}