I thought it would be interesting to see if I could establish a record for the shortest time to visit every public use airport in Wisconsin. It's a beautiful state and would give me an excuse to do a bunch of flying some weekend.
So I downloaded all the airports and ran them through an algorithm solving what is known as a TSP (traveling salesman problem, an np-hard problem) to generate a route. There are some geeks here, so I thought I would mention the approach used. For most people, all you care about is that it means that it's time consuming to run the routine and, unless you try every possible path (which would be time consuming given 130 airports), you can't know if you have the *best* possible route.
Anyway, the resultant path of one of the runs was this: http://is.gd/cxO182
I figure that it could be done in 50-60 hours total time. Including time to sleep, maybe 4 days.


