RouteFind |
Top Previous Next |
This method will return a TRoute list to a node, if a route / isochrone has already been calculated from another node.
2 examples with the same functionality:
TCalc.IsoCost(node1) cost = TCalc.NodeCost(node2) route = TCalc.RouteFind(node2)
cost = TRouteCalc.Route(node1,node2) route = TCalc.RouteFind(node2)
IsoCost method is faster if you have many calculations to do for the same node1. But class TRouteCalc offers more fine-tuning options.
Syntax: RouteFind(node: integer): TRoute
|