1
0
mirror of https://github.com/cdcseacave/TinyEXIF.git synced 2026-07-30 23:53:00 +04:00

add MakerNote support for DJI

This commit is contained in:
cDc
2018-07-10 10:00:24 +03:00
parent 8e3316cb41
commit 04969097a4
3 changed files with 108 additions and 5 deletions
+5
View File
@@ -132,6 +132,11 @@ int main(int argc, const char** argv)
std::cout << "GeoLocation.PitchDegree " << imageEXIF.GeoLocation.PitchDegree << "\n";
std::cout << "GeoLocation.YawDegree " << imageEXIF.GeoLocation.YawDegree << "\n";
}
if (imageEXIF.GeoLocation.hasSpeed()) {
std::cout << "GeoLocation.SpeedX " << imageEXIF.GeoLocation.SpeedX << "\n";
std::cout << "GeoLocation.SpeedY " << imageEXIF.GeoLocation.SpeedY << "\n";
std::cout << "GeoLocation.SpeedZ " << imageEXIF.GeoLocation.SpeedZ << "\n";
}
std::cout << "GeoLocation.GPSDOP " << imageEXIF.GeoLocation.GPSDOP << "\n";
std::cout << "GeoLocation.GPSDifferential " << imageEXIF.GeoLocation.GPSDifferential << "\n";
if (!imageEXIF.GeoLocation.GPSMapDatum.empty())