From bc74fb50e7bde3379d607ea710e203cfa9d98ffb Mon Sep 17 00:00:00 2001 From: Olaf Kryus <14991562+olafkryus@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:56:33 +0100 Subject: [PATCH] Add preset for `highway=path`-based bicycle-foot path tagging (#1384) --- .../cycleway/crossing/bicycle_foot.json | 1 + data/presets/highway/path/bicycle_foot.json | 32 ++++++++++++++++ .../highway/path/crossing/bicycle_foot.json | 38 +++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 data/presets/highway/path/bicycle_foot.json create mode 100644 data/presets/highway/path/crossing/bicycle_foot.json diff --git a/data/presets/highway/cycleway/crossing/bicycle_foot.json b/data/presets/highway/cycleway/crossing/bicycle_foot.json index e4a6a6a6..49a3c2eb 100644 --- a/data/presets/highway/cycleway/crossing/bicycle_foot.json +++ b/data/presets/highway/cycleway/crossing/bicycle_foot.json @@ -4,6 +4,7 @@ "fr", "lt", "pl", + "de", "il", "ps" ] diff --git a/data/presets/highway/path/bicycle_foot.json b/data/presets/highway/path/bicycle_foot.json new file mode 100644 index 00000000..58e4eee9 --- /dev/null +++ b/data/presets/highway/path/bicycle_foot.json @@ -0,0 +1,32 @@ +{ + "locationSet": { + "include": [ + "fr", + "lt", + "pl", + "de", + "il", + "ps" + ] + }, + "icon": "temaki-pedestrian_and_cyclist", + "fields": [ + "{highway/cycleway/bicycle_foot}" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "path", + "foot": "designated", + "bicycle": "designated" + }, + "removeTags": { + "highway": "path", + "foot": "designated", + "bicycle": "designated", + "segregated": "*" + }, + "matchScore": 0.9, + "name": "{highway/cycleway/bicycle_foot}" +} diff --git a/data/presets/highway/path/crossing/bicycle_foot.json b/data/presets/highway/path/crossing/bicycle_foot.json new file mode 100644 index 00000000..a2256975 --- /dev/null +++ b/data/presets/highway/path/crossing/bicycle_foot.json @@ -0,0 +1,38 @@ +{ + "locationSet": { + "include": [ + "fr", + "lt", + "pl", + "de", + "il", + "ps" + ] + }, + "icon": "temaki-ped_cyclist_crosswalk", + "fields": [ + "{highway/cycleway/crossing/bicycle_foot}" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "path", + "path": "crossing", + "foot": "designated", + "bicycle": "designated" + }, + "removeTags": { + "highway": "path", + "path": "crossing", + "foot": "designated", + "bicycle": "designated", + "segregated": "*" + }, + "reference": { + "key": "path", + "value": "crossing" + }, + "matchScore": 0.9, + "name": "{highway/cycleway/crossing/bicycle_foot}" +}