Dear Mavic air owners,
There has been a lot of complaints about the low precison exif geotags in the images produced by Mavic air, and without a fix, mapping and image matching will be impossible or at least very difficult. Here is my workaround that I've been using this summer.
The workaround is based on exiftool by Philip Harvey. Exiftool is a cli-based exif reader and writer. Personally I installed exiftool with brew on my Mac, but it works on Linux and Windows as well. Search the web for other installation options.
"Exiftool -a" lists all exiftags and luckily there exits two different Latitude/Longitude tags. The crippled EXIF:GPSlatitude and EXIF:Longitude that seems to be the default choice in most mapping programs, but also the seemingly uncrippled XMP:Latitude and XMP:Longitude tags. The following command replaces the crippled coordinates with the higher precision versions.
exiftool '-EXIF:GPSLatitude<XMP:Latitude' '-EXIF:GPSLongitude<XMP:Longitude' filename.jpg
The command can use wildcards so it's quick to fix all files in a directory.
/hans
There has been a lot of complaints about the low precison exif geotags in the images produced by Mavic air, and without a fix, mapping and image matching will be impossible or at least very difficult. Here is my workaround that I've been using this summer.
The workaround is based on exiftool by Philip Harvey. Exiftool is a cli-based exif reader and writer. Personally I installed exiftool with brew on my Mac, but it works on Linux and Windows as well. Search the web for other installation options.
"Exiftool -a" lists all exiftags and luckily there exits two different Latitude/Longitude tags. The crippled EXIF:GPSlatitude and EXIF:Longitude that seems to be the default choice in most mapping programs, but also the seemingly uncrippled XMP:Latitude and XMP:Longitude tags. The following command replaces the crippled coordinates with the higher precision versions.
exiftool '-EXIF:GPSLatitude<XMP:Latitude' '-EXIF:GPSLongitude<XMP:Longitude' filename.jpg
The command can use wildcards so it's quick to fix all files in a directory.
/hans