class Exif::Tag::GPS::GPSLongitudeRef

0x0003 - GPSLongitudeRef

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1732
def to_s
  case @formatted
  when 'E'
    'East longitude'
  when 'W'
    'West longitude'
  else
    'Unknown'
  end
end