You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSRM ignores the motorroad tag on a given highway. Motor roads implicitly block access to pedestrians and cyclists. However, OSMR routes via the given highway.
The text was updated successfully, but these errors were encountered:
workaround.
As a workaround :
In bicycle.lua (and foot.lua) add 'motorroad' to the avoid Set.
in way_handler.lua add a check to the function WayHandlers.blocked_ways.
-- motorroad
if profile.avoid.motorroad and way:get_value_by_key("motorroad") == "yes" then
return false
end
mangerlahn
added a commit
to mangerlahn/osrm-backend
that referenced
this issue
Oct 5, 2023
Issue
Please consider the following example
OSRM ignores the motorroad tag on a given highway. Motor roads implicitly block access to pedestrians and cyclists. However, OSMR routes via the given highway.
The text was updated successfully, but these errors were encountered: