forked from nlehuby/osmtc2mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taginfo.json
72 lines (72 loc) · 2.22 KB
/
taginfo.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
{
"data_format": 1,
"project": {
"name": "osm_transit_extractor",
"description": "Extract public transport data from OSM and write it to CSV files",
"project_url": "https://github.com/CanalTP/osm-transit-extractor",
"contact_name": "Pascal Rhod",
"contact_email": "[email protected]"
},
"tags": [{
"key": "type",
"value": "route_master",
"object_types": ["relation"],
"description": "to filter the public transport line objects"
},
{
"key": "type",
"value": "route",
"object_types": ["relation"],
"description": "to filter the public transport route objects"
},
{
"key": "ref",
"object_types": ["relation"],
"description": "the code of the public transport line/route"
},
{
"key": "to",
"object_types": ["relation"],
"description": "the destination of the public transport route"
},
{
"key": "from",
"object_types": ["relation"],
"description": "the origin of the public transport route"
},
{
"key": "colour",
"object_types": ["relation"],
"description": "the colour of the public transport line/route"
},
{
"key": "operator",
"object_types": ["relation"],
"description": "the name of the public transport operator"
},
{
"key": "network",
"object_types": ["relation"],
"description": "the name of the public transport network"
},
{
"key": "route",
"object_types": ["relation"],
"description": "the public transport mode of the route"
},
{
"key": "route_master",
"object_types": ["relation"],
"description": "the public transport mode of the line"
},
{
"key": "highway",
"value": "bus_stop"
},
{
"key": "public_transport",
"value": "stop_area",
"object_types": ["relation"]
}
]
}