@squawk
    Preparing search index...

    Interface AirmetHazard

    A single hazard area within an AIRMET bulletin. Each bulletin may contain multiple hazard areas covering different geographic regions or hazard types.

    interface AirmetHazard {
        altitudeRange?: AltitudeRange;
        areaPoints: string[];
        boundedBy: string[];
        cause?: string;
        coastalWaters: boolean;
        conditionDescription?: string;
        conditions?: AirmetConditions;
        hazardType: AirmetHazardType;
        states: string[];
    }
    Index

    Properties

    altitudeRange?: AltitudeRange

    Altitude range of the hazard (e.g. BTN FL250 AND FL380).

    areaPoints: string[]

    Area definition points delineating the affected region. Uses VOR-relative format (e.g. "30NW ALB", "40E PDX") from FROM/TO lines.

    boundedBy: string[]

    Area definition points from BOUNDED BY format, used for LLWS POTENTIAL areas. Uses VOR-relative format with dash-separated points.

    cause?: string

    Cause of the hazard as stated in a DUE TO clause (e.g. "JTST", "LFNT").

    coastalWaters: boolean

    True when the affected area includes adjacent coastal waters.

    conditionDescription?: string

    Raw condition description text (e.g. "CIG BLW 010/VIS BLW 3SM BR", "MOD TURB BTN FL250 AND FL380").

    conditions?: AirmetConditions

    Condition timing information for this hazard area.

    hazardType: AirmetHazardType

    The type of weather hazard.

    states: string[]

    US state abbreviations and area codes affected by the hazard.