Hello,
I need to create a reasonably large times and road distances matrix. (150 x 150 to 300x300). The approach used in the post gis.thinkgeo.com/Support/Dis...fault.aspx Time and Distance matrix is too slow for this I think.
I think, but I don't know how to implement this in ThinkGeo,the routing process could be made faster by
- ignoring the route segments, I am only after the value
- taking advantage of the calculations handled in one point - to many points way (the searching algorithms have to go through large parts of the tree anyhow, so going from 1 to 50 points is not 50 times more expensive than single From and To calculation.
150 * 150 = 22500. If I want my calculations to take up to 15mins (15*60=900s) I should be able to generate at least 25 routing results in a second (22500/900).
Any ideas on how to achieve this ?
Tomas