@squawk
    Preparing search index...

    Interface RouteTimingOptions

    Options controlling a computeRouteTiming computation.

    interface RouteTimingOptions {
        fuelAvailable?: number;
        fuelBurnPerHr?: number;
        trueAirspeedKt: number;
        windProvider?: WindProvider;
    }
    Index

    Properties

    fuelAvailable?: number

    Fuel on board (same unit as fuelBurnPerHr). When provided together with fuelBurnPerHr, the result reports endurance and whether fuel is sufficient for the total estimated time enroute.

    fuelBurnPerHr?: number

    Fuel burn rate per hour (any consistent unit). When provided, per-leg and total fuel are computed; the result fuel fields stay undefined otherwise.

    trueAirspeedKt: number

    True airspeed in knots flown on every leg.

    windProvider?: WindProvider

    Supplies the wind at each leg's midpoint. Omit to time every leg as calm (ground speed equals true airspeed).