I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-06-03 06:10:44-07 by mfeske
geotags
Hello, I have the following geokoordinates:
47 24 3.05 N 8 33 4.01 E
what must I do to write with exiftool rekursive in all png/jpg/tiff from c:\incoming ?, i have kmz / kml file to, what is better to use ? Greetings
Direct Responses: 10886 | Write a response
Posted on 2009-06-03 09:58:56-07 by eric80 in response to 10883
Re: geotags
if you have different coordinates to set, you may have a look at geosetter: http://www.geosetter.de/en/
Direct Responses: 10890 | Write a response
Posted on 2009-06-03 11:11:07-07 by exiftool in response to 10886
Re: geotags
For fixed coordinates, you can do this:

exiftool -gpslatitude="47 24 2.03" -gpslatituderef=N -gpslongitude="8 33 4.01" -gpslonituderef=E -r DIR

This command will write to all writable files in DIR and any subdirectory. If you want to limit it to only png/jpg/tiff, then add "-ext png -ext jpg -ext tif".

- Phil
Direct Responses: 10898 | Write a response
Posted on 2009-06-03 16:41:24-07 by mfeske in response to 10890
Re: geotags
Hello Phil, thanks for the answer. And the kml file i cant use? greetings micha
Direct Responses: 10899 | Write a response
Posted on 2009-06-03 16:48:29-07 by exiftool in response to 10898
Re: geotags
Sorry, I missed the comment about the KML file. Do you have a track log stored in the KML? ExifTool doesn't currently read KML files, but I'm open to adding this support. If this is what you want, send me a sample KML file and I'll see what I can do. My email is phil at owl.phy.queensu.ca

- Phil
Direct Responses: Write a response