Skip to main content

Class CourseOverGround

Decoded data for the VTG - Course over ground and ground speed messages.

Assembly: Meadow.Contracts.dll
View Source
Declaration
public class CourseOverGround : IGnssResult

Implements:
Meadow.Peripherals.Sensors.Location.Gnss.IGnssResult

Properties

TalkerID

The first two letters (after the starting delimiter) comprise the Talker ID, which describes the system in use, for instance "GL" means that the data came from the GLONASS system. "BD" means BeiDou, etc.

Default value is "GP".

View Source
Declaration
public string TalkerID { get; set; }

TalkerSystemName

Retrieves the full name associated with the TalkerID via the KnownTalkerIDs property of the Lookups class.

View Source
Declaration
public string TalkerSystemName { get; }

TimeOfReading

Time the reading was generated.

View Source
Declaration
public DateTime? TimeOfReading { get; set; }

TrueHeading

True heading in degrees.

View Source
Declaration
public decimal TrueHeading { get; set; }

MagneticHeading

Magnetic heading.

View Source
Declaration
public decimal MagneticHeading { get; set; }

Knots

Speed measured in knots.

View Source
Declaration
public decimal Knots { get; set; }

Kph

Speed measured in kilometers per hour.

View Source
Declaration
public decimal Kph { get; set; }

Methods

ToString()

Returns a formatted string representing the Meadow.Peripherals.Sensors.Location.Gnss.CourseOverGround object.

View Source
Declaration
public override string ToString()
Returns

System.String: A formatted string representing the Meadow.Peripherals.Sensors.Location.Gnss.CourseOverGround object.

Implements