mapcomplete/assets/layers/observation_tower/observation_tower.json

248 lines
5.8 KiB
JSON
Raw Normal View History

2021-09-09 23:29:03 +02:00
{
2021-11-07 14:37:21 +01:00
"id": "observation_tower",
"name": {
"en": "Observation towers",
"nl": "Uitkijktorens",
"ru": "Смотровые башни",
"de": "Aussichtstürme"
},
"minzoom": 8,
"title": {
"render": {
"en": "Observation tower",
"nl": "Uitkijktoren",
"ru": "Смотровая башня",
"de": "Beobachtungsturm"
2021-09-09 23:29:03 +02:00
},
2021-11-07 14:37:21 +01:00
"mappings": [
{
"if": "name~*",
"then": {
"en": "<b>{name}</b>",
"nl": "<b>{name}</b>",
"ru": "<b>{name}</b>",
"de": "<b>{name}</b>"
}
}
]
},
"description": {
"en": "Towers with a panoramic view",
"nl": "Torens om van het uitzicht te genieten",
"de": "Türme zur Aussicht auf die umgebende Landschaft"
},
"tagRenderings": [
"images",
{
"question": {
"en": "What is the name of this tower?",
"nl": "Heeft deze toren een naam?",
"de": "Wie heißt dieser Turm?"
},
"render": {
"en": "This tower is called <b>{name}</b>",
"nl": "Deze toren heet <b>{name}</b>",
"de": "Der Name dieses Turms lautet <b>{name}</b>"
},
"freeform": {
"key": "name"
},
"mappings": [
{
2021-11-07 14:37:21 +01:00
"if": "noname=yes",
"then": {
"en": "This tower doesn't have a specific name",
"nl": "Deze toren heeft geen specifieke naam",
"de": "Dieser Turm hat keinen eigenen Namen"
}
}
],
"id": "name"
2021-09-09 23:29:03 +02:00
},
2021-11-07 14:37:21 +01:00
{
"question": {
"en": "What is the height of this tower?",
"nl": "Hoe hoog is deze toren?",
"de": "Wie hoch ist dieser Turm?"
},
"render": {
"en": "This tower is {height} high",
"nl": "Deze toren is {height} hoog",
"de": "Dieser Turm ist {height} hoch"
},
"freeform": {
"key": "height",
"type": "pfloat"
},
"id": "Height"
2021-09-09 23:29:03 +02:00
},
2021-11-07 14:37:21 +01:00
{
"question": {
"en": "Who maintains this tower?",
"nl": "Wie onderhoudt deze toren?",
"de": "Wer betreibt diesen Turm?"
},
"render": {
"nl": "Wordt onderhouden door <b>{operator}</b>",
"en": "Maintained by <b>{operator}</b>",
"de": "Betrieben von <b>{operator}</b>"
},
"freeform": {
"key": "operator"
},
"id": "Operator"
},
2021-11-07 14:37:21 +01:00
"website",
{
"question": {
"en": "How much does one have to pay to enter this tower?",
"nl": "Hoeveel moet men betalen om deze toren te bezoeken?",
"de": "Was kostet der Zugang zu diesem Turm?"
},
"render": {
"en": "Visiting this tower costs <b>{charge}</b>",
"nl": "Deze toren bezoeken kost <b>{charge}</b>",
"de": "Der Besuch des Turms kostet <b>{charge}</b>"
},
"freeform": {
"key": "charge",
"addExtraTags": [
"fee=yes"
]
},
"mappings": [
2021-09-09 23:29:03 +02:00
{
2021-11-07 14:37:21 +01:00
"if": {
2021-09-09 23:29:03 +02:00
"and": [
2021-11-07 14:37:21 +01:00
"fee=no",
"charge="
2021-09-09 23:29:03 +02:00
]
2021-11-07 14:37:21 +01:00
},
"then": {
"en": "Free to visit",
"nl": "Gratis te bezoeken",
"de": "Eintritt kostenlos"
}
2021-09-09 23:29:03 +02:00
}
2021-11-07 14:37:21 +01:00
],
"id": "Fee"
2021-09-09 23:29:03 +02:00
},
2021-11-07 14:37:21 +01:00
{
"builtin": "payment-options",
"override": {
"condition": {
"or": [
"fee=yes",
"charge~*"
]
}
2021-11-07 14:37:21 +01:00
},
"id": "Payment methods"
},
2022-02-01 19:02:46 +01:00
{
"id": "step_count",
"question": {
"en": "How much individual steps does one have to climb to reach the top of this tower?",
"nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?"
},
"freeform": {
"key": "step_count",
"type": "pnat"
},
"render": {
"en": "This tower has {step_count} steps to reach the top",
"nl": "Deze toren heeft {step_count} traptredes"
}
},
{
"id": "elevator",
"question": {
"en": "Does this tower have an elevator?",
"nl": "Heeft deze toren een lift?"
},
"mappings": [
{
"if": "elevator=yes",
"then": {
"en": "This tower has an elevator which takes visitors to the top",
"nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt"
}
},
{
"if": "elevator=no",
"then": {
"en": "This tower does not have an elevator",
"nl": "Deze toren heeft geen lift"
}
}
]
},
2021-11-07 14:37:21 +01:00
"wheelchair-access",
"wikipedia"
],
"presets": [
{
"tags": [
"man_made=tower",
"tower:type=observation"
],
"title": {
"en": "observation tower",
"nl": "Uitkijktoren",
"ru": "смотровая башня",
"de": "Beobachtungsturm"
},
"description": {
"nl": "Een publiek toegankelijke uitkijktoren"
}
}
],
"source": {
"osmTags": {
"and": [
"tower:type=observation"
]
}
},
"units": [
{
"appliesToKey": [
"height"
],
"applicableUnits": [
{
2021-11-07 14:37:21 +01:00
"canonicalDenomination": "m",
"alternativeDenomination": [
"meter",
"mtr"
],
"human": {
"nl": " meter",
"en": " meter",
"ru": " метр",
"de": " Meter"
}
}
2021-11-07 14:37:21 +01:00
],
"eraseInvalidValues": true
}
2021-11-07 14:37:21 +01:00
],
"allowMove": {
"enableRelocation": false,
"enableImproveAccuraccy": true
2021-11-07 15:31:55 +01:00
},
"mapRendering": [
{
"icon": {
"render": "circle:white;./assets/layers/observation_tower/Tower_observation.svg"
},
"iconSize": {
"render": "40,40,center"
},
"location": [
2021-11-08 15:31:25 +01:00
"point",
"centroid"
2021-11-07 15:31:55 +01:00
]
}
]
2021-09-09 23:29:03 +02:00
}