kopia lustrzana https://github.com/openmaptiles/openmaptiles
Add missing classes for raceway, bridleway, corridor #82
rodzic
d4e116558c
commit
2250d140df
layers/transportation
|
@ -18,7 +18,8 @@ CREATE OR REPLACE FUNCTION highway_class(highway TEXT) RETURNS TEXT AS $$
|
|||
WHEN highway IN ('tertiary', 'tertiary_link') THEN 'tertiary'
|
||||
WHEN highway IN ('unclassified', 'residential', 'living_street', 'road') THEN 'minor'
|
||||
WHEN highway IN ('service', 'track') THEN highway
|
||||
WHEN highway IN ('pedestrian', 'path', 'footway', 'cycleway', 'steps') THEN 'path'
|
||||
WHEN highway IN ('pedestrian', 'path', 'footway', 'cycleway', 'steps', 'bridleway', 'corridor') THEN 'path'
|
||||
WHEN highway = 'raceway' THEN 'raceway'
|
||||
ELSE NULL
|
||||
END;
|
||||
$$ LANGUAGE SQL IMMUTABLE STRICT;
|
||||
|
|
|
@ -129,7 +129,6 @@ tables:
|
|||
- road
|
||||
- living_street
|
||||
- raceway
|
||||
- construction
|
||||
- track
|
||||
- service
|
||||
- path
|
||||
|
@ -137,7 +136,6 @@ tables:
|
|||
- bridleway
|
||||
- footway
|
||||
- corridor
|
||||
- crossing
|
||||
- pedestrian
|
||||
|
||||
# etldoc: imposm3 -> osm_railway_linestring
|
||||
|
|
Ładowanie…
Reference in New Issue