Skip to content

Commit

Permalink
fix: update WHERE statement
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Norman <[email protected]>
  • Loading branch information
tjur0 and pnorman authored Oct 12, 2022
1 parent e29df01 commit eef8ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project.mml
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ Layer:
CASE WHEN (tunnel = 'yes' OR tunnel = 'building_passage' OR covered = 'yes' OR indoor = 'yes') THEN 'yes' ELSE 'no' END AS tunnel,
CASE WHEN (bridge = 'yes' OR bridge = 'covered' OR bridge = 'viaduct') THEN 'yes' ELSE 'no' END AS bridge
FROM planet_osm_line
WHERE tags->'roller_coaster' = 'track' AND railway IS NULL
WHERE tags @> 'roller_coaster=>track' AND railway IS NULL
) AS roller_coaster
properties:
minzoom: 15
Expand Down

0 comments on commit eef8ac1

Please sign in to comment.