Skip to main content

Class SatellitesInView

Represents information about the satellites in view in a GNSS receiver.

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

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

Properties

TalkerID

Gets or sets the Talker ID associated with the data, which describes the system in use. The default value is "GP".

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

TalkerSystemName

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

View Source
Declaration
public string TalkerSystemName { get; }

Satellites

Gets the array of Satellite objects representing the satellites in view.

View Source
Declaration
public Satellite[] Satellites { get; protected set; }

Methods

ToString()

Returns a string representation of the SatellitesInView object.

View Source
Declaration
public override string ToString()
Returns

System.String: A multiline string representation of the SatellitesInView object.

Implements