Type Alias: APGpsSteerDirectorOptions
APGpsSteerDirectorOptions =
object
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:65
Options for APGpsSteerDirector.
Properties
bankRate?
optionalbankRate:number| () =>number
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:77
The bank rate to enforce when the director commands changes in bank angle, in degrees per second, or a function
which returns it. If not undefined, a default bank rate will be used. Defaults to undefined.
canActivate()?
optionalcanActivate: (apValues,state) =>boolean
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:101
A function that determines whether the director can activate from an armed state.
Parameters
| Parameter | Type | Description |
|---|---|---|
apValues | APValues | Autopilot values from the director's parent autopilot. |
state | Readonly<APGpsSteerDirectorState> | Data describing the state of the director. |
Returns
boolean
Whether the director can remain active once it has already been activated.
canArm()?
optionalcanArm: (apValues,state) =>boolean
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:85
A function that determines whether the director can remain active once it has already been activated.
Parameters
| Parameter | Type | Description |
|---|---|---|
apValues | APValues | Autopilot values from the director's parent autopilot. |
state | Readonly<APGpsSteerDirectorState> | Data describing the state of the director. |
Returns
boolean
Whether the director can remain active once it has already been activated.
canRemainActive()?
optionalcanRemainActive: (apValues,state) =>boolean
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:109
A function that determines whether the director can remain active once it has already been activated.
Parameters
| Parameter | Type | Description |
|---|---|---|
apValues | APValues | Autopilot values from the director's parent autopilot. |
state | Readonly<APGpsSteerDirectorState> | Data describing the state of the director. |
Returns
boolean
Whether the director can remain active once it has already been activated.
canRemainArmed()?
optionalcanRemainArmed: (apValues,state) =>boolean
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:93
A function that determines whether the director can remain active once it has already been activated.
Parameters
| Parameter | Type | Description |
|---|---|---|
apValues | APValues | Autopilot values from the director's parent autopilot. |
state | Readonly<APGpsSteerDirectorState> | Data describing the state of the director. |
Returns
boolean
Whether the director can remain active once it has already been activated.
maxBankAngle?
optionalmaxBankAngle:number| () =>number
Defined in: src/sdk/autopilot/directors/APGpsSteerDirector.ts:71
The maximum bank angle, in degrees, supported by the director, or a function which returns it. If not defined,
the director will use the maximum bank angle defined by its parent autopilot (via apValues). Defaults to
undefined.