[shotwell/shotwell-0.30] Do not make GPS altitude mandatory



commit 63e01cfde712189794141d83df2f3093a7d30b5a
Author: Jens Georg <mail jensge org>
Date:   Wed Sep 7 22:44:44 2022 +0200

    Do not make GPS altitude mandatory
    
    Fixes #4989

 src/photos/PhotoMetadata.vala | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/src/photos/PhotoMetadata.vala b/src/photos/PhotoMetadata.vala
index 7c100c03..a9b74576 100644
--- a/src/photos/PhotoMetadata.vala
+++ b/src/photos/PhotoMetadata.vala
@@ -1161,19 +1161,24 @@ public class PhotoMetadata : MediaMetadata {
     
     public bool get_gps(out double longitude, out string long_ref, out double latitude, out string lat_ref,
         out double altitude) {
-        if (!exiv2.get_gps_info(out longitude, out latitude, out altitude)) {
+        longitude = 0.0;
+        latitude = 0.0;
+        altitude = 0.0;
+        if (!exiv2.get_gps_longitude(out longitude) || !exiv2.get_gps_latitude(out latitude)) {
             long_ref = null;
             lat_ref = null;
             
             return false;
         }
+
+        exiv2.get_gps_altitude(out altitude);
         
         long_ref = get_string("Exif.GPSInfo.GPSLongitudeRef");
         lat_ref = get_string("Exif.GPSInfo.GPSLatitudeRef");
         
         return true;
     }
-    
+
     public bool get_exposure(out MetadataRational exposure) {
         return get_rational("Exif.Photo.ExposureTime", out exposure);
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]