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
109 changes: 109 additions & 0 deletions assets/datasets/question_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2844,6 +2844,115 @@
}
]
},
{
"question": {
"name": "Übergang-Bodenindikatoren (Straßenbahn)",
"text": "Gibt es an beiden Seiten dieses Straßenbahn-Ü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",
"parent": [
{
"!child": [
{
"osm_tags": {
"kerb": true
},
"osm_element": "Node"
}
]
}
]
}
]
},
{
"question": {
"name": "Übergangs-Bodenindikatoren (ALLE)",
"text": "Gibt es an beiden Enden dieses Übergangsweges Bodenindikatoren?",
Copy link
Member

Choose a reason for hiding this comment

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

Move the important key word at the start of the question, e.g.:
"Gibt es Bodenindikatoren an beiden Enden des Übergangs?"

"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"
]
},
"answer": {
"type": "Bool",
"input": [
{
"osm_tags": {
"tactile_paving": "yes"
}
},
{
"osm_tags": {
"tactile_paving": "no"
}
}
]
},
"conditions": [
{
"osm_tags": {
"highway": "footway",
"footway": "crossing",
"tactile_paving": false
},
"osm_element": "OpenWay",
"!child": [
{
"osm_tags": {
"kerb": true
},
"osm_element": "Node"
},
{
"osm_tags": {
"highway": "crossing"
},
"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.

formatting

},
{
"osm_tags": {
"highway": "crossing",
"tactile_paving": false
},
"osm_element": "Node"
},
{
"osm_tags": {
"railway": "crossing",
"tactile_paving": false
},
"osm_element": "Node"
}
]
},
{
"question": {
"name": "Verkehrsmittel",
Expand Down
Loading