Hello beautiful peoples!
How to get GPS coordinates / location from the photo in Linux terminal? There are many ways – this is my favourite.
Install exiftool
sudo apt install libimage-exiftool-perl
Run command:
exiftool -c '%.6f' -GPSPosition /path/to/file.jpg
As a result – program will return:
GPS Position : 51.543712 N, 18.313329 E
Copy the coordinates and paste them into Google Maps search box:
And you’re done…
I hope this helps!
Catch you on the flip side,
AndrzejL