Class SatelliteInformation
Definition
- Assembly:
- Tizen.Location.dll
This class contains the information of the satellite under consideration.
public class SatelliteInformation
- Inheritance
-
objectSatelliteInformation
Constructors
View SourceSatelliteInformation(uint, uint, uint, uint, bool)
The Class constructor for the SatelliteInformation class.
Declaration
public SatelliteInformation(uint azimuth, uint elevation, uint prn, uint snr, bool active)
Parameters
Type | Name | Description |
---|---|---|
uint | azimuth | The azimuth value of the satellite in degrees. |
uint | elevation | The elevation of the satellite in meters. |
uint | prn | The PRN value of the satellite. |
uint | snr | The SNR value of the satellite in dB. |
bool | active | The flag signaling if the satellite is in use. |
Properties
View SourceActive
The operational status of the satellite.
Declaration
public bool Active { get; }
Property Value
Type | Description |
---|---|
bool |
Azimuth
The azimuth information of the satellite.
Declaration
public uint Azimuth { get; }
Property Value
Type | Description |
---|---|
uint |
Elevation
The elevation information of the satellite.
Declaration
public uint Elevation { get; }
Property Value
Type | Description |
---|---|
uint |
Prn
The PRN of the satellite.
Declaration
public uint Prn { get; }
Property Value
Type | Description |
---|---|
uint |
Snr
The SNR of the satellite.
Declaration
public uint Snr { get; }
Property Value
Type | Description |
---|---|
uint |