Graph: national county↔district↔legislator authority layer

The first edges in the repo. Every US county now links to the districts it
sits in, weighted by area overlap, and every legislator links to the district
they represent — county → district → representative, traversable.

Data (PostGIS, no Atlas dependency — computed directly from geometry):
- data/county_district_edges.jsonl — 16,328 weighted edges. area_weight =
  ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid
  Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection,
  NOT centroid-in-polygon, so urban districts that carve through counties
  (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not
  silently dropped. Per-county weights sum to ~1.0 per district type.

build.py:
- ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse
  for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate
  (geometry-only). GEOID/number-keyed, stable.
- county index.md gains a `districts:` block (frontmatter) + a ## Districts
  section (body links, so link-integrity checks them).
- legislators + US House members gain `represents:` pointing at their district
  node; edge stored once on the person, inverse left to the view.
- schemas/jurisdiction: classification enum + chamber/districts fields.

Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so
their house districts get nodes (represents resolves) but no county edges;
CD nodes for acs_cd-missing states are demographically sparse.

Deterministic (byte-identical rebuild); validate.py passes 26,617 records,
link-integrity clean (every district/represents link resolves).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 161273
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 219870
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 267265
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 224717
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 250317
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 189224
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 129300
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 152226
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mn]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 10A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "10A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 10A
State House district 10A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 10B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "10B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 10B
State House district 10B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 11A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "11A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 11A
State House district 11A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 11B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "11B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 11B
State House district 11B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 12A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "12A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 12A
State House district 12A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 12B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "12B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 12B
State House district 12B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 13A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "13A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 13A
State House district 13A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 13B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "13B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 13B
State House district 13B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 14A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "14A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 14A
State House district 14A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 14B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "14B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 14B
State House district 14B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 15A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "15A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 15A
State House district 15A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 15B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "15B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 15B
State House district 15B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 16A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "16A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 16A
State House district 16A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 16B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "16B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 16B
State House district 16B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 17A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "17A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 17A
State House district 17A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 17B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "17B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 17B
State House district 17B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 18A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "18A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 18A
State House district 18A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 18B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "18B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 18B
State House district 18B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 19A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "19A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 19A
State House district 19A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 19B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "19B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 19B
State House district 19B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 1A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "1A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 1A
State House district 1A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 1B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "1B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 1B
State House district 1B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 20A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "20A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 20A
State House district 20A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 20B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "20B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 20B
State House district 20B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 21B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "21B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 21B
State House district 21B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 22A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "22A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 22A
State House district 22A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 22B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "22B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 22B
State House district 22B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 23A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "23A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 23A
State House district 23A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 23B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "23B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 23B
State House district 23B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 24A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "24A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 24A
State House district 24A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 24B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "24B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 24B
State House district 24B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 25A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "25A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 25A
State House district 25A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 25B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "25B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 25B
State House district 25B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 26A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "26A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 26A
State House district 26A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 26B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "26B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 26B
State House district 26B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 27A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "27A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 27A
State House district 27A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 27B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "27B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 27B
State House district 27B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 28A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "28A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 28A
State House district 28A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 28B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "28B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 28B
State House district 28B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 29A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "29A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 29A
State House district 29A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 29B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "29B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 29B
State House district 29B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 2A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "2A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 2A
State House district 2A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 2B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "2B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 2B
State House district 2B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 30A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "30A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 30A
State House district 30A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 30B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "30B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 30B
State House district 30B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 31A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "31A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 31A
State House district 31A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 31B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "31B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 31B
State House district 31B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 32A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "32A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 32A
State House district 32A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 32B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "32B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 32B
State House district 32B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 33A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "33A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 33A
State House district 33A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 33B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "33B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 33B
State House district 33B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 34A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "34A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 34A
State House district 34A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 34B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "34B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 34B
State House district 34B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 35A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "35A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 35A
State House district 35A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 35B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "35B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 35B
State House district 35B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 36A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "36A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 36A
State House district 36A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 36B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "36B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 36B
State House district 36B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 37A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "37A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 37A
State House district 37A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 37B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "37B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 37B
State House district 37B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 38A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "38A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 38A
State House district 38A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 38B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "38B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 38B
State House district 38B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 39A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "39A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 39A
State House district 39A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 39B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "39B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 39B
State House district 39B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 3A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "3A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 3A
State House district 3A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 3B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "3B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 3B
State House district 3B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 40A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "40A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 40A
State House district 40A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 40B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "40B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 40B
State House district 40B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 41A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "41A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 41A
State House district 41A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 41B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "41B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 41B
State House district 41B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 42A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "42A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 42A
State House district 42A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 42B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "42B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 42B
State House district 42B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 43A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "43A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 43A
State House district 43A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 43B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "43B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 43B
State House district 43B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 44A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "44A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 44A
State House district 44A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 44B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "44B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 44B
State House district 44B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 45A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "45A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 45A
State House district 45A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 45B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "45B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 45B
State House district 45B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 46A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "46A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 46A
State House district 46A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 46B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "46B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 46B
State House district 46B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 47A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "47A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 47A
State House district 47A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 47B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "47B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 47B
State House district 47B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 48A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "48A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 48A
State House district 48A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 48B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "48B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 48B
State House district 48B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 49A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "49A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 49A
State House district 49A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 49B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "49B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 49B
State House district 49B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 4A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "4A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 4A
State House district 4A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 4B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "4B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 4B
State House district 4B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 50A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "50A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 50A
State House district 50A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 50B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "50B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 50B
State House district 50B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 51A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "51A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 51A
State House district 51A (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 51B"
classification: state-house-district
state: "MN"
chamber: "house"
district: "51B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 51B
State House district 51B (MN).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MN House District 52A"
classification: state-house-district
state: "MN"
chamber: "house"
district: "52A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mn]
timestamp: "2026-07-03"
---
# MN House District 52A
State House district 52A (MN).
## Source
- boundary: Census TIGER 2024

Some files were not shown because too many files have changed in this diff Show More