Skip to content

Commit

Permalink
Treat leisure=slipway, natural=ridge, natural=arete as linestring by …
Browse files Browse the repository at this point in the history
…default

Resolves gravitystorm#2277, resolves gravitystorm#2258
  • Loading branch information
matthijsmelissen committed Nov 21, 2016
1 parent ac5976a commit dbe8d52
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions openstreetmap-carto.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ local polygon_keys = {

-- Objects with any of the following key/value combinations will be treated as linestring
local linestring_values = {
leisure = {track = true},
leisure = {track = true, slipway = true},
man_made = {embankment = true, breakwater = true, groyne = true},
natural = {cliff = true, tree_row = true},
historic = {citywalls = true},
waterway = {canal = true, derelict_canal = true, ditch = true, drain = true, river = true, stream = true, wadi = true, weir = true},
power = {line = true, minor_line = true}
power = {line = true, minor_line = true},
natural = {ridge = true, arete = true}
}

-- Objects with any of the following key/value combinations will be treated as polygon
Expand Down

0 comments on commit dbe8d52

Please sign in to comment.