Cleaned, documented civic open data — a DuckDB/GeoParquet consumer CLI plus the extraction/normalization spine that builds it, with a generated data dictionary and transformation-lineage layer.
Project description
civic-data
Cleaned, normalized, and documented public open data — with a generated, code-coupled data dictionary and transformation-lineage layer, consumable as a GeoParquet lake with a self-describing CLI.
The city gives away raw open data. civic-data's value is not the data — it's the honest, reproducible record of what we did to it, why, and what's lost: schema, grain, NULL rates, per-year coverage, quarantine loss, bias caveats, and a step-by-step transformation lineage that doubles as the reproduction recipe. Because that record is generated from the live database and the ingest code, it cannot drift from reality.
v1 covers Louisville, KY: ten domain datasets (crime, 311 service requests, landbank sales, lien orders, foreclosures, food-service establishments, ABC licenses, restaurant inspections, construction permits, short-term-rental licenses) plus the geography spine (ZIP boundaries, council districts, neighborhoods, HUD zones, crosswalks, Census population) — ~3.5M rows, all ingested from source, all lineage-documented.
Quick start (60 seconds, no database required)
pip install civic-data # consumer install — DuckDB only, no Postgres
civic-data cities # list published city lakes
civic-data get louisville # download the lake (sha256-verified) into ./export
civic-data query -d crime --zip 40202 --limit 5
Consuming the data
The consumer product is a GeoParquet lake described by a machine-readable catalog.json, read
with DuckDB — no server, no Docker, no Postgres. Every verb takes --json (for agents) and
--lake <dir> (default: ./export):
civic-data catalog --json # the discoverability contract — start here
civic-data datasets # list datasets by catalog key
civic-data schema crime # one dataset's columns + shape
civic-data query -d crime --zip 40202 --year 2024 --limit 5
civic-data query -d crime --district 6 # point-in-polygon; geocoded rows only (it says so)
civic-data place 40202 # one place across every dataset: identity + counts
civic-data sql "SELECT zip_code, count(*) FROM crime GROUP BY 1" # raw DuckDB; keys are views
civic-data query -d crime --sources # provenance: source pulls, license, how-to-cite
Hand someone a place as a folder: civic-data place 6 --export writes a self-contained
mini-lake (filtered Parquet + the district's boundary/crosswalks/population + a scoped catalog +
generated llms.txt/AGENTS.md). Every verb above works against that folder via --lake.
The lake root also carries generated llms.txt and AGENTS.md so an AI agent can bootstrap
itself from the artifact alone. Both are regenerated from the catalog on every export — never
hand-edited (a test enforces it).
Producing the data (the reproduction path)
docker compose up -d # PostgreSQL 16 + PostGIS on host port 5434
python -m venv .venv && . .venv/Scripts/activate # (Windows: .venv\Scripts\activate)
pip install -e .[producer] # the pipeline extras (Postgres driver, HTTP client)
civic-data ingest-zips # canonical ZIP boundary set (MDM) — run first
civic-data ingest-refs # LOJIC geocoding references (address points + intersections)
civic-data ingest-geo && civic-data ingest-population # boundaries, crosswalks, Census ACS
civic-data ingest crime --all --promote # source -> bronze -> silver (any of the 10 domains)
civic-data geocode-crime --write --apply # place ~1.2M crime records (geom + derived ZIP)
civic-data datadict --with-source-audit # generate the data dictionary + lineage
civic-data export # silver -> GeoParquet lake + catalog + agent docs
The generated dictionary lands in docs/data-dictionary/ — a human-readable
README.md and a machine-readable data-reality.json (diffing successive runs is drift detection).
Ingest order matters: ingest-zips first. The ZIP set is the canonical geography (MDM) every record
validates against; crime/311 ingest refuse to run without it.
Honesty, by construction
- Trust tiers on every dataset (
trendable/viewable_caveated/snapshot_only) — a current roster is not a time series, and the catalog says which is which. - Documented loss, not silent loss: quarantine counts, geocode coverage (spatial filters match geocoded rows only, and the CLI says so), source-shape divergences recorded as findings.
- Generated, never hand-maintained: the dictionary, the catalog, and the agent docs are all derived from the live database + code; drift guards raise when authored prose falls out of sync.
Licensing
- Code: MIT — see
LICENSE. - Data & documentation: CC BY 4.0 — see
LICENSE-data.
The underlying raw data is public record, provided as-is, and its terms were verified per origin
(2026-07-11): Louisville Metro publishes under the PDDL (public domain; when republishing
modified data, identify the source, version, and modifications — which the generated lineage layer
does per dataset); LOJIC layers are public domain (Mapping Data Source: LOJIC); Census ACS is a
U.S. government work — this product uses the Census Bureau Data API but is not endorsed or
certified by the Census Bureau. Every dataset's exact license text ships in its catalog provenance:
civic-data query -d <dataset> --sources.
Provenance
Born out of civic-graph (the private flagship built on top of this layer, and the origin of this
spine). See wiki.md for the source of truth and ai-working/plans/ for the phase plans.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file civic_data-0.1.0.tar.gz.
File metadata
- Download URL: civic_data-0.1.0.tar.gz
- Upload date:
- Size: 127.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1adfd436b329195f82b3c104511e156de44e97cee0ba7d87a253eba12d1b2e23
|
|
| MD5 |
2fff06ca6b48655f92dd409cb4be80c1
|
|
| BLAKE2b-256 |
4a2e6e1362bb9d85a6601c6debc52642e8dc37c6756549446f3a1d97ca7f7b59
|
File details
Details for the file civic_data-0.1.0-py3-none-any.whl.
File metadata
- Download URL: civic_data-0.1.0-py3-none-any.whl
- Upload date:
- Size: 138.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b624fd26dddb6aefd2240244b0b7a83a38961bec5697e27f1877219430b6f1c8
|
|
| MD5 |
d6a062a565e6afbe451c7c890b3674f6
|
|
| BLAKE2b-256 |
258e8327e0e6a1e276ba081982f36d4f18901c866867b9894d2b1b30201d712e
|