Apple - Can I use Automator or some other method to extract EXIF GPS data from batches of photos on my Mac?
With Commandline tools this is easy:
- Install Homebrew
brew install exiftools
in the Terminalfind ~/Pictures/ -iname '*.jpg' -print -exec exiftool -DateTimeOriginal -GPSLatitude -GPSLongitude {} \;
in the Terminal