Class: DefaultVdiDataProvider
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:30
A default G3X Touch implementation of VdiDataProvider.
Implements
VdiDataProvider
Constructors
Constructor
new DefaultVdiDataProvider(
bus,vnavDataProvider,activeNavIndicator,options?):DefaultVdiDataProvider
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:193
Creates a new instance of DefaultVdiDataProvider.
Parameters
| Parameter | Type | Description |
|---|---|---|
bus | EventBus | The event bus. |
vnavDataProvider | VNavDataProvider | A provider of VNAV data. |
activeNavIndicator | G3XTouchNavIndicator | The nav indicator for the active nav source. |
options? | Readonly<DefaultVdiDataProviderOptions> | Options with which to configure the data provider. |
Returns
DefaultVdiDataProvider
Properties
gpDeviation
readonlygpDeviation:Subscribable<null|number>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:54
Inherit Doc
Implementation of
VdiDataProvider.gpDeviation
gpDeviationIsPreview
readonlygpDeviationIsPreview:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:58
Inherit Doc
Implementation of
VdiDataProvider.gpDeviationIsPreview
gpDeviationScale
readonlygpDeviationScale:Subscribable<null|number>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:62
Inherit Doc
Implementation of
VdiDataProvider.gpDeviationScale
gpServiceLevel
readonlygpServiceLevel:Subscribable<GlidepathServiceLevel>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:50
Inherit Doc
Implementation of
VdiDataProvider.gpServiceLevel
gsDeviation
readonlygsDeviation:Subscribable<null|number>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:38
Inherit Doc
Implementation of
VdiDataProvider.gsDeviation
gsDeviationIsPreview
readonlygsDeviationIsPreview:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:42
Inherit Doc
Implementation of
VdiDataProvider.gsDeviationIsPreview
hasGp
readonlyhasGp:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:46
Inherit Doc
Implementation of
VdiDataProvider.hasGp
hasGs
readonlyhasGs:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:34
Inherit Doc
Implementation of
VdiDataProvider.hasGs
hasVNav
readonlyhasVNav:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:66
Inherit Doc
Implementation of
VdiDataProvider.hasVNav
isPastFaf
readonlyisPastFaf:Subscribable<boolean>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:85
Inherit Doc
Implementation of
VdiDataProvider.isPastFaf
vnavDeviation
readonlyvnavDeviation:Subscribable<null|number>
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:70
Inherit Doc
Implementation of
VdiDataProvider.vnavDeviation
Methods
destroy()
destroy():
void
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:437
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
init()
init(
paused):void
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:210
Initializes this data provider. Once initialized, this data provider will continuously update its data until paused or destroyed.
Parameters
| Parameter | Type | Default value | Description |
|---|---|---|---|
paused | boolean | false | Whether to initialize this data provider as paused. Defaults to false. |
Returns
void
Throws
Error if this data provider has been destroyed.
pause()
pause():
void
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:392
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 has been destroyed.
resume()
resume():
void
Defined in: src/workingtitle-instruments-g3x-touch/html_ui/PFD/Components/VDI/DefaultVdiDataProvider.ts:358
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 has been destroyed.