Skip to main content

Class: LNavNavSource

A custom nav data source that provides info from our flight plan manager.

Implements

  • NavSource

Constructors

constructor

new LNavNavSource(bus, planner): LNavNavSource

Create an LNavNavSource.

Parameters

NameTypeDescription
busEventBusAn event bus.
plannerFlightPlanner<any>The flight planner.

Returns

LNavNavSource

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:62

Properties

activeCdi

Readonly activeCdi: false

Implementation of

NavSource.activeCdi

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:37


hasCdi

Readonly hasCdi: true

Implementation of

NavSource.hasCdi

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:32


hasDme

Readonly hasDme: true

Implementation of

NavSource.hasDme

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:33


hasGlideslope

Readonly hasGlideslope: false

Implementation of

NavSource.hasGlideslope

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:34


hasLocalizer

Readonly hasLocalizer: false

Implementation of

NavSource.hasLocalizer

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:35


isLocalizerFrequency

Readonly isLocalizerFrequency: false

Implementation of

NavSource.isLocalizerFrequency

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:38


signal

Readonly signal: null

Implementation of

NavSource.signal

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:36


srcId

Readonly srcId: NavSourceId

Implementation of

NavSource.srcId

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:31

Accessors

activeBrg

get activeBrg(): boolean

Get active bearing status.

Returns

boolean

Whether we are active for bearing data.

Implementation of

NavSource.activeBrg

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:158

set activeBrg(active): void

Set active bearing status.

Parameters

NameType
activeboolean

Returns

void

Implementation of

NavSource.activeBrg

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:165


bearing

get bearing(): null | number

Get the bearing to the current waypoint.

Returns

null | number

The bearing in degrees or null.

Implementation of

NavSource.bearing

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:118

set bearing(brg): void

Set the bearing to the current waypoint.

Parameters

NameTypeDescription
brgnull | numberThe bearing in degrees.

Returns

void

Implementation of

NavSource.bearing

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:126


distance

get distance(): null | number

Get the distance to the active waypoint.

Returns

null | number

The distance in nm or null.

Implementation of

NavSource.distance

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:101

set distance(dist): void

Set the tistance to the active waypoint.

Parameters

NameTypeDescription
distnull | numberThe distance in nm or null.

Returns

void

Implementation of

NavSource.distance

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:109


ident

get ident(): null | string

Get the ident of the current waypoint.

Returns

null | string

The ident as a string or null.

Implementation of

NavSource.ident

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:135

set ident(ident): void

Set the ident of the current waypoint.

Parameters

NameTypeDescription
identnull | stringThe ident as a string or null.

Returns

void

Implementation of

NavSource.ident

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:143


valid

get valid(): boolean

Get the validity of the source.

Returns

boolean

Whether the source is valid.

Implementation of

NavSource.valid

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:84

set valid(valid): void

Set the validity of the source.

Parameters

NameTypeDescription
validbooleanWhether the source is valid.

Returns

void

Implementation of

NavSource.valid

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:92

Methods

brgHandler

brgHandler(brg, source): void

Parameters

NameType
brgnull | number
sourceNavSourceId

Returns

void

Implementation of

NavSource.brgHandler

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:46


distHandler

distHandler(dist, source): void

Parameters

NameType
distnull | number
sourceNavSourceId

Returns

void

Implementation of

NavSource.distHandler

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:48


identHandler

identHandler(ident, source): void

Parameters

NameType
identnull | string
sourceNavSourceId

Returns

void

Implementation of

NavSource.identHandler

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:44


validHander

validHander(valid, source): void

Parameters

NameType
validboolean
sourceNavSourceId

Returns

void

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:42