Class: Exif::Tag::GPS::GPSLongitude

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

Overview

0x0004 - GPSLongitude

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, #value

Constructor Details

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

Instance Method Details

#processDataObject



1750
1751
1752
1753
1754
1755
# File 'lib/exifparser/tag.rb', line 1750

def processData
  @formatted = []
  partition_data(@count) do |data|
    @formatted.push _formatData(data)
  end
end

#to_sObject



1757
1758
1759
# File 'lib/exifparser/tag.rb', line 1757

def to_s
  formatLatLon @formatted
end