@squawk
    Preparing search index...

    Interface NotamQualifier

    The parsed Q-line (qualifier line) from an ICAO NOTAM. Contains encoded metadata about the NOTAM in a structured 8-field format.

    interface NotamQualifier {
        conditionCode: NotamConditionCode;
        coordinates: Coordinates;
        fir: string;
        lowerAltitudeFt?: number;
        notamCode: string;
        purposes: NotamPurpose[];
        radiusNm: number;
        scope: NotamScope;
        subjectCode: NotamSubjectCode;
        trafficType: NotamTrafficType;
        upperAltitudeFt: number;
    }
    Index

    Properties

    conditionCode: NotamConditionCode

    Two-letter NOTAM condition code from the Q-code (4th and 5th letters, e.g. "LC" for closed, "AS" for unserviceable).

    coordinates: Coordinates

    Center point coordinates of the NOTAM's area of applicability.

    fir: string

    ICAO identifier of the Flight Information Region (e.g. "KZNY", "EGTT").

    lowerAltitudeFt?: number

    Lower altitude limit in feet. Undefined when the lower limit is the surface.

    notamCode: string

    The full 5-letter NOTAM Q-code (e.g. "QMRLC", "QNALO").

    purposes: NotamPurpose[]

    Purpose codes indicating why the NOTAM was issued (e.g. [N, B, O] for immediate attention + briefing + operations).

    radiusNm: number

    Radius in nautical miles from the center point.

    scope: NotamScope

    Geographic scope of the NOTAM.

    subjectCode: NotamSubjectCode

    Two-letter NOTAM subject code from the Q-code (2nd and 3rd letters, e.g. "MR" for runway, "NA" for navaids).

    trafficType: NotamTrafficType

    Traffic type qualifier indicating which flight rules are affected.

    upperAltitudeFt: number

    Upper altitude limit in feet. 99900 indicates unlimited.