class NMEAPlus::Message::NMEA::SIU
SIU
- Loran-C Stations in Use
The use of $–GLC is recommended @see GLC
Public Instance Methods
Source
# File lib/nmea_plus/message/nmea/siu.rb, line 14 def stations_in_use # dummy index 0, empty fields indicate stations not in use [false] + (1..8).to_a.map { |x| !(@fields[x].nil? || @fields[x].empty?) } end
Array of flags for stations in use, indexed by station number @!parse attr_reader :stations_in_use @return [Array<Boolean>]