class Exif::Tag::GPS::GPSVersionID

0x0000 - GPSVersionID

type : byte count: 4

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1680
def to_s
  case @formatted
  when [2,2,0,0]
    "Version 2.2"
  else
    "Unknown"
  end
end