Skip to content

Commit

Permalink
Improve QuayType detection for bus stops
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbendebiene committed Jan 9, 2024
1 parent 6c84fda commit 39ad985
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipeline/stop_places/sql/stop_places.sql
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,8 @@ BEGIN
END IF;
ELSEIF tags->>'coach' = 'yes'
THEN result := 'coachStop';
ELSEIF tags->>'bus' = 'yes'
ELSEIF tags->>'bus' = 'yes' OR
tags->>'highway' = 'bus_stop'
THEN result := 'busStop';
ELSEIF tags->>'light_rail' = 'yes' OR
tags->>'monorail' = 'yes' OR
Expand Down

0 comments on commit 39ad985

Please sign in to comment.