mapcomplete/assets/layers/aerialway/aerialway.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

282 lines
9.8 KiB
JSON
Raw Normal View History

2024-01-30 19:41:26 +01:00
{
"id": "aerialway",
"name": {
"en": "Aerialways",
2024-09-11 15:53:09 +02:00
"de": "Seilbahnen",
2024-09-24 15:09:57 +02:00
"cs": "Letecké trasy",
"ca": "Vies aeries"
},
"description": {
"en": "Various forms of transport for passengers and goods that use wires, including cable cars, gondolas, chair lifts, drag lifts, and zip lines. ",
2024-06-16 16:06:26 +02:00
"de": "Alle Arten von seil- oder drahtgestütztem Personen- oder Gütertransport, wie Seilbahnen, Gondeln, Sessellifte, Schlepplifte. ",
"es": "Diversas formas de transporte de pasajeros y mercancías que utilizan cables, como teleféricos, telecabinas, telesillas, telesquíes y tirolinas. ",
2024-09-11 15:53:09 +02:00
"pl": "Różne formy transportu dla pasażerów i dóbr, które używają lin, w tym kolejki gondolowe, wyciągi krzesełkowe i orczykowe oraz tyrolki. ",
2024-09-24 15:09:57 +02:00
"cs": "Různé formy přepravy osob a zboží, které využívají dráty, včetně lanovek, gondol, sedačkových lanovek, vleků a lanových drah. ",
"ca": "Diverses formes de transport per a passatgers i mercaderies que utilitzen cables, incloent-hi telefèrics, telecabines, telecadires, teleesquís i tiroleses. "
},
"source": {
"osmTags": {
"and": [
"aerialway~*",
"aerialway!=pylon",
"aerialway!=station"
]
}
},
2024-04-28 11:00:23 +02:00
"minzoom": 11,
"title": {
"render": {
"en": "Aerialway {name}",
"de": "Seilbahn {name}"
}
},
2024-01-30 19:41:26 +01:00
"pointRendering": [
{
2024-02-02 14:40:48 +01:00
"location": [
"start"
],
2024-01-30 19:41:26 +01:00
"marker": [
{
"icon": "square"
}
],
"iconSize": "12,12"
},
{
"location": [
"point",
"projected_centerpoint"
],
"label": {
"render": {
2024-02-20 13:33:38 +01:00
"en": "{name}",
2024-05-16 10:27:04 +02:00
"de": "{name}",
2024-06-16 16:06:26 +02:00
"fr": "{name}",
"pl": "{name}",
2024-09-11 15:53:09 +02:00
"es": "{name}",
2024-09-24 15:09:57 +02:00
"cs": "{name}",
"ca": "{name}"
2024-01-30 19:41:26 +01:00
},
"condition": "name~*",
"classes": "bg-white p-1 px-2 rounded"
},
"labelCssClasses": "bg-white px-2 py-1 no-weblate"
}
],
"lineRendering": [
{
"width": "4",
"color": "black",
"imageAlongWay": [
{
"if": "oneway=no",
"then": "./assets/png/twoway.png"
},
{
"if": {
"or": [
"oneway=yes",
"oneway="
]
},
"then": "./assets/png/oneway.png"
}
]
}
],
2024-01-30 19:41:26 +01:00
"tagRenderings": [
"images",
{
"question": {
2024-02-20 13:33:38 +01:00
"en": "What type of aerialway is this?",
"de": "Um welchen Seilbahntyp handelt es sich?"
2024-01-30 19:41:26 +01:00
},
"id": "type",
"mappings": [
{
"if": "aerialway=cable_car",
"then": {
2024-02-20 13:33:38 +01:00
"en": "This is a cable car where the car goes up and down again on the same cable.",
2024-09-30 18:18:53 +02:00
"de": "Es handelt sich um eine Seilbahn, bei der die Kabine auf demselben Seil nach oben und wieder nach unten fährt.",
"cs": "Jedná se o lanovku, kde vagon jezdí nahoru a dolů po stejném laně."
2024-01-30 19:41:26 +01:00
},
"icon": "./assets/layers/aerialway/cable_car.svg"
},
{
"if": "aerialway=gondola",
"then": {
2024-02-20 13:33:38 +01:00
"en": "This is a gondola where the cars go around in continuous circles",
2024-09-30 18:18:53 +02:00
"de": "Es handelt sich um eine Seilbahn, bei der die Kabinen in ständigen Kreisen fahren",
"cs": "Jedná se o gondolu, kde vozy jezdí v nepřetržitých kruzích"
2024-01-30 19:41:26 +01:00
},
"icon": "./assets/layers/aerialway/gondola_lift.svg"
},
{
"if": "aerialway=chair_lift",
"then": {
2024-02-20 13:33:38 +01:00
"en": "An open chairlift with seats to sit on and open to the outside air.",
2024-09-30 18:18:53 +02:00
"de": "Ein offener Sessellift mit Sitzgelegenheiten und Zugang zur Außenluft.",
"cs": "Otevřená lanovka se sedačkami k sezení na čerstvém vzduchu."
2024-01-30 19:41:26 +01:00
},
"icon": "./assets/layers/aerialway/chair_lift.svg"
},
{
"if": "aerialway=mixed",
"then": {
2024-02-20 13:33:38 +01:00
"en": "An aerialway which has both chairs and gondolas in the same continuous track",
2024-09-30 18:18:53 +02:00
"de": "Eine Seilbahn, die sowohl offene Sessel als auch geschlossene Gondeln auf einer durchgehenden Bahn hat",
"cs": "Lanová dráha, která má sedačky i gondoly na stejné souvislé dráze"
2024-01-30 19:41:26 +01:00
}
},
{
"if": "aerialway=drag_lift",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A drag lift",
2024-06-16 16:06:26 +02:00
"de": "Ein Schlepplift",
2024-09-30 18:18:53 +02:00
"pl": "Wyciąg orczykowy",
"cs": "Vlek"
2024-01-30 19:41:26 +01:00
},
"hideInAnswer": true
},
{
"if": "aerialway=t-bar",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A drag lift with T-shaped carriers for two passengers at a time",
2024-09-30 18:18:53 +02:00
"de": "Ein Schlepplift mit T-förmigen Trägern für jeweils zwei Passagiere",
"cs": "Vlek s nosiči ve tvaru T pro dva cestující najednou"
2024-01-30 19:41:26 +01:00
}
},
{
"if": "aerialway=j-bar",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A drag lift with L-shaped bars for a single passenger at a time",
2024-09-30 18:18:53 +02:00
"de": "Ein Schlepplift mit L-förmigen Trägern für jeweils einen Passagier",
"cs": "Vlek s tyčemi ve tvaru písmene L pro jednoho cestujícího"
2024-01-30 19:41:26 +01:00
}
},
{
"if": "aerialway=platter",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A drag lift with a platter to drag a single passenger at a time",
"de": "Ein Schlepplift mit einem Teller für jeweils einen Passagier"
2024-01-30 19:41:26 +01:00
}
},
{
"if": "aerialway=rope_tow",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A tow line which which drags skieers",
"de": "Eine Schleppleine, die Skifahrer mit sich zieht"
2024-01-30 19:41:26 +01:00
}
},
{
"if": "aerialway=magic_carpet",
"then": {
2024-02-20 13:33:38 +01:00
"en": "A magic carpet (a conveyor belt on the ground)",
"de": "Ein magic carpet (ein Förderband auf dem Boden)"
2024-01-30 19:41:26 +01:00
}
},
2024-02-02 14:40:48 +01:00
{
"if": "aerialway=zip_line",
2024-01-30 19:41:26 +01:00
"then": {
2024-02-20 13:33:38 +01:00
"en": "A zip line. (A touristical attraction where adventurous people go down at high speeds) ",
2024-06-16 16:06:26 +02:00
"de": "Eine Seilrutsche. (Eine Touristenattraktion, bei der abenteuerlustige Menschen mit hoher Geschwindigkeit hinunterfahren) ",
2024-09-30 18:18:53 +02:00
"pl": "Tyrolka. (Atrakcja turystyczna, która pozwala żądnym przygód zjechać z dużą szybkością) ",
"cs": "Lano na visuté dráze. (Turistická atrakce, kde se odvážlivci spouštějí vysokou rychlostí) "
2024-01-30 19:41:26 +01:00
}
}
]
},
2024-02-06 21:11:11 +01:00
{
"id": "duration",
"question": {
2024-02-20 13:33:38 +01:00
"en": "How long takes a single journey with this elevator?",
2024-05-16 10:27:04 +02:00
"de": "Wie lange dauert eine Fahrt mit diesem Aufzug?",
2024-06-16 16:06:26 +02:00
"fr": "Combien de temps dure le trajet dans cet ascenseur?",
"pl": "Jak długo trwa pojedynczy przejazd tą windą?",
2024-09-11 15:53:09 +02:00
"es": "¿Cuánto dura un viaje en este ascensor?",
2024-09-24 15:09:57 +02:00
"cs": "Jak dlouho trvá jedna jízda tímto výtahem?",
"ca": "Quant de temps triga un trajecte amb aquest ascensor?"
2024-02-06 21:11:11 +01:00
},
"questionHint": {
2024-02-20 13:33:38 +01:00
"en": "This excludes the waiting time.",
2024-05-16 10:27:04 +02:00
"de": "Dies schließt die Wartezeit aus.",
2024-06-16 16:06:26 +02:00
"fr": "Cela n'inclut pas le temps d'attente.",
"pl": "To nie włącza czasu oczekiwania.",
2024-09-11 15:53:09 +02:00
"es": "Esto elimina el tiempo de espera.",
2024-09-24 15:09:57 +02:00
"cs": "To nezahrnuje čekací dobu.",
"ca": "Això exclou el temps d'espera."
2024-02-06 21:11:11 +01:00
},
"freeform": {
"key": "duration"
},
"render": {
2024-02-20 13:33:38 +01:00
"en": "A single journey takes {duration} minutes",
2024-05-16 10:27:04 +02:00
"de": "Eine Fahrt dauert {duration} Minuten",
2024-06-16 16:06:26 +02:00
"fr": "Un aller simple dure {duration} minutes",
"pl": "Pojedynczy przejazd trwa {duration} minut",
2024-09-11 15:53:09 +02:00
"es": "Un viaje dura {duration} minutos",
2024-09-24 15:09:57 +02:00
"cs": "Jedna jízda trvá {duration} minut",
"ca": "Un viatge dura {duration} minuts"
2024-02-06 21:11:11 +01:00
}
},
{
"id": "occupancy",
"freeform": {
"key": "aerialway:occupancy"
},
"question": {
2024-02-20 13:33:38 +01:00
"en": "How many people fit a single carriage?",
2024-06-16 16:06:26 +02:00
"de": "Wie viele Leute passen in eine Kabine?",
"pl": "Ile osób może pomieścić jeden wagon?",
2024-09-24 15:09:57 +02:00
"es": "¿Cuál es la capacidad de la cabina?",
2024-09-30 18:18:53 +02:00
"ca": "Quantes persones caben a la cabina?",
"cs": "Kolik osob se vejde do jednoho vozu?"
2024-02-06 21:11:11 +01:00
},
"render": {
2024-02-20 13:33:38 +01:00
"en": "{aerialway:occupancy} people fit a single carriage",
2024-06-16 16:06:26 +02:00
"de": "{aerialway:occupancy} Leute passen in eine Kabine",
2024-09-30 18:18:53 +02:00
"pl": "{aerialway:occupancy} osób mieści się w jednym wagonie",
"cs": "{aerialway:occupancy} osob se vejde do jednoho vozu"
2024-02-06 21:11:11 +01:00
}
},
"opening_hours",
{
"id": "oneway",
"question": {
2024-02-23 00:41:24 +01:00
"en": "In what direction can this aerialway be taken?",
2024-09-30 18:18:53 +02:00
"de": "In welche Richtung kann diese Seilbahn genutzt werden?",
"cs": "Jakým směrem tato dráha může vést?"
},
"mappings": [
{
"if": "oneway=yes",
"alsoShowIf": "oneway=",
"then": {
2024-02-23 00:41:24 +01:00
"en": "This aerialway can only be taken to the top",
2024-09-30 18:18:53 +02:00
"de": "Diese Seilbahn kann nur nach oben gefahren werden",
"cs": "Touto lanovkou lze vyjet pouze na vrchol"
}
},
{
"if": "oneway=no",
"then": {
2024-02-23 00:41:24 +01:00
"en": "This aerialway can be taken in both directions",
2024-09-30 18:18:53 +02:00
"de": "Diese Seilbahn kann in beide Richtungen befahren werden",
"cs": "Tuto dráhu lze využít v obou směrech"
2024-02-20 13:33:38 +01:00
}
}
]
},
2024-01-30 19:41:26 +01:00
{
"id": "length",
"render": {
2024-02-20 13:33:38 +01:00
"en": "This aerialway is {_length:km} kilometer long",
2024-04-12 13:59:32 +02:00
"de": "Die Seilbahn hat eine Länge von {_length:km} km",
2024-09-30 18:18:53 +02:00
"fr": "Cette voie aérienne fait {_length:km} kilomètre de long",
"cs": "Tato dráha je dlouhá {_length:km} kilometr"
2024-01-30 19:41:26 +01:00
}
}
],
"allowMove": false
2024-01-30 19:41:26 +01:00
}