Skip to content

Instantly share code, notes, and snippets.

@dmpop
Last active January 13, 2017 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmpop/4dbd96fbea2da46f191f4efe31d98d8f to your computer and use it in GitHub Desktop.
Save dmpop/4dbd96fbea2da46f191f4efe31d98d8f to your computer and use it in GitHub Desktop.
Show geotagged photo on OpenStreetMap
#!/usr/bin/env bash
lat=`exiftool -n -p '$GPSlatitude' $1`
lon=`exiftool -n -p '$GPSlongitude' $1`
osm="http://www.openstreetmap.org/?mlat=$lat&mlon=$lon&zoom=18"
xdg-open $osm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment