@squawk
    Preparing search index...

    Interface FetchPirepOptions

    Options accepted by fetchPirep. Extends FetchWeatherOptions with the optional filter parameters supported by the AWC pirep endpoint.

    interface FetchPirepOptions {
        age?: number;
        baseUrl?: string;
        distance?: number;
        inten?: PirepMinimumIntensity;
        level?: number;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    age?: number

    Hours back to search for reports.

    baseUrl?: string

    Override the AWC base URL. Defaults to DEFAULT_AWC_BASE_URL. Useful for pointing at a mirror or a proxy during development.

    distance?: number

    Radial distance in nautical miles to search from the center station.

    Minimum report intensity to include.

    level?: number

    Altitude in hundreds of feet; AWC widens +/-3000 ft around this value.

    signal?: AbortSignal

    AbortSignal used to cancel the underlying HTTP request.