I need to find the distance (as the Airbus A320 flies, not super accurate) between two airports, preferably using IATA codes (PHX, LAX, CLT for example).

I see many websites that do this but I need to find an API (Google Maps, Bing Maps?) that I could use to calculate the distances with. I'm aware that I might have to geo code the IATA codes, but I'd like to avoid that (I know that using Google maps you can specify the IATA code+Airport and it will get the location)

Any suggestions?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can simply store a database of airport codes and their latitude and longitude (Wikipedia probably has those coordinates). Then you can calculate the "great circle distance" between those airports on your own server and/or with JavaScript code, rather than rely on Google Maps or the like, unless the desired airport isn't on the database.

link|improve this answer
Yeah, that's probably the route I'm going to have to go. I don't currently have lat long for my airports, but I'm sure I can get creative with finding them (I do work for a major airline). Using my own server is preferable too. Thanks. – Don Fitz Aug 7 '11 at 7:06
For anyone else trying to do this with C#, I just found this: megocode3.wordpress.com/2008/02/05/haversine-formula-in-c – Don Fitz Aug 7 '11 at 7:09
feedback

Your Answer

 
or
required, but never shown

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