Class: NMEAPlus::Message::NMEA::RMC
- Inherits:
-
NMEAMessage
- Object
- Base
- NMEAMessage
- NMEAPlus::Message::NMEA::RMC
- Defined in:
- lib/nmea_plus/message/nmea/rmc.rb
Overview
RMC - Recommended Minimum Navigation Information
Instance Attribute Summary collapse
-
#active? ⇒ Object
readonly
Field 2 of the payload, formatted with the function NMEAMessage._av_boolean.
-
#faa_mode ⇒ Object
readonly
Field 12 of the payload, formatted with the function Base._string.
-
#latitude ⇒ Float
readonly
Latitude in degrees.
-
#longitude ⇒ Float
readonly
Longitude in degrees.
-
#magnetic_variation_degrees ⇒ Float
readonly
Magnetic variation in degrees.
-
#speed_over_ground_knots ⇒ Object
readonly
Field 7 of the payload, formatted with the function Base._float.
-
#track_made_good_degrees_true ⇒ Object
readonly
Field 8 of the payload, formatted with the function Base._float.
-
#utc_time ⇒ Time
readonly
UTC time.
Attributes inherited from NMEAMessage
Attributes inherited from Base
#checksum, #data_type, #fields, #interpreted_data_type, #message_number, #next_part, #original, #payload, #prefix, #total_messages
Method Summary
Methods inherited from NMEAMessage
Methods inherited from Base
_float, _hex_to_integer, #_highest_contiguous_index, _integer, _interval_hms, _string, _utc_date_time, _utctime_hms, #add_message_part, #all_checksums_ok?, #all_messages_received?, #calculated_checksum, #checksum_ok?, degrees_minutes_to_decimal, field_reader, #highest_contiguous_index, nsew_signed_float
Instance Attribute Details
#active? ⇒ Object (readonly)
Returns field 2 of the payload, formatted with the function NMEAMessage._av_boolean.
16 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 16 field_reader :active?, 2, :_av_boolean |
#faa_mode ⇒ Object (readonly)
Returns field 12 of the payload, formatted with the function Base._string.
42 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 42 field_reader :faa_mode, 12, :_string |
#latitude ⇒ Float (readonly)
Latitude in degrees
21 22 23 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 21 def latitude self.class.degrees_minutes_to_decimal(@fields[3], @fields[4]) end |
#longitude ⇒ Float (readonly)
Longitude in degrees
28 29 30 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 28 def longitude self.class.degrees_minutes_to_decimal(@fields[5], @fields[6]) end |
#magnetic_variation_degrees ⇒ Float (readonly)
Magnetic variation in degrees
38 39 40 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 38 def magnetic_variation_degrees self.class.nsew_signed_float(@fields[10], @fields[11]) end |
#speed_over_ground_knots ⇒ Object (readonly)
Returns field 7 of the payload, formatted with the function Base._float.
32 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 32 field_reader :speed_over_ground_knots, 7, :_float |
#track_made_good_degrees_true ⇒ Object (readonly)
Returns field 8 of the payload, formatted with the function Base._float.
33 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 33 field_reader :track_made_good_degrees_true, 8, :_float |
#utc_time ⇒ Time (readonly)
UTC time
12 13 14 |
# File 'lib/nmea_plus/message/nmea/rmc.rb', line 12 def utc_time self.class._utc_date_time(@fields[9], @fields[1]) end |