@maschinenlesbar.org/ladesaeulenregister-cli
    Preparing search index...

    Interface StationQuery

    Query options for a station search.

    interface StationQuery {
        limit?: number;
        near?: { lat: number; lon: number; radiusKm: number };
        offset?: number;
        orderBy?: string;
        outFields?: string;
        where?: string;
    }
    Index
    limit?: number

    Max rows to return (ArcGIS resultRecordCount).

    near?: { lat: number; lon: number; radiusKm: number }

    Spatial filter: only stations within radiusKm of this point.

    offset?: number

    Rows to skip (ArcGIS resultOffset).

    orderBy?: string

    Sort spec, e.g. "Ort ASC" (ArcGIS orderByFields).

    outFields?: string

    Comma-separated field list, or *. Defaults to a curated set.

    where?: string

    SQL where filter (default 1=1).