vote up 1 vote down star
3

I have a set of 52 or so latitude/longitude pairs. I simply need to find the shortest path through all of them; it doesn't matter where staring point or ending point is.

I've implemented Dijkstra's algorithm by hand multiple times before and don't really have the time to do it again. I've found a couple things that come close, but most require raw graphs with pre-computed weights for each edge.

Do you know of any libraries or existing scripts/applications which will compute the shortest path in this manner? The code/libraries would preferably use Python or Clojure but it really doesn't matter.

Thanks

flag

79% accept rate

3 Answers

vote up 3 vote down

If this is a closed path, it is the Traveling Salesman Problem, and a sub-optimal but quite effective way to resolve it is to use Simulated Annealing

link|flag
1  
TSP doesn't require a closed path. Without a closed path, the problem is the same, just the metric for the total path length is different. On a closed path, the best path is the one where the sum of all edges is minimal. If the path does not has to close, it's the sum of all edges - the longest edge – THC4k Nov 1 at 3:10
@THC4k I know that wasn't the question at all, but that comment just totally let me finish my code in the easiest simplest way. I already had TSP solved with the closed path. Thanks! – Brian Gianforcaro Nov 1 at 3:30
vote up 2 vote down

In python, the best graph handling library I was able to put my hands on is networkx. It supports a broad range of different algos for short path search.

Go for it. It's really complete and well designed.

link|flag
vote up 0 vote down

Isn't this the Traveling Salesman Problem, and therefore there is no efficient way to solve it?

link|flag
It's TSP without the stipulation of ending where you started, so you should in theory get a much shorter total distance. – Brian Gianforcaro Nov 1 at 2:12
Pish! TSP is O(n!) isn't it? He's only got 52 pairs = something like 8.07e+67 possibilities, no? :p – Mark Nov 1 at 2:17
4  
No efficient way to find the optimal solution perhaps... but there are fairly good solutions. – Craig McQueen Nov 1 at 4:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.