Skip to content

Commit

Permalink
Add support for highway=busway
Browse files Browse the repository at this point in the history
  • Loading branch information
Famlam committed Jul 22, 2021
1 parent ff2bb32 commit fafe31f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ Layer:
CASE
WHEN type IN ('motorway', 'trunk', 'trunk_link') THEN 'motorway'
WHEN type ~ E'\\w+_link$' THEN regexp_replace(type, '_link', '')
WHEN type IN ('unclassified', 'road', 'service') THEN 'standard'
WHEN type IN ('unclassified', 'road', 'service', 'busway') THEN 'standard'
WHEN type IN ('residential', 'living_street') THEN 'urban'
WHEN type IN ('path', 'cycleway', 'footway', 'pedestrian', 'steps', 'bridleway') THEN 'noauto'
ELSE type
Expand Down Expand Up @@ -610,7 +610,7 @@ Layer:
( SELECT way, highway AS type, name, CASE WHEN oneway IN ('yes', '-1')
THEN oneway ELSE 'no' END AS oneway FROM planet_osm_line WHERE (name IS
NOT NULL OR oneway IN ('yes', '-1')) AND highway IN ('residential',
'unclassified', 'road', 'living_street', 'unknown')
'unclassified', 'road', 'living_street', 'busway', 'unknown')
) AS data
advanced:
Expand Down

0 comments on commit fafe31f

Please sign in to comment.