graphhopper / map-matching

The map matching functionality is now located in the main repository https://github.com/graphhopper/graphhopper#map-matching
https://www.graphhopper.com/open-source/
Apache License 2.0
785 stars 273 forks source link

All vehicles in input data #34

Closed jwisniewski100 closed 9 years ago

jwisniewski100 commented 9 years ago

I need to process data from 24h when somebody can use all vehicle. After hopper.importOrLoad(); I can't change settings. How can I prepare map-matching for a large number of different routes?

karussell commented 9 years ago

Not sure if this is currently possible but should be easy to achieve as on import you just need to specify setEncodingManager(new EncodingManager("car", "bike", ...)) and on matching you need to set the vehicle you need.

jwisniewski100 commented 9 years ago

for: setEncodingManager(new EncodingManager("car, bike, foot")) works perfectly thanks a lot!