Interface: FlightPathCalculatorStaticOptions
Defined in: src/sdk/flightplan/flightpath/FlightPathCalculator.ts:122
Options for a FlightPathCalculator that cannot be changed after initialization.
Properties
calculateDiscontinuityVectors
calculateDiscontinuityVectors:
boolean
Defined in: src/sdk/flightplan/flightpath/FlightPathCalculator.ts:127
Whether to calculate flight path vectors to span discontinuities in the flight path. If true
, then the
calculated discontinuity vectors will have the Discontinuity
flag applied to them.
useGreatCirclePathForDiscontinuity
useGreatCirclePathForDiscontinuity:
boolean
Defined in: src/sdk/flightplan/flightpath/FlightPathCalculator.ts:136
Whether to calculate strictly great-circle paths to span discontinuities in the flight path. If true
, then any
discontinuity-spanning path will always be the shortest great-circle path between the two ends of the
discontinuity. If false
, then the discontinuity-spanning path will be calculated in a manner that smoothly joins
the two ends the discontinuity, if possible. Ignored if calculateDiscontinuityVectors
is false
. Defaults to
false
.