@squawk
    Preparing search index...

    Interface FetchWindsAloftOptions

    Options accepted by fetchWindsAloft.

    interface FetchWindsAloftOptions {
        altitudeBand?: WindsAloftAltitudeBand;
        baseUrl?: string;
        forecastHours?: WindsAloftForecastHours;
        region?: WindsAloftRegion;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    altitudeBand?: WindsAloftAltitudeBand

    Altitude band. When omitted, the AWC API applies its own default.

    baseUrl?: string

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

    forecastHours?: WindsAloftForecastHours

    Forecast horizon in hours from the issue time. When omitted, the AWC API applies its own default.

    Geographic region. When omitted, the AWC API applies its own default.

    signal?: AbortSignal

    AbortSignal used to cancel the underlying HTTP request.