I have about 20,000 adresses and 10 locations of the same sort of destination (eg. a doctor). I have already a network.
I'd like to calculate the shortest path between each adress and the nearest doctor over the network.
Is there a way to utilize the shortestpathfinder for this?
I tried the fromToBuilder to create from-to-lines. However, the fromToBuilder requires a join field for each from and to location. Which I would then have to create manually for each adress (and so create 200,000 paths; 20,000 * 10). The shortest path could then be recalculated after the shortestpathfinder to get the closest doctor for each house.
Is there perhaps a more efficient way to do this?