class Exif::Tag::GPS::GPSLatitudeRef

0x0001 - GPSLatitudeRef

Public Instance Methods

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