From 3c9f1223563c6e72c7dbc3337086627fb95babc1 Mon Sep 17 00:00:00 2001 From: Jens Glad Balchen Date: Wed, 19 Mar 2025 19:01:38 +0100 Subject: [PATCH] Add lane_markings=yes in addition to lanes=2 .since the assumption is all cycleways have two lanes --- nvdb2osm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nvdb2osm.py b/nvdb2osm.py index f9c7b8a..cc14800 100644 --- a/nvdb2osm.py +++ b/nvdb2osm.py @@ -602,6 +602,7 @@ def tag_highway (segment, lanes, tags, extras): tags['surface'] = "asphalt" if len(lanes) == 2 and lanes[0] == "1S" and lanes[1] == "2S": tags['lanes'] = "2" + tags['lane_markings'] = "yes" elif segment['typeVeg'] == "Gangveg": # Footway tags[tag_key] = "footway"