Class SatelliteInformation

Definition

Namespace:
Tizen.Location
Assembly:
Tizen.Location.dll
API Level:
3

This class contains the information of the satellite under consideration.

C#
Copy
public class SatelliteInformation
Inheritance
System.Object
SatelliteInformation

Constructors

View Source

SatelliteInformation(UInt32, UInt32, UInt32, UInt32, Boolean)

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
System.UInt32 azimuth

The azimuth value of the satellite in degrees.

System.UInt32 elevation

The elevation of the satellite in meters.

System.UInt32 prn

The PRN value of the satellite.

System.UInt32 snr

The SNR value of the satellite in dB.

Boolean active

The flag signaling if the satellite is in use.

API Level: 3

Properties

View Source

Active

The operational status of the satellite.

Declaration
C#
Copy
public bool Active { get; }
Property Value
Type Description
Boolean
API Level: 3
View Source

Azimuth

The azimuth information of the satellite.

Declaration
C#
Copy
public uint Azimuth { get; }
Property Value
Type Description
System.UInt32
API Level: 3
View Source

Elevation

The elevation information of the satellite.

Declaration
C#
Copy
public uint Elevation { get; }
Property Value
Type Description
System.UInt32
API Level: 3
View Source

Prn

The PRN of the satellite.

Declaration
C#
Copy
public uint Prn { get; }
Property Value
Type Description
System.UInt32
API Level: 3
View Source

Snr

The SNR of the satellite.

Declaration
C#
Copy
public uint Snr { get; }
Property Value
Type Description
System.UInt32
API Level: 3