Skip to main content

Abstract Class: AbstractNavReferenceBase

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:78

An abstract implementation of NavReferenceBase.

Extended by

Implements

Constructors

Constructor

new AbstractNavReferenceBase(): AbstractNavReferenceBase

Returns

AbstractNavReferenceBase

Properties

activeFrequency

readonly activeFrequency: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:138

The radio frequency of the reference. Only available if the reference is a navaid.

Implementation of

NavReferenceBase.activeFrequency


bearing

readonly bearing: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:86

The magnetic bearing, in degrees, from the airplane to the reference position.

Implementation of

NavReferenceBase.bearing


course

readonly course: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:92

The magnetic bearing, in degrees, of the reference course at the reference position.

Implementation of

NavReferenceBase.course


distance

readonly distance: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:89

The distance, in nautical miles, from the airplane to the reference position.

Implementation of

NavReferenceBase.distance


fields

protected readonly fields: Map<keyof NavReferenceBase, MutableSubscribable<any, any>>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:158


hasDme

readonly hasDme: Subject<null | boolean>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:129

Whether the reference has a DME component.

Implementation of

NavReferenceBase.hasDme


hasGlideSlope

readonly hasGlideSlope: Subject<null | boolean>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:135

Whether the reference has a glideslope component.

Implementation of

NavReferenceBase.hasGlideSlope


hasLocalizer

readonly hasLocalizer: Subject<null | boolean>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:132

Whether the reference has a localizer component.

Implementation of

NavReferenceBase.hasLocalizer


hasNav

readonly hasNav: Subject<null | boolean>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:126

Whether the reference has a VOR component.

Implementation of

NavReferenceBase.hasNav


ident

readonly ident: Subject<null | string>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:80

The ident of the reference.

Implementation of

NavReferenceBase.ident


isLocalizer

readonly isLocalizer: Subject<null | boolean>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:123

Whether the reference is a localizer.

Implementation of

NavReferenceBase.isLocalizer


lateralDeviation

readonly lateralDeviation: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:144

Lateral deviation from the reference course scaled such that a value of +/-1 is equal to full-scale CDI deflection (i.e. the lateralDeviationScaling value). Positive values indicate deflection of the CDI to the right (i.e. the airplane is situated to the left of the reference).

Implementation of

NavReferenceBase.lateralDeviation


lateralDeviationScale

readonly lateralDeviationScale: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:147

The magnitude of full-scale CDI deflection, in nautical miles.

Implementation of

NavReferenceBase.lateralDeviationScale


lateralDeviationScalingMode

readonly lateralDeviationScalingMode: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:150

The lateral deviation scaling mode.

Implementation of

NavReferenceBase.lateralDeviationScalingMode


localizerCourse

readonly localizerCourse: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:95

The fixed magnetic course, in degrees, of the reference localizer. Only available if the reference is a localizer.

Implementation of

NavReferenceBase.localizerCourse


location

readonly location: ComputedSubject<null | LatLonInterface, null | GeoPointInterface>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:106

The location of the reference position.

Implementation of

NavReferenceBase.location


signalStrength

readonly signalStrength: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:83

Signal strength received from the reference. A value of zero indicates no signal.

Implementation of

NavReferenceBase.signalStrength


toFrom

readonly toFrom: Subject<null | VorToFrom>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:141

Whether the airplane is heading TO or FROM the reference position as judged from the reference course.

Implementation of

NavReferenceBase.toFrom


verticalDeviation

readonly verticalDeviation: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:153

Vertical deviation from the reference vertical path profile scaled such that a value of +/-1 is equal to full- scale VDI deflection (i.e. the verticalDeviationScaling value). Positive values indicate upward deflection of the VDI (i.e. the airplane is situated below the reference).

Implementation of

NavReferenceBase.verticalDeviation


verticalDeviationScale

readonly verticalDeviationScale: Subject<null | number>

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:156

The magnitude of full-scale VDI deflection, in feet.

Implementation of

NavReferenceBase.verticalDeviationScale

Methods

clearAll()

protected clearAll(): void

Defined in: src/garminsdk/navreference/NavReferenceBase.ts:183

Sets all fields to null.

Returns

void