class Exif::Tag::GPS::GPSDestLongitudeRef

0x0015 - GPSDestLongitudeRef

Public Instance Methods

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