class NMEAPlus::Message::NMEA::SSF
SSF
- Position Correction Offset
Amount of offset, and direction of offset, applied to measured position Lat/Lon to produce a displayed position Lat/Lon. Limited utility, no recommended replacement
Public Instance Methods
Source
# File lib/nmea_plus/message/nmea/ssf.rb, line 15 def latitude_offset_minutes self.class.nsew_signed_float(@fields[1], @fields[2]) end
Latitude offset, minutes N/S @!parse attr_reader :latitude_offset_minutes @return [Float]
Source
# File lib/nmea_plus/message/nmea/ssf.rb, line 22 def longitude_offset_minutes self.class.nsew_signed_float(@fields[3], @fields[4]) end
Longitude offset, minutes E/W @!parse attr_reader :longitude_offset_minutes @return [Float]