Page 1 of 1

System.GPS.Latitude + Longitude?

Posted: 14 Jun 2015 17:31
by highend
Can anyone (who owns images with gps coordinates in exif data entries) test if

::text property("System.GPS.Latitude");
::text property("System.GPS.Longitude");

outputs anything on such a (selected) image?

::text property("System.GPS.LatitudeRef");
works for me on an image where latitude, latituderef, longitude, longituderef and a few other things (altituderef, etc.) where stored with exiftool.
but latitude/longitude only don't provide any values...

Re: System.GPS.Latitude + Longitude?

Posted: 14 Jun 2015 23:42
by PeterH
I just did - to me it seems it's a windows bug filling these fields.

Extract of my properties-command, regarding GPS:

Code: Select all

  240                             System.GPS.AltitudeRef = (   1) 0
  242                                    System.GPS.Date = (  19) 25.04.2014 12:00:00
  263                            System.GPS.ImgDirection = (   6) 272,11
  264                 System.GPS.ImgDirectionDenominator = (   3) 100
  265                   System.GPS.ImgDirectionNumerator = (   5) 27211
  266                         System.GPS.ImgDirectionRef = (   1) T
  270                             System.GPS.LatitudeRef = (   1) N
  274                            System.GPS.LongitudeRef = (   1) E
  275                                System.GPS.MapDatum = (   6) WGS-84
  278                              System.GPS.Satellites = (   2) 12
  288                               System.GPS.VersionID = (  28) [Byte Array (4)] 02 03 00 00
:arrow: System.GPS.Latitude and .Longitude *are* queried, but no return value!

Extract of EXIF-info, from irfanview:

Code: Select all

GPS information: - 
GPSVersionID - 2.3.0.0
GPSLatitudeRef - N
GPSLatitude - 52  6  18.46 (52.105128)
GPSLongitudeRef - E
GPSLongitude - 7  54  8.68 (7.902411)
GPSAltitudeRef - Sea level
GPSAltitude - 0.00/0.00 m
GPSTimeStamp - 11  4  56.00
GPSImgDirectionRef - True direction
GPSImgDirection - 272.11
GPSDateStamp - 2014:04:25
It seems the labels are the same, while especially Latitude and Longitude are missing.

Re: System.GPS.Latitude + Longitude?

Posted: 14 Jun 2015 23:50
by highend
Ok, thanks PeterH!