@squawk
    Preparing search index...

    Interface AirmetOutlookArea

    An outlook area within an AIRMET Zulu bulletin. Provides a forecast of expected conditions beyond the AIRMET valid period.

    interface AirmetOutlookArea {
        altitudeRange?: AltitudeRange;
        areaNumber: number;
        boundedBy: string[];
        conditionDescription?: string;
        conditions?: AirmetConditions;
        hazardType: AirmetHazardType;
        states: string[];
        validFrom: DayTime;
        validTo: DayTime;
    }
    Index

    Properties

    altitudeRange?: AltitudeRange

    Altitude range of the hazard, if applicable.

    areaNumber: number

    Outlook area number (e.g. 1, 2 from "AREA 1...ICE").

    boundedBy: string[]

    Area definition points bounding the outlook region (BOUNDED BY format).

    conditionDescription?: string

    Description of the hazard conditions (e.g. "MOD ICE BTN 040 AND 170").

    conditions?: AirmetConditions

    Condition timing information.

    hazardType: AirmetHazardType

    The hazard type for this outlook area.

    states: string[]

    US state abbreviations and area codes affected.

    validFrom: DayTime

    Start of the outlook valid period (UTC).

    validTo: DayTime

    End of the outlook valid period (UTC).