Skip to content

Commit

Permalink
Fix :both beeing not conflated
Browse files Browse the repository at this point in the history
  • Loading branch information
wielandb authored and westnordost committed Oct 15, 2024
1 parent 51f6c9b commit 1308617
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ fun LeftAndRightCycleway.applyTo(tags: Tags, isLeftHandTraffic: Boolean) {
tags.expandSides("cycleway", "segregated", false)
tags.expandSides("sidewalk", "bicycle", false)
tags.expandSides("sidewalk", "bicycle:signed", false)
tags.expandSides("sidewalk", "oneway:bicycle", false)

applyOnewayNotForCyclists(tags)
left?.applyTo(tags, false, isLeftHandTraffic)
Expand All @@ -44,6 +45,7 @@ fun LeftAndRightCycleway.applyTo(tags: Tags, isLeftHandTraffic: Boolean) {
tags.mergeSides("cycleway", "segregated")
tags.mergeSides("sidewalk", "bicycle")
tags.mergeSides("sidewalk", "bicycle:signed")
tags.mergeSides("sidewalk", "oneway:bicycle")

// update check date
if (!tags.hasChanges || tags.hasCheckDateForKey("cycleway")) {
Expand Down

0 comments on commit 1308617

Please sign in to comment.