Class: Exif::Tag::GPS::GPSLatitude

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

Overview

0x0002 - GPSLatitude

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



1698
1699
1700
1701
1702
1703
# File 'lib/exifparser/tag.rb', line 1698

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

#to_sObject



1705
1706
1707
# File 'lib/exifparser/tag.rb', line 1705

def to_s
  formatLatLon @formatted
end