Skip to content

Commit

Permalink
fix regression that app asks for cycleways in 30 zone (#2448)
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Jan 8, 2021
1 parent d2ea6f1 commit 006ce44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ val MAXSPEED_TYPE_KEYS = listOf(
"source:maxspeed",
"zone:maxspeed",
"maxspeed:type",
"zone:traffic",
"maxspeed"
"zone:traffic"
)

const val SURVEY_MARK_KEY = "check_date"
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AddWayLit : OsmFilterQuestType<String>() {
or highway ~ ${LIT_NON_RESIDENTIAL_ROADS.joinToString("|")} and
(
sidewalk ~ both|left|right|yes|separate
or ~${MAXSPEED_TYPE_KEYS.joinToString("|")} ~ .*urban|.*zone.*
or ~${(MAXSPEED_TYPE_KEYS + "maxspeed").joinToString("|")} ~ .*urban|.*zone.*
)
or highway ~ ${LIT_WAYS.joinToString("|")}
or highway = path and (foot = designated or bicycle = designated)
Expand Down

0 comments on commit 006ce44

Please sign in to comment.