class NMEAPlus::Message::NMEA::SYS
SYS
- Hybrid System Configuration Limited utility, no recommended replacement
Public Instance Methods
Source
# File lib/nmea_plus/message/nmea/sys.rb, line 13 def systems abbr = { "L" => :loran_c, "O" => :omega, "T" => :transit, "G" => :gps, "D" => :decca } # drop blank fields and convert to symbol @fields[1..5].reject(&:empty?).map { |x| abbr[x] } end
Systems in use @!parse attr_reader :systems @return [Array<Symbol>]