graphhopper / graphhopper-ios

iOS Port of the GraphHopper road routing engine
https://www.graphhopper.com/open-source/
Apache License 2.0
69 stars 28 forks source link

Avoid simplify respone #13

Closed karussell closed 8 years ago

karussell commented 8 years ago

Just from the example video I see that there is some simplification going on in the demo, not sure if this is actually true for the current version :)

I.e. it shows "simplify(nodecount -> nodecount2)". On iOS we can call (Java code) new GraphHopper().forMobile() and avoid simplification (point reduction) as we do not have a need to reduce point count like we need for server side applications to save bandwidth. Avoiding point reduction means some further speed up although it should not be that much :)

karussell commented 8 years ago

Thanks @clns - that was fast :) !