OpenStreetMapX.jl icon indicating copy to clipboard operation
OpenStreetMapX.jl copied to clipboard

Is there any egde equilvant of nodes_within_driving_time?

Open ghost opened this issue 1 year ago • 1 comments

Hello,

The nodes_within_driving_time(map, [source], time_limit)[1] returns a set of nodes that are whithin driving time. Is there any edge_within_driving_time or path_within_driving_time? Or any idea of how to go from node_within to path_within?

ghost avatar Apr 30 '23 15:04 ghost

There may be several paths between two nodes having some driving time. Currently for each node you would need to look for the path. It would be though possible to program a modified A* (A-star) implementation that yields all edges.

pszufe avatar May 03 '23 00:05 pszufe