Class: NMEAPlus::Message::NMEA::TRF
- Inherits:
-
NMEAMessage
- Object
- Base
- NMEAMessage
- NMEAPlus::Message::NMEA::TRF
- Defined in:
- lib/nmea_plus/message/nmea/trf.rb
Instance Attribute Summary collapse
-
#doppler_intervals ⇒ Object
readonly
Field 9 of the payload, formatted with the function Base#_integer.
-
#elevation_angle ⇒ Object
readonly
Field 7 of the payload, formatted with the function Base#_float.
-
#iterations ⇒ Object
readonly
Field 8 of the payload, formatted with the function Base#_integer.
- #latitude ⇒ Float readonly
- #longitude ⇒ Float readonly
-
#satellite ⇒ Object
readonly
Field 11 of the payload, formatted with the function Base#_integer.
-
#update_distance_nautical_miles ⇒ Object
readonly
Field 10 of the payload, formatted with the function Base#_float.
- #utc_time ⇒ Time readonly
-
#valid? ⇒ Object
readonly
Field 12 of the payload, formatted with the function NMEAMessage#_av_boolean.
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
#_degrees_minutes_to_decimal, #_float, #_hex_to_integer, #_highest_contiguous_index, #_integer, #_interval_hms, #_nsew_signed_float, #_string, #_utc_date_time, #_utctime_hms, #add_message_part, #all_checksums_ok?, #all_messages_received?, #calculated_checksum, #checksum_ok?, field_reader, #highest_contiguous_index
Instance Attribute Details
#doppler_intervals ⇒ Object (readonly)
Returns field 9 of the payload, formatted with the function Base#_integer.
27 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 27 field_reader :doppler_intervals, 9, :_integer |
#elevation_angle ⇒ Object (readonly)
Returns field 7 of the payload, formatted with the function Base#_float.
25 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 25 field_reader :elevation_angle, 7, :_float |
#iterations ⇒ Object (readonly)
Returns field 8 of the payload, formatted with the function Base#_integer.
26 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 26 field_reader :iterations, 8, :_integer |
#latitude ⇒ Float (readonly)
15 16 17 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 15 def latitude _degrees_minutes_to_decimal(@fields[3], @fields[4]) end |
#longitude ⇒ Float (readonly)
21 22 23 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 21 def longitude _degrees_minutes_to_decimal(@fields[5], @fields[6]) end |
#satellite ⇒ Object (readonly)
Returns field 11 of the payload, formatted with the function Base#_integer.
29 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 29 field_reader :satellite, 11, :_integer |
#update_distance_nautical_miles ⇒ Object (readonly)
Returns field 10 of the payload, formatted with the function Base#_float.
28 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 28 field_reader :update_distance_nautical_miles, 10, :_float |
#utc_time ⇒ Time (readonly)
9 10 11 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 9 def utc_time _utc_date_time(@fields[2], @fields[1]) end |
#valid? ⇒ Object (readonly)
Returns field 12 of the payload, formatted with the function NMEAMessage#_av_boolean.
30 |
# File 'lib/nmea_plus/message/nmea/trf.rb', line 30 field_reader :valid?, 12, :_av_boolean |