Google Airport Geocoding / Information

I was looking for a list of request types that the geocoder supports outside of the usual address geocoding. At this time, I need to request Google for airport locations.

I came across this IBM document , but there is no place in it where I can get an updated list of geocoder request parameters allowed and useful by Google.

+3
source share
3 answers

See also Yahoo APIs. I tend to find them a little more hacky than the Google APIs. In particular, see http://developer.yahoo.com/maps/rest/V1/geocode.html for geocoding with Yahoo.

+2
source

You can also use airport codes on a code code:

http://maps.google.com/maps/geo?q=PDX&output=csv&sensor=false

Where PDX is the airport code for Portland, OR

+2
source

You can geocode using the Google Maps API using the following HTTP request:

Simple CSV:

http://maps.google.com/maps/geo?q=London+Heathrow+Airport&output=csv&sensor=false

More complex XML:

http://maps.google.com/maps/geo?q=London+Heathrow+Airport&output=xml&sensor=false

Just change the q parameter at your airport.

+1
source

Source: https://habr.com/ru/post/1726011/


All Articles