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
I'm currently experiencing a puzzling behaviour with table requests. I'm running v5.8.1 on a geofabrik england extract with CH algorithm but I'm able to reproduce it on the demo server.
I'm typically firing a single table request to decide the order in which locations should be visited based on travel times. Once this is done I issue route requests whenever I want to retrieve distances for the selected routes. To avoid connectivity issues, I always check there is no occurrence of null in the matrix durations, which normally should prevent getting any NoRoute result in subsequent route requests.
So far, so good, non-diagonal zeros are due to second and third coordinates being snapped to the same place. Now I expect a 0 duration and distance route for a route request between those, but I get a NoRoute error on:
For the table request for those two coordinates only, one would expect to get the sub-matrix from the previous one with second and third row/column (in that case filled with zeros). But here the null value is actually showing up:
From what I can gather so far, this only happens when including locations that are very close. Could this be due to a difference of snapping behaviour across these requests?
The text was updated successfully, but these errors were encountered:
I'm currently experiencing a puzzling behaviour with
table
requests. I'm running v5.8.1 on a geofabrik england extract with CH algorithm but I'm able to reproduce it on the demo server.I'm typically firing a single
table
request to decide the order in which locations should be visited based on travel times. Once this is done I issueroute
requests whenever I want to retrieve distances for the selected routes. To avoid connectivity issues, I always check there is no occurrence ofnull
in the matrixdurations
, which normally should prevent getting anyNoRoute
result in subsequentroute
requests.Narrowing down to a minimal exemple:
yields this matrix:
So far, so good, non-diagonal zeros are due to second and third coordinates being snapped to the same place. Now I expect a 0 duration and distance route for a
route
request between those, but I get aNoRoute
error on:For the
table
request for those two coordinates only, one would expect to get the sub-matrix from the previous one with second and third row/column (in that case filled with zeros). But here thenull
value is actually showing up:From what I can gather so far, this only happens when including locations that are very close. Could this be due to a difference of snapping behaviour across these requests?
The text was updated successfully, but these errors were encountered: