Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>Problem solved:</strong></p> <p>Seems the problem was that I had my Exif Gps Data block incorrect, I was using the wrong names, and had an incomplete block, changing </p> <pre><code>gpsDict.SetValueForKey (NSObject.FromObject (GpsLong), new NSString ("GPSLongitude")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLongRef), new NSString ("GPSLongitudeRef")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLat), new NSString ("GPSLatitude")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLatRef), new NSString ("GPSLatitudeRef")); gpsDict.SetValueForKey (NSObject.FromObject (DateTime.UtcNow.ToString ("HH:MM:ss.ff")), new NSString ("GPSTimeStamp")); </code></pre> <p>to </p> <pre><code>gpsDict.SetValueForKey(NSObject.FromObject(GpsAltitude),new NSString("Altitude")); gpsDict.SetValueForKey(NSObject.FromObject(GpsAltitudeRef),new NSString("AltitudeRef")); gpsDict.SetValueForKey(NSObject.FromObject(GpsImgDirection),new NSString("ImgDirection")); gpsDict.SetValueForKey(NSObject.FromObject(GpsImgDirectionRef),new NSString("ImgDirectionRef")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLong), new NSString ("Longitude")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLongRef), new NSString ("LongitudeRef")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLat), new NSString ("Latitude")); gpsDict.SetValueForKey (NSObject.FromObject (GpsLatRef), new NSString ("LatitudeRef")); gpsDict.SetValueForKey (NSObject.FromObject (DateTime.UtcNow.ToString ("HH:MM:ss.ff")), new NSString ("TimeStamp")); </code></pre> <p>The primary changes are that the GPS prefix was dropped from all the tag names, and altitude tags added.</p> <p>the GPS exif block should look like the following</p> <pre><code>"{GPS}" = { Altitude = "14.9281"; AltitudeRef = 0; ImgDirection = "107.4554"; ImgDirectionRef = T; Latitude = "30.35514548114219"; LatitudeRef = N; Longitude = "91.13394105024713"; LongitudeRef = W; TimeStamp = "15:08:57.93"; }; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload