class Exif::Tag::GPS::GPSDestLongitude

0x0016 - GPSDestLongitude

Public Instance Methods

processData() click to toggle source
# File lib/exifparser/tag.rb, line 1992
def processData
  @formatted = []
  partition_data(@count) do |data|
    @formatted.push _formatData(data)
  end
end
to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1999
def to_s
  formatLatLon @formatted
end