Class: Exif::Tag::GPS::GPSDifferential

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

Overview

0x001E

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, #processData, #value

Constructor Details

This class inherits a constructor from Exif::Tag::Base

Instance Method Details

#to_sObject



2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
# File 'lib/exifparser/tag.rb', line 2077

def to_s
  case @formatted
  when 0
    'Measurement without differential correction'
  when 1
    'Differential correction applied'
  else
    'Unknown'
  end
end