Cyclestreet question fixed for new cycleways

This commit is contained in:
Robin van der Linde 2021-07-22 09:43:24 +02:00
parent 192c7568da
commit 0f8d3471dc
3 changed files with 76 additions and 17 deletions

View file

@ -751,13 +751,6 @@
"nl": "Er is een apart getekend fietspad."
}
},
{
"if": "cyclestreet=yes",
"then": {
"nl": "Dit is een fietsstraat.",
"en": "This is a cyclestreet."
}
},
{
"if": "cycleway=",
"then": {
@ -791,6 +784,50 @@
"en": "Unknown cycleway situation",
"nl": "Onbekende fietspad situatie"
}
},
{
"question": {
"en": "Is this a cyclestreet?",
"nl": "Is dit een fietsstraat?"
},
"condition": {
"and": [
"highway!=cycleway",
"highway!=path"
]
},
"mappings": [
{
"if": "cyclestreet=yes",
"then": {
"en": "This is a cyclestreet, and a 30km/h zone.",
"nl": "Dit is een fietstraat, en dus een 30km/h zone"
},
"addExtraTags": [
"overtaking:motor_vehicle=no",
"maxspeed=30"
],
"hideInAnswer": "_country!=be"
},
{
"if": "cyclestreet=yes",
"then": {
"en": "This is a cyclestreet",
"nl": "Dit is een fietstraat"
},
"hideInAnswer": "_country=be"
},
{
"if": "cyclestreet=",
"then": {
"en": "This is not a cyclestreet.",
"nl": "Dit is niet een fietstraat"
},
"addExtraTags": [
"overtaking:motor_vehicle="
]
}
]
}
]
},

View file

@ -942,19 +942,30 @@
"then": "There is a seperately drawn cycleway"
},
"4": {
"then": "This is a cyclestreet."
},
"5": {
"then": "There is no cycleway known here"
},
"6": {
"5": {
"then": "There is no cycleway"
},
"7": {
"6": {
"then": "There is no cycleway"
}
},
"render": "Unknown cycleway situation"
},
"1": {
"question": "Is this a cyclestreet?",
"mappings": {
"0": {
"then": "This is a cyclestreet, and a 30km/h zone."
},
"1": {
"then": "This is a cyclestreet"
},
"2": {
"then": "This is not a cyclestreet."
}
}
}
}
},

View file

@ -746,19 +746,30 @@
"then": "Er is een apart getekend fietspad."
},
"4": {
"then": "Dit is een fietsstraat."
},
"5": {
"then": "Er is geen fietspad bekend hier"
},
"6": {
"5": {
"then": "Er is geen fietspad aanwezig"
},
"7": {
"6": {
"then": "Er is geen fietspad aanwezig"
}
},
"render": "Onbekende fietspad situatie"
},
"1": {
"question": "Is dit een fietsstraat?",
"mappings": {
"0": {
"then": "Dit is een fietstraat, en dus een 30km/h zone"
},
"1": {
"then": "Dit is een fietstraat"
},
"2": {
"then": "Dit is niet een fietstraat"
}
}
}
}
},