Andi
Andi
If there is no duration tag on a ferry we currently use `speed=5km/h`, or even smaller if the distance is below 300m. But for longer distance ferries this seems very...
* [x] remove handling of missing estimated_distance. It will never be missing and if it is it's not our fault. * [x] use precise distance, not some estimate, because we...
For example this ferry takes 3h44min for the car profile, more than seven hours for bikes and more than nine hours for the foot profile. This is because the maximum...
Currently the snapped waypoint coordinates might be removed by the path simplification when instructions are disabled. https://discuss.graphhopper.com/t/all-snapped-waypoints-is-not-present-in-points/7092/13
According to the measurement I introduced recently the queries take around 1.8s on average in Germany. Before #2491 I even measured something like 2.8s. For comparison, the same measurement yields...
https://discuss.graphhopper.com/t/route-calculation-for-car-do-not-take-the-best-exit/6659/2
Now that we calculate edge flags per edge (no longer per way, #2457) we should be able to remove `applyWayTags` from `EncodingManager` and the flag encoders.
```java GHPoint a = new GHPoint(51.9855002, 19.2540004); GHPoint b = new GHPoint(51.9855, 19.254); System.out.println(a.hashCode()); System.out.println(b.hashCode()); System.out.println(a.equals(b)); ``` prints: ``` -703473411 1833648456 true ``` I wonder if we should just remove...
I was trying to make some progress towards #1898. See comments inline.
Discussed here: https://github.com/graphhopper/graphhopper/issues/2246#issuecomment-878244350 and should be done as a follow-up to #2246.