The latitude of the fix, expressed in decimal degrees.
The longitude of the fix, expressed in decimal degrees.
Optional
altitude: numberOptional altitude constraint, in feet. The constraint indicates the aircraft must be at or below this altitude when passing the fix.
Optional
speed: numberOptional speed constraint, in KIAS (knots indicated airspeed). The constraint indicates the aircraft must be at or below this speed when passing the fix.
Optional
Readonly
altitudeOptional altitude constraint, in feet. The constraint indicates the aircraft must be at or below this altitude when passing the fix.
Readonly
latitudeThe latitude, in degrees, of this fix.
Readonly
longitudeThe longitude, in degrees, of this fix.
Optional
Readonly
speedOptional speed constraint, in KIAS (knots indicated airspeed). The constraint indicates the aircraft must be at or below this speed when passing the fix.
Static
Readonly
FTFeet in a metre.
Static
Readonly
NMIMetres in a nautical mile.
Static
Readonly
RMean radius of Earth, in metres.
Find the intersection point given two start points and bearings from those points.
The bearing from this fix, in degrees from true north.
The other fix.
The bearing from the other fix, in degrees from true north.
A new Fix at the intersection point.
Find the destination point from the current position given a bearing and distance.
Uses the haversine formula to compute the new latitude and longitude after travelling a specified distance along a given bearing on the Earth’s surface.
The bearing from this fix, in degrees from true north.
The distance, in nautical miles.
A new Fix at the destination point.
Find the great circle distance between two fixes.
The other fix.
The distance between the two fixes, in metres.
Find the initial bearing (forward azimuth) from this fix to another.
The other fix.
The initial bearing (forward azimuth), in degrees from true north.
Get the three-dimensional cartesian coordinates of this fix.
Get the coordinates of this fix in radians.
Static
degConvert degrees to radians.
Degrees.
Radians.
Static
fromCreate approach fix from a fix.
A fix.
Optional
altitude: numberOptional altitude constraint, in feet.
Optional
speed: numberOptional speed constraint, in KIAS (knots indicated airspeed).
A new ApproachFix with the specified constraints.
Static
fromCreate a fix from 3-dimensional cartesian coordinates.
3D cartesian coordinates.
Static
fromCreate fix from DMS coordinates string.
This method accepts a wide range of formats and notations for DMS (degrees, minutes, seconds) coordinates. However, the following criteria must always be satisfied:
Latitude in DMS.
Longitude in DMS.
Static
fromCreate a new fix from latitude and longitude in radians.
Latitude, in radians.
Longitude, in radians.
Static
radConvert radians to degrees.
Radians.
Degrees.
Represents a fix that is part of an Approach and may include optional operational constraints.
An ApproachFix extends the basic geographic fix by optionally specifying altitude and speed constraints that must be adhered to when passing this fix during an approach procedure.