-
Notifications
You must be signed in to change notification settings - Fork 5
/
datapackage.json
90 lines (90 loc) · 2.52 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
81
82
83
84
85
86
87
88
89
90
{
"name": "geo-ne-admin1",
"title": "GeoBoundaries Admin1 Polygons as GeoJSON",
"version": "0.1.0",
"description": "Polygons polygons for the largest administrative subdivisions in every countries",
"repository": {
"type": "git",
"url": "git://github.com/datasets/geo-ne-admin1.git"
},
"sources": [
{
"name": "geoBoundaries",
"path": "https://github.com/wmgeolab/geoBoundaries/raw/main/releaseData/CGAZ/geoBoundariesCGAZ_ADM1.geojson",
"title": "geoBoundaries"
}
],
"keywords": [
"geodata",
"vector",
"country"
],
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"resources": [
{
"name": "admin1",
"path": "data/admin1.geojson",
"format": "geojson",
"mediatype": "application/json",
"schema": {
"fields": [
{
"name": "geometry",
"description": "The geometry of the feature, including coordinates and type",
"type": "object"
},
{
"name": "properties",
"description": "Additional information about the feature",
"type": "object",
"fields": [
{
"name": "name",
"description": "Common name of the zone",
"type": "string"
},
{
"name": "id",
"description": "Code for the zone inside the country",
"type": "string"
},
{
"name": "country",
"description": "Name of the country",
"type": "string"
},
{
"name": "ISO3166-1-Alpha-3",
"description": "3 characters code for the country, according to ISO3166 standard",
"type": "string"
}
]
},
{
"name": "type",
"description": "The type of the feature, e.g., 'Feature'",
"type": "string"
}
]
},
"foreignKeys": [
{
"fields": "ISO3166-1-Alpha-3",
"reference": {
"datapackage": "https://github.com/datasets/country-codes/",
"resource": "country-codes",
"fields": "ISO3166-1-Alpha-3"
}
}
]
}
],
"homepage": "http://github.com/datasets/geo-ne-admin1",
"collection": "geojson"
}