diff --git a/layers/transportation/transportation.sql b/layers/transportation/transportation.sql index 1b2f2d8..8c48fc6 100644 --- a/layers/transportation/transportation.sql +++ b/layers/transportation/transportation.sql @@ -53,9 +53,9 @@ SELECT osm_id, NULLIF(network, '') AS network, -- All links are considered as ramps as well CASE - WHEN highway_is_link(highway) OR highway = 'steps' - THEN 1 - ELSE is_ramp::int END AS ramp, + WHEN highway_is_link(highway) + OR is_ramp + THEN 1 END AS ramp, is_oneway::int AS oneway, brunnel(is_bridge, is_tunnel, is_ford) AS brunnel, NULLIF(service, '') AS service,