Skip to main content

Class: DefaultVdiDataProvider

A default G3000 implementation of VdiDataProvider.

Implements

Constructors

constructor

new DefaultVdiDataProvider(bus, ahrsIndex, vnavDataProvider, activeNavIndicator, gsPreviewNavIndicator): DefaultVdiDataProvider

Constructor.

Parameters

NameTypeDescription
busEventBusThe event bus.
ahrsIndexnumber | Subscribable<number>The index of the AHRS that is the source of this provider's heading data.
vnavDataProviderVNavDataProviderA provider of VNAV data.
activeNavIndicatorG3000NavIndicatorThe nav indicator for the active nav source.
gsPreviewNavIndicatorG3000NavIndicatorThe nav indicator for the glideslope preview.

Returns

DefaultVdiDataProvider

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:169

Properties

gpDeviation

Readonly gpDeviation: Subscribable<null | number>

The current glidepath deviation.

Implementation of

VdiDataProvider.gpDeviation

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:40


gpDeviationIsPreview

Readonly gpDeviationIsPreview: Subscribable<boolean>

Whether the current glidepath deviation is a preview.

Implementation of

VdiDataProvider.gpDeviationIsPreview

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:44


gpDeviationScale

Readonly gpDeviationScale: Subscribable<null | number>

The current glidepath deviation scale, in feet.

Implementation of

VdiDataProvider.gpDeviationScale

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:48


gpServiceLevel

Readonly gpServiceLevel: Subscribable<GlidepathServiceLevel>

The current glidepath service level.

Implementation of

VdiDataProvider.gpServiceLevel

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:36


gsDeviation

Readonly gsDeviation: Subscribable<null | number>

The current glideslope deviation.

Implementation of

VdiDataProvider.gsDeviation

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:24


gsDeviationIsPreview

Readonly gsDeviationIsPreview: Subscribable<boolean>

Whether the current glideslope deviation is a preview.

Implementation of

VdiDataProvider.gsDeviationIsPreview

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:28


hasGp

Readonly hasGp: Subscribable<boolean>

Whether a glidepath is available.

Implementation of

VdiDataProvider.hasGp

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:32


hasGs

Readonly hasGs: Subscribable<boolean>

Whether a glideslope is available.

Implementation of

VdiDataProvider.hasGs

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:20


hasVNav

Readonly hasVNav: Subscribable<boolean>

Whether a VNAV path is available.

Implementation of

VdiDataProvider.hasVNav

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:52


isPastFaf

Readonly isPastFaf: Subscribable<boolean>

Whether the active leg is past the final approach fix.

Implementation of

VdiDataProvider.isPastFaf

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:70


vnavDeviation

Readonly vnavDeviation: Subscribable<null | number>

The current VNAV vertical deviation.

Implementation of

VdiDataProvider.vnavDeviation

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:56

Methods

destroy

destroy(): void

Destroys this data provider. Once destroyed, this data provider will no longer update its provided data, and can no longer be paused or resumed.

Returns

void

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:418


init

init(paused?): void

Initializes this data provider. Once initialized, this data provider will continuously update its data until paused or destroyed.

Parameters

NameTypeDefault valueDescription
pausedbooleanfalseWhether to initialize this data provider as paused. If true, this data provider will provide an initial set of data but will not update the provided data until it is resumed. Defaults to false.

Returns

void

Throws

Error if this data provider is dead.

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:186


pause

pause(): void

Pauses this data provider. Once paused, this data provider will not update its data until it is resumed.

Returns

void

Throws

Error if this data provider is dead.

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:376


resume

resume(): void

Resumes this data provider. Once resumed, this data provider will continuously update its data until paused or destroyed.

Returns

void

Throws

Error if this data provider is dead.

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/PFD/Components/VDI/DefaultVdiDataProvider.ts:346