Commands

Every command, argument and option of ladesaeulen 0.0.5, read from the CLI itself.

Global options

These options work with every command.

OptionDescriptionDefault
-V, --version output the version number
--base-url <url> API base URL (the ArcGIS FeatureServer) https://services-eu1.arcgis.com/TJm8oSvOdJUQvQT5/arcgis/rest/services/Ladesaeulen/FeatureServer
--timeout <ms> time limit per request in ms, whole response included (0 = no timeout)
--user-agent <ua> User-Agent header value
--max-retries <n> retries for transient 429/503 responses (0..10)
--max-response-bytes <n> cap response body size in bytes (0 = unlimited; default 100 MiB)
--compact print JSON on a single line instead of pretty-printed

ladesaeulen stations

Search charging stations (Ladeeinrichtungen)

ladesaeulen stations [options]

Options

OptionDescriptionDefault
--where <sql> SQL filter, e.g. "Ort='Berlin' AND Typ='Schnellladeeinrichtung'"
--limit <n> max rows per request (1..10000; the server returns at most ~2000 — page with --offset) 50
--offset <n> rows to skip (for paging)
--order-by <spec> sort, e.g. "Ort ASC" or "CAST(max_electric_power_station AS FLOAT) DESC" (power is a text column)
--fields <list> comma-separated field list, or '*' for all (see `fields`)
--near <lat,lon> only stations near this WGS84 point (needs --radius)
--radius <km> search radius in km for --near
--count print only the number of matching stations
--geojson output a GeoJSON FeatureCollection instead of ArcGIS JSON

ladesaeulen count-by

Count stations grouped by a field, e.g. `count-by state` (per Bundesland)

ladesaeulen count-by [options] <field>

Arguments

<field> required
field to group by (e.g. state, Typ, operator_companyName, Ort)

Options

OptionDescriptionDefault
--where <sql> restrict to matching stations first

ladesaeulen fields

List the queryable field names (for --where / --fields / count-by)

ladesaeulen fields [options]