Class: Exif::Tag::GPS::GPSDestLatitude

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

Overview

0x0014 - GPSDestLatitude

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



1956
1957
1958
1959
1960
1961
# File 'lib/exifparser/tag.rb', line 1956

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

#to_sObject



1963
1964
1965
# File 'lib/exifparser/tag.rb', line 1963

def to_s
  formatLatLon @formatted
end