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
Name | Type | Description |
---|---|---|
bus | EventBus | An event bus. |
planner | FlightPlanner <any > | The flight planner. |
Returns
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
Name | Type |
---|---|
active | boolean |
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
Name | Type | Description |
---|---|---|
brg | null | number | The 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
Name | Type | Description |
---|---|---|
dist | null | number | The 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
Name | Type | Description |
---|---|---|
ident | null | string | The 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
Name | Type | Description |
---|---|---|
valid | boolean | Whether 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
Name | Type |
---|---|
brg | null | number |
source | NavSourceId |
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
Name | Type |
---|---|
dist | null | number |
source | NavSourceId |
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
Name | Type |
---|---|
ident | null | string |
source | NavSourceId |
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
Name | Type |
---|---|
valid | boolean |
source | NavSourceId |
Returns
void
Defined in
workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/NavProcessorConfig.ts:42