I am building a routing server that processes the planet osm file. This has been successful but I have some testers reporting that things need to be optimized such as:
Taking left side and right right driving into account (is this done automatically)
Not allowing u-turns at emergency vehicle crossings
What is the road priority? Will it always choose highways first?
I am using navigation directions (e.g. navigate/directions/v5/gh) and I had a user reporting that the roundabout was showing an incorrect icon and he is in the UK. He thought it had to do with the driving side.
Yes, graphhopper provided a u-turn here: Way: 973352843 | OpenStreetMap I would like to prevent this from happening. I assume the access=no needs to be somehow respected?
Looks like I previously did not use custom_model_files: [car.json]. After adding that and testing I get routing just like you provided in OpenStreetMap.