Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tactile_paving on crossing questions #194

Merged
merged 12 commits into from
Aug 9, 2023
64 changes: 64 additions & 0 deletions assets/datasets/question_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2844,6 +2844,70 @@
}
]
},
{
"question": {
"name": "Übergang-Bodenindikatoren",
"text": "Gibt es an beiden Seiten dieses Übergangs Bodenindikatoren?",
"description": "Bodenindikatoren dienen vor allem Sehbehinderten als Warnung vor abgesenkten Bordsteinen oder Straßenüberquerungen und verhindern so ein unbewusstes Betreten der Fahrbahn.",
"image": [
"assets/images/questions/tactile_paving_on_kerb.jpg"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Find an image for tactile paving on rails. I think @7h30n3 already has one.

]
},
"answer": {
"type": "Bool",
"input": [
{
"osm_tags": {
"tactile_paving": "yes"
}
},
{
"osm_tags": {
"tactile_paving": "no"
}
}
]
},
"conditions": [
{
"osm_tags": {
"railway": "tram_crossing",
"tactile_paving": false
},
"osm_element": "Node"
},
{
"osm_tags": {
"railway": "crossing",
"tactile_paving": false
},
"osm_element": "Node"
},
{
"osm_tags": {
"highway": "crossing",
"tactile_paving": false
},
"osm_element": "Node"
},
{
"osm_tags": {
"highway": "footway",
"footway": "crossing",
"tactile_paving": false
},
"osm_element": "OpenWay",
"!child": [
{
"osm_tags": {
"kerb": true
},
"osm_element": "Node"
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation is wrong.

]
}
]
},
{
"question": {
"name": "Verkehrsmittel",
Expand Down
Loading