@squawk
    Preparing search index...

    Interface PrecipitationEvent

    Precipitation begin/end event from the METAR remarks section. Indicates when a specific weather phenomenon began or ended (e.g. RAB15E32).

    interface PrecipitationEvent {
        eventType: "BEGIN" | "END";
        phenomenon: string;
        time: DayTime;
    }
    Index

    Properties

    eventType: "BEGIN" | "END"

    "BEGIN" if the phenomenon began, "END" if it ended.

    phenomenon: string

    Weather phenomenon code (e.g. "RA", "SN", "TS").

    time: DayTime

    Time (UTC) of the event. When the raw report omits the hour, it is populated from the observation time.