Class: Exif::Tag::GPS::GPSDestLongitude

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

Overview

0x0016 - GPSDestLongitude

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



1992
1993
1994
1995
1996
1997
# File 'lib/exifparser/tag.rb', line 1992

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

#to_sObject



1999
2000
2001
# File 'lib/exifparser/tag.rb', line 1999

def to_s
  formatLatLon @formatted
end