Class CourseOverGround
Decoded data for the VTG - Course over ground and ground speed messages.
Assembly: Meadow.Contracts.dll
View Source
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
public string TalkerID { get; set; }
TalkerSystemName
Retrieves the full name associated with the TalkerID via the
KnownTalkerIDs
property of the Lookups class.
View Source
public string TalkerSystemName { get; }
TimeOfReading
Time the reading was generated.
View Source
public DateTime? TimeOfReading { get; set; }
TrueHeading
True heading in degrees.
View Source
public decimal TrueHeading { get; set; }
MagneticHeading
Magnetic heading.
View Source
public decimal MagneticHeading { get; set; }
Knots
Speed measured in knots.
View Source
public decimal Knots { get; set; }
Kph
Speed measured in kilometers per hour.
View Source
public decimal Kph { get; set; }
Methods
ToString()
Returns a formatted string representing the Meadow.Peripherals.Sensors.Location.Gnss.CourseOverGround object.
View Source
public override string ToString()
Returns
System.String
: A formatted string representing the Meadow.Peripherals.Sensors.Location.Gnss.CourseOverGround object.