Lightweight CLI and library to build web-optimized GeoJSON for election precincts (and similar layers).
Outputs three artifacts per run:
- full GeoJSON (QA and reproducibility)
- web GeoJSON (served to apps)
- TopoJSON (optional, for smaller delivery)
It also writes per-version metadata.json, and a state index.json that points to the latest layer.
pip install civic-geo-generator# install deps
uv sync --extra dev --extra docs --upgrade
# orchestrated runs based on yaml file
uv run civic-gen run -f inputs.yaml
# or provide a specific state and view
uv run civic-gen run MN precincts- Batch inputs live in
inputs.yaml. - Config files live under
data-config/(e.g.,us/mn/precincts.yaml). - Data input files should be placed in the
data-infolder, organized by state and layer as described in YAML configs (e.g.,data-config/us/mn/precincts.yaml). - Outputs are written under
data-out/us/<state-name>/<view>/<version>/.
- Source: https://github.com/civic-interconnect/civic-geo-generator
- Issues: https://github.com/civic-interconnect/civic-geo-generator/issues
Place statewide GeoJSON input in correct location, e.g.
- data-in/us/mn/precincts_2025-04.json
Configure inputs.yaml, e.g.
# inputs.yaml (batch mode)
runs:
- state: MN
views: [precincts]
version_overrides:
precincts: "2025-04"
# 1) Build (copy/normalize/add snapshot metadata)
civic-gen build --version 2025-04
# 2) Validate (CRS, required columns, geometry, basic uniqueness)
civic-gen validate --version 2025-04
# 3) Index (flat index, manifest, state layer pointers)
civic-gen index
See DEVELOPER.md
They include voting precinct boundaries as well as the name, county, and election districts (US Congress, MN Senate and House, County Commissioner) for each precinct.
Geojson files are intended to provide basic information regarding the location of election districts within the state. For the most accurate information on precincts and districts, as well as polling place information, please use the Polling Place Finder.
Minnesota precincts - April 2025 (6225 KB json)
| Congressional District | as of April 2025 |
|---|---|
| District 1 (southern Minnesota) | C.D. 1 (1062 KB json) |
| District 2 (south Metro) | C.D. 2 (383 KB json) |
| District 3 (greater Hennepin County) | C.D. 3 (341 KB json) |
| District 4 (Ramsey County and suburbs) | C.D. 4 (217 KB json) |
| District 5 (Minneapolis and suburbs) | C.D. 5 (171 KB json) |
| District 6 (northwestern Metro, St Cloud area) | C.D. 6 (578 KB json) |
| District 7 (western Minnesota) | C.D. 7 (1760 KB json) |
| District 8 (northeastern Minnesota) | C.D. 8 (1720 KB json) |