10

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).

4

3 に答える 3

15

次のHTTPリクエストを使用して、GoogleMapsAPIで逆ジオコーディングを行うことができます。

単純なCSV:

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

より複雑なXML:

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

「q」パラメータを緯度、経度に変更するだけです。

Google Maps APIには、1日あたりIPアドレスごとに15,000リクエストの制限があることに注意してください。(Google Maps API FAQ

于 2009-12-12T02:02:44.187 に答える
5

What about doing reverse geocoding with the Google Maps API?

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

于 2009-12-12T01:56:30.953 に答える
2

これは、内部でGoogle Maps APIを使用して、緯度と経度のペアのシリーズ全体(CSVファイル内)を逆ジオコーディングするバルク逆ジオコーダーです。

これはかなり簡単になります。

于 2009-12-12T02:00:17.907 に答える