-
Notifications
You must be signed in to change notification settings - Fork 13
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
Robbendebiene
merged 12 commits into
OPENER-next:master
from
wielandb:crossing-tactile-paving
Aug 9, 2023
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0a01e0d
Add tactile paving on crossings question
wielandb 14ba28c
Add questions for rail and street crossings
wielandb 3b2864b
Add question for `footway=crossing`
wielandb 56fe09d
Correct condition for `footway=crossing`
wielandb 1e7c82a
Dexomplexify question
wielandb ce41ee9
Remove (ALLE)
wielandb bcddb0e
crossing way is now allowed to have a crossing Node child
wielandb e203fbd
Collapse all crossing-tactile-paving-questions into one
wielandb fb8cce5
Remove footway=crossing from crossing question
wielandb b728245
Reword question
wielandb 3b9279d
Combine conditions and add new image
7h30n3 0125073
Add image for rail crossing
7h30n3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2844,6 +2844,109 @@ | |
} | ||
] | ||
}, | ||
{ | ||
"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" | ||
] | ||
}, | ||
"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", | ||
"text": "Gibt es an beiden Enden dieses Übergangsweges Bodenindikatoren?", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.: |
||
"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" | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indentation is wrong. |
||
] | ||
}, | ||
{ | ||
"osm_tags": { | ||
"highway": "crossing", | ||
"tactile_paving": false | ||
}, | ||
"osm_element": "Node" | ||
}, | ||
{ | ||
"osm_tags": { | ||
"railway": "crossing", | ||
"tactile_paving": false | ||
}, | ||
"osm_element": "Node" | ||
} | ||
] | ||
}, | ||
{ | ||
"question": { | ||
"name": "Verkehrsmittel", | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.