Skip to main content

Class ActiveSatellites

Active satellite information (GSA message information).

Assembly: Meadow.Contracts.dll
View Source
Declaration
public class ActiveSatellites : 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; }

Dimensions

Dimensional fix type (No fix, 2D or 3D?)

View Source
Declaration
public DimensionalFixType Dimensions { get; set; }

SatelliteSelection

Satellite selection type (Automatic or manual).

View Source
Declaration
public ActiveSatelliteSelection SatelliteSelection { get; set; }

SatellitesUsedForFix

PRNs of the satellites used in the fix.

View Source
Declaration
public string[]? SatellitesUsedForFix { get; set; }

DilutionOfPrecision

Dilution of precision for the reading.

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

HorizontalDilutionOfPrecision

Horizontal dilution of precision for the reading.

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

VerticalDilutionOfPrecision

Vertical dilution of precision for the reading.

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

Methods

ToString()

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

View Source
Declaration
public override string ToString()
Returns

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

Implements