Skip to content

Commit 1e75779

Browse files
committed
[regional] add support for moped links in the NL (#484)
* adds NL-specific preset for "moped links" (highway=cycleway + bicycle=no + moped=designated) * drop deprecation rule for `highway=cycleway` + `bicycle=no`
1 parent febe27d commit 1e75779

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

data/deprecated.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,10 +730,6 @@
730730
"old": {"highway": "bridleway", "horse": "no"},
731731
"replace": {"highway": "path", "horse": "no"}
732732
},
733-
{
734-
"old": {"highway": "cycleway", "bicycle": "no"},
735-
"replace": {"highway": "path", "bicycle": "no"}
736-
},
737733
{
738734
"old": {"highway": "cycleway", "cycleway": "track"},
739735
"replace": {"highway": "cycleway"}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"locationSet": {
3+
"include": [
4+
"nl"
5+
]
6+
},
7+
"icon": "fas-moped",
8+
"fields": [
9+
"name",
10+
"oneway",
11+
"surface",
12+
"smoothness",
13+
"width",
14+
"structure",
15+
"access",
16+
"incline"
17+
],
18+
"geometry": [
19+
"line"
20+
],
21+
"tags": {
22+
"highway": "cycleway",
23+
"bicycle": "no",
24+
"moped": "designated"
25+
},
26+
"addTags": {
27+
"highway": "cycleway",
28+
"bicycle": "no",
29+
"moped": "designated",
30+
"foot": "no",
31+
"mofa": "no"
32+
},
33+
"matchScore": 0.9,
34+
"name": "Moped Link"
35+
}

interim/source_strings.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6065,6 +6065,10 @@ en:
60656065
name: Unmarked Cycle Crossing
60666066
# 'terms: cycle path crossing,cycleway crossing,bicycle crossing,bike crossing'
60676067
terms: <translate with synonyms or related terms for 'Unmarked Cycle Crossing', separated by commas>
6068+
highway/cycleway/moped_link-NL:
6069+
# highway=cycleway + bicycle=no + moped=designated | Translate the primary name. Optionally, add equivalent synonyms on newlines in order of preference (press the Return key).
6070+
name: Moped Link
6071+
terms: <translate with synonyms or related terms for 'Moped Link', separated by commas>
60686072
highway/elevator:
60696073
# highway=elevator | Translate the primary name. Optionally, add equivalent synonyms on newlines in order of preference (press the Return key).
60706074
name: Elevator

0 commit comments

Comments
 (0)