Skip to content

Commit

Permalink
Order landcover by osm_id
Browse files Browse the repository at this point in the history
This resolves #2782
  • Loading branch information
math1985 committed May 8, 2018
1 parent c9b8f6c commit 9e6e6cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project.mml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Layer:
OR "natural" IN ('wood', 'wetland', 'mud', 'sand', 'scree', 'shingle', 'bare_rock', 'heath', 'grassland'))
AND way_area > 0.01*!pixel_width!::real*!pixel_height!::real
AND building IS NULL
ORDER BY way_area DESC
ORDER BY way_area DESC, osm_id
) AS features
) AS landcover_low_zoom
properties:
Expand Down Expand Up @@ -153,7 +153,7 @@ Layer:
OR highway IN ('services', 'rest_area')
OR railway = 'station')
AND way_area > 0.01*!pixel_width!::real*!pixel_height!::real
ORDER BY way_area DESC
ORDER BY way_area DESC, osm_id
) AS landcover
) AS features
properties:
Expand Down

0 comments on commit 9e6e6cf

Please sign in to comment.