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 elevator questions #271

Merged
merged 43 commits into from
Jul 22, 2024
Merged
Changes from 2 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
9069b35
Add elevator questions
wielandb Jul 1, 2024
3fb4f8b
Add german strings
wielandb Jul 1, 2024
397dde5
Remove nonexistent images
wielandb Jul 2, 2024
1cc9c1a
Make !parent a sibling condition to osm_tags
wielandb Jul 9, 2024
f951672
Add comma
wielandb Jul 9, 2024
1938fd1
Add comma
wielandb Jul 9, 2024
46390aa
Add comma
wielandb Jul 9, 2024
14a0b0f
Fix string reference
wielandb Jul 9, 2024
f9c2444
Update min height
wielandb Jul 9, 2024
eb1c3fc
Update min height
wielandb Jul 9, 2024
e6ccf6c
Fix wrong tags beeing written
wielandb Jul 9, 2024
d01ccde
remove unit from strings
wielandb Jul 9, 2024
5bae3e4
Update strings
wielandb Jul 9, 2024
45bda99
Update de.arb
wielandb Jul 9, 2024
e014988
Update de.arb
wielandb Jul 9, 2024
5d0974a
Update de.arb
wielandb Jul 9, 2024
a0e7306
Update en.arb
wielandb Jul 9, 2024
f9d03e5
Update en.arb
wielandb Jul 9, 2024
19278e4
Update en.arb
wielandb Jul 9, 2024
d651445
Update en.arb
wielandb Jul 9, 2024
778cd98
Increase min diameter
wielandb Jul 9, 2024
b1c691e
Update en.arb
wielandb Jul 9, 2024
5e85fe4
Update en.arb
wielandb Jul 9, 2024
6efc96f
Update en.arb
wielandb Jul 9, 2024
b2cc89f
Use centimeter as units
wielandb Jul 9, 2024
a7e1826
Fix missing comma
wielandb Jul 10, 2024
b188cd6
Make units actually cm
wielandb Jul 10, 2024
95771c0
Fix breaking typo
wielandb Jul 10, 2024
54e82d3
Update en.arb
wielandb Jul 10, 2024
783886a
Update en.arb
wielandb Jul 10, 2024
63e194b
Update en.arb
wielandb Jul 10, 2024
a079e09
Update en.arb
wielandb Jul 10, 2024
0b782ff
Update en.arb
wielandb Jul 10, 2024
3ff62c9
Add space before meters
wielandb Jul 10, 2024
382494b
Explement shape= question, only ask for rectangular elevators
wielandb Jul 11, 2024
acc0eea
Change minmax values
wielandb Jul 15, 2024
a253a5f
Add a comment
wielandb Jul 15, 2024
7e4f66c
Update translations
wielandb Jul 15, 2024
ec24d09
Tighten conditions for elevator door width
wielandb Jul 18, 2024
56b9922
Expand door:* conditions
wielandb Jul 18, 2024
cb72202
Update assets/question_catalog/definition.json
wielandb Jul 22, 2024
386671e
Update assets/question_catalog/definition.json
wielandb Jul 22, 2024
fe58e7f
Move elevator questions to other elevator questions
wielandb Jul 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 34 additions & 13 deletions assets/question_catalog/definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -4224,19 +4224,31 @@
"highway": "elevator",
"door:width": false
},
"osm_element": ["Node", "ClosedWay"],
"!parent": [
wielandb marked this conversation as resolved.
Show resolved Hide resolved
{
"child": [
{
"osm_tags": {
"indoor": "door"
}
}
]
}
]
}
]
{
"osm_element": ["OpenWay", "ClosedWay"],
wielandb marked this conversation as resolved.
Show resolved Hide resolved
"child": [
{
"osm_tags": {
"indoor": "door",
"door":"sliding",
"automatic_door": ["yes", "button"]
}
}
]
}
],
"!child": [
{
"osm_tags": {
"door": ["yes", "sliding"]
}
}
]
}
],
"$comment": "The condition is trying to make sure that there is no separately mapped elevator door by excluding the question if another door with elevator-door-like properties is on the same footway as the elevator. It also excludes children of the elevator object in case the door is mapped as a node on the elevator way."
},
{
"question":{
Expand Down Expand Up @@ -4269,8 +4281,10 @@
"highway": "elevator",
"door:height": false
},
"osm_element": ["Node", "ClosedWay"],
"!parent": [
{
"osm_element": ["OpenWay", "ClosedWay"],
wielandb marked this conversation as resolved.
Show resolved Hide resolved
"child": [
{
"osm_tags": {
Expand All @@ -4281,9 +4295,16 @@
}
]
}
],
"!child": [
{
"osm_tags": {
"door": ["yes", "sliding"]
}
}
]
}
],
"$comment": "The condition is trying to make sure that there is no separately mapped elevator door by excluding the question if another door with elevator-door-like properties is on the same footway as the elevator."
"$comment": "The condition is trying to make sure that there is no separately mapped elevator door by excluding the question if another door with elevator-door-like properties is on the same footway as the elevator. It also excludes children of the elevator object in case the door is mapped as a node on the elevator way."
}
]
Loading