Skip to main content

Type Alias: GPSSatComputerOptions

GPSSatComputerOptions = object

Defined in: src/sdk/instruments/GPSSat.ts:316

Options for GPSSatComputer.

Properties

channelCount?

optional channelCount: number

Defined in: src/sdk/instruments/GPSSat.ts:321

The number of receiver channels supported by the computer. The computer can acquire and track one satellite per channel. Must be greater than or equal to 4. Defaults to the total number of satellites.


satInUseMaxCount?

optional satInUseMaxCount: number | Subscribable<number>

Defined in: src/sdk/instruments/GPSSat.ts:327

The maximum number of satellites to use for position solution calculations. Must be greater than or equal to 4. Defaults to Infinity.


satInUseOptimumCount?

optional satInUseOptimumCount: number | Subscribable<number>

Defined in: src/sdk/instruments/GPSSat.ts:342

The optimum number of satellites to use for position solution calculations when targeting a maximum PDOP value. Must be greater than or equal to 4. Additional satellites will be selected while PDOP is greater than the target (satInUsePdopTarget) or the number of selected satellites is less than the optimum count. Defaults to 4.


satInUsePdopTarget?

optional satInUsePdopTarget: number | Subscribable<number>

Defined in: src/sdk/instruments/GPSSat.ts:335

The maximum PDOP to target when selecting satellites to use for position solution calculations. Additional satellites will be selected while PDOP is greater than the target or the number of selected satellites is less than the optimum count (satInUseOptimumCount). Values less than or equal to zero will cause all possible satellites to be selected up to the maximum count (satInUseMaxCount). Defaults to -1.


timingOptions?

optional timingOptions: Readonly<GPSSatelliteTimingOptions>

Defined in: src/sdk/instruments/GPSSat.ts:345

Options with which to configure the timings of satellite state changes.