-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[regional] add support for moped ramps in the NL (closes #484)
* adds NL-specific preset for "moped links" (highway=cycleway + bicycle=no + moped=designated) * replace deprecation rule for `highway=cycleway` + `bicycle=no` with special "replacement" preset (which excludes the NL)
- Loading branch information
Showing
4 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"locationSet": { | ||
"exclude": [ | ||
"NL" | ||
] | ||
}, | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"highway": "cycleway", | ||
"bicycle": "no" | ||
}, | ||
"searchable": false, | ||
"matchScore": 1, | ||
"name": "Cycleway (NO)", | ||
"replacement": "highway/path/bicycle_no" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"locationSet": { | ||
"include": [ | ||
"nl" | ||
] | ||
}, | ||
"icon": "fas-moped", | ||
"fields": [ | ||
"name", | ||
"oneway", | ||
"surface", | ||
"smoothness", | ||
"width", | ||
"structure", | ||
"access", | ||
"incline" | ||
], | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"highway": "cycleway", | ||
"bicycle": "no", | ||
"moped": "designated" | ||
}, | ||
"addTags": { | ||
"highway": "cycleway", | ||
"bicycle": "no", | ||
"moped": "designated", | ||
"foot": "no", | ||
"mofa": "no" | ||
}, | ||
"matchScore": 0.9, | ||
"name": "Moped Link" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"highway": "path", | ||
"bicycle": "no" | ||
}, | ||
"matchScore": 0, | ||
"name": "Path" | ||
} |