Skip to main content

Class: AirwayObject

Defined in: src/sdk/navigation/FacilityLoader.ts:932

An airway.

Constructors

Constructor

new AirwayObject(name, type): AirwayObject

Defined in: src/sdk/navigation/FacilityLoader.ts:941

Builds a Airway

Parameters

ParameterTypeDescription
namestringthe name of the new airway.
typenumberthe type of the new airway.

Returns

AirwayObject

Accessors

name

Get Signature

get name(): string

Defined in: src/sdk/navigation/FacilityLoader.ts:950

Gets the name of the airway

Returns

string

the airway name


type

Get Signature

get type(): number

Defined in: src/sdk/navigation/FacilityLoader.ts:958

Gets the type of the airway

Returns

number

the airway type


waypoints

Get Signature

get waypoints(): IntersectionFacility[]

Defined in: src/sdk/navigation/FacilityLoader.ts:966

Gets the waypoints of this airway.

Returns

IntersectionFacility[]

the waypoints of this airway.

Set Signature

set waypoints(waypoints): void

Defined in: src/sdk/navigation/FacilityLoader.ts:974

Sets the waypoints of this airway.

Parameters
ParameterTypeDescription
waypointsIntersectionFacility[]is the array of waypoints.
Returns

void