Class: Exif::Tag::GPS::GPSMeasureMode
- Defined in:
- lib/exifparser/tag.rb
Overview
0x000A - GPSMeasureMode
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_s ⇒ Object
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 |
# File 'lib/exifparser/tag.rb', line 1818 def to_s case @formatted when '2' '2-dimensional measurement' when '3' '3-dimensional measurement' else 'Unknown' end end |