vote up 6 vote down star
1

I've always been intrigued by Map Routing, but I've never found any good introductory (or even advanced!) level writeups talking about it. Does anybody have any pointers, hints, etc?

update: I'm primarily looking for pointer as to how a map system is implemented, data structures, algorithms, etc.

flag

8 Answers

vote up 9 vote down check

Take a look at the open street map project to see how this sort of thing is being tackled in a truely free software project using only user supplied and licensed data and have a wiki containing stuff you might find interesting.

A few years back the guys involved where pretty easy going and answered lots of questions I had so I see no reason why they still aren't a nice bunch.

link|flag
vote up 1 vote down

Instead of learning APIs to each map service provider ( like Gmaps, Ymaps api) Its good to learn Mapstraction

"Mapstraction is a library that provides a common API for various javascript mapping APIs"

I would suggest you go to the URL and learn a general API. There is good amount of How-Tos too.

link|flag
vote up 3 vote down

By Map Routing, you mean finding the the shortest-path along a street network?

Dijkstra shortest-path algorithm is the best known. Wikipedia has not a bad intro http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm

There's a Java applet here where you can see it in action http://www.dgp.toronto.edu/people/JamesStewart/270/9798s/Laffra/DijkstraApplet.html and Google you lead you to source code in just about any language.

Any real implementation for generating driving routes will include quite a bit of data on the street network that describes the costs associate with traversing links and nodes - road network hierarchy, average speed, intersection priority, traffic signal linking, banned-turns etc.

link|flag
Maps are generally too large to allow for standard shortest path algorithms, you'll have to build some heuristics to select a subgraph. Furthermore you might use completely different, heuristic approaches (e.g. motorways first,..) to find a route. – Don Johe Aug 18 at 11:18
vote up 1 vote down

I've yet to find a good tutorial on routing but there are lots of code to read:

There are GPL routing applications that use Openstreetmap data, e.g. Gosmore which works on Windows (+ mobile) and Linux. There are a number of interesting [applications using the same data, but gosmore has some cool uses e.g. interface with websites.

The biggest problem with routing is bad data, and you never get good enough data. So if you want to try it keep your test very local so you can control the data better.

link|flag
vote up 2 vote down

Barry Brumitt, one of the engineers of Google maps route finding feature, wrote a post on the topic that may be of interest:

The road to better path-finding 11/06/2007 03:47:00 PM

link|flag
vote up 2 vote down

A* is actually far closer to production mapping algorithms. It requires quite a bit less exploration compared to Dijikstra's original algorithm.

link|flag
Actually, modified D* is what is generally used as far as I know. – Simucal Oct 21 '08 at 4:55
vote up 0 vote down

From a conceptual point of view, imagine dropping a stone into a pond and watching the ripples. The routes would represent the pond and the stone your starting position.

Of course the algorithm would have to search some proportion of n^2 paths as the distance n increases. You would take you starting position and check all available paths from that point. Then recursively call for the points at the end of those paths and so on.

You can increase performance, by not double-backing on a path, by not re-checking the routes at a point if it has already been covered and by giving up on paths that are taking too long.

An alternative way is to use the ant pheromone approach, where ants crawl randomly from a start point and leave a scent trail, which builds up the more ants cross over a given path. If you send (enough) ants from both the start point and the end points then eventually the path with the strongest scent will be the shortest. This is because the shortest path will have been visited more times in a given time period, given that the ants walk at a uniform pace.

link|flag
vote up -1 vote down

Read up on graphs.

link|flag

Your Answer

Get an OpenID
or

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