How do you calculate the distance between 2 cities?
|
8
|
|
|
|
|
|
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:
Last but not least, Joel wrote an article about this problem a while back, so here you go: New Feature: Job Search |
||||
|
|
|
This is very easy to do with geography type in SQL Server 2008.
4326 is SRID for WGS84 elipsoidal Earth model |
||
|
|
|
|
See this related StackOverflow question |
||
|
|
|
|
This stackoverflow answer for the same question also has C# example code |
||
|
|
|
|
@Jared - a minor correction to your code example. The last line of the first code example should read:
|
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
If you are working in the plane and you want the Euclidean distance "as the crow flies":
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:
|
|||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
You ca use the A* algorithm to find the shortest path between those two cities and this way you'll have the distance. |
||
|
|
|
|
You use the Haversine formula. |
||
|
|
|
|
You find the Lat/Lon of the city, then use a distance estimation algorithm for Lat/Lon coordinates. |
||
|
|
