I’m trying to use ImageMagick.jl to read EXIF GPS data from some .tif files.
info = magickinfo(filename) provides a vector of image properties, but the GPS data is not included. When I look at the image properties manually I can clearly see the GPS coordinates in the EXIF data. Why can’t ImageMagick read the GPS data?
21-element Vector{String}:
“date:create”
“date:modify”
“exif:DateTimeDigitized”
“exif:DateTimeOriginal”
⋮
“tiff:photometric”
“tiff:rows-per-strip”
“tiff:software”
“tiff:timestamp”
Code was written in VS Code using Julia version 1.9.0 on a Windows 10 machine.