Table of Contents

Ricette GIS

Georiferire (o georeferenziare) le foto

Digikam

In ambiente grafico con Digikam. Oltre al pacchetto digikam serve anche kipi-plugins, altrimenti il menu Geolocalizzazione non c'è.

gpscorrelate

gpscorrelate -g /home/Documenti/nomedelfile.gpx -z +02 /home/Documenti/Fotografie/*.jpg -t
gpscorrelate

exiv2

Per scrivere le coordinate GPS direttamente nei tag Exif bisogna scomporre le coordinate in gradi, primi e secondi. I gradi e i primi si impostano come numeri interi (indicando N/1), mentre per i secondi conviene moltiplicare per 1000 e indicare N/1000:

exiv2 -n UTF-8 -k -M "set Exif.GPSInfo.GPSLatitude 43/1 51/1 7746/1000" file.jpg
exiv2 -n UTF-8 -k -M "set Exif.GPSInfo.GPSLongitude 11/1 14/1 11433/1000" file.jpg
exiv2 -n UTF-8 -k -M "set Exif.GPSInfo.GPSLatitudeRef N" file.jpg
exiv2 -n UTF-8 -k -M "set Exif.GPSInfo.GPSLongitudeRef E" file.jpg

Problema con Exiv2 e la libreria Python pexiv

There exist a Python library to add GPS tags to images, here it is the home page of the project.