Calculating Distance Between 2 Cities - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:06:21Z http://stackoverflow.com/feeds/question/23569 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities 11 Calculating Distance Between 2 Cities Krishna Kumar 2008-08-22T21:39:41Z 2009-07-29T19:58:30Z <p>How do you calculate the distance between 2 cities? </p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23575#23575 0 Answer by EndangeredMassa for Calculating Distance Between 2 Cities EndangeredMassa 2008-08-22T21:41:18Z 2008-08-22T21:41:18Z <p>You find the Lat/Lon of the city, then use a distance estimation algorithm for Lat/Lon coordinates.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23579#23579 8 Answer by Ian Nelson for Calculating Distance Between 2 Cities Ian Nelson 2008-08-22T21:42:08Z 2008-08-22T21:42:08Z <p>You use the <a href="http://en.wikipedia.org/wiki/Haversine_formula" rel="nofollow">Haversine formula</a>.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23591#23591 1 Answer by Michał Piaskowski for Calculating Distance Between 2 Cities Michał Piaskowski 2008-08-22T21:45:35Z 2008-08-22T21:45:35Z <p>You ca use the <a href="http://en.wikipedia.org/wiki/A*_search_algorithm" rel="nofollow">A*</a> algorithm to find the shortest path between those two cities and this way you'll have the distance.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23593#23593 0 Answer by jonezy for Calculating Distance Between 2 Cities jonezy 2008-08-22T21:46:26Z 2008-08-22T21:46:26Z <p>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</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23615#23615 0 Answer by Pascal for Calculating Distance Between 2 Cities Pascal 2008-08-22T22:00:12Z 2008-08-22T22:00:12Z <p>It is better to use a look-up table for obtaining the distance between two cities. </p> <p>This makes sense because * The Formula to calculate the distance ais quite computationally intensive.. * Distance between cities is unlikely to change.</p> <p>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.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23632#23632 1 Answer by Jared Updike for Calculating Distance Between 2 Cities Jared Updike 2008-08-22T22:07:59Z 2008-08-22T22:29:33Z <p>If you are working in the plane and you want the <a href="http://en.wikipedia.org/wiki/Euclidean_distance" rel="nofollow">Euclidean distance</a> "as the crow flies":</p> <pre><code>// 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); </code></pre> <p>No trigonometry needed! Just the <a href="http://en.wikipedia.org/wiki/Pythagorean_theorem" rel="nofollow">Pythagorean theorem</a> 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().</p> <p>Note that you could probably do this in one line and a compiler would <em>probably</em> reduce it the equivalent above code:</p> <pre><code>dist = sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0)); </code></pre> <p>[1] <a href="http://en.wikipedia.org/wiki/Smoot" rel="nofollow">http://en.wikipedia.org/wiki/Smoot</a></p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23650#23650 1 Answer by Mike Powell for Calculating Distance Between 2 Cities Mike Powell 2008-08-22T22:17:54Z 2008-08-22T22:17:54Z <p>If you're talking about the shortest distance between two real cities on a real spherical planet, like Earth, you want the <a href="http://en.wikipedia.org/wiki/Great-circle_distance" rel="nofollow">great circle distance</a>.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23700#23700 22 Answer by Dana the Sane for Calculating Distance Between 2 Cities Dana the Sane 2008-08-22T22:53:00Z 2009-07-29T19:58:30Z <p>If you need to take the curvature of the earth into account, the Great-Circle distance is what you're looking for. The Wikipedia <a href="http://en.wikipedia.org/wiki/Great-circle%5Fdistance" rel="nofollow">article</a> probably does a better job of explaining how the formula works than me, and there's also <a href="http://williams.best.vwh.net/avform.htm" rel="nofollow">this</a> aviation formulary page that covers that goes into more detail.</p> <p>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 <a href="http://www.geonames.org/" rel="nofollow">Geonames.org</a>, 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 <a href="http://en.wikipedia.org/wiki/Great-circle%5Fdistance#Worked%5Fexample" rel="nofollow">Worked Example</a>.</p> <p>Other suggestions:</p> <ul> <li>For a full commercial solution, there's <a href="http://www.alk.com/pcmiler/pcmiler-system-req.asp" rel="nofollow">PC Miler</a> which is used by many trucking companies to calculate shipping rates.</li> <li>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.</li> <li>Also <strong>very important</strong> 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.</li> </ul> <p>Last but not least, Joel wrote an article about this problem a while back, so here you go: <a href="http://www.joelonsoftware.com/items/2006/10/09.html" rel="nofollow">New Feature: Job Search</a></p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23731#23731 0 Answer by Webjedi for Calculating Distance Between 2 Cities Webjedi 2008-08-22T23:23:35Z 2008-08-22T23:23:35Z <p>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.</p> <p>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). </p> <p>The real trick is getting the lat and long..for that I'm using Google.</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23746#23746 0 Answer by Josh Brown for Calculating Distance Between 2 Cities Josh Brown 2008-08-22T23:44:18Z 2008-08-22T23:44:18Z <p>@Jared - a minor correction to your code example. The last line of the first code example should read:</p> <pre><code>dist = sqrt(dx*dx + dy*dy); </code></pre> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/215862#215862 1 Answer by tdyen for Calculating Distance Between 2 Cities tdyen 2008-10-19T01:37:07Z 2008-10-19T01:37:07Z <p>This <a href="http://stackoverflow.com/questions/27928">stackoverflow answer</a> for the same question also has C# example code</p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/215975#215975 1 Answer by John D. Cook for Calculating Distance Between 2 Cities John D. Cook 2008-10-19T03:47:10Z 2008-10-19T03:47:10Z <p>See this <a href="http://stackoverflow.com/questions/27928/how-do-i-calculate-distance-between-two-latitude-longitude-points">related StackOverflow question</a></p> http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/501226#501226 1 Answer by Marko Tintor for Calculating Distance Between 2 Cities Marko Tintor 2009-02-01T17:39:54Z 2009-02-01T17:39:54Z <p>This is very easy to do with geography type in SQL Server 2008.</p> <pre><code>SELECT geography::Point(lat1, lon1, 4326).STDistance(geography::Point(lat2, lon2, 4326)) -- computes distance in meters using eliptical model, accurate to the mm </code></pre> <p>4326 is SRID for WGS84 elipsoidal Earth model</p>