-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatapackage.json
99 lines (99 loc) · 3.78 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
91
92
93
94
95
96
97
98
99
{
"name": "traffic-signs-hansbeke",
"title": "Traffic signs of Hansbeke, Nevele, Belgium",
"description": "Geospatial dataset of all traffic signs of Hansbeke, Nevele, Belgium. See https://github.com/peterdesmet/traffic-signs-hansbeke for more information.",
"keywords": [
"traffic signs",
"geospatial",
"Hansbeke",
"Nevele",
"Belgium"
],
"datapackage_version": "1.0-beta.10",
"licenses": [
{
"type": "cc-zero",
"url": "http://creativecommons.org/publicdomain/zero/1.0/"
}
],
"sources": [
{
"name": "Peter Desmet",
"web": "http://peterdesmet.com"
}
],
"maintainers": [
{
"name": "Peter Desmet",
"web": "http://peterdesmet.com"
}
],
"base": "https://github.com/peterdesmet/traffic-signs-hansbeke/tree/master/",
"resources": [
{
"path": "data/traffic-signs-hansbeke.geojson",
"name": "traffic-signs-hansbeke",
"format": "geojson",
"mediatype": "application/json",
"schema": {
"properties": [
{
"name": "id",
"description": "Record ID.",
"type": "integer"
},
{
"name": "code",
"description": "Belgian traffic sign code.",
"web": "http://wiki.openstreetmap.org/wiki/Road_signs_in_Belgium",
"type": "string"
},
{
"name": "text_on_sign",
"description": "Text on the traffic sign.",
"type": "string"
},
{
"name": "text_below_sign",
"description": "Text on the sub sign.",
"type": "string"
},
{
"name": "street",
"description": "Street in which the traffic sign was found.",
"type": "string"
},
{
"name": "facing",
"description": "Wind direction in which the traffic sign is facing.",
"type": "string",
"values": ["N","E","S","W"]
},
{
"name": "verified",
"description": "True if the existence of the traffic sign has been verified on location.",
"type": "boolean"
},
{
"name": "marker-size",
"description": "Size of the marker, as per the simplestyle spec.",
"web": "https://help.github.com/articles/mapping-geojson-files-on-github#styling-features",
"type": "string"
},
{
"name": "marker-color",
"description": "RBG hex colour of the marker, as per the simplestyle spec.",
"web": "https://help.github.com/articles/mapping-geojson-files-on-github#styling-features",
"type": "string"
},
{
"name": "marker-symbol",
"description": "Marker icon, as per the simplestyle spec.",
"web": "https://help.github.com/articles/mapping-geojson-files-on-github#styling-features",
"type": "string"
}
]
}
}
]
}