Skip to content

Commit

Permalink
aeroways: don't label displaced thresholds or blast pads
Browse files Browse the repository at this point in the history
  • Loading branch information
pnorman committed Jul 18, 2022
1 parent 4fd5026 commit 004dfaf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions project.mml
Expand Up @@ -1728,8 +1728,11 @@ Layer:
aeroway,
ref
FROM planet_osm_line
WHERE aeroway IN ('runway', 'taxiway')
AND ref IS NOT NULL
WHERE ref IS NOT NULL
AND (aeroway = 'taxiway'
OR (aeroway = 'runway'
AND NOT tags @> 'runway=>displaced_threshold'
AND NOT tags @> 'runway=>blast_pad'))

This comment has been minimized.

Copy link
@jdhoek

jdhoek Jul 18, 2022

Contributor

While not wrong here, runway=blast_pad is not broadly supported or used, and has been superseded by aeroway=stopway. The reasoning behind this is that blast pads or stopways are not part of the conceptual runway.

ORDER BY CASE aeroway
WHEN 'runway' THEN 2
WHEN 'taxiway' THEN 1
Expand Down

0 comments on commit 004dfaf

Please sign in to comment.