Class: DefaultVdiDataProvider
A default G3000 implementation of VdiDataProvider
.
Implements
Constructors
constructor
• new DefaultVdiDataProvider(bus
, ahrsIndex
, vnavDataProvider
, activeNavIndicator
, gsPreviewNavIndicator
): DefaultVdiDataProvider
Constructor.
Parameters
Name | Type | Description |
---|---|---|
bus | EventBus | The event bus. |
ahrsIndex | number | Subscribable <number > | The index of the AHRS that is the source of this provider's heading data. |
vnavDataProvider | VNavDataProvider | A provider of VNAV data. |
activeNavIndicator | G3000NavIndicator | The nav indicator for the active nav source. |
gsPreviewNavIndicator | G3000NavIndicator | The nav indicator for the glideslope preview. |
Returns
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
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
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
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
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
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
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
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
Name | Type | Default value | Description |
---|---|---|---|
paused | boolean | false | Whether 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