Sha256: c04edcad233f54bc09e1d83bca9f4db0abcbfc210bd6ebdd447fa8838c38cbe9
Contents?: true
Size: 330 Bytes
Versions: 2
Compression:
Stored size: 330 Bytes
Contents
class Float # Converts a packed DMS value (DDDMMMSSS.SS) into decimal degress. # # @return [Float] def to_decimal_degress FFI::GDAL.GDALPackedDMSToDec(self) end # Converts decimal degrees int a packed DMS value (DDDMMMSSS.SS). # # @return [Float] def to_dms FFI::GDAL.GDALDecToPackedDMS(self) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffi-gdal-1.0.0.beta3 | lib/ext/float_ext.rb |
ffi-gdal-1.0.0.beta1 | lib/ext/float_ext.rb |