Class: Exif::Tag::GPS::GPSDestLatitudeRef

Inherits:
Base
  • Object
show all
Defined in:
lib/exifparser/tag.rb

Overview

0x0013 - GPSDestLatitudeRef

Instance Attribute Summary

Attributes inherited from Base

#IFD, #count, #data, #dataPos, #pos, #tagID

Instance Method Summary collapse

Methods inherited from Base

#formatExposureTime, #formatFNumber, #formatFocalLength, #formatLatLon, #initialize, #inspect, #name, #processData, #value

Constructor Details

This class inherits a constructor from Exif::Tag::Base

Instance Method Details

#to_sObject



1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
# File 'lib/exifparser/tag.rb', line 1938

def to_s
  case @formatted
  when 'N'
    'North latitude'
  when 'S'
    'South latitude'
  else
    'Unknown'
  end
end