VectorVelocity Class |
Namespace: VirtualRadar.Interface.Adsb
The VectorVelocity type exposes the following members.
Name | Description | |
---|---|---|
VectorVelocity | Initializes a new instance of the VectorVelocity class |
Name | Description | |
---|---|---|
Bearing |
Gets the bearing as calculated from the other properties.
| |
EastWestExceeded |
Gets or sets a value indicating that the actual velocity along the east-west axis is higher than the value in EastWestVelocity.
| |
EastWestVelocity |
Gets or sets the velocity in knots in either the east or west direction.
| |
IsSoutherlyVelocity |
Gets or sets a value indicating that the north-south velocity is south.
| |
IsWesterlyVelocity |
Gets or sets a value indicating that the east-west velocity is west.
| |
NorthSouthExceeded |
Gets or sets a value indicating that the actual velocity along the north-south axis is higher than the value in NorthSouthVelocity.
| |
NorthSouthVelocity |
Gets or sets the velocity in knots in either the north or south direction.
| |
Speed |
Gets the speed in knots as calculated from the other properties.
|
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString |
Returns an English description of the velocity.
(Overrides ObjectToString.) |
ADS-B allows velocity and heading to be specified in one of two ways. One is an explicit declaration of the heading as a bearing and a velocity. The other is declared as two speeds, one in the east-west direction and the other in the north-south direction, from which the bearing and actual speed can be calculated using trigonometry. This class declares the parameters transmitted for the latter and also carries the code to derive the bearing and speed.