How to calculate the air-line distance between two places?

How to calculate the air-line distance between two places?

11/21/2014 12:23:10 PM

When I need to measure the distance I use wdistances.com. Distance from Zurich to Helsinki is 1104,42 miles air line distance.

11/4/2012 11:41:26 AM

See here:
http://www.movable-type.co.uk/scripts/latlong.html

var R = 6371; // Earth's average radius in km
var dLat = (lat2-lat1).toRad();
var dLon = (lon2-lon1).toRad();
var lat1 = lat1.toRad();
var lat2 = lat2.toRad();

var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
        Math.sin(dLon/2) * Math.sin(dLon/2) * Math.cos(lat1) * Math.cos(lat2); 
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
var d = R * c;
11/8/2012 8:51:49 PM

I use luftlinie.org or its anglophpne brother distance.to.

11/3/2012 2:36:43 PM

In addition to the options already mentioned, milecalc.com will also do this calculation, using the Great Circle distance, which is the value typically used for frequent flyer mileage calculation etc.

10/15/2011 6:16:00 PM

You can also draw such lines (called geodesics) in Google Maps using this site.

See also Is there a way to make a line in Google Maps account for the curvature of the Earth? on Stack Exchange Web Applications.

10/10/2011 8:17:30 AM

To All the repliers reccomending Great Circle math, You are only partly right.

The distance between two points on a sphere is found by GC Maths, however the OP specifically asked for the air-line distance. This is found by first finding all the points visited en-route to the destination and then calculating GC distances for all of the route pairs.

For example a flight from London to New York does not follow the great circle path between the two points. It follows a set of points, which may include Navaids, Waypoints, Airways, Departure routes, Arrival routes, lat/long fixes and range bearing points. see Flight Plan for more info.

So you would need to contact the airline involved and ask nicely for the flight plan used, and find the lat longs for each of the points visited.

10/9/2011 10:29:47 PM

If you want to do this calculation for flights, you would have to use the Spherical law of cosines as Gagravarr mentioned. However, if you want to write your own little tool and want to plot a line on a map then it gets a bit tricky. You would have to use a Lambert projection map to draw a straight line from A to B on it. The issue with the Lambert conformal conic projection is that those maps are only accurate along the two reference parallels, and the further you go away from them the less precise they are. This is usually not and issue on small maps that only cover 100x100km, but the larger the map the bigger the error margin gets. This has something to do with the fact that the earth is round, and you cannot do an exact 1:1 mapping from a round to a flat surface.

Google maps (and all nautical maps) uses a Cylindrical Map projection, this means you would have to draw curves on the map to get the same route as you would with a straight line on a Lambert projection.

10/11/2011 12:26:56 AM

The best place for these calculations is the “Great Circle Mapper” website.

http://www.gcmap.com/

To find the distance between two or more airports just enter them with dashes between them. eg, JFK-DFW or SFO-IAD-LHR

You can do multiple trips at once by separating them with commas. JKF-DFW,SFO-IAD-LHR

11/30/2011 3:19:36 PM

Why don’t you use this tool with Latitude and Longitude?

10/9/2011 4:45:49 PM

If you want to calculate it yourself, then the spherical law of cosines is probably the easiest way to go about it. It’ll likely be accurate enough for your needs, and is really simple. If you want it in python, try this code of mine (you’d want
calculate_distance_and_bearing)

Likely you’ll also want the location information for the various airports of interest. I’ve tended to use The Global Airport Database in the past for this sort of thing.

10/9/2011 3:24:39 PM

Many airlines include this information in their schedules. For example, Air Canada lets you download a PDF of their entire schedule. Here’s a clip from it:

enter image description here

I suggest searching the website of the airline you intend to use. Any tool based on actually how far apart the cities are may be as much as 20-30 miles different from the airline distance.

Credit:stackoverflow.com

About me

Hello,My name is Aparna Patel,I’m a Travel Blogger and Photographer who travel the world full-time with my hubby.I like to share my travel experience.

Search Posts