Skip to content

Commit

Permalink
add TODO: unexpected_bicycle_access_on_footway
Browse files Browse the repository at this point in the history
  • Loading branch information
rush42 committed Oct 7, 2024
1 parent acfee69 commit 16dd97d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion processing/topics/roads_bikelanes/bikelanes/BikelaneTodos.lua
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ local deprecated_cycleway_shared = BikelaneTodo.new({
end
})

local unexpected_bicycle_access_on_footway = BikelaneTodo.new({
id = "unexpected_bicycle_access_on_footway",
desc = "Expected `highway=path+bicycle=designated` (informal/explicit DE:240)" ..
"or `highway=footway+bicycle=yes` (informal/explicit DE:239,1022-10);"..
" Add traffic_sign=none to specify unsigned path.",
conditions = function(objectTags, resultTags)
if objectTags.highway == 'footway' and objectTags.bicycle == 'designated' and resultTags.category == 'needsClarification' then
return true
end
end
})

BikelaneTodos = {
missing_traffic_sign,
Expand All @@ -163,5 +174,6 @@ BikelaneTodos = {
missing_segregated,
missing_sidepath,
missing_cycleway_lane,
deprecated_cycleway_shared
deprecated_cycleway_shared,
unexpected_bicycle_access_on_footway
}

0 comments on commit 16dd97d

Please sign in to comment.