class Exif::Tag::GPS::GPSDestLatitudeRef

0x0013 - GPSDestLatitudeRef

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1938
def to_s
  case @formatted
  when 'N'
    'North latitude'
  when 'S'
    'South latitude'
  else
    'Unknown'
  end
end