Standardize tagging, add items and translations

This commit is contained in:
Robin van der Linde 2023-09-25 09:24:55 +02:00
parent b20e887f9a
commit 144d203a5b
No known key found for this signature in database
GPG key ID: 53956B3252478F0D
4 changed files with 263 additions and 59 deletions

View file

@ -32,7 +32,9 @@
"mappings": [ "mappings": [
{ {
"if": "name~*", "if": "name~*",
"then": "Bicycle tube vending machine {name}" "then": {
"en": "Bicycle tube vending machine {name}"
}
} }
] ]
}, },
@ -70,8 +72,7 @@
}, },
"tags": [ "tags": [
"amenity=vending_machine", "amenity=vending_machine",
"vending=bicycle_tube", "vending=bicycle_tube"
"vending:bicycle_tube=yes"
] ]
} }
], ],
@ -176,65 +177,62 @@
"id": "Still in use?" "id": "Still in use?"
}, },
{ {
"question": "How much does a bicycle tube cost?", "question": {
"render": "A bicycle tube costs {charge}", "en": "How much does a bicycle tube cost?"
},
"render": {
"en": "A bicycle tube costs {charge}"
},
"freeform": { "freeform": {
"key": "charge" "key": "charge"
}, },
"id": "bicycle_tube_vending_machine-charge" "id": "bicycle_tube_vending_machine-charge"
}, },
"payment-options-split",
{ {
"id": "vending-machine-payment-methods", "question": {
"question": "How can one pay at this tube vending machine?", "en": "Which brand of tubes are sold here?"
"mappings": [ },
{
"if": "payment:coins=yes",
"ifnot": "payment:coins=no",
"then": "Payment with coins is possible"
},
{
"if": "payment:notes=yes",
"ifnot": "payment:notes=no",
"then": "Payment with notes is possible"
},
{
"if": "payment:cards=yes",
"ifnot": "payment:cards=no",
"then": "Payment with cards is possible"
}
],
"multiAnswer": true
},
{
"question": "Which brand of tubes are sold here?",
"freeform": { "freeform": {
"key": "brand" "key": "brand"
}, },
"render": "{brand} tubes are sold here", "render": {
"en": "{brand} tubes are sold here"
},
"mappings": [ "mappings": [
{ {
"if": "brand=Continental", "if": "brand=Continental",
"then": "Continental tubes are sold here" "then": {
"en": "Continental tubes are sold here"
}
}, },
{ {
"if": "brand=Schwalbe", "if": "brand=Schwalbe",
"then": "Schwalbe tubes are sold here" "then": {
"en": "Schwalbe tubes are sold here"
}
} }
], ],
"multiAnswer": true, "multiAnswer": true,
"id": "bicycle_tube_vending_machine-brand" "id": "bicycle_tube_vending_machine-brand"
}, },
{ {
"question": "Who maintains this vending machine?", "question": {
"en": "Who maintains this vending machine?"
},
"render": "This vending machine is maintained by {operator}", "render": "This vending machine is maintained by {operator}",
"mappings": [ "mappings": [
{ {
"if": "operator=Schwalbe", "if": "operator=Schwalbe",
"then": "Maintained by Schwalbe" "then": {
"en": "Maintained by Schwalbe"
}
}, },
{ {
"if": "operator=Continental", "if": "operator=Continental",
"then": "Maintained by Continental" "then": {
"en": "Maintained by Continental"
}
} }
], ],
"freeform": { "freeform": {
@ -243,33 +241,52 @@
"id": "bicycle_tube_vending_machine-operator" "id": "bicycle_tube_vending_machine-operator"
}, },
{ {
"id": "bicycle_tube_vending_maching-other-items", "id": "other-items-vending",
"question": "Are other bicycle bicycle accessories sold here?", "question": {
"en": "Are other biycle accessories sold here?"
},
"mappings": [ "mappings": [
{ {
"if": "vending:bicycle_light=yes", "if": "vending=bicycle_tube",
"ifnot": "vending:bicycle_light=no", "then": {
"then": "Bicycle lights are sold here" "en": "Bicycle inner tubes are sold here",
"nl": "Fietsbinnenbanden worden hier verkocht"
}
}, },
{ {
"if": "vending:gloves=yes", "if": "vending=bicycle_light",
"ifnot": "vending:gloves=no", "then": {
"then": "Gloves are sold here" "en": "Bicycle lights are sold here",
"nl": "Fietslampjes worden hier verkocht"
}
}, },
{ {
"if": "vending:bicycle_repair_kit=yes", "if": "vending=gloves",
"ifnot": "vending:bicycle_repair_kit=no", "then": {
"then": "Bicycle repair kits are sold here" "en": "Gloves are sold here",
"nl": "Handschoenen worden hier verkocht"
}
}, },
{ {
"if": "vending:bicycle_pump=yes", "if": "vending=bicycle_repair_kit",
"ifnot": "vending:bicycle_pump=no", "then": {
"then": "Bicycle pumps are sold here" "en": "Bicycle repair kits are sold here",
"nl": "Fietsreparatiesets worden hier verkocht"
}
}, },
{ {
"if": "vending:bicycle_lock=yes", "if": "vending=bicycle_pump",
"ifnot": "vending:bicycle_lock=no", "then": {
"then": "Bicycle locks are sold here" "en": "Bicycle pumps are sold here",
"nl": "Fietspompen worden hier verkocht"
}
},
{
"if": "vending=bicycle_lock",
"then": {
"en": "Bicycle locks are sold here",
"nl": "Fietssloten worden hier verkocht"
}
} }
], ],
"multiAnswer": true "multiAnswer": true

View file

@ -290,12 +290,39 @@
"icon": "./assets/themes/stations/public_transport_tickets.svg" "icon": "./assets/themes/stations/public_transport_tickets.svg"
}, },
{ {
"if": "vending=meat", "if": "vending=bicycle_light",
"then": { "then": {
"en": "Meat products are being sold", "en": "Bicycle lights are sold",
"nl": "Vleesproducten worden verkocht" "nl": "Fietslampjes worden verkocht"
}, }
"icon": "./assets/layers/id_presets/temaki-meat.svg" },
{
"if": "vending=gloves",
"then": {
"en": "Gloves are sold",
"nl": "Handschoenen worden verkocht"
}
},
{
"if": "vending=bicycle_repair_kit",
"then": {
"en": "Bicycle repair kits are sold",
"nl": "Fietsreparatiesets worden verkocht"
}
},
{
"if": "vending=bicycle_pump",
"then": {
"en": "Bicycle pumps are sold",
"nl": "Fietspompen worden verkocht"
}
},
{
"if": "vending=bicycle_lock",
"then": {
"en": "Bicycle locks are sold",
"nl": "Fietssloten worden verkocht"
}
} }
], ],
"multiAnswer": true "multiAnswer": true
@ -839,6 +866,41 @@
"question": { "question": {
"en": "Sale of public transport tickets" "en": "Sale of public transport tickets"
} }
},
{
"osmTags": "vending=bicycle_light",
"question": {
"en": "Sale of bicycle lights",
"nl": "Verkoop van fietslampjes"
}
},
{
"osmTags": "vending=gloves",
"question": {
"en": "Sale of gloves",
"nl": "Verkoop van handschoenen"
}
},
{
"osmTags": "vending=bicycle_repair_kit",
"question": {
"en": "Sale of bicycle repair kits",
"nl": "Verkoop van fietsreparatiesets"
}
},
{
"osmTags": "vending=bicycle_pump",
"question": {
"en": "Sale of bicycle pumps",
"nl": "Verkoop van fietspompen"
}
},
{
"osmTags": "vending=bicycle_lock",
"question": {
"en": "Sale of bicycle locks",
"nl": "Verkoop van fietssloten"
}
} }
] ]
} }

View file

@ -1034,9 +1034,61 @@
}, },
"question": "Is this vending machine still operational?", "question": "Is this vending machine still operational?",
"render": "The operational status is <i>{operational_status}</i>" "render": "The operational status is <i>{operational_status}</i>"
},
"bicycle_tube_vending_machine-brand": {
"mappings": {
"0": {
"then": "Continental tubes are sold here"
},
"1": {
"then": "Schwalbe tubes are sold here"
}
},
"question": "Which brand of tubes are sold here?",
"render": "{brand} tubes are sold here"
},
"bicycle_tube_vending_machine-charge": {
"question": "How much does a bicycle tube cost?",
"render": "A bicycle tube costs {charge}"
},
"bicycle_tube_vending_machine-operator": {
"mappings": {
"0": {
"then": "Maintained by Schwalbe"
},
"1": {
"then": "Maintained by Continental"
}
},
"question": "Who maintains this vending machine?"
},
"other-items-vending": {
"mappings": {
"0": {
"then": "Bicycle lights are sold here"
},
"1": {
"then": "Gloves are sold here"
},
"2": {
"then": "Bicycle repair kits are sold here"
},
"3": {
"then": "Bicycle pumps are sold here"
},
"4": {
"then": "Bicycle locks are sold here"
}
},
"question": "Are other biycle accessories sold here?"
} }
}, },
"title": { "title": {
"mappings": {
"0": {
"then": "Bicycle tube vending machine {name}"
}
},
"render": "Bicycle tube vending machine" "render": "Bicycle tube vending machine"
} }
}, },
@ -9910,6 +9962,21 @@
}, },
"20": { "20": {
"question": "Sale of public transport tickets" "question": "Sale of public transport tickets"
},
"21": {
"question": "Sale of bicycle lights"
},
"22": {
"question": "Sale of gloves"
},
"23": {
"question": "Sale of bicycle repair kits"
},
"24": {
"question": "Sale of bicycle pumps"
},
"25": {
"question": "Sale of bicycle locks"
} }
} }
} }
@ -10011,7 +10078,19 @@
"then": "Public transport tickets are sold" "then": "Public transport tickets are sold"
}, },
"20": { "20": {
"then": "Meat products are being sold" "then": "Bicycle lights are sold"
},
"21": {
"then": "Gloves are sold"
},
"22": {
"then": "Bicycle repair kits are sold"
},
"23": {
"then": "Bicycle pumps are sold"
},
"24": {
"then": "Bicycle locks are sold"
} }
}, },
"question": "What does this vending machine sell?", "question": "What does this vending machine sell?",

View file

@ -930,6 +930,25 @@
}, },
"question": "Is deze verkoopsautomaat nog steeds werkende?", "question": "Is deze verkoopsautomaat nog steeds werkende?",
"render": "Deze verkoopsautomaat is <i>{operational_status}</i>" "render": "Deze verkoopsautomaat is <i>{operational_status}</i>"
},
"other-items-vending": {
"mappings": {
"0": {
"then": "Fietslampjes worden hier verkocht"
},
"1": {
"then": "Handschoenen worden hier verkocht"
},
"2": {
"then": "Fietsreparatiesets worden hier verkocht"
},
"3": {
"then": "Fietspompen worden hier verkocht"
},
"4": {
"then": "Fietssloten worden hier verkocht"
}
}
} }
}, },
"title": { "title": {
@ -9056,6 +9075,21 @@
}, },
"17": { "17": {
"question": "Verkoop van bloemen" "question": "Verkoop van bloemen"
},
"21": {
"question": "Verkoop van fietslampjes"
},
"22": {
"question": "Verkoop van handschoenen"
},
"23": {
"question": "Verkoop van fietsreparatiesets"
},
"24": {
"question": "Verkoop van fietspompen"
},
"25": {
"question": "Verkoop van fietssloten"
} }
} }
} }
@ -9148,7 +9182,19 @@
"then": "Openbaar vervoerkaartjes worden verkocht" "then": "Openbaar vervoerkaartjes worden verkocht"
}, },
"20": { "20": {
"then": "Vleesproducten worden verkocht" "then": "Fietslampjes worden verkocht"
},
"21": {
"then": "Handschoenen worden verkocht"
},
"22": {
"then": "Fietsreparatiesets worden verkocht"
},
"23": {
"then": "Fietspompen worden verkocht"
},
"24": {
"then": "Fietssloten worden verkocht"
} }
}, },
"question": "Wat verkoopt deze verkoopautomaat?", "question": "Wat verkoopt deze verkoopautomaat?",