Transcript

ExifTool Instructions to Save iPhone Longitude and Latitude to CSV

Directions:

Save pictures in folder: CrazyNameOpen Terminal and run following code, which accesses CrazyName folder of images on desktop, and saves results in .csv file called crazilynamed.csv

exiftool -csv -filename -imagesize -gps:GPSLatitude -gps:GPSLongitude ./> /Users/Taylor/Desktop/CrazyName/crazilynamed.csv /Users/Taylor/Desktop/CrazyName

THIS CODE ALSO RETRIEVES THE ORIGINAL DATE AND TIME OF THE PHOTOGRAPH. can replace DateTimeOriginal with all to get more info.

exiftool -csv -filename -imagesize -time:DateTimeOriginal -gps:GPSLatitude -gps:GPSLongitude ./> /Users/Taylor/Desktop/GIS_Test/crazilynamed.csv /Users/Taylor/Desktop/GIS_Test


Top Related