Geotag but skip files that already contain GPS information

Started by GeoNomad, October 16, 2010, 04:10:13 AM

Previous topic - Next topic

GeoNomad

Forgive me if I missed something obvious.

Is there a way to geotag a folder full of files, but to only modify the files which do not already have GPS information?

I don't want to overwrite more accurate information with less accurate information.

Thanks for a great tool!

TIA,
Peter



Phil Harvey

Hi Peter,

You can use the -if option to test for the existence of any tag:

exiftool -if 'not $gpslatitude' ...

would process only files not containing GPSLatitude.  Note: Use double quotes instead of single quotes around the expression if you are on Windows.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

GeoNomad

Quote from: Phil Harvey on October 16, 2010, 07:54:13 AM
You can use the -if option to test for the existence of any tag:

I had a feeling there was something obvious like that that I was missing.

I must have been absent the day -if was discussed....

;D


Thanks!