The following example uses the Windows executable version of the utility to illustrated the extraction steps.
- Open up a Windows Command Prompt. In the prompt, type in the command.
C:\> "exiftool(-k).exe" -n -gpslongitude -gpslatitude -gpstimestamp -csv D:\MyDocuments\temp\somephotos
Note:
-n means to print out as numbers only
-csv prints out csv including the file path and name
-D points to the folder directory of the photographs to extract - Press RETURN
The extraction values are displayed to the screen. - To output to a file, use the > character to redirect the standard output to a file, e.g. type in the command:
C:\> "exiftool(-k).exe" -n -gpslongitude -gpslatitude -gpstimestamp -csv D:\MyDocuments\temp\somephotos > outgps.csv
The output file outgps.csv is created. - Display the resultant file in a spreadsheet. Or plot the locations on a map.
No comments:
Post a Comment