forked from MapComplete/MapComplete
Themes(climbing): Add auto belay tags
I even documented these tags on the wiki! https://wiki.openstreetmap.org/wiki/Climbing#Climbing_gym_services_and_facilities
This commit is contained in:
parent
91e204aade
commit
c26300bb75
1 changed files with 101 additions and 0 deletions
|
@ -331,6 +331,107 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "auto_belay_toprope",
|
||||
"question": {
|
||||
"en": "Are there auto belays for top roping here? (Excluding those for speed)",
|
||||
"nl": "Zijn hier auto belays voor toprope? (Niet die voor speed)"
|
||||
},
|
||||
"condition": {
|
||||
"and": [
|
||||
"climbing:toprope!=",
|
||||
"climbing:toprope!=no"
|
||||
]
|
||||
},
|
||||
"freeform": {
|
||||
"key": "climbing:autobelay:toprope",
|
||||
"type": "nat"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "climbing:autobelay:toprope=no",
|
||||
"then": {
|
||||
"en": "There are no auto belays for top roping",
|
||||
"nl": "Er zijn geen autobelays voor toprope"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:toprope=yes",
|
||||
"then": {
|
||||
"en": "There are a number of auto belays for top roping",
|
||||
"nl": "Er zijn enkele autobelays voor toprope"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:toprope=all",
|
||||
"then": {
|
||||
"en": "There is an auto belay for every top rope route but manual belaying is also possible",
|
||||
"nl": "Elke toproperoute kan op autobelay geklommen worden maar handmatig zekeren is ook mogelijk"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:toprope=only",
|
||||
"then": {
|
||||
"en": "Top rope routes can only be climbed on auto belay",
|
||||
"nl": "Toproperoutes kunnen enkel op autobelay geklommen worden"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:toprope~[0-9]+",
|
||||
"then": {
|
||||
"en": "There are {climbing:autobelay:toprope} auto belay devices for top roping",
|
||||
"nl": "Er zijn {climbing:autobelay:toprope} autobelaytoestellen voor toprope"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "auto_belay_lead",
|
||||
"question": {
|
||||
"en": "Are there auto belays for lead climbing here?",
|
||||
"nl": "Zijn hier autobelays voor voorklimmen?"
|
||||
},
|
||||
"condition": {
|
||||
"and": [
|
||||
"climbing:sport!=",
|
||||
"climbing:sport!=no"
|
||||
]
|
||||
},
|
||||
"freeform": {
|
||||
"key": "climbing:autobelay:sport",
|
||||
"type": "nat"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "climbing:autobelay:sport=no",
|
||||
"then": {
|
||||
"en": "There are no auto belays for lead climbing",
|
||||
"nl": "Er zijn geen autobelays voor voorklimmen"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:sport=yes",
|
||||
"then": {
|
||||
"en": "There is a number of auto belays for lead climbing",
|
||||
"nl": "Er zijn enkele autobelays voor voorklimmen"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:sport=all",
|
||||
"then": {
|
||||
"en": "There is an auto belay for every lead climbing route",
|
||||
"nl": "Elke voorklimroute kan op autobelay geklommen worden"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "climbing:autobelay:sport~[0-9]+",
|
||||
"then": {
|
||||
"en": "There are {climbing:autobelay:sport} auto belays for lead climbing",
|
||||
"nl": "Er zijn {climbing:autobelay:sport} autobelays voor voorklimmen"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "belay_device_rental",
|
||||
"question": {
|
||||
|
|
Loading…
Reference in a new issue