Class: Exif::Tag::GPS::GPSStatus

Inherits:
Base
  • Object
show all
Defined in:
lib/exifparser/tag.rb

Overview

0x0009 - GPSStatus

Instance Attribute Summary

Attributes inherited from Base

#IFD, #count, #data, #dataPos, #pos, #tagID

Instance Method Summary collapse

Methods inherited from Base

#formatExposureTime, #formatFNumber, #formatFocalLength, #formatLatLon, #initialize, #inspect, #name, #processData, #value

Constructor Details

This class inherits a constructor from Exif::Tag::Base

Instance Method Details

#to_sObject



1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
# File 'lib/exifparser/tag.rb', line 1816

def to_s
  case @formatted
  when 'A'
    'Measurement in progress'
  when 'V'
    'Measurement in interoperability'
  else
    'Unknown'
  end
end