-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuildings_and_roads.json
49 lines (49 loc) · 1.79 KB
/
buildings_and_roads.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
{
"rules":[
{
"name":"osm_roads",
"filter":
{
"highway":[
"tertiary","residential","service","secondary","track","footway","path","unclassified","primary",
"trunk","motorway","construction","proposed","cycleway","living_street","steps", "road", "pedestrian",
"construction","bridleway","platform","proposed"
]
},
"fields":
{
"geom":{"name":"geom", "type":"LINESTRING"},
"status": {"name":"status", "type":"STRING"},
"photos": {"name":"media", "type":"STRING"},
"name":{"name":"name", "type":"STRING"},
"ref":{"name":"ref", "type":"STRING"},
"highway":{"name":"highway", "type":"STRING"},
"lanes":{"name":"lanes", "type":"STRING"},
"oneway":{"name":"oneway", "type":"STRING"},
"surface":{"name":"surface", "type":"STRING"},
"access":{"name":"access", "type":"STRING"},
"source":{"name":"source", "type":"STRING"},
"motor_vehicle":{"name":"motor_vehicle", "type":"STRING"}
}
},
{
"name":"osm_buildings",
"filter":{
"geom":["closed"],
"building":[
"yes","residential","house","garage","detached","terrace","apartments", "hut", "industrial", "roof", "garages",
"terrace", "farm_auxiliary", "commercial", "retail", "school", "church", "shed", "manufacture", "greenhouse",
"farm","office","cabin","barn","construction"
],
"aeroway":["terminal"]
},
"fields":{
"geom":{"name":"geom","type":"POLYGON"},
"building":{"name":"building", "type":"STRING"},
"status": {"name":"status", "type":"STRING"},
"photos": {"name":"media", "type":"STRING"},
"aeroway":{"name":"aeroway", "type":"STRING"}
}
}
]
}