From dbe8d52cbe5a45a4d354ddb8a7dda14c25bb5901 Mon Sep 17 00:00:00 2001 From: math1985 Date: Mon, 21 Nov 2016 01:17:48 +0100 Subject: [PATCH] Treat leisure=slipway, natural=ridge, natural=arete as linestring by default Resolves #2277, resolves #2258 --- openstreetmap-carto.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openstreetmap-carto.lua b/openstreetmap-carto.lua index 4a61a2f3e4..29a456ebf5 100644 --- a/openstreetmap-carto.lua +++ b/openstreetmap-carto.lua @@ -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