Skip to main content

Interface: FlightPlanStore

A store containing information about a flight plan.

Implemented by

Properties

destinationAirport

Readonly destinationAirport: Subscribable<null | AirportFacility>

The flight plan's destination airport, or null if the flight plan does not have a destination.

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/FlightPlan/FlightPlanStore.ts:16


loadedVfrApproachData

Readonly loadedVfrApproachData: Subscribable<null | Readonly<G3XFmsFplLoadedApproachData>>

Data describing the flight plan's loaded VFR approach, or null if the flight plan does not have a loaded VFR approach or does not support VFR approaches.

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/FlightPlan/FlightPlanStore.ts:22


name

Readonly name: Subscribable<null | string>

The name of the flight plan, or null if the plan does not have a name.

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/FlightPlan/FlightPlanStore.ts:10


originAirport

Readonly originAirport: Subscribable<null | AirportFacility>

The flight plan's origin airport, or null if the flight plan does not have an origin.

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/FlightPlan/FlightPlanStore.ts:13


vfrApproachActiveStatus

Readonly vfrApproachActiveStatus: Subscribable<"none" | "active" | "vtf">

The activation status of the flight plan's loaded VFR approach.

  • none: the approach is not active.
  • active: the approach is active.
  • vtf: the approach is active in vectors-to-final (VTF) form.

If the flight plan has no loaded VFR approach, then the status will be none.

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/FlightPlan/FlightPlanStore.ts:33