kopia lustrzana https://github.com/openmaptiles/openmaptiles
Map highway=step. Fixes #84
rodzic
2250d140df
commit
3e229a7b3c
|
@ -15,7 +15,8 @@ RETURNS TABLE(osm_id bigint, geometry geometry, class text, subclass text, ramp
|
||||||
END AS class,
|
END AS class,
|
||||||
COALESCE(NULLIF(highway,''), NULLIF(railway, '')) AS subclass,
|
COALESCE(NULLIF(highway,''), NULLIF(railway, '')) AS subclass,
|
||||||
-- All links are considered as ramps as well
|
-- All links are considered as ramps as well
|
||||||
CASE WHEN highway_is_link(highway) THEN 1 ELSE is_ramp::int END AS ramp,
|
CASE WHEN highway_is_link(highway) OR highway = 'steps'
|
||||||
|
THEN 1 ELSE is_ramp::int END AS ramp,
|
||||||
is_oneway::int AS oneway,
|
is_oneway::int AS oneway,
|
||||||
brunnel(is_bridge, is_tunnel, is_ford) AS brunnel,
|
brunnel(is_bridge, is_tunnel, is_ford) AS brunnel,
|
||||||
NULLIF(service, '') AS service
|
NULLIF(service, '') AS service
|
||||||
|
|
|
@ -137,6 +137,7 @@ tables:
|
||||||
- footway
|
- footway
|
||||||
- corridor
|
- corridor
|
||||||
- pedestrian
|
- pedestrian
|
||||||
|
- steps
|
||||||
|
|
||||||
# etldoc: imposm3 -> osm_railway_linestring
|
# etldoc: imposm3 -> osm_railway_linestring
|
||||||
railway_linestring:
|
railway_linestring:
|
||||||
|
|
Ładowanie…
Reference in New Issue