Skip to content

Commit

Permalink
align re-check frequency for tactile paving with that of kerb height …
Browse files Browse the repository at this point in the history
…& less often (done in frame of #5883 although not that related)

because if it changes, it more likely happens at the same time. Also, with separate footway mapping, there are **many** kerbs.
  • Loading branch information
westnordost committed Oct 17, 2024
1 parent ba9131f commit fd86c79
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class AddCrossingKerbHeight : OsmElementQuestType<KerbHeight> {
and (
!kerb
or kerb ~ yes|unknown
or kerb !~ no|rolled and kerb older today -8 years
or kerb = raised and kerb older today -8 years
or kerb !~ no|rolled and kerb older today -12 years
)
""".toElementFilterExpression() }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ class AddKerbHeight : OsmElementQuestType<KerbHeight> {
nodes with
!kerb
or kerb ~ yes|unknown
or kerb !~ no|rolled and kerb older today -8 years
or kerb = raised and kerb older today -8 years
or kerb !~ no|rolled and kerb older today -12 years
""".toElementFilterExpression() }

override val changesetComment = "Determine the heights of kerbs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class AddTactilePavingBusStop : OsmFilterQuestType<Boolean>() {
and (
!tactile_paving
or tactile_paving = unknown
or tactile_paving = no and tactile_paving older today -4 years
or tactile_paving = yes and tactile_paving older today -8 years
or tactile_paving = no and tactile_paving older today -8 years
or tactile_paving = yes and tactile_paving older today -12 years
)
"""
override val changesetComment = "Specify whether public transport stops have tactile paving"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class AddTactilePavingCrosswalk : OsmElementQuestType<TactilePavingCrosswalkAnsw
and (
!tactile_paving
or tactile_paving = unknown
or tactile_paving ~ no|incorrect and tactile_paving older today -4 years
or tactile_paving = yes and tactile_paving older today -8 years
or tactile_paving ~ no|partial|incorrect and tactile_paving older today -8 years
or tactile_paving = yes and tactile_paving older today -12 years
)
""".toElementFilterExpression() }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class AddTactilePavingKerb : OsmElementQuestType<Boolean> {
nodes with
!tactile_paving
or tactile_paving = unknown
or tactile_paving = no and tactile_paving older today -4 years
or tactile_paving = yes and tactile_paving older today -8 years
or tactile_paving = no and tactile_paving older today -8 years
or tactile_paving = yes and tactile_paving older today -12 years
""".toElementFilterExpression() }

override val changesetComment = "Specify whether kerbs have tactile paving"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class AddTactilePavingSteps : OsmFilterQuestType<TactilePavingStepsAnswer>() {
and (
!tactile_paving
or tactile_paving = unknown
or tactile_paving ~ no|partial|incorrect and tactile_paving older today -4 years
or tactile_paving = yes and tactile_paving older today -8 years
or tactile_paving ~ no|partial|incorrect and tactile_paving older today -8 years
or tactile_paving = yes and tactile_paving older today -12 years
)
"""

Expand Down

0 comments on commit fd86c79

Please sign in to comment.