class Exif::Tag::GPS::GPSDifferential

0x001E

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 2077
def to_s
  case @formatted
  when 0
    'Measurement without differential correction'
  when 1
    'Differential correction applied'
  else
    'Unknown'
  end
end