@squawk
    Preparing search index...

    Interface FlightplanNavaidLookup

    Minimal navaid lookup interface consumed by the flightplan resolver. Structurally compatible with the NavaidResolver shape in @squawk/navaids.

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

    Methods

    • Optionally looks up the single navaid 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 Navaid | undefined