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



1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
# File 'lib/exifparser/tag.rb', line 1800

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