Skip to content

Instantly share code, notes, and snippets.

@ClemRz
Last active May 11, 2017 15:24
Show Gist options
  • Save ClemRz/c8932fad72d8bf1410b8ed8f5ec87871 to your computer and use it in GitHub Desktop.
Save ClemRz/c8932fad72d8bf1410b8ed8f5ec87871 to your computer and use it in GitHub Desktop.
This is how you synchronise your photos with a GPS track in order to geoloc them

How to synchronise your photos with a GPS track

Install ExifTool and run the following in a terminal:

exiftool -geotag="/path/to/your/GPS/track.kml" -geosync=7:00:00 /path/to/your/photos/folder

The geosync parameter is used when your GPS track is not in the same timezone as your photos. In the above example the GPS track is in the UTC timezone while the photos are in UTC-7.

More parameters can be added to that command, see online documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment