You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes to the code of map matching algorithm over the past few years might have introduced some subtle bugs to the original implementation. For example, consider the following two places.
ORS map matching is based on the idea presented in the paper Hidden Markov Map Matching Through Noise and Sparseness by Paul Newson and John Krumm. The description of the algorithm can be found here, see presentation slides.
The text was updated successfully, but these errors were encountered:
There have been identified some serious issues with the implementation of the ORS map matcher. Therefore, rather than fixing it it the decision was to switch to using the more reliable GraphHopper map matching endpoint.
Changes to the code of map matching algorithm over the past few years might have introduced some subtle bugs to the original implementation. For example, consider the following two places.
openrouteservice/openrouteservice/src/main/java/org/heigit/ors/mapmatching/hmm/HiddenMarkovMapMatcher.java
Lines 264 to 267 in 40753af
distances
array contains precomputed distances between consecutive points whichxi
andxj
not necessarily are.openrouteservice/openrouteservice/src/main/java/org/heigit/ors/mapmatching/hmm/HiddenMarkovMapMatcher.java
Lines 397 to 403 in 40753af
ORS map matching is based on the idea presented in the paper Hidden Markov Map Matching Through Noise and Sparseness by Paul Newson and John Krumm. The description of the algorithm can be found here, see presentation slides.
The text was updated successfully, but these errors were encountered: