2021-09-06 01:35:08 +02:00
{
"id" : "charging_station" ,
"name" : {
"en" : "Charging stations" ,
"it" : "Stazioni di ricarica" ,
"ja" : "充電ステーション" ,
"nb_NO" : "Ladestasjoner" ,
"ru" : "Зарядные станции" ,
"zh_Hant" : "充電站"
} ,
"minzoom" : 10 ,
"source" : {
"osmTags" : {
2021-09-07 18:18:52 +02:00
"or" : [
"amenity=charging_station" ,
2021-09-07 21:03:29 +02:00
"disused:amenity=charging_station" ,
"planned:amenity=charging_station" ,
"construction:amenity=charging_station"
2021-09-06 01:35:08 +02:00
]
}
} ,
"title" : {
"render" : {
"en" : "Charging station" ,
"it" : "Stazione di ricarica" ,
"ja" : "充電ステーション" ,
"nb_NO" : "Ladestasjon" ,
"ru" : "Зарядная станция" ,
"zh_Hant" : "充電站"
}
} ,
"description" : {
"en" : "A charging station" ,
"it" : "Una stazione di ricarica" ,
"ja" : "充電ステーション" ,
"nb_NO" : "En ladestasjon" ,
"ru" : "Зарядная станция" ,
"zh_Hant" : "充電站"
} ,
"calculatedTags" : [
"motorcar=feat.properties.motorcar ?? feat.properties.car"
] ,
"tagRenderings" : [
"images" ,
{
"#" : "Type" ,
"question" : {
"en" : "Which vehicles are allowed to charge here?"
} ,
"multiAnswer" : true ,
"mappings" : [
{
"if" : "bicycle=yes" ,
"ifnot" : "bicycle=no" ,
"then" : {
"en" : "<b>bicycles</b> can be charged here"
}
} ,
{
"if" : "motorcar=yes" ,
"extraTags" : "car=" ,
"ifnot" : {
"and" : [
"car=" ,
"motorcar=no"
]
} ,
"then" : {
"en" : "<b>Cars</b> can be charged here"
}
} ,
{
"if" : "scooter=yes" ,
"ifnot" : "scooter=no" ,
"then" : {
"en" : "<b>Scooters</b> can be charged here"
}
} ,
{
"if" : "hgv=yes" ,
"ifnot" : "hgv=no" ,
"then" : {
"en" : "<b>Heavy good vehicles</b> (such as trucks) can be charged here"
}
} ,
{
"if" : "bus=yes" ,
"ifnot" : "bus=no" ,
"then" : {
"en" : "<b>Buses</b> can be charged here"
}
}
]
} ,
{
"question" : "Who is allowed to use this charging station?" ,
"render" : "Access is {access}" ,
"freeform" : {
"key" : "access" ,
"addExtraTags" : [
"fixme=Freeform field used for access - doublecheck the value"
]
} ,
"mappings" : [
{
"if" : "access=yes" ,
"then" : "Anyone can use this charging station (payment might be needed)"
} ,
{
"if" : {
"or" : [
"access=permissive" ,
"access=public"
]
} ,
"then" : "Anyone can use this charging station (payment might be needed)" ,
"hideInAnswer" : true
} ,
{
"if" : "access=customers" ,
"then" : "Only customers of the place this station belongs to can use this charging station<br/><span class='subtle'>E.g. a charging station operated by hotel which is only usable by their guests</span> "
} ,
{
"if" : "access=private" ,
"then" : "Not accessible to the general public (e.g. only accessible to the owners, employees, ...)"
}
]
} ,
{
"#" : "capacity" ,
"render" : {
"en" : "{capacity} vehicles can be charged here at the same time"
} ,
"question" : {
"en" : "How much vehicles can be charged here at the same time?"
} ,
"freeform" : {
"key" : "capacity" ,
"type" : "pnat"
}
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "Which charging stations are available here?"
} ,
"multiAnswer" : true ,
"mappings" : [
{
"if" : "socket:schuko=1" ,
"ifnot" : "socket:schuko=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/CEE7_4F.svg'/> <b>Schuko wall plug</b> without ground pin (CEE7/4 type F)" ,
"hideInAnswer" : {
"or" : [
2021-09-07 18:18:52 +02:00
"_country!=be"
2021-09-06 02:17:28 +02:00
]
}
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:schuko~*" ,
"socket:schuko!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/CEE7_4F.svg'/> <b>Schuko wall plug</b> without ground pin (CEE7/4 type F)" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:typee=1" ,
"ifnot" : "socket:typee=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/TypeE.svg'/> <b>European wall plug</b> with ground pin (CEE7/4 type E)"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:typee~*" ,
"socket:typee!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/TypeE.svg'/> <b>European wall plug</b> with ground pin (CEE7/4 type E)" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:chademo=1" ,
"ifnot" : "socket:chademo=" ,
2021-09-07 18:18:52 +02:00
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Chademo_type4.svg'/> <b>Chademo</b>"
2021-09-06 02:17:28 +02:00
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:chademo~*" ,
"socket:chademo!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Chademo_type4.svg'/> <b>Chademo</b>" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:type1_cable=1" ,
"ifnot" : "socket:type1_cable=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> <b>Type 1 with cable</b> (J1772)"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:type1_cable~*" ,
"socket:type1_cable!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> <b>Type 1 with cable</b> (J1772)" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:type1=1" ,
"ifnot" : "socket:type1=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> <b>Type 1 <i>without</i> cable</b> (J1772)"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:type1~*" ,
"socket:type1!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> <b>Type 1 <i>without</i> cable</b> (J1772)" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:type1_combo=1" ,
"ifnot" : "socket:type1_combo=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1-ccs.svg'/> <b>Type 1 CCS</b> (aka Type 1 Combo)"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:type1_combo~*" ,
"socket:type1_combo!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1-ccs.svg'/> <b>Type 1 CCS</b> (aka Type 1 Combo)" ,
"hideInAnswer" : true
} ,
2021-09-06 02:17:28 +02:00
{
"if" : "socket:tesla_supercharger=1" ,
"ifnot" : "socket:tesla_supercharger=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <b>Tesla Supercharger</b>"
2021-09-07 18:18:52 +02:00
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:tesla_supercharger~*" ,
"socket:tesla_supercharger!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <b>Tesla Supercharger</b>" ,
"hideInAnswer" : true
} ,
2021-09-07 18:18:52 +02:00
{
"if" : "socket:type2=1" ,
"ifnot" : "socket:type2=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_socket.svg'/> <b>Type 2</b> (mennekes)"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"and" : [
"socket:type2~*" ,
"socket:type2!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_socket.svg'/> <b>Type 2</b> (mennekes)" ,
"hideInAnswer" : true
} ,
2021-09-07 18:18:52 +02:00
{
"if" : "socket:type2_combo=1" ,
"ifnot" : "socket:type2_combo=" ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_CCS.svg'/> <b>Type 2 CCS</b> (mennekes)"
2021-09-07 21:03:29 +02:00
} ,
{
"if" : {
"and" : [
"socket:type2_combo~*" ,
"socket:type2_combo!=1"
]
} ,
"then" : "<img style='width:3rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_CCS.svg'/> <b>Type 2 CCS</b> (mennekes)" ,
"hideInAnswer" : true
2021-09-06 02:17:28 +02:00
}
]
} ,
2021-09-06 01:35:08 +02:00
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/CEE7_4F.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:schuko}</b> <img style='width:1rem' src='./assets/layers/charging_station/CEE7_4F.svg'/> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:schuko" ,
"type" : "pnat"
} ,
"condition" : "socket:schuko~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/TypeE.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:typee}</b> <img style='width:1rem' src='./assets/layers/charging_station/TypeE.svg'/> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:typee" ,
"type" : "pnat"
} ,
"condition" : "socket:typee~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
2021-09-07 18:18:52 +02:00
"en" : "How much plugs of type <b>Chademo</b> <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Chademo_type4.svg'/> are available here?"
2021-09-06 02:17:28 +02:00
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:chademo}</b> <img style='width:1rem' src='./assets/layers/charging_station/Chademo_type4.svg'/> plugs of type <b>Chademo</b> available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:chademo" ,
"type" : "pnat"
} ,
"condition" : "socket:chademo~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>Type 1 with cable</b> (J1772) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:type1_cable}</b> <img style='width:1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> plugs of type <b>Type 1 with cable</b> (J1772) available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:type1_cable" ,
"type" : "pnat"
} ,
"condition" : "socket:type1_cable~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:type1}</b> <img style='width:1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:type1" ,
"type" : "pnat"
} ,
"condition" : "socket:type1~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type1-ccs.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:type1_combo}</b> <img style='width:1rem' src='./assets/layers/charging_station/Type1-ccs.svg'/> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:type1_combo" ,
"type" : "pnat"
} ,
"condition" : "socket:type1_combo~*"
2021-09-06 01:35:08 +02:00
} ,
{
2021-09-06 02:17:28 +02:00
"question" : {
"en" : "How much plugs of type <b>Tesla Supercharger</b> <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:tesla_supercharger}</b> <img style='width:1rem' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> plugs of type <b>Tesla Supercharger</b> available here" ,
2021-09-06 02:17:28 +02:00
"freeform" : {
"key" : "socket:tesla_supercharger" ,
"type" : "pnat"
} ,
"condition" : "socket:tesla_supercharger~*"
} ,
2021-09-07 18:18:52 +02:00
{
"question" : {
"en" : "How much plugs of type <b>Type 2</b> (mennekes) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_socket.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:type2}</b> <img style='width:1rem' src='./assets/layers/charging_station/Type2_socket.svg'/> plugs of type <b>Type 2</b> (mennekes) available here" ,
2021-09-07 18:18:52 +02:00
"freeform" : {
"key" : "socket:type2" ,
"type" : "pnat"
} ,
"condition" : "socket:type2~*"
} ,
{
"question" : {
"en" : "How much plugs of type <b>Type 2 CCS</b> (mennekes) <img style='width:1rem; margin-left: 1rem; margin-right: 1rem' src='./assets/layers/charging_station/Type2_CCS.svg'/> are available here?"
} ,
2021-09-07 21:03:29 +02:00
"render" : "There are <b>{socket:type2_combo}</b> <img style='width:1rem' src='./assets/layers/charging_station/Type2_CCS.svg'/> plugs of type <b>Type 2 CCS</b> (mennekes) available here" ,
2021-09-07 18:18:52 +02:00
"freeform" : {
"key" : "socket:type2_combo" ,
"type" : "pnat"
} ,
"condition" : "socket:type2_combo~*"
} ,
2021-09-06 01:35:08 +02:00
{
"#" : "Authentication" ,
"question" : {
"en" : "What kind of authentication is available at the charging station?" ,
"it" : "Quali sono gli orari di apertura di questa stazione di ricarica?" ,
"ja" : "この充電ステーションはいつオープンしますか?" ,
"nb_NO" : "Når åpnet denne ladestasjonen?" ,
"ru" : "В какое время работает эта зарядная станция?" ,
"zh_Hant" : "何時是充電站開放使用的時間?"
} ,
"multiAnswer" : true ,
"mappings" : [
{
"if" : "authentication:membership_card=yes" ,
"ifnot" : "authentication:membership_card=no" ,
"then" : {
"en" : "Authentication by a membership card"
}
} ,
{
"if" : "authentication:app=yes" ,
"ifnot" : "authentication:app=no" ,
"then" : {
"en" : "Authentication by an app"
}
} ,
{
"if" : "authentication:phone_call=yes" ,
"ifnot" : "authentication:phone_call=no" ,
"then" : {
"en" : "Authentication via phone call is available"
}
} ,
{
"if" : "authentication:short_message=yes" ,
"ifnot" : "authentication:short_message=no" ,
"then" : {
"en" : "Authentication via phone call is available"
}
} ,
{
"if" : "authentication:nfc=yes" ,
"ifnot" : "authentication:nfc=no" ,
"then" : {
"en" : "Authentication via NFC is available"
}
} ,
{
"if" : "authentication:money_card=yes" ,
"ifnot" : "authentication:money_card=no" ,
"then" : {
"en" : "Authentication via Money Card is available"
}
} ,
{
"if" : "authentication:debit_card=yes" ,
"ifnot" : "authentication:debit_card=no" ,
"then" : {
"en" : "Authentication via debit card is available"
}
} ,
{
"if" : "authentication:none=yes" ,
"ifnot" : "authentication:none=no" ,
"then" : {
"en" : "No authentication is needed"
}
}
]
} ,
{
"#" : "Auth phone" ,
"render" : {
"en" : "Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>" ,
"it" : "{network}" ,
"ja" : "{network}" ,
"nb_NO" : "{network}" ,
"ru" : "{network}" ,
"zh_Hant" : "{network}"
} ,
"question" : {
"en" : "What's the phone number for authentication call or SMS?" ,
"it" : "A quale rete appartiene questa stazione di ricarica?" ,
"ja" : "この充電ステーションの運営チェーンはどこですか?" ,
"ru" : "К какой сети относится эта станция?" ,
"zh_Hant" : "充電站所屬的網路是?"
} ,
"freeform" : {
"key" : "authentication:phone_call:number" ,
"type" : "phone"
} ,
"condition" : {
"or" : [
"authentication:phone_call=yes" ,
"authentication:short_message=yes"
]
} ,
"it" : {
"0" : {
"then" : "Non appartiene a una rete"
}
} ,
"ja" : {
"0" : {
"then" : "大規模な運営チェーンの一部ではない"
}
} ,
"ru" : {
"0" : {
"then" : "Н е является частью более крупной сети"
}
} ,
"zh_Hant" : {
"0" : {
"then" : "不屬於大型網路"
}
}
} ,
{
"#" : "OH" ,
"render" : "{opening_hours_table(opening_hours)}" ,
"freeform" : {
"key" : "opening_hours" ,
"type" : "opening_hours"
} ,
"question" : {
"en" : "When is this charging station opened?"
} ,
"mappings" : [
{
"if" : "opening_hours=24/7" ,
"then" : {
"en" : "24/7 opened (including holidays)"
}
}
]
} ,
{
"#" : "Network" ,
"render" : {
"en" : "Part of the network <b>{network}</b>"
} ,
"question" : {
"en" : "Is this charging station part of a network?"
} ,
"freeform" : {
"key" : "network"
} ,
"mappings" : [
{
2021-09-07 21:03:29 +02:00
"if" : "no:network=yes" ,
2021-09-06 01:35:08 +02:00
"then" : {
"en" : "Not part of a bigger network"
}
} ,
{
2021-09-07 21:03:29 +02:00
"if" : "network=none" ,
"then" : {
"en" : "Not part of a bigger network"
2021-09-06 01:35:08 +02:00
} ,
2021-09-07 21:03:29 +02:00
"hideInAnswer" : true
} ,
{
"if" : "network=AeroVironment" ,
2021-09-06 01:35:08 +02:00
"then" : "AeroVironment"
} ,
{
2021-09-07 21:03:29 +02:00
"if" : "network=Blink" ,
2021-09-06 01:35:08 +02:00
"then" : "Blink"
} ,
{
2021-09-07 21:03:29 +02:00
"if" : "network=eVgo" ,
2021-09-06 01:35:08 +02:00
"then" : "eVgo"
}
]
} ,
{
"#" : "Operator" ,
"question" : "Who is the operator of this charging station?" ,
"render" : "This charging station is operated by {operator}" ,
"freeform" : {
"key" : "operator"
} ,
"mappings" : [
{
"if" : {
"and" : [
"network:={operator}"
]
} ,
"then" : "Actually, {operator} is the network" ,
"addExtraTags" : [
"operator="
] ,
"hideInAnswer" : "operator="
}
]
2021-09-07 18:18:52 +02:00
} ,
2021-09-07 21:03:29 +02:00
{
"#" : "phone" ,
"question" : {
"en" : "What number can one call if there is a problem with this charging station?"
} ,
"render" : {
"en" : "In case of problems, call <a href='tel:{phone}'>{phone}</a>"
} ,
"freeform" : {
"key" : "phone" ,
"type" : "phone"
}
} ,
{
"#" : "email" ,
"question" : {
"en" : "What is the email address of the operator?"
} ,
"render" : {
"en" : "In case of problems, send an email to <a href='mailto:{email}'>{email}</a>"
} ,
"freeform" : {
"key" : "email" ,
"type" : "email"
}
} ,
{
"#" : "website" ,
"question" : {
"en" : "What is the website of the operator?"
} ,
"render" : {
"en" : "More info on <a href='{website}'>{website}</a>"
} ,
"freeform" : {
"key" : "website" ,
"type" : "url"
}
} ,
2021-09-08 02:00:49 +02:00
"level" ,
2021-09-07 21:03:29 +02:00
{
"#" : "ref" ,
"question" : {
"en" : "What is the reference number of this charging station?"
} ,
"render" : "Reference number is <b>{ref}</b>" ,
"freeform" : {
"key" : "ref"
}
} ,
2021-09-07 18:18:52 +02:00
{
"#" : "Operational status" ,
"question" : {
"en" : "Is this charging point in use?" ,
"nl" : "Is dit oplaadpunt operationeel?"
} ,
"mappings" : [
{
2021-09-07 21:03:29 +02:00
"if" : "operational_status=broken" ,
2021-09-07 18:18:52 +02:00
"then" : {
2021-09-07 21:03:29 +02:00
"en" : "This charging station is broken" ,
"nl" : "Dit oplaadpunt is kapot"
2021-09-07 18:18:52 +02:00
}
} ,
{
2021-09-07 21:03:29 +02:00
"if" : {
"and" : [
"planned:amenity=charging_station" ,
"amenity="
]
} ,
2021-09-07 18:18:52 +02:00
"then" : {
2021-09-07 21:03:29 +02:00
"en" : "A charging station is planned here" ,
"nl" : "Hier zal binnenkort een oplaadpunt gebouwd worden"
}
} ,
{
"if" : {
"and" : [
"construction:amenity=charging_station" ,
"amenity="
]
} ,
"then" : {
"en" : "A charging station is constructed here" ,
"nl" : "Hier wordt op dit moment een oplaadpunt gebouwd"
2021-09-07 18:18:52 +02:00
}
} ,
{
"if" : {
"and" : [
"disused:amenity=charging_station" ,
"amenity="
]
} ,
"then" : {
"en" : "This charging station has beed permanently disabled and is not in use anymore but is still visible" ,
"nl" : "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig"
}
2021-09-07 21:03:29 +02:00
} ,
{
"if" : "amenity=charging_station" ,
"then" : {
"en" : "This charging station works" ,
"nl" : "Dit oplaadpunt werkt"
}
2021-09-07 18:18:52 +02:00
}
]
2021-09-06 01:35:08 +02:00
}
] ,
"icon" : {
"render" : "pin:#fff;./assets/themes/charging_stations/plug.svg" ,
"mappings" : [
{
"if" : "bicycle=yes" ,
"then" : "pin:#fff;./assets/themes/charging_stations/bicycle.svg"
} ,
{
"if" : {
"or" : [
"car=yes" ,
"motorcar=yes"
]
} ,
"then" : "pin:#fff;./assets/themes/charging_stations/car.svg"
}
]
} ,
"iconOverlays" : [
2021-09-07 18:18:52 +02:00
{
"if" : {
"or" : [
"disused:amenity=charging_station" ,
"operational_status=broken"
]
} ,
"then" : "cross_bottom_right:#c22;"
} ,
2021-09-07 21:03:29 +02:00
{
"if" : {
"or" : [
"proposed:amenity=charging_station" ,
"planned:amenity=charging_station"
]
} ,
"then" : "./assets/layers/charging_station/under_construction.svg" ,
"badge" : true
} ,
2021-09-06 01:35:08 +02:00
{
"if" : {
"and" : [
"bicycle=yes" ,
{
"or" : [
"motorcar=yes" ,
"car=yes"
]
}
]
} ,
"then" : "circle:#fff;./assets/themes/charging_stations/car.svg" ,
"badge" : true
}
] ,
"width" : {
"render" : "8"
} ,
"iconSize" : {
"render" : "50,50,bottom"
} ,
"color" : {
"render" : "#00f"
} ,
"presets" : [
{
"tags" : [
"amenity=charging_station"
] ,
"title" : {
"en" : "Charging station"
}
}
] ,
2021-09-06 21:56:48 +02:00
"wayHandling" : 1 ,
"filter" : [
{
"options" : [
{
"question" : {
"en" : "All vehicle types" ,
"nl" : "Alle voertuigen"
}
} ,
{
"question" : {
"en" : "Charging station for bicycles" ,
"nl" : "Oplaadpunten voor fietsen"
} ,
"osmTags" : "bicycle=yes"
} ,
{
"question" : {
"en" : "Charging station for cars" ,
"nl" : "Oplaadpunten voor auto's"
} ,
"osmTags" : {
"or" : [
"car=yes" ,
2021-09-07 18:18:52 +02:00
"motorcar=yes"
2021-09-06 21:56:48 +02:00
]
}
}
]
} ,
2021-09-07 21:03:29 +02:00
{
"options" : [
{
"question" : {
"en" : "Only working charging stations"
} ,
"osmTags" : {
"and" : [
"operational_status!=broken" ,
"amenity=charging_station"
]
}
}
]
} ,
2021-09-06 21:56:48 +02:00
{
"options" : [
{
"question" : "All connectors"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) <img style='width:1rem' src='./assets/layers/charging_station/CEE7_4F.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:schuko~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>European wall plug</b> with ground pin (CEE7/4 type E) <img style='width:1rem' src='./assets/layers/charging_station/TypeE.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:typee~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Chademo</b> <img style='width:1rem' src='./assets/layers/charging_station/Chademo_type4.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:chademo~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Type 1 with cable</b> (J1772) <img style='width:1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:type1_cable~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Type 1 <i>without</i> cable</b> (J1772) <img style='width:1rem' src='./assets/layers/charging_station/Type1_J1772.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:type1~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Type 1 CCS</b> (aka Type 1 Combo) <img style='width:1rem' src='./assets/layers/charging_station/Type1-ccs.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:type1_combo~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Tesla Supercharger</b> <img style='width:1rem' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> connector" ,
2021-09-06 21:56:48 +02:00
"osmTags" : "socket:tesla_supercharger~*"
2021-09-07 18:18:52 +02:00
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Type 2</b> (mennekes) <img style='width:1rem' src='./assets/layers/charging_station/Type2_socket.svg'/> connector" ,
2021-09-07 18:18:52 +02:00
"osmTags" : "socket:type2~*"
} ,
{
2021-09-07 21:03:29 +02:00
"question" : "Has a <b>Type 2 CCS</b> (mennekes) <img style='width:1rem' src='./assets/layers/charging_station/Type2_CCS.svg'/> connector" ,
2021-09-07 18:18:52 +02:00
"osmTags" : "socket:type2_combo~*"
2021-09-06 21:56:48 +02:00
}
]
}
]
2021-09-06 02:17:28 +02:00
}