@squawk
    Preparing search index...

    Interface Fix

    A named fix or waypoint published by the FAA. Includes US fixes and selected foreign fixes (Canadian, Mexican, Caribbean, Pacific) that participate in US operations. Fixes are specific geographic positions used in flight planning, instrument procedures, and ATC operations. They are defined by geographic coordinates and may be associated with one or more navaids via radial/distance intersections.

    interface Fix {
        catch: boolean;
        chartingRemark?: string;
        chartTypes: string[];
        compulsory?: FixCompulsory;
        country: string;
        highArtccId?: string;
        icaoRegionCode: string;
        identifier: string;
        lat: number;
        lon: number;
        lowArtccId?: string;
        minimumReceptionAltitudeFt?: number;
        navaidAssociations: FixNavaidAssociation[];
        pitch: boolean;
        previousIdentifier?: string;
        state?: string;
        suaAtcaa: boolean;
        useCode: FixUseCode;
    }
    Index

    Properties

    catch: boolean

    Whether this fix has a catch designation.

    chartingRemark?: string

    Charting remark text, if any.

    chartTypes: string[]

    Chart types on which this fix appears (e.g. "IAP", "STAR", "ENROUTE LOW").

    compulsory?: FixCompulsory

    Compulsory reporting designation, if applicable.

    country: string

    Two-letter country code (e.g. "US").

    highArtccId?: string

    High-altitude ARTCC identifier (e.g. "ZNY", "ZBW").

    icaoRegionCode: string

    ICAO region code (e.g. "K6", "K7", "K1").

    identifier: string

    Fix identifier (e.g. "MERIT", "BOSCO", "AAALL").

    lat: number

    Latitude in decimal degrees, positive north.

    lon: number

    Longitude in decimal degrees, positive east.

    lowArtccId?: string

    Low-altitude ARTCC identifier (e.g. "ZNY", "ZBW").

    minimumReceptionAltitudeFt?: number

    Minimum reception altitude in feet, if published.

    navaidAssociations: FixNavaidAssociation[]

    Navaid associations defining the fix by radial/distance from nearby navaids.

    pitch: boolean

    Whether this fix has a pitch designation.

    previousIdentifier?: string

    Previous fix identifier, if the fix was renamed.

    state?: string

    Two-letter state code (e.g. "MA", "NY", "CA"). Absent for non-US fixes.

    suaAtcaa: boolean

    Whether this fix is associated with Special Use Airspace or an ATCAA.

    useCode: FixUseCode

    Usage category of the fix.