How do you get the country/state/region/city/state/zip/postal from GPS coordinates?

女生的网名这么多〃 提交于 2019-12-03 12:32:13

问题


I have GPS coordinates on all of my photos. I want to include tags/IPTC data for the city, state, zip, etc.. However all I have is the GPS coordinates. How can I take these and get meaningful info in an automated fashion (I have thousands upon thousands of photos, so typing each one into google maps would not work).


回答1:


You can do reverse geocoding with Google Maps API using the following HTTP request:

Simple CSV:

http://maps.google.com/maps/geo?q=40.756041,-73.986939&output=csv&sensor=false

More Complex XML:

http://maps.google.com/maps/geo?q=40.756041,-73.986939&output=xml&sensor=false

Simply change the "q" parameter with your latitude,longitude.

Note that the Google Maps API has a limit of 15,000 request per IP address per day. (Google Maps API FAQ)




回答2:


What about doing reverse geocoding with the Google Maps API?

http://code.google.com/apis/maps/documentation/services.html#ReverseGeocoding




回答3:


Here is a bulk Reverse Geocoder which, internally, uses the Google Maps API to reverse geocode an entire series (in a CSV file) of latitude and longitude pairs.

It would make this fairly easy.



来源:https://stackoverflow.com/questions/1891953/how-do-you-get-the-country-state-region-city-state-zip-postal-from-gps-coordinat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!