Coordinate Constructor (Int64, Int64, Double, Double, NullableSingle, NullableInt32, NullableSingle) |
Creates a new object.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Coordinate(
long dataVersion,
long tick,
double latitude,
double longitude,
Nullable<float> heading,
Nullable<int> altitude,
Nullable<float> groundSpeed
)
Public Sub New (
dataVersion As Long,
tick As Long,
latitude As Double,
longitude As Double,
heading As Nullable(Of Single),
altitude As Nullable(Of Integer),
groundSpeed As Nullable(Of Single)
)
public:
Coordinate(
long long dataVersion,
long long tick,
double latitude,
double longitude,
Nullable<float> heading,
Nullable<int> altitude,
Nullable<float> groundSpeed
)
new :
dataVersion : int64 *
tick : int64 *
latitude : float *
longitude : float *
heading : Nullable<float32> *
altitude : Nullable<int> *
groundSpeed : Nullable<float32> -> Coordinate
Parameters
- dataVersion
- Type: SystemInt64
The DataVersion current when the coordinate was recorded. - tick
- Type: SystemInt64
The time the coordinate was recorded. - latitude
- Type: SystemDouble
The latitude of the aircraft. - longitude
- Type: SystemDouble
The longitude of the aircraft. - heading
- Type: SystemNullableSingle
The heading in degrees from north that the aircraft was pointing in, if known. - altitude
- Type: SystemNullableInt32
The altitude of the aircraft. - groundSpeed
- Type: SystemNullableSingle
The speed of the aircraft.
See Also