calculateBulkRouteInfo vs calculateRoute

This forum deals with any kind of routing computation whether it is simple A:B-routing, calculation of isochrones, simple matrix computation or nearest search.
Post Reply
epsilon
Posts: 5
Joined: Thu Mar 29, 2018 1:22 pm

calculateBulkRouteInfo vs calculateRoute

Post by epsilon »

Hi.

In order to compute the route A -> B -> C we use the calculateBulkRouteInfo (waypoints = [[A,B],[B,C]]) with the configuration as below.

Is there an equivalent calculateRoute call with waypoints [A,B,C] that gives the same result as the calculateBulkRouteInfo response. As in calculateBulkRouteInfo we used AUTO_LINKING and WAYPOINTSDESC for A, B and C (see code below). Also I tried the option VIA_STOP+fuzzyRadius=0 for intermediate point B. But there is still a difference to the calculateBulkRouteInfo response.

When using the calculateRoute service with several waypoints we get different results for the times and the distances between the waypoints. In detail we get the following result (where we inverse the accumulation in time and distance in the calculateRoute request):

BULK: {'distance': [1054358.0, 1268495.0], 'time': [52880.0, 63163.0]}
VIA_STOP: {'distance': [1054174.0, 1268413.0], 'time': [52862.0, 63155.0]}
WAYPOINTDESC: {'distance': [1054192.0, 1268395.0], 'time': [52865.0, 63152.0]}

Is it there an equivalent calculateRoute call that reproduces the response from the calcuateBulkRouteInfo request?
If not, what exactly causes the difference in the results from these two calculation methods.

Thank you in advance.

Kind regards
Attachments
calculate_bulk_route_info.txt
calculate_bulk_route_info
(2.53 KiB) Downloaded 239 times
calculate_route.txt
calculate_route
(2.06 KiB) Downloaded 254 times
User avatar
Bernd Welter
Site Admin
Posts: 2564
Joined: Mon Apr 14, 2014 10:28 am
Contact:

Re: calculateBulkRouteInfo vs calculateRoute

Post by Bernd Welter »

Hello Epsilon,

I assume that the different temporary data structures have an impact on the routing results.
https://xserver.ptvgroup.com/forum/view ... ?f=7&t=819

The question I have is quite simple:
- What kind of task do you want to solve?
- What is the input?
- What is the desired output?
If you answer these questions I might give you some directions how to approach it in the optimal way.

Best regards,
Bernd

PS: routing is some kind of heuristics, at least when it comes to leveling ;-)
Bernd Welter
Technical Partner Manager Developer Components
PTV Logistics - Germany

Bernd at... The Forum,LinkedIn, Youtube, StackOverflow
I like the smell of PTV Developer in the morning... :twisted:
User avatar
Bernd Welter
Site Admin
Posts: 2564
Joined: Mon Apr 14, 2014 10:28 am
Contact:

Re: calculateBulkRouteInfo vs calculateRoute

Post by Bernd Welter »

Faced something similar with a custromer today.
The problem has dissapeared after I
- disabled leveling (set the scopes to -1 for all NCs)
- did set the ViaType of the inner stops to VIA_STOP

;-)
example: the red route approaches the waypoint, turns over there and therefore follows the path where it came from.<br />The green route passes the waypoint without turning. This is a part of a longer route and caused a differenfe of more than 2 kilometers.
example: the red route approaches the waypoint, turns over there and therefore follows the path where it came from.
The green route passes the waypoint without turning. This is a part of a longer route and caused a differenfe of more than 2 kilometers.
Bernd Welter
Technical Partner Manager Developer Components
PTV Logistics - Germany

Bernd at... The Forum,LinkedIn, Youtube, StackOverflow
I like the smell of PTV Developer in the morning... :twisted:
Post Reply