Class: Exif::Tag::GPS::GPSLongitudeRef
- Defined in:
- lib/exifparser/tag.rb
Overview
0x0003 - GPSLongitudeRef
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
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 |
# File 'lib/exifparser/tag.rb', line 1716 def to_s case @formatted when 'E' 'East longitude' when 'W' 'West longitude' else 'Unknown' end end |