@squawk
    Preparing search index...

    Interface Taf

    A parsed TAF (Terminal Aerodrome Forecast).

    A TAF provides weather forecasts for a specific airport, typically covering a 24 or 30 hour period. The forecast consists of a base forecast followed by zero or more change groups indicating expected weather transitions.

    interface Taf {
        forecast: TafForecastGroup[];
        isAmended: boolean;
        isCancelled: boolean;
        isCorrected: boolean;
        issuedAt: DayTime;
        raw: string;
        stationId: string;
        validFrom: DayTime;
        validTo: DayTime;
    }
    Index

    Properties

    forecast: TafForecastGroup[]

    Forecast groups. The first element is always the base forecast (no changeType). Empty when cancelled.

    isAmended: boolean

    True when the TAF is an amendment to a previously issued forecast (AMD).

    isCancelled: boolean

    True when the TAF has been cancelled (CNL).

    isCorrected: boolean

    True when the TAF is a correction to a previously issued forecast (COR).

    issuedAt: DayTime

    Time (UTC) when the forecast was issued. Day is always present.

    raw: string

    The original raw TAF string as provided to the parser.

    stationId: string

    ICAO station identifier (e.g. "KJFK", "EGLL", "PANC").

    validFrom: DayTime

    Start of the overall forecast validity period (UTC). Uses day+hour with minute 0.

    validTo: DayTime

    End of the overall forecast validity period (UTC). Uses day+hour with minute 0.