Skip to main content

Class: AirwayObject

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

An airway.

Implements

Constructors

Constructor

new AirwayObject(name, type): AirwayObject

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

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:47

Gets the name of the airway

Returns

string

Gets the name of the airway

Implementation of

AirwayData.name


type

Get Signature

get type(): number

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

Gets the type of the airway

Returns

number

Gets the type of the airway

Implementation of

AirwayData.type


waypoints

Get Signature

get waypoints(): IntersectionFacility[]

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

The waypoints of this airway

Returns

IntersectionFacility[]

Set Signature

set waypoints(waypoints): void

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

Sets the waypoints of this airway.

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

void

The waypoints of this airway

Implementation of

AirwayData.waypoints