class Exif::Tag::GPS::GPSImgDirectionRef

0x0010 - GPSImgDirectionRef

Public Instance Methods

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