@squawk
    Preparing search index...

    Interface RouteDistanceResult

    Result of computing route distance and estimated time enroute from a parsed flight plan route.

    interface RouteDistanceResult {
        estimatedTimeEnrouteHrs: number | undefined;
        legs: RouteLeg[];
        totalDistanceNm: number;
        unresolvedElements: RouteElement[];
    }
    Index

    Properties

    estimatedTimeEnrouteHrs: number | undefined

    Estimated time enroute in hours, or undefined if no ground speed was provided.

    legs: RouteLeg[]

    Ordered legs between consecutive geographic points.

    totalDistanceNm: number

    Total great-circle route distance in nautical miles.

    unresolvedElements: RouteElement[]

    Route elements of type unresolved that could not contribute coordinates. When these appear between geographic points the distance bridges the gap, so the total may be approximate.