# GPS Variables (Legacy) {{< callout context="caution" title="IMPORTANT!" icon="outline/alert-triangle" >}} FS9GPS variables are deprecated in Microsoft Flight Simulator 2024. The variables will still work as they did in MSFS 2020 but **all support is discontinued**. Since WASM modules now run on their own thread, you may encounter data consistency issues or crashes using these from WASM modules. See [GPS Variables In MSFS 2024](#gps-vars-in-msfs-2024) for more information. {{< /callout >}} GPSVars are variables that third party APIs and add-ons can use to get information about the *position* in the world of any number of things, like an airport, a waypoint, etc... as well as a number of other pieces of data used when querying or creating flight plans. These variables can be accessed using the [Reverse Polish Notation](../../../programming-apis/reverse-polish-notation/) `C:` variable type, along with the `fs9gps` module name, for example: ``` codeblock Get: (C:fs9gps:Variable Name , Units) Set: (>C:fs9gps:Variable Name , Units) ``` Within the [JavaScript](../../javascript/javascript/) API, these are retrieved like SimVars using: ``` cpp GetSimVarValue(name, unit, dataSource = "") ``` You can find detailed information about each particular GPS Var on the following pages: - [Airports](../airports/) - [Intersections](../intersections/) - [NDB and VOR](../ndb-and-vor/) - [Flightplans](../flightplans/) - [Miscellaneous](../miscellaneous/) ### GPS Vars In MSFS 2024 Due to the threading model of Microsoft Flight Simulator 2024, it can cause changes in cycle wait times from one variable query to the next, something that was never possible in previous versions of the simulation. Therefor you must take great care to leave enough wait time in the consuming code to account for this possibility. The flight plan `FS9GPS` variables do not always fully interact with the rest of the current flight plan related systems in the simulator (eg: ATC, World Map, EFB, Career, etc...). When reading or writing the flight plan using these legacy variables, you may find unexpected data or behavior regarding those systems. If you have to use these variables for legacy maintenance reasons, do not, **under any circumstances**, write to the flight plan from JavaScript using these variables, as it is guaranteed to result in eventual data corruption and/or crashes. It is therefor **strongly recommend** that you switch to equivalent APIs from one of the modern and current API's available: - ##### Facility Data In JavaScript, we strongly recommend the MSFS Avionics Framework [Facility Loader](https://microsoft.github.io/msfs-avionics-mirror/2024/docs/api/@microsoft/msfs-sdk/classes/FacilityLoader), or the [`JS_LISTENER_FACILITY`](../../javascript/coherent-listeners/js_listener_facility/) Coherent listener and associated API calls. In WASM, we recommend the SimConnect [Facilities](../../simconnect/api-reference/facilities/facilities/) API. - ##### FlightPlan In Javascript, we strongly recommend the MSFS Avionics Framework FlightPlanRouteManager, or the [`JS_LISTENER_PLANNEDROUTE`](../../javascript/coherent-listeners/js_listener_plannedroute/) Coherent listener and associated API calls. In WASM, we recommend the [Planned Route API](../../wasm/planned-route-api/planned-route-api/). - ##### Geographical And Navigational Math In Javascript, we recommend the MSFS Avionics Framework's geographical mathematics classes ([GeoPoint](https://microsoft.github.io/msfs-avionics-mirror/2024/docs/api/@microsoft/msfs-sdk/classes/GeoPoint), [GeoCircle](https://microsoft.github.io/msfs-avionics-mirror/2024/docs/api/@microsoft/msfs-sdk/classes/GeoCircle), [NavMath](https://microsoft.github.io/msfs-avionics-mirror/2024/docs/api/@microsoft/msfs-sdk/classes/NavMath)). In WASM, there are a number of libraries of this type of math available, but we don't have a specific recommendation amongst them, nor is one included with the SDK. ### GPSVar Index Below you can find indexed all the SimVars available, presented this way to facilitate finding the required variable at a glance or through the search system: #### Airports {{< params/columns >}} {{< params/links "WaypointAirportAirspace" "../airports/#WaypointAirportAirspace" >}} {{< params/links "WaypointAirportCity" "../airports/#WaypointAirportCity" >}} {{< params/links "WaypointAirportCurrentFrequency" "../airports/#WaypointAirportCurrentFrequency" >}} {{< params/links "WaypointAirportElevation" "../airports/#WaypointAirportElevation" >}} {{< params/links "WaypointAirportFrequenciesNumber" "../airports/#WaypointAirportFrequenciesNumber" >}} {{< params/links "WaypointAirportFrequencyLimit" "../airports/#WaypointAirportFrequencyLimit" >}} {{< params/links "WaypointAirportFrequencyName" "../airports/#WaypointAirportFrequencyName" >}} {{< params/links "WaypointAirportFrequencyType" "../airports/#WaypointAirportFrequencyType" >}} {{< params/links "WaypointAirportFrequencyValue" "../airports/#WaypointAirportFrequencyValue" >}} {{< params/links "WaypointAirportFuel" "../airports/#WaypointAirportFuel" >}} {{< params/links "WaypointAirportICAO" "../airports/#WaypointAirportICAO" >}} {{< params/links "WaypointAirportIdent" "../airports/#WaypointAirportIdent" >}} {{< params/links "WaypointAirportKind" "../airports/#WaypointAirportKind" >}} {{< params/links "WaypointAirportLatitude" "../airports/#WaypointAirportLatitude" >}} {{< params/links "WaypointAirportLongestRunwayDirection" "../airports/#WaypointAirportLongestRunwayDirection" >}} {{< params/links "WaypointAirportLongitude" "../airports/#WaypointAirportLongitude" >}} {{< params/links "WaypointAirportName" "../airports/#WaypointAirportName" >}} {{< params/links "WaypointAirportRadarCoverage" "../airports/#WaypointAirportRadarCoverage" >}} {{< params/links "WaypointAirportRegion" "../airports/#WaypointAirportRegion" >}} {{< params/links "WaypointAirportSelectedFrequencyIndex" "../airports/#WaypointAirportSelectedFrequencyIndex" >}} {{< params/links "WaypointAirportSelectedFrequencyValue" "../airports/#WaypointAirportSelectedFrequencyValue" >}} {{< params/links "WaypointAirportTowered" "../airports/#WaypointAirportTowered" >}} {{< params/links "WaypointAirportType" "../airports/#WaypointAirportType" >}} {{< /params/columns >}} #### Airport Approaches {{< params/columns >}} {{< params/links "WaypointAirportApproachCurrentLeg" "../airports/#WaypointAirportApproachCurrentLeg" >}} {{< params/links "WaypointAirportApproachCurrentLegBearing" "../airports/#WaypointAirportApproachCurrentLegBearing" >}} {{< params/links "WaypointAirportApproachCurrentLegDistance" "../airports/#WaypointAirportApproachCurrentLegDistance" >}} {{< params/links "WaypointAirportApproachCurrentLegIcao" "../airports/#WaypointAirportApproachCurrentLegIcao" >}} {{< params/links "WaypointAirportApproachCurrentLegIsMinutes" "../airports/#WaypointAirportApproachCurrentLegIsMinutes" >}} {{< params/links "WaypointAirportApproachCurrentLegType" "../airports/#WaypointAirportApproachCurrentLegType" >}} {{< params/links "WaypointAirportApproachCurrentTransition" "../airports/#WaypointAirportApproachCurrentTransition" >}} {{< params/links "WaypointAirportApproachesNumber" "../airports/#WaypointAirportApproachesNumber" >}} {{< params/links "WaypointAirportApproachGps" "../airports/#WaypointAirportApproachGps" >}} {{< params/links "WaypointAirportApproachName" "../airports/#WaypointAirportApproachName" >}} {{< params/links "WaypointAirportApproachNumberLegs" "../airports/#WaypointAirportApproachNumberLegs" >}} {{< params/links "WaypointAirportApproachSelectedTransition" "../airports/#WaypointAirportApproachSelectedTransition" >}} {{< params/links "WaypointAirportApproachTransitionLatitude" "../airports/#WaypointAirportApproachTransitionLatitude" >}} {{< params/links "WaypointAirportApproachTransitionLongitude" "../airports/#WaypointAirportApproachTransitionLongitude" >}} {{< params/links "WaypointAirportApproachTransitionName" "../airports/#WaypointAirportApproachTransitionName" >}} {{< params/links "WaypointAirportApproachTransitionSize" "../airports/#WaypointAirportApproachTransitionSize" >}} {{< params/links "WaypointAirportApproachTransitionsNumber" "../airports/#WaypointAirportApproachTransitionsNumber" >}} {{< params/links "WaypointAirportBestApproach" "../airports/#WaypointAirportBestApproach" >}} {{< params/links "WaypointAirportBestApproachEnum" "../airports/#WaypointAirportBestApproachEnum" >}} {{< params/links "WaypointAirportCurrentApproach" "../airports/#WaypointAirportCurrentApproach" >}} {{< params/links "WaypointAirportSelectedApproach" "../airports/#WaypointAirportSelectedApproach" >}} {{< /params/columns >}} #### Airport Arrivals {{< params/columns >}} {{< params/links "WaypointAirportArrivalCurrentWaypoint" "../airports/#WaypointAirportArrivalCurrentWaypoint" >}} {{< params/links "WaypointAirportArrivalName" "../airports/#WaypointAirportArrivalName" >}} {{< params/links "WaypointAirportArrivalsNumber" "../airports/#WaypointAirportArrivalsNumber" >}} {{< params/links "WaypointAirportArrivalWaypointICAO" "../airports/#WaypointAirportArrivalWaypointICAO" >}} {{< params/links "WaypointAirportArrivalWaypointsNumber" "../airports/#WaypointAirportArrivalWaypointsNumber" >}} {{< params/links "WaypointAirportCurrentArrival" "../airports/#WaypointAirportCurrentArrival" >}} {{< /params/columns >}} #### Airport Departures {{< params/columns >}} {{< params/links "WaypointAirportCurrentDeparture" "../airports/#WaypointAirportCurrentDeparture" >}} {{< params/links "WaypointAirportDepartureCurrentWaypoint" "../airports/#WaypointAirportDepartureCurrentWaypoint" >}} {{< params/links "WaypointAirportDepartureName" "../airports/#WaypointAirportDepartureName" >}} {{< params/links "WaypointAirportDeparturesNumber" "../airports/#WaypointAirportDeparturesNumber" >}} {{< params/links "WaypointAirportDepartureWaypointICAO" "../airports/#WaypointAirportDepartureWaypointICAO" >}} {{< params/links "WaypointAirportDepartureWaypointsNumber" "../airports/#WaypointAirportDepartureWaypointsNumber" >}} {{< /params/columns >}} #### Airport Runways {{< params/columns >}} {{< params/links "WaypointAirportCurrentRunway" "../airports/#WaypointAirportCurrentRunway" >}} {{< params/links "WaypointAirportRunwayDesignation" "../airports/#WaypointAirportRunwayDesignation" >}} {{< params/links "WaypointAirportRunwayDirection" "../airports/#WaypointAirportRunwayDirection" >}} {{< params/links "WaypointAirportRunwayElevation" "../airports/#WaypointAirportRunwayElevation" >}} {{< params/links "WaypointAirportRunwayLatitude" "../airports/#WaypointAirportRunwayLatitude" >}} {{< params/links "WaypointAirportRunwayLength" "../airports/#WaypointAirportRunwayLength" >}} {{< params/links "WaypointAirportRunwayLighting" "../airports/#WaypointAirportRunwayLighting" >}} {{< params/links "WaypointAirportRunwayLongitude" "../airports/#WaypointAirportRunwayLongitude" >}} {{< params/links "WaypointAirportRunwaysNumber" "../airports/#WaypointAirportRunwaysNumber" >}} {{< params/links "WaypointAirportRunwaySurface" "../airports/#WaypointAirportRunwaySurface" >}} {{< params/links "WaypointAirportRunwayWidth" "../airports/#WaypointAirportRunwayWidth" >}} {{< /params/columns >}} #### Alternate {{< params/columns >}} {{< params/links "FlightPlanAlternateAirportIdent" "../flightplans/#FlightPlanAlternateAirportIdent" >}} {{< params/links "FlightPlanAlternateAltitude" "../flightplans/#FlightPlanAlternateAltitude" >}} {{< params/links "FlightPlanAlternateLatitude" "../flightplans/#FlightPlanAlternateLatitude" >}} {{< params/links "FlightPlanAlternateLongitude" "../flightplans/#FlightPlanAlternateLongitude" >}} {{< params/links "FlightPlanAlternateName" "../flightplans/#FlightPlanAlternateName" >}} {{< /params/columns >}} #### Approach {{< params/columns >}} {{< params/links "FlightPlanActiveApproachWaypoint" "../flightplans/#FlightPlanActiveApproachWaypoint" >}} {{< params/links "FlightPlanApproachAirportIdent" "../flightplans/#FlightPlanApproachAirportIdent" >}} {{< params/links "FlightPlanApproachIndex" "../flightplans/#FlightPlanApproachIndex" >}} {{< params/links "FlightPlanApproachIsWaypointRunway" "../flightplans/#FlightPlanApproachIsWaypointRunway" >}} {{< params/links "FlightPlanApproachMode" "../flightplans/#FlightPlanApproachMode" >}} {{< params/links "FlightPlanApproachName" "../flightplans/#FlightPlanApproachName" >}} {{< params/links "FlightPlanApproachSegmentDistance" "../flightplans/#FlightPlanApproachSegmentDistance" >}} {{< params/links "FlightPlanApproachSegmentLength" "../flightplans/#FlightPlanApproachSegmentLength" >}} {{< params/links "FlightPlanApproachSegmentType" "../flightplans/#FlightPlanApproachSegmentType" >}} {{< params/links "FlightPlanApproachTransitionIndex" "../flightplans/#FlightPlanApproachTransitionIndex" >}} {{< params/links "FlightPlanApproachTransitionName" "../flightplans/#FlightPlanApproachTransitionName" >}} {{< params/links "FlightPlanApproachType" "../flightplans/#FlightPlanApproachType" >}} {{< params/links "FlightPlanApproachWaypointsNumber" "../flightplans/#FlightPlanApproachWaypointsNumber" >}} {{< params/links "FlightPlanApproachWaypointType" "../flightplans/#FlightPlanApproachWaypointType" >}} {{< params/links "FlightPlanIsApproachFinal" "../flightplans/#FlightPlanIsApproachFinal" >}} {{< params/links "FlightPlanIsApproachMissed" "../flightplans/#FlightPlanIsApproachMissed" >}} {{< params/links "FlightPlanLoadApproach" "../flightplans/#FlightPlanLoadApproach" >}} {{< params/links "FlightPlanNewApproachAddInitialLeg" "../flightplans/#FlightPlanNewApproachAddInitialLeg" >}} {{< params/links "FlightPlanNewApproachAirport" "../flightplans/#FlightPlanNewApproachAirport" >}} {{< params/links "FlightPlanNewApproachApproach" "../flightplans/#FlightPlanNewApproachApproach" >}} {{< params/links "FlightPlanNewApproachMissed" "../flightplans/#FlightPlanNewApproachMissed" >}} {{< params/links "FlightPlanNewApproachTransition" "../flightplans/#FlightPlanNewApproachTransition" >}} {{< /params/columns >}} #### Departure {{< params/columns >}} {{< params/links "FlightPlanDepartureAirportIdent" "../flightplans/#FlightPlanDepartureAirportIdent" >}} {{< params/links "FlightPlanDepartureAltitude" "../flightplans/#FlightPlanDepartureAltitude" >}} {{< params/links "FlightPlanDepartureLatitude" "../flightplans/#FlightPlanDepartureLatitude" >}} {{< params/links "FlightPlanDepartureLongitude" "../flightplans/#FlightPlanDepartureLongitude" >}} {{< params/links "FlightPlanDepartureName" "../flightplans/#FlightPlanDepartureName" >}} {{< /params/columns >}} #### Destination {{< params/columns >}} {{< params/links "FlightPlanDestinationAirportident" "../flightplans/#FlightPlanDestinationAirportident" >}} {{< params/links "FlightPlanDestinationAltitude" "../flightplans/#FlightPlanDestinationAltitude" >}} {{< params/links "FlightPlanDestinationLatitude" "../flightplans/#FlightPlanDestinationLatitude" >}} {{< params/links "FlightPlanDestinationLongitude" "../flightplans/#FlightPlanDestinationLongitude" >}} {{< params/links "FlightPlanDestinationName" "../flightplans/#FlightPlanDestinationName" >}} {{< /params/columns >}} #### Facilities {{< params/columns >}} {{< params/links "FacilityCity" "../miscellaneous/#FacilityCity" >}} {{< params/links "FacilityCode" "../miscellaneous/#FacilityCode" >}} {{< params/links "FacilityICAO" "../miscellaneous/#FacilityICAO" >}} {{< params/links "FacilityIdent" "../miscellaneous/#FacilityIdent" >}} {{< params/links "FacilityLatitude" "../miscellaneous/#FacilityLatitude" >}} {{< params/links "FacilityLongitude" "../miscellaneous/#FacilityLongitude" >}} {{< params/links "FacilityMagneticVariation" "../miscellaneous/#FacilityMagneticVariation" >}} {{< params/links "FacilityName" "../miscellaneous/#FacilityName" >}} {{< params/links "FacilityRegion" "../miscellaneous/#FacilityRegion" >}} {{< params/links "FacilityValid" "../miscellaneous/#FacilityValid" >}} {{< /params/columns >}} #### General {{< params/columns >}} {{< params/links "FlightPlanActiveWaypoint" "../flightplans/#FlightPlanActiveWaypoint" >}} {{< params/links "FlightPlanCancelDirectTo" "../flightplans/#FlightPlanCancelDirectTo" >}} {{< params/links "FlightPlanCruisingAltitude" "../flightplans/#FlightPlanCruisingAltitude" >}} {{< params/links "FlightPlanDescription" "../flightplans/#FlightPlanDescription" >}} {{< params/links "FlightPlanDirectToDestination" "../flightplans/#FlightPlanDirectToDestination" >}} {{< params/links "FlightPlanDirectToWaypoint" "../flightplans/#FlightPlanDirectToWaypoint" >}} {{< params/links "FlightPlanFlightPlanType" "../flightplans/#FlightPlanFlightPlanType" >}} {{< params/links "FlightPlanIsActiveApproach" "../flightplans/#FlightPlanIsActiveApproach" >}} {{< params/links "FlightPlanIsActiveFlightPlan" "../flightplans/#FlightPlanIsActiveFlightPlan" >}} {{< params/links "FlightPlanIsActiveWaypoint" "../flightplans/#FlightPlanIsActiveWaypoint" >}} {{< params/links "FlightPlanIsActiveWaypointLocked" "../flightplans/#FlightPlanIsActiveWaypointLocked" >}} {{< params/links "FlightPlanIsDirectTo" "../flightplans/#FlightPlanIsDirectTo" >}} {{< params/links "FlightPlanIsLoadedApproach" "../flightplans/#FlightPlanIsLoadedApproach" >}} {{< params/links "FlightPlanRouteType" "../flightplans/#FlightPlanRouteType" >}} {{< params/links "FlightPlanTitle" "../flightplans/#FlightPlanTitle" >}} {{< params/links "FlightPlanWaypointsNumber" "../flightplans/#FlightPlanWaypointsNumber" >}} {{< /params/columns >}} #### Geo Calculations {{< params/columns >}} {{< params/links "GeoCalcAzimuth1" "../miscellaneous/#GeoCalcAzimuth1" >}} {{< params/links "GeoCalcAzimuth2" "../miscellaneous/#GeoCalcAzimuth2" >}} {{< params/links "GeoCalcBearing" "../miscellaneous/#GeoCalcBearing" >}} {{< params/links "GeoCalcCrossTrack" "../miscellaneous/#GeoCalcCrossTrack" >}} {{< params/links "GeoCalcDistance" "../miscellaneous/#GeoCalcDistance" >}} {{< params/links "GeoCalcExtrapolationLatitude" "../miscellaneous/#GeoCalcExtrapolationLatitude" >}} {{< params/links "GeoCalcExtrapolationLongitude" "../miscellaneous/#GeoCalcExtrapolationLongitude" >}} {{< params/links "GeoCalcIntersectionLatitude" "../miscellaneous/#GeoCalcIntersectionLatitude" >}} {{< params/links "GeoCalcIsIntersect" "../miscellaneous/#GeoCalcIsIntersect" >}} {{< params/links "GeoCalcLatitude1" "../miscellaneous/#GeoCalcLatitude1" >}} {{< params/links "GeoCalcLatitude2" "../miscellaneous/#GeoCalcLatitude2" >}} {{< params/links "GeoCalcLength" "../miscellaneous/#GeoCalcLength" >}} {{< params/links "GeoCalcLongitude1" "../miscellaneous/#GeoCalcLongitude1" >}} {{< params/links "GeoCalcLongitude2" "../miscellaneous/#GeoCalcLongitude2" >}} {{< /params/columns >}} #### ICAO Search Data {{< params/columns >}} {{< params/links "IcaoSearchAdvanceCharacter" "../miscellaneous/#IcaoSearchAdvanceCharacter" >}} {{< params/links "IcaoSearchAdvanceCursor" "../miscellaneous/#IcaoSearchAdvanceCursor" >}} {{< params/links "IcaoSearchBackupChar" "../miscellaneous/#IcaoSearchBackupChar" >}} {{< params/links "IcaoSearchCurrentIcao" "../miscellaneous/#IcaoSearchCurrentIcao" >}} {{< params/links "IcaoSearchCurrentIcaoRegion" "../miscellaneous/#IcaoSearchCurrentIcaoRegion" >}} {{< params/links "IcaoSearchCurrentIcaoType" "../miscellaneous/#IcaoSearchCurrentIcaoType" >}} {{< params/links "IcaoSearchCurrentIdent" "../miscellaneous/#IcaoSearchCurrentIdent" >}} {{< params/links "IcaoSearchCursorPosition" "../miscellaneous/#IcaoSearchCursorPosition" >}} {{< params/links "IcaoSearchEnterChar" "../miscellaneous/#IcaoSearchEnterChar" >}} {{< params/links "IcaoSearchInitialIcao" "../miscellaneous/#IcaoSearchInitialIcao" >}} {{< params/links "IcaoSearchMatchedIcao" "../miscellaneous/#IcaoSearchMatchedIcao" >}} {{< params/links "IcaoSearchMatchedIcaosNumber" "../miscellaneous/#IcaoSearchMatchedIcaosNumber" >}} {{< params/links "IcaoSearchStartCursor" "../miscellaneous/#IcaoSearchStartCursor" >}} {{< params/links "IcaoSearchStopCursor" "../miscellaneous/#IcaoSearchStopCursor" >}} {{< /params/columns >}} #### Intersections {{< params/columns >}} {{< params/links "WaypointIntersectionCity" "../intersections/#WaypointIntersectionCity" >}} {{< params/links "WaypointIntersectionCurrentRoute" "../intersections/#WaypointIntersectionCurrentRoute" >}} {{< params/links "WaypointIntersectionICAO" "../intersections/#WaypointIntersectionICAO" >}} {{< params/links "WaypointIntersectionIdent" "../intersections/#WaypointIntersectionIdent" >}} {{< params/links "WaypointIntersectionLatitude" "../intersections/#WaypointIntersectionLatitude" >}} {{< params/links "WaypointIntersectionLongitude" "../intersections/#WaypointIntersectionLongitude" >}} {{< params/links "WaypointIntersectionNearestVorDistance" "../intersections/#WaypointIntersectionNearestVorDistance" >}} {{< params/links "WaypointIntersectionNearestVorFrequency" "../intersections/#WaypointIntersectionNearestVorFrequency" >}} {{< params/links "WaypointIntersectionNearestVorIdent" "../intersections/#WaypointIntersectionNearestVorIdent" >}} {{< params/links "WaypointIntersectionNearestVorMagneticRadial" "../intersections/#WaypointIntersectionNearestVorMagneticRadial" >}} {{< params/links "WaypointIntersectionNearestVorTrueRadial" "../intersections/#WaypointIntersectionNearestVorTrueRadial" >}} {{< params/links "WaypointIntersectionNearestVorType" "../intersections/#WaypointIntersectionNearestVorType" >}} {{< params/links "WaypointIntersectionRegion" "../intersections/#WaypointIntersectionRegion" >}} {{< params/links "WaypointIntersectionRouteName" "../intersections/#WaypointIntersectionRouteName" >}} {{< params/links "WaypointIntersectionRouteNextIcao" "../intersections/#WaypointIntersectionRouteNextIcao" >}} {{< params/links "WaypointIntersectionRouteNumber" "../intersections/#WaypointIntersectionRouteNumber" >}} {{< params/links "WaypointIntersectionRoutePrevIcao" "../intersections/#WaypointIntersectionRoutePrevIcao" >}} {{< params/links "WaypointIntersectionType" "../intersections/#WaypointIntersectionType" >}} {{< /params/columns >}} #### Messages {{< params/columns >}} {{< params/links "MessageCurrentLine" "../miscellaneous/#MessageCurrentLine" >}} {{< params/links "MessageCurrentType" "../miscellaneous/#MessageCurrentType" >}} {{< params/links "MessageItemsNumber" "../miscellaneous/#MessageItemsNumber" >}} {{< params/links "NewMessagesConfirm" "../miscellaneous/#NewMessagesConfirm" >}} {{< params/links "NewMessagesNumber" "../miscellaneous/#NewMessagesNumber" >}} {{< /params/columns >}} #### Name Search Data {{< params/columns >}} {{< params/links "NameSearchAdvanceCharacter" "../miscellaneous/#NameSearchAdvanceCharacter" >}} {{< params/links "NameSearchAdvanceCursor" "../miscellaneous/#NameSearchAdvanceCursor" >}} {{< params/links "NameSearchBackupChar" "../miscellaneous/#NameSearchBackupChar" >}} {{< params/links "NameSearchCurrentIcao" "../miscellaneous/#NameSearchCurrentIcao" >}} {{< params/links "NameSearchCurrentIcaoRegion" "../miscellaneous/#NameSearchCurrentIcaoRegion" >}} {{< params/links "NameSearchCurrentIcaoType" "../miscellaneous/#NameSearchCurrentIcaoType" >}} {{< params/links "NameSearchCurrentMatch" "../miscellaneous/#NameSearchCurrentMatch" >}} {{< params/links "NameSearchCurrentName" "../miscellaneous/#NameSearchCurrentName" >}} {{< params/links "NameSearchCursorPosition" "../miscellaneous/#NameSearchCursorPosition" >}} {{< params/links "NameSearchEnterChar" "../miscellaneous/#NameSearchEnterChar" >}} {{< params/links "NameSearchInitialIcao" "../miscellaneous/#NameSearchInitialIcao" >}} {{< params/links "NameSearchInitialName" "../miscellaneous/#NameSearchInitialName" >}} {{< params/links "NameSearchStartCursor" "../miscellaneous/#NameSearchStartCursor" >}} {{< params/links "NameSearchStopCursor" "../miscellaneous/#NameSearchStopCursor" >}} {{< /params/columns >}} #### NDB {{< params/columns >}} {{< params/links "WaypointNdbCity" "../ndb-and-vor/#WaypointNdbCity" >}} {{< params/links "WaypointNdbElevation" "../ndb-and-vor/#WaypointNdbElevation" >}} {{< params/links "WaypointNdbFrequency" "../ndb-and-vor/#WaypointNdbFrequency" >}} {{< params/links "WaypointNdbICAO" "../ndb-and-vor/#WaypointNdbICAO" >}} {{< params/links "WaypointNdbIdent" "../ndb-and-vor/#WaypointNdbIdent" >}} {{< params/links "WaypointNdbLatitude" "../ndb-and-vor/#WaypointNdbLatitude" >}} {{< params/links "WaypointNdbLongitude" "../ndb-and-vor/#WaypointNdbLongitude" >}} {{< params/links "WaypointNdbMagneticVariation" "../ndb-and-vor/#WaypointNdbMagneticVariation" >}} {{< params/links "WaypointNdbName" "../ndb-and-vor/#WaypointNdbName" >}} {{< params/links "WaypointNdbNearestAirportBearing" "../ndb-and-vor/#WaypointNdbNearestAirportBearing" >}} {{< params/links "WaypointNdbNearestAirportDistance" "../ndb-and-vor/#WaypointNdbNearestAirportDistance" >}} {{< params/links "WaypointNdbNearestAirportId" "../ndb-and-vor/#WaypointNdbNearestAirportId" >}} {{< params/links "WaypointNdbNearestAirportKind" "../ndb-and-vor/#WaypointNdbNearestAirportKind" >}} {{< params/links "WaypointNdbNearestAirportLongestRunwayDirection" "../ndb-and-vor/#WaypointNdbNearestAirportLongestRunwayDirection" >}} {{< params/links "WaypointNdbRegion" "../ndb-and-vor/#WaypointNdbRegion" >}} {{< params/links "WaypointNdbType" "../ndb-and-vor/#WaypointNdbType" >}} {{< params/links "WaypointNdbWeatherBroadcast" "../ndb-and-vor/#WaypointNdbWeatherBroadcast" >}} {{< /params/columns >}} #### Nearest Airports {{< params/columns >}} {{< params/links "NearestAirportCurrentAirportKind" "../airports/#NearestAirportCurrentAirportKind" >}} {{< params/links "NearestAirportCurrentAirportLatitude" "../airports/#NearestAirportCurrentAirportLatitude" >}} {{< params/links "NearestAirportCurrentAirportLongitude" "../airports/#NearestAirportCurrentAirportLongitude" >}} {{< params/links "NearestAirportCurrentApproach" "../airports/#NearestAirportCurrentApproach" >}} {{< params/links "NearestAirportCurrentApproachName" "../airports/#NearestAirportCurrentApproachName" >}} {{< params/links "NearestAirportCurrentBestApproach" "../airports/#NearestAirportCurrentBestApproach" >}} {{< params/links "NearestAirportCurrentBestApproachEnum" "../airports/#NearestAirportCurrentBestApproachEnum" >}} {{< params/links "NearestAirportCurrentComFrequencyName" "../airports/#NearestAirportCurrentComFrequencyName" >}} {{< params/links "NearestAirportCurrentComFrequencyValue" "../airports/#NearestAirportCurrentComFrequencyValue" >}} {{< params/links "NearestAirportCurrentDeparture" "../airports/#NearestAirportCurrentDeparture" >}} {{< params/links "NearestAirportCurrentDistance" "../airports/#NearestAirportCurrentDistance" >}} {{< params/links "NearestAirportCurrentFrequency" "../airports/#NearestAirportCurrentFrequency" >}} {{< params/links "NearestAirportCurrentFrequencyName" "../airports/#NearestAirportCurrentFrequencyName" >}} {{< params/links "NearestAirportCurrentFuel1" "../airports/#NearestAirportCurrentFuel1" >}} {{< params/links "NearestAirportCurrentFuel2" "../airports/#NearestAirportCurrentFuel2" >}} {{< params/links "NearestAirportCurrentICAO" "../airports/#NearestAirportCurrentICAO" >}} {{< params/links "NearestAirportCurrentIdent" "../airports/#NearestAirportCurrentIdent" >}} {{< params/links "NearestAirportCurrentLine" "../airports/#NearestAirportCurrentLine" >}} {{< params/links "NearestAirportCurrentLongestAirportDirection" "../airports/#NearestAirportCurrentLongestAirportDirection" >}} {{< params/links "NearestAirportCurrentLongestRunwayLength" "../airports/#NearestAirportCurrentLongestRunwayLength" >}} {{< params/links "NearestAirportCurrentTowered" "../airports/#NearestAirportCurrentTowered" >}} {{< params/links "NearestAirportCurrentTrueBearing" "../airports/#NearestAirportCurrentTrueBearing" >}} {{< params/links "NearestAirportDepartureCurrentWaypoint" "../airports/#NearestAirportDepartureCurrentWaypoint" >}} {{< params/links "NearestAirportDepartureName" "../airports/#NearestAirportDepartureName" >}} {{< params/links "NearestAirportDeparturesNumber" "../airports/#NearestAirportDeparturesNumber" >}} {{< params/links "NearestAirportDepartureWaypointICAO" "../airports/#NearestAirportDepartureWaypointICAO" >}} {{< params/links "NearestAirportDepartureWaypointsNumber" "../airports/#NearestAirportDepartureWaypointsNumber" >}} {{< params/links "NearestAirportItemsNumber" "../airports/#NearestAirportItemsNumber" >}} {{< params/links "NearestAirportMaximumDistance" "../airports/#NearestAirportMaximumDistance" >}} {{< params/links "NearestAirportMaximumItems" "../airports/#NearestAirportMaximumItems" >}} {{< params/links "NearestAirportSelected" "../airports/#NearestAirportSelected" >}} {{< params/links "NearestAirportSelectedAirportCity" "../airports/#NearestAirportSelectedAirportCity" >}} {{< params/links "NearestAirportSelectedAirportElevation" "../airports/#NearestAirportSelectedAirportElevation" >}} {{< params/links "NearestAirportSelectedAirportLatitude" "../airports/#NearestAirportSelectedAirportLatitude" >}} {{< params/links "NearestAirportSelectedAirportLongitude" "../airports/#NearestAirportSelectedAirportLongitude" >}} {{< params/links "NearestAirportSelectedAirportName" "../airports/#NearestAirportSelectedAirportName" >}} {{< params/links "NearestAirportSelectedAirportRunwaysNumber" "../airports/#NearestAirportSelectedAirportRunwaysNumber" >}} {{< params/links "NearestAirportSelectedApproachIndex" "../airports/#NearestAirportSelectedApproachIndex" >}} {{< params/links "NearestAirportSelectedFrequencyIndex" "../airports/#NearestAirportSelectedFrequencyIndex" >}} {{< params/links "NearestAirportSelectedFrequencyValue" "../airports/#NearestAirportSelectedFrequencyValue" >}} {{< params/links "NearestAirportSelectedLatitude" "../airports/#NearestAirportSelectedLatitude" >}} {{< params/links "NearestAirportSelectedLongitude" "../airports/#NearestAirportSelectedLongitude" >}} {{< params/links "NearestAirportSelectedNumberApproaches" "../airports/#NearestAirportSelectedNumberApproaches" >}} {{< params/links "NearestAirportSelectedNumberFrequencies" "../airports/#NearestAirportSelectedNumberFrequencies" >}} {{< params/links "NearestAirportSelectedRunway" "../airports/#NearestAirportSelectedRunway" >}} {{< params/links "NearestAirportSelectedRunwayDesignation" "../airports/#NearestAirportSelectedRunwayDesignation" >}} {{< params/links "NearestAirportSelectedRunwayLength" "../airports/#NearestAirportSelectedRunwayLength" >}} {{< params/links "NearestAirportSelectedRunwaySurface" "../airports/#NearestAirportSelectedRunwaySurface" >}} {{< params/links "NearestAirportSelectedRunwayWidth" "../airports/#NearestAirportSelectedRunwayWidth" >}} {{< /params/columns >}} #### Nearest Airspace {{< params/columns >}} {{< params/links "NearestAirspaceAheadTime" "../miscellaneous/#NearestAirspaceAheadTime" >}} {{< params/links "NearestAirspaceCurrentAheadTime" "../miscellaneous/#NearestAirspaceCurrentAheadTime" >}} {{< params/links "NearestAirspaceCurrentAltitude" "../miscellaneous/#NearestAirspaceCurrentAltitude" >}} {{< params/links "NearestAirspaceCurrentFrequency" "../miscellaneous/#NearestAirspaceCurrentFrequency" >}} {{< params/links "NearestAirspaceCurrentFrequencyName" "../miscellaneous/#NearestAirspaceCurrentFrequencyName" >}} {{< params/links "NearestAirspaceCurrentLatitude" "../miscellaneous/#NearestAirspaceCurrentLatitude" >}} {{< params/links "NearestAirspaceCurrentLine" "../miscellaneous/#NearestAirspaceCurrentLine" >}} {{< params/links "NearestAirspaceCurrentLongitude" "../miscellaneous/#NearestAirspaceCurrentLongitude" >}} {{< params/links "NearestAirspaceCurrentMaxAltitude" "../miscellaneous/#NearestAirspaceCurrentMaxAltitude" >}} {{< params/links "NearestAirspaceCurrentMinAltitude" "../miscellaneous/#NearestAirspaceCurrentMinAltitude" >}} {{< params/links "NearestAirspaceCurrentName" "../miscellaneous/#NearestAirspaceCurrentName" >}} {{< params/links "NearestAirspaceCurrentNearDistance" "../miscellaneous/#NearestAirspaceCurrentNearDistance" >}} {{< params/links "NearestAirspaceCurrentStatus" "../miscellaneous/#NearestAirspaceCurrentStatus" >}} {{< params/links "NearestAirspaceCurrentType" "../miscellaneous/#NearestAirspaceCurrentType" >}} {{< params/links "NearestAirspaceGroundSpeed" "../miscellaneous/#NearestAirspaceGroundSpeed" >}} {{< params/links "NearestAirspaceItemsNumber" "../miscellaneous/#NearestAirspaceItemsNumber" >}} {{< params/links "NearestAirspaceMaximumDistance" "../miscellaneous/#NearestAirspaceMaximumDistance" >}} {{< params/links "NearestAirspaceMaximumItems" "../miscellaneous/#NearestAirspaceMaximumItems" >}} {{< params/links "NearestAirspaceNearAltitude" "../miscellaneous/#NearestAirspaceNearAltitude" >}} {{< params/links "NearestAirspaceNearDistance" "../miscellaneous/#NearestAirspaceNearDistance" >}} {{< params/links "NearestAirspaceQuery" "../miscellaneous/#NearestAirspaceQuery" >}} {{< params/links "NearestAirspaceTrueGroundTrack" "../miscellaneous/#NearestAirspaceTrueGroundTrack" >}} {{< /params/columns >}} #### Nearest Intersections {{< params/columns >}} {{< params/links "NearestIntersectionAddIntersectionType" "../intersections/#NearestIntersectionAddIntersectionType" >}} {{< params/links "NearestIntersectionCurrentCurrentRoute" "../intersections/#NearestIntersectionCurrentCurrentRoute" >}} {{< params/links "NearestIntersectionCurrentDistance" "../intersections/#NearestIntersectionCurrentDistance" >}} {{< params/links "NearestIntersectionCurrentFilter" "../intersections/#NearestIntersectionCurrentFilter" >}} {{< params/links "NearestIntersectionCurrentICAO" "../intersections/#NearestIntersectionCurrentICAO" >}} {{< params/links "NearestIntersectionCurrentIdent" "../intersections/#NearestIntersectionCurrentIdent" >}} {{< params/links "NearestIntersectionCurrentIntersectionLatitude" "../intersections/#NearestIntersectionCurrentIntersectionLatitude" >}} {{< params/links "NearestIntersectionCurrentIntersectionLongitude" "../intersections/#NearestIntersectionCurrentIntersectionLongitude" >}} {{< params/links "NearestIntersectionCurrentLatitude" "../intersections/#NearestIntersectionCurrentLatitude" >}} {{< params/links "NearestIntersectionCurrentLine" "../intersections/#NearestIntersectionCurrentLine" >}} {{< params/links "NearestIntersectionCurrentLongitude" "../intersections/#NearestIntersectionCurrentLongitude" >}} {{< params/links "NearestIntersectionCurrentRouteName" "../intersections/#NearestIntersectionCurrentRouteName" >}} {{< params/links "NearestIntersectionCurrentRouteNextIcao" "../intersections/#NearestIntersectionCurrentRouteNextIcao" >}} {{< params/links "NearestIntersectionCurrentRouteNumber" "../intersections/#NearestIntersectionCurrentRouteNumber" >}} {{< params/links "NearestIntersectionCurrentRoutePrevIcao" "../intersections/#NearestIntersectionCurrentRoutePrevIcao" >}} {{< params/links "NearestIntersectionCurrentTrueBearing" "../intersections/#NearestIntersectionCurrentTrueBearing" >}} {{< params/links "NearestIntersectionCurrentType" "../intersections/#NearestIntersectionCurrentType" >}} {{< params/links "NearestIntersectionItemsNumber" "../intersections/#NearestIntersectionItemsNumber" >}} {{< params/links "NearestIntersectionMaximumDistance" "../intersections/#NearestIntersectionMaximumDistance" >}} {{< params/links "NearestIntersectionMaximumItems" "../intersections/#NearestIntersectionMaximumItems" >}} {{< params/links "NearestIntersectionRemoveIntersectionType" "../intersections/#NearestIntersectionRemoveIntersectionType" >}} {{< params/links "NearestIntersectionSelectedIntersection" "../intersections/#NearestIntersectionSelectedIntersection" >}} {{< params/links "NearestIntersectionSelectedIntLatitude" "../intersections/#NearestIntersectionSelectedIntLatitude" >}} {{< params/links "NearestIntersectionSelectedIntLongitude" "../intersections/#NearestIntersectionSelectedIntLongitude" >}} {{< params/links "NearestIntersectionSelectedRefVorDistance" "../intersections/#NearestIntersectionSelectedRefVorDistance" >}} {{< params/links "NearestIntersectionSelectedRefVorFrequency" "../intersections/#NearestIntersectionSelectedRefVorFrequency" >}} {{< params/links "NearestIntersectionSelectedRefVorId" "../intersections/#NearestIntersectionSelectedRefVorId" >}} {{< params/links "NearestIntersectionSelectedRefVorMagneticRadial" "../intersections/#NearestIntersectionSelectedRefVorMagneticRadial" >}} {{< params/links "NearestIntersectionSelectedRefVorTrueRadial" "../intersections/#NearestIntersectionSelectedRefVorTrueRadial" >}} {{< params/links "NearestIntersectionSelectedRefVorType" "../intersections/#NearestIntersectionSelectedRefVorType" >}} {{< params/links "NearestIntersectionSetDefaultFilter" "../intersections/#NearestIntersectionSetDefaultFilter" >}} {{< /params/columns >}} #### Nearest NDB {{< params/columns >}} {{< params/links "NearestNdbCurrentDistance" "../ndb-and-vor/#NearestNdbCurrentDistance" >}} {{< params/links "NearestNdbCurrentFrequency" "../ndb-and-vor/#NearestNdbCurrentFrequency" >}} {{< params/links "NearestNdbCurrentICAO" "../ndb-and-vor/#NearestNdbCurrentICAO" >}} {{< params/links "NearestNdbCurrentIdent" "../ndb-and-vor/#NearestNdbCurrentIdent" >}} {{< params/links "NearestNdbCurrentLatitude" "../ndb-and-vor/#NearestNdbCurrentLatitude" >}} {{< params/links "NearestNdbCurrentLine" "../ndb-and-vor/#NearestNdbCurrentLine" >}} {{< params/links "NearestNdbCurrentLongitude" "../ndb-and-vor/#NearestNdbCurrentLongitude" >}} {{< params/links "NearestNdbCurrentNdbLatitude" "../ndb-and-vor/#NearestNdbCurrentNdbLatitude" >}} {{< params/links "NearestNdbCurrentNdbLongitude" "../ndb-and-vor/#NearestNdbCurrentNdbLongitude" >}} {{< params/links "NearestNdbCurrentTrueBearing" "../ndb-and-vor/#NearestNdbCurrentTrueBearing" >}} {{< params/links "NearestNdbCurrentType" "../ndb-and-vor/#NearestNdbCurrentType" >}} {{< params/links "NearestNdbItemsNumber" "../ndb-and-vor/#NearestNdbItemsNumber" >}} {{< params/links "NearestNdbMaximumDistance" "../ndb-and-vor/#NearestNdbMaximumDistance" >}} {{< params/links "NearestNdbMaximumItems" "../ndb-and-vor/#NearestNdbMaximumItems" >}} {{< params/links "NearestNdbSelectedNdb" "../ndb-and-vor/#NearestNdbSelectedNdb" >}} {{< params/links "NearestNdbSelectedNdbCity" "../ndb-and-vor/#NearestNdbSelectedNdbCity" >}} {{< params/links "NearestNdbSelectedNdbFrequency" "../ndb-and-vor/#NearestNdbSelectedNdbFrequency" >}} {{< params/links "NearestNdbSelectedNdbLatitude" "../ndb-and-vor/#NearestNdbSelectedNdbLatitude" >}} {{< params/links "NearestNdbSelectedNdbLongitude" "../ndb-and-vor/#NearestNdbSelectedNdbLongitude" >}} {{< params/links "NearestNdbSelectedNdbName" "../ndb-and-vor/#NearestNdbSelectedNdbName" >}} {{< params/links "NearestNdbSelectedNdbType" "../ndb-and-vor/#NearestNdbSelectedNdbType" >}} {{< /params/columns >}} #### Nearest VOR {{< params/columns >}} {{< params/links "NearestVorAddVorType" "../ndb-and-vor/#NearestVorAddVorType" >}} {{< params/links "NearestVorCurrentDistance" "../ndb-and-vor/#NearestVorCurrentDistance" >}} {{< params/links "NearestVorCurrentFilter" "../ndb-and-vor/#NearestVorCurrentFilter" >}} {{< params/links "NearestVorCurrentFrequency" "../ndb-and-vor/#NearestVorCurrentFrequency" >}} {{< params/links "NearestVorCurrentICAO" "../ndb-and-vor/#NearestVorCurrentICAO" >}} {{< params/links "NearestVorCurrentIdent" "../ndb-and-vor/#NearestVorCurrentIdent" >}} {{< params/links "NearestVorCurrentLatitude" "../ndb-and-vor/#NearestVorCurrentLatitude" >}} {{< params/links "NearestVorCurrentLine" "../ndb-and-vor/#NearestVorCurrentLine" >}} {{< params/links "NearestVorCurrentLongitude" "../ndb-and-vor/#NearestVorCurrentLongitude" >}} {{< params/links "NearestVorCurrentTrueBearing" "../ndb-and-vor/#NearestVorCurrentTrueBearing" >}} {{< params/links "NearestVorCurrentType" "../ndb-and-vor/#NearestVorCurrentType" >}} {{< params/links "NearestVorCurrentVorLatitude" "../ndb-and-vor/#NearestVorCurrentVorLatitude" >}} {{< params/links "NearestVorCurrentVorLongitude" "../ndb-and-vor/#NearestVorCurrentVorLongitude" >}} {{< params/links "NearestVorItemsNumber" "../ndb-and-vor/#NearestVorItemsNumber" >}} {{< params/links "NearestVorMaximumDistance" "../ndb-and-vor/#NearestVorMaximumDistance" >}} {{< params/links "NearestVorMaximumItems" "../ndb-and-vor/#NearestVorMaximumItems" >}} {{< params/links "NearestVorRemoveVorType" "../ndb-and-vor/#NearestVorRemoveVorType" >}} {{< params/links "NearestVorSelectedVor" "../ndb-and-vor/#NearestVorSelectedVor" >}} {{< params/links "NearestVorSelectedVorCity" "../ndb-and-vor/#NearestVorSelectedVorCity" >}} {{< params/links "NearestVorSelectedVorFrequency" "../ndb-and-vor/#NearestVorSelectedVorFrequency" >}} {{< params/links "NearestVorSelectedVorLatitude" "../ndb-and-vor/#NearestVorSelectedVorLatitude" >}} {{< params/links "NearestVorSelectedVorLongitude" "../ndb-and-vor/#NearestVorSelectedVorLongitude" >}} {{< params/links "NearestVorSelectedVorMagneticVariation" "../ndb-and-vor/#NearestVorSelectedVorMagneticVariation" >}} {{< params/links "NearestVorSelectedVorName" "../ndb-and-vor/#NearestVorSelectedVorName" >}} {{< params/links "NearestVorSelectedVorType" "../ndb-and-vor/#NearestVorSelectedVorType" >}} {{< params/links "NearestVorSetDefaultFilter" "../ndb-and-vor/#NearestVorSetDefaultFilter" >}} {{< /params/columns >}} #### New Waypoint {{< params/columns >}} {{< params/links "FlightPlanNewWaypointICAO" "../flightplans/#FlightPlanNewWaypointICAO" >}} {{< params/links "FlightPlanNewWaypointIdent" "../flightplans/#FlightPlanNewWaypointIdent" >}} {{< params/links "FlightPlanNewWaypointLatitude" "../flightplans/#FlightPlanNewWaypointLatitude" >}} {{< params/links "FlightPlanNewWaypointLongitude" "../flightplans/#FlightPlanNewWaypointLongitude" >}} {{< /params/columns >}} #### VOR {{< params/columns >}} {{< params/links "WaypointVorCity" "../ndb-and-vor/#WaypointVorCity" >}} {{< params/links "WaypointVorClass" "../ndb-and-vor/#WaypointVorClass" >}} {{< params/links "WaypointVorElevation" "../ndb-and-vor/#WaypointVorElevation" >}} {{< params/links "WaypointVorFrequency" "../ndb-and-vor/#WaypointVorFrequency" >}} {{< params/links "WaypointVorICAO" "../ndb-and-vor/#WaypointVorICAO" >}} {{< params/links "WaypointVorIdent" "../ndb-and-vor/#WaypointVorIdent" >}} {{< params/links "WaypointVorLatitude" "../ndb-and-vor/#WaypointVorLatitude" >}} {{< params/links "WaypointVorLongitude" "../ndb-and-vor/#WaypointVorLongitude" >}} {{< params/links "WaypointVorMagneticVariation" "../ndb-and-vor/#WaypointVorMagneticVariation" >}} {{< params/links "WaypointVorName" "../ndb-and-vor/#WaypointVorName" >}} {{< params/links "WaypointVorNearestAirportBearing" "../ndb-and-vor/#WaypointVorNearestAirportBearing" >}} {{< params/links "WaypointVorNearestAirportDistance" "../ndb-and-vor/#WaypointVorNearestAirportDistance" >}} {{< params/links "WaypointVorNearestAirportId" "../ndb-and-vor/#WaypointVorNearestAirportId" >}} {{< params/links "WaypointVorNearestAirportKind" "../ndb-and-vor/#WaypointVorNearestAirportKind" >}} {{< params/links "WaypointVorNearestAirportLongestRunwayDirection" "../ndb-and-vor/#WaypointVorNearestAirportLongestRunwayDirection" >}} {{< params/links "WaypointVorRegion" "../ndb-and-vor/#WaypointVorRegion" >}} {{< params/links "WaypointVorType" "../ndb-and-vor/#WaypointVorType" >}} {{< params/links "WaypointVorWeatherBroadcast" "../ndb-and-vor/#WaypointVorWeatherBroadcast" >}} {{< /params/columns >}} #### Waypoint {{< params/columns >}} {{< params/links "FlightPlanAddWaypoint" "../flightplans/#FlightPlanAddWaypoint" >}} {{< params/links "FlightPlanDeleteWaypoint" "../flightplans/#FlightPlanDeleteWaypoint" >}} {{< params/links "FlightPlanWaypointActualFuelConsumption" "../flightplans/#FlightPlanWaypointActualFuelConsumption" >}} {{< params/links "FlightPlanWaypointAirwayIdent" "../flightplans/#FlightPlanWaypointAirwayIdent" >}} {{< params/links "FlightPlanWaypointAltitude" "../flightplans/#FlightPlanWaypointAltitude" >}} {{< params/links "FlightPlanWaypointAT" "../flightplans/#FlightPlanWaypointAT" >}} {{< params/links "FlightPlanWaypointATE" "../flightplans/#FlightPlanWaypointATE" >}} {{< params/links "FlightPlanWaypointDistance" "../flightplans/#FlightPlanWaypointDistance" >}} {{< params/links "FlightPlanWaypointDistanceRemaining" "../flightplans/#FlightPlanWaypointDistanceRemaining" >}} {{< params/links "FlightPlanWaypointDistanceTotal" "../flightplans/#FlightPlanWaypointDistanceTotal" >}} {{< params/links "FlightPlanWaypointEstimatedFuelConsumption" "../flightplans/#FlightPlanWaypointEstimatedFuelConsumption" >}} {{< params/links "FlightPlanWaypointEstimatedTimeRemaining" "../flightplans/#FlightPlanWaypointEstimatedTimeRemaining" >}} {{< params/links "FlightPlanWaypointET" "../flightplans/#FlightPlanWaypointET" >}} {{< params/links "FlightPlanWaypointETA" "../flightplans/#FlightPlanWaypointETA" >}} {{< params/links "FlightPlanWaypointETE" "../flightplans/#FlightPlanWaypointETE" >}} {{< params/links "FlightPlanWaypointFrequency" "../flightplans/#FlightPlanWaypointFrequency" >}} {{< params/links "FlightPlanWaypointFuelRemainedAtArrival" "../flightplans/#FlightPlanWaypointFuelRemainedAtArrival" >}} {{< params/links "FlightPlanWaypointICAO" "../flightplans/#FlightPlanWaypointICAO" >}} {{< params/links "FlightPlanWaypointIdent" "../flightplans/#FlightPlanWaypointIdent" >}} {{< params/links "FlightPlanWaypointIndex" "../flightplans/#FlightPlanWaypointIndex" >}} {{< params/links "FlightPlanWaypointLatitude" "../flightplans/#FlightPlanWaypointLatitude" >}} {{< params/links "FlightPlanWaypointLongitude" "../flightplans/#FlightPlanWaypointLongitude" >}} {{< params/links "FlightPlanWaypointMagneticHeading" "../flightplans/#FlightPlanWaypointMagneticHeading" >}} {{< params/links "FlightPlanWaypointMinAltitude" "../flightplans/#FlightPlanWaypointMinAltitude" >}} {{< params/links "FlightPlanWaypointRemainingDistance" "../flightplans/#FlightPlanWaypointRemainingDistance" >}} {{< params/links "FlightPlanWaypointRemainingTotalDistance" "../flightplans/#FlightPlanWaypointRemainingTotalDistance" >}} {{< params/links "FlightPlanWaypointSpeedEstimate" "../flightplans/#FlightPlanWaypointSpeedEstimate" >}} {{< params/links "FlightPlanWaypointTimeZoneDeviation" "../flightplans/#FlightPlanWaypointTimeZoneDeviation" >}} {{< params/links "FlightPlanWaypointType" "../flightplans/#FlightPlanWaypointType" >}} {{< /params/columns >}} #### Waypoint Approach {{< params/columns >}} {{< params/links "FlightPlanWaypointApproachAltitude" "../flightplans/#FlightPlanWaypointApproachAltitude" >}} {{< params/links "FlightPlanWaypointApproachCourse" "../flightplans/#FlightPlanWaypointApproachCourse" >}} {{< params/links "FlightPlanWaypointApproachICAO" "../flightplans/#FlightPlanWaypointApproachICAO" >}} {{< params/links "FlightPlanWaypointApproachIndex" "../flightplans/#FlightPlanWaypointApproachIndex" >}} {{< params/links "FlightPlanWaypointApproachLatitude" "../flightplans/#FlightPlanWaypointApproachLatitude" >}} {{< params/links "FlightPlanWaypointApproachLegDistance" "../flightplans/#FlightPlanWaypointApproachLegDistance" >}} {{< params/links "FlightPlanWaypointApproachLegFromDistance" "../flightplans/#FlightPlanWaypointApproachLegFromDistance" >}} {{< params/links "FlightPlanWaypointApproachLegTotalDistance" "../flightplans/#FlightPlanWaypointApproachLegTotalDistance" >}} {{< params/links "FlightPlanWaypointApproachLongitude" "../flightplans/#FlightPlanWaypointApproachLongitude" >}} {{< params/links "FlightPlanWaypointApproachMode" "../flightplans/#FlightPlanWaypointApproachMode" >}} {{< params/links "FlightPlanWaypointApproachName" "../flightplans/#FlightPlanWaypointApproachName" >}} {{< params/links "FlightPlanWaypointApproachRemainingDistance" "../flightplans/#FlightPlanWaypointApproachRemainingDistance" >}} {{< params/links "FlightPlanWaypointApproachRemainingTotalDistance" "../flightplans/#FlightPlanWaypointApproachRemainingTotalDistance" >}} {{< params/links "FlightPlanWaypointApproachTarget" "../flightplans/#FlightPlanWaypointApproachTarget" >}} {{< params/links "FlightPlanWaypointApproachType" "../flightplans/#FlightPlanWaypointApproachType" >}} {{< /params/columns >}}