-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update hiking-mountain.brf #746
base: master
Are you sure you want to change the base?
Conversation
It seems to work reasonably well. |
I do think it is not a good idea to set the penalty for foot=use_sidepath to 10000, i.e. the same as no. Not all Openstreetmap data is correct and especially for short segments around crossings I have seen foot=use_sidepath set incorrectly. 10000 means that brouter will never include the way, instead I suggest to set a high penalty like 100 so the algorithm will still have the option to chose it if there is foot=use_sidepath but no suitable sidepath. Where for bicycle this is less a problem, as the fall back is pushing the bike i.e. foot with this foot change there is no fall-back. |
@polyscias, You are right, the only reason it seems to have worked well, is, that bikeaccess is usually true on such segments. Otherwise these segments would would have been removed from the routing graph, which is - as you said - not a good idea. But the solution you proposed: #745 (comment), is also problematic. I would suggest to replace:
with:
|
@quaelnix Thank you for your suggestion, I have updated the change |
@polyscias, what do you think about the updated version? |
#744