|
| | RMC (std::string talkerId, unsigned int utcFix, char status, double latitude, char latitudeDirection, double longitude, char longitudeDirection, double speedOverGround, double courseOverGround, unsigned int date, double magneticVariation, char magneticVariationDirection, char modeIndicator, char navigationStatus) |
| | Construct an RMC message from individual field values.
|
| |
| | RMC (const RMC &)=default |
| |
| RMC & | operator= (const RMC &)=default |
| |
| | RMC (RMC &&) noexcept=default |
| |
| RMC & | operator= (RMC &&) noexcept=default |
| |
| | ~RMC () override=default |
| |
| std::unique_ptr< nmealib::Message > | clone () const override |
| | Create a polymorphic copy of this RMC message.
|
| |
| unsigned int | getUtcFix () const noexcept |
| | Get UTC fix time in hhmmss[.ss] numeric form.
|
| |
| char | getStatus () const noexcept |
| | Get status indicator.
|
| |
| double | getLatitude () const noexcept |
| | Get latitude in decimal degrees.
|
| |
| char | getLatitudeDirection () const noexcept |
| | Get latitude hemisphere indicator ('N' or 'S').
|
| |
| double | getLongitude () const noexcept |
| | Get longitude in decimal degrees.
|
| |
| char | getLongitudeDirection () const noexcept |
| | Get longitude hemisphere indicator ('E' or 'W').
|
| |
| double | getSpeedOverGround () const noexcept |
| | Get speed over ground in knots.
|
| |
| double | getCourseOverGround () const noexcept |
| | Get course over ground in degrees.
|
| |
| unsigned int | getDate () const noexcept |
| | Get date in ddmmyy numeric form.
|
| |
| double | getMagneticVariation () const noexcept |
| | Get magnetic variation in degrees.
|
| |
| char | getMagneticVariationDirection () const noexcept |
| | Get magnetic variation direction ('E' or 'W').
|
| |
| char | getModeIndicator () const noexcept |
| | Get mode indicator character.
|
| |
| char | getNavigationStatus () const noexcept |
| | Get navigation status character.
|
| |
| std::string | getStringContent (bool verbose) const noexcept override |
| | Return a human-readable string representation of this message.
|
| |
| bool | operator== (const RMC &other) const noexcept |
| | Compare two RMC messages for equality.
|
| |
| | Message0183 (const Message0183 &)=default |
| | Copy constructor.
|
| |
| Message0183 & | operator= (const Message0183 &)=default |
| | Copy assignment operator.
|
| |
| | Message0183 (Message0183 &&) noexcept=default |
| | Move constructor.
|
| |
| Message0183 & | operator= (Message0183 &&) noexcept=default |
| | Move assignment operator.
|
| |
| | ~Message0183 () override=default |
| | Destructor.
|
| |
| char | getStartChar () const noexcept |
| | Returns the start character of the NMEA 0183 sentence.
|
| |
| std::string | getTalker () const noexcept |
| | Returns the talker identifier extracted from the sentence.
|
| |
| std::string | getSentenceType () const noexcept |
| | Returns the sentence type identifier extracted from the sentence.
|
| |
| std::string | getPayload () const noexcept |
| | Returns the payload of the NMEA 0183 sentence.
|
| |
| std::string | getChecksumStr () const |
| | Get the checksum string extracted from the raw sentence.
|
| |
| std::string | getCalculatedChecksumStr () const noexcept |
| | Get the calculated checksum string for the sentence payload.
|
| |
| std::string | serialize () const override |
| | Returns the wire-format representation of the NMEA 0183 sentence, that is, the raw information that was passed when the message was created.
|
| |
| bool | operator== (const Message0183 &other) const noexcept |
| | Compares two Message0183 objects for equality based on their content and timestamp.
|
| |
| bool | validate () const noexcept override |
| | Returns whether the message is valid or not.
|
| |
| | Message () |
| |
| | Message (std::string raw, Type type=Type::Unknown, TimePoint ts=std::chrono::system_clock::now()) noexcept |
| |
| virtual | ~Message () |
| |
| | Message (const Message &)=default |
| |
| Message & | operator= (const Message &)=default |
| |
| | Message (Message &&) noexcept=default |
| |
| Message & | operator= (Message &&) noexcept=default |
| |
| Type | getType () const noexcept |
| | Returns the message type.
|
| |
| const std::string & | getRawData () const noexcept |
| | Returns the raw, unmodified data string as received.
|
| |
| TimePoint | getTimestamp () const noexcept |
| | Returns the timestamp associated with this message.
|
| |
| bool | operator== (const Message &other) const noexcept |
| | Compares two Message objects for equality based on their content.
|
| |
Represents a parsed NMEA 0183 RMC (Recommended Minimum Navigation Information) sentence.
RMC carries core navigation data including UTC time, status, position, speed/course over ground, date, magnetic variation, and mode/status fields.
Sentence format (common modern variant):
$--
RMC,hhmmss.ss,A,llll.ll,a,yyyyy.yy,a,x.x,x.x,ddmmyy,x.x,a,a,a*hh<CR><LF>
Represents a parsed NMEA 0183 RMC (Recommended Minimum Navigation Information) sentence.
Definition at line 37 of file rmc.h.