@squawk
    Preparing search index...

    Interface PlanningPoint

    A computed point along a route, expressed as both a distance and time from the departure point. Returned by planning.pointOfNoReturn and planning.equalTimePoint.

    interface PlanningPoint {
        distanceNm: number;
        timeHrs: number;
    }
    Index

    Properties

    Properties

    distanceNm: number

    Distance from departure in nautical miles.

    timeHrs: number

    Time from departure in hours.