-
Notifications
You must be signed in to change notification settings - Fork 3
/
osm2shp.cfg
42 lines (35 loc) · 1.09 KB
/
osm2shp.cfg
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
# See README for a syntax description of this file. Don't forget to recompile
# the program after changing this file.
file point "places"
where key "place"
column string "name"
column string "type" key "place"
column int "population"
file polygon "landuse"
where key "landuse" key "natural" key "leisure"
column string "type" key "landuse" key "natural" key "leisure"
file polygon "buildings"
where key "building"
column string "name"
column string "type" key "amenity" key "tourism" key "historic" key "man_made" key "railway" key "highway"
file line "waterways"
where key "waterway"
column string "name"
column string "type" key "waterway"
column int "width"
file line "roads"
where key "highway"
column string "name"
column string "ref"
column string "type" key "highway"
column string "oneway"
column string "bridge"
column string "tunnel"
column int "maxspeed"
file line "railways"
where key "railway"
column string "name"
column string "type" key "railway"
file point "points"
column string "name"
column string "type" key "amenity" key "tourism" key "historic" key "man_made", key "railway" key "highway"