@squawk
    Preparing search index...

    Interface FlightplanFixLookup

    Minimal fix lookup interface consumed by the flightplan resolver. Structurally compatible with the FixResolver shape in @squawk/fixes.

    interface FlightplanFixLookup {
        byIdent(ident: string): Fix[];
        byIdentAtPosition?(
            ident: string,
            lat: number,
            lon: number,
            toleranceNm?: number,
        ): Fix | undefined;
    }
    Index

    Methods

    • Optionally looks up the single fix sharing the identifier that lies nearest a reference position, disambiguating same-identifier collisions by proximity to the previously resolved route waypoint. When omitted, the resolver falls back to the first byIdent match.

      Parameters

      • ident: string
      • lat: number
      • lon: number
      • OptionaltoleranceNm: number

      Returns Fix | undefined