@squawk
    Preparing search index...

    Interface RouteTimingLeg

    A single route leg with its wind-corrected timing solution.

    interface RouteTimingLeg {
        cumulativeDistanceNm: number;
        cumulativeEteHrs: number | undefined;
        distanceNm: number;
        eteHrs: number | undefined;
        from: string;
        fromLat: number;
        fromLon: number;
        fuelRequired: number | undefined;
        groundSpeedKt: number;
        to: string;
        toLat: number;
        toLon: number;
        trueCourseDeg: number;
        trueHeadingDeg: number;
        wind: WindVector | undefined;
        windCorrectionAngleDeg: number;
    }
    Index

    Properties

    cumulativeDistanceNm: number

    Cumulative distance from the route start through the end of this leg in nautical miles.

    cumulativeEteHrs: number | undefined

    Cumulative estimated time enroute from the route start through this leg in hours. undefined once any preceding leg could not be timed.

    distanceNm: number

    Great-circle distance of this leg in nautical miles.

    eteHrs: number | undefined

    Estimated time enroute for the leg in hours, or undefined if ground speed is not positive.

    from: string

    Identifier or raw token of the starting point.

    fromLat: number

    Latitude of the starting point in decimal degrees, positive north.

    fromLon: number

    Longitude of the starting point in decimal degrees, positive east.

    fuelRequired: number | undefined

    Fuel required for the leg (same unit as fuelBurnPerHr), or undefined when no burn rate was given or the leg could not be timed.

    groundSpeedKt: number

    Ground speed in knots after wind correction.

    to: string

    Identifier or raw token of the ending point.

    toLat: number

    Latitude of the ending point in decimal degrees, positive north.

    toLon: number

    Longitude of the ending point in decimal degrees, positive east.

    trueCourseDeg: number

    Initial great-circle true course for the leg in degrees (0-360).

    trueHeadingDeg: number

    True heading to fly to hold the course given the wind, in degrees (0-360).

    wind: WindVector | undefined

    Wind applied to the leg, or undefined when the leg was timed as calm.

    windCorrectionAngleDeg: number

    Wind correction angle in degrees. Positive means crab right, negative means crab left.