Class: Exif::Tag::GPS::GPSTimeStamp

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

Overview

0x0007 - GPSTimeStamp

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



1792
1793
1794
1795
1796
1797
# File 'lib/exifparser/tag.rb', line 1792

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

#to_sObject



1799
1800
1801
# File 'lib/exifparser/tag.rb', line 1799

def to_s
  @formatted.join(",")
end