Class SatelliteInformation

Definition

Namespace:
Tizen.Location
Assembly:
Tizen.Location.dll

This class contains the information of the satellite under consideration.

C#
Copy
public class SatelliteInformation
Inheritance
object
SatelliteInformation

Constructors

View Source

SatelliteInformation(uint, uint, uint, uint, bool)

The Class constructor for the SatelliteInformation class.

Declaration
C#
Copy
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 Source

Active

The operational status of the satellite.

Declaration
C#
Copy
public bool Active { get; }
Property Value
Type Description
bool
View Source

Azimuth

The azimuth information of the satellite.

Declaration
C#
Copy
public uint Azimuth { get; }
Property Value
Type Description
uint
View Source

Elevation

The elevation information of the satellite.

Declaration
C#
Copy
public uint Elevation { get; }
Property Value
Type Description
uint
View Source

Prn

The PRN of the satellite.

Declaration
C#
Copy
public uint Prn { get; }
Property Value
Type Description
uint
View Source

Snr

The SNR of the satellite.

Declaration
C#
Copy
public uint Snr { get; }
Property Value
Type Description
uint