Skip to main content

Class: LNavNavSource

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

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

Implements

  • NavSource

Constructors

Constructor

new LNavNavSource(bus, planner): LNavNavSource

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

Create an LNavNavSource.

Parameters

ParameterTypeDescription
busEventBusAn event bus.
plannerFlightPlannerThe flight planner.

Returns

LNavNavSource

Properties

activeCdi

readonly activeCdi: false = false

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

Whether this is an active CDI source.

Implementation of

NavSource.activeCdi


hasCdi

readonly hasCdi: true = true

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

Whether this source provides course deviation information.

Implementation of

NavSource.hasCdi


hasDme

readonly hasDme: true = true

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

Whether the source provides DME info.

Implementation of

NavSource.hasDme


hasGlideslope

readonly hasGlideslope: false = false

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

Whether the source has glideslope info.

Implementation of

NavSource.hasGlideslope


hasLocalizer

readonly hasLocalizer: false = false

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

Whether the source has localizer info.

Implementation of

NavSource.hasLocalizer


isLocalizerFrequency

readonly isLocalizerFrequency: false = false

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

Whether the source is a localizer frequency.

Implementation of

NavSource.isLocalizerFrequency


signal

readonly signal: null = null

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

The nav signal strength.

Implementation of

NavSource.signal


srcId

readonly srcId: NavSourceId

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

The ID of the source.

Implementation of

NavSource.srcId

Accessors

activeBrg

Get Signature

get activeBrg(): boolean

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

Get active bearing status.

Returns

boolean

Whether we are active for bearing data.

Set Signature

set activeBrg(active): void

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

Set active bearing status.

Parameters
ParameterType
activeboolean
Returns

void

Implementation of

NavSource.activeBrg


bearing

Get Signature

get bearing(): null | number

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

Get the bearing to the current waypoint.

Returns

null | number

The bearing in degrees or null.

Set Signature

set bearing(brg): void

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

Set the bearing to the current waypoint.

Parameters
ParameterTypeDescription
brgnull | numberThe bearing in degrees.
Returns

void

Implementation of

NavSource.bearing


distance

Get Signature

get distance(): null | number

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

Get the distance to the active waypoint.

Returns

null | number

The distance in nm or null.

Set Signature

set distance(dist): void

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

Set the tistance to the active waypoint.

Parameters
ParameterTypeDescription
distnull | numberThe distance in nm or null.
Returns

void

Implementation of

NavSource.distance


ident

Get Signature

get ident(): null | string

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

Get the ident of the current waypoint.

Returns

null | string

The ident as a string or null.

Set Signature

set ident(ident): void

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

Set the ident of the current waypoint.

Parameters
ParameterTypeDescription
identnull | stringThe ident as a string or null.
Returns

void

Implementation of

NavSource.ident


valid

Get Signature

get valid(): boolean

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

Get the validity of the source.

Returns

boolean

Whether the source is valid.

Set Signature

set valid(valid): void

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

Set the validity of the source.

Parameters
ParameterTypeDescription
validbooleanWhether the source is valid.
Returns

void

Implementation of

NavSource.valid

Methods

brgHandler()

brgHandler(brg, source): void

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

Parameters

ParameterType
brgnull | number
sourceNavSourceId

Returns

void

Implementation of

NavSource.brgHandler


distHandler()

distHandler(dist, source): void

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

Parameters

ParameterType
distnull | number
sourceNavSourceId

Returns

void

Implementation of

NavSource.distHandler


identHandler()

identHandler(ident, source): void

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

Parameters

ParameterType
identnull | string
sourceNavSourceId

Returns

void

Implementation of

NavSource.identHandler


validHander()

validHander(valid, source): void

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

Parameters

ParameterType
validboolean
sourceNavSourceId

Returns

void