class Exif::Tag::GPS::GPSDestBearingRef

0x0017 - GPSDestBearingRef

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 2010
def to_s
  case @formatted
  when 'T'
    'True direction'
  when 'M'
    'Magnetic direction'
  else
    'Unknown'
  end
end