views:

4826

answers:

14

How do you calculate the distance between 2 cities?

A: 

You find the Lat/Lon of the city, then use a distance estimation algorithm for Lat/Lon coordinates.

EndangeredMassa
+8  A: 

You use the Haversine formula.

Ian Nelson
+1  A: 

You ca use the A* algorithm to find the shortest path between those two cities and this way you'll have the distance.

Michał Piaskowski
A: 

if you need a code example I think I have one I could dig up at home, but like many of the previous answers, you need a long / lat db to do the calculation

jonezy
A: 

It is better to use a look-up table for obtaining the distance between two cities.

This makes sense because * The Formula to calculate the distance ais quite computationally intensive.. * Distance between cities is unlikely to change.

So unless you needs are very specific (like terrain mapping from a satellite or some or topography algorithm or something else), you should really just save the list of cities and distances between them, into a table and look it up as needed.

Pascal
+1  A: 

If you are working in the plane and you want the Euclidean distance "as the crow flies":

// Cities are points x0,y0 and x1,y1 in kilometers or miles or Smoots[1]
dx = x1 - x0;
dy = y1 - y0;
dist = sqrt(dx*dx + dy*y);

No trigonometry needed! Just the Pythagorean theorem and the fact that squares are always positive so you don't need dx = abs(x1 - x0), etc. to get a positive number to pass to sqrt().

Note that you could probably do this in one line and a compiler would probably reduce it the equivalent above code:

dist = sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0));

[1] http://en.wikipedia.org/wiki/Smoot

Jared Updike
+1  A: 

If you're talking about the shortest distance between two real cities on a real spherical planet, like Earth, you want the great circle distance.

Mike Powell
+24  A: 

If you need to take the curvature of the earth into account, the Great-Circle distance is what you're looking for. The Wikipedia article probably does a better job of explaining how the formula works than me, and there's also this aviation formulary page that covers that goes into more detail.

The formulas are only the first part of the puzzle though, if you need to make this work for arbitrary cities, you'll need a location database to get the lat/long from. Luckily you can get this for free from Geonames.org, although there are commercial db's available (ask google). So, in general, look up the two cities you want, get the lat/long co-orinates and plug them into the formula as in the Wikipedia Worked Example.

Other suggestions:

  • For a full commercial solution, there's PC Miler which is used by many trucking companies to calculate shipping rates.
  • Make calls to the Google Maps (or other) api. If you need to do many requests per day, consider caching the results on the server.
  • Also very important is to consider building an equivalence database for cities, suburbs, towns etc. if you think you'll ever need to group your data. This gets really complicated though, and you may not find a one-size-fits-all solution for your problem.

Last but not least, Joel wrote an article about this problem a while back, so here you go: New Feature: Job Search

Dana the Sane
Your JoS link is out of date (clicking the link takes you to an error page now). I believe this is the right link now: http://www.joelonsoftware.com/items/2006/10/09.html
AgentConundrum
I've updated the link and added some more info.
Dana the Sane
A: 

I've been doing a lot of work with this recently. I'm finding SQL2008's new features really make this easy. I can find all the points that are withing Xkm of a 100k record table in sub-second time...not too shabby.

The great circle (spherical assumption) method in my testing was about 2.5 miles off when compared to the vincenty formula (elipsoidal assumption, which is what the earth is).

The real trick is getting the lat and long..for that I'm using Google.

Webjedi
A: 

@Jared - a minor correction to your code example. The last line of the first code example should read:

dist = sqrt(dx*dx + dy*dy);
Josh Brown
A: 

This stackoverflow answer for the same question also has C# example code

tdyen
A: 

See this related StackOverflow question

John D. Cook
+1  A: 

This is very easy to do with geography type in SQL Server 2008.

SELECT geography::Point(lat1, lon1, 4326).STDistance(geography::Point(lat2, lon2, 4326))
-- computes distance in meters using eliptical model, accurate to the mm

4326 is SRID for WGS84 elipsoidal Earth model

Marko Tintor
A: 

i just use distances between cities for this purpose, probably u can check it there

distances