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: 260845
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 135910
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 215279
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 168521
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 210008
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 176882
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, or]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 1"
classification: state-house-district
state: "OR"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 1
State House district 1 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 10"
classification: state-house-district
state: "OR"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 10
State House district 10 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 11"
classification: state-house-district
state: "OR"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 11
State House district 11 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 12"
classification: state-house-district
state: "OR"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 12
State House district 12 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 13"
classification: state-house-district
state: "OR"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 13
State House district 13 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 14"
classification: state-house-district
state: "OR"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 14
State House district 14 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 15"
classification: state-house-district
state: "OR"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 15
State House district 15 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 16"
classification: state-house-district
state: "OR"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 16
State House district 16 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 17"
classification: state-house-district
state: "OR"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 17
State House district 17 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 18"
classification: state-house-district
state: "OR"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 18
State House district 18 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 19"
classification: state-house-district
state: "OR"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 19
State House district 19 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 2"
classification: state-house-district
state: "OR"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 2
State House district 2 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 20"
classification: state-house-district
state: "OR"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 20
State House district 20 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 21"
classification: state-house-district
state: "OR"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 21
State House district 21 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 22"
classification: state-house-district
state: "OR"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 22
State House district 22 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 23"
classification: state-house-district
state: "OR"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 23
State House district 23 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 24"
classification: state-house-district
state: "OR"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 24
State House district 24 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 25"
classification: state-house-district
state: "OR"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 25
State House district 25 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 26"
classification: state-house-district
state: "OR"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 26
State House district 26 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 27"
classification: state-house-district
state: "OR"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 27
State House district 27 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 28"
classification: state-house-district
state: "OR"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 28
State House district 28 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 29"
classification: state-house-district
state: "OR"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 29
State House district 29 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 3"
classification: state-house-district
state: "OR"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 3
State House district 3 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 30"
classification: state-house-district
state: "OR"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 30
State House district 30 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 31"
classification: state-house-district
state: "OR"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 31
State House district 31 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 32"
classification: state-house-district
state: "OR"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 32
State House district 32 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 33"
classification: state-house-district
state: "OR"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 33
State House district 33 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 34"
classification: state-house-district
state: "OR"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 34
State House district 34 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 35"
classification: state-house-district
state: "OR"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 35
State House district 35 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 36"
classification: state-house-district
state: "OR"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 36
State House district 36 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 37"
classification: state-house-district
state: "OR"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 37
State House district 37 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 38"
classification: state-house-district
state: "OR"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 38
State House district 38 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 39"
classification: state-house-district
state: "OR"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 39
State House district 39 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 4"
classification: state-house-district
state: "OR"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 4
State House district 4 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 40"
classification: state-house-district
state: "OR"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 40
State House district 40 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 41"
classification: state-house-district
state: "OR"
chamber: "house"
district: "41"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 41
State House district 41 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 42"
classification: state-house-district
state: "OR"
chamber: "house"
district: "42"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 42
State House district 42 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 43"
classification: state-house-district
state: "OR"
chamber: "house"
district: "43"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 43
State House district 43 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 44"
classification: state-house-district
state: "OR"
chamber: "house"
district: "44"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 44
State House district 44 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 45"
classification: state-house-district
state: "OR"
chamber: "house"
district: "45"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 45
State House district 45 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 46"
classification: state-house-district
state: "OR"
chamber: "house"
district: "46"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 46
State House district 46 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 47"
classification: state-house-district
state: "OR"
chamber: "house"
district: "47"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 47
State House district 47 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 48"
classification: state-house-district
state: "OR"
chamber: "house"
district: "48"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 48
State House district 48 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 49"
classification: state-house-district
state: "OR"
chamber: "house"
district: "49"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 49
State House district 49 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 5"
classification: state-house-district
state: "OR"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 5
State House district 5 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 50"
classification: state-house-district
state: "OR"
chamber: "house"
district: "50"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 50
State House district 50 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 51"
classification: state-house-district
state: "OR"
chamber: "house"
district: "51"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 51
State House district 51 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 52"
classification: state-house-district
state: "OR"
chamber: "house"
district: "52"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 52
State House district 52 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 53"
classification: state-house-district
state: "OR"
chamber: "house"
district: "53"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 53
State House district 53 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 54"
classification: state-house-district
state: "OR"
chamber: "house"
district: "54"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 54
State House district 54 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 55"
classification: state-house-district
state: "OR"
chamber: "house"
district: "55"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 55
State House district 55 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 56"
classification: state-house-district
state: "OR"
chamber: "house"
district: "56"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 56
State House district 56 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 57"
classification: state-house-district
state: "OR"
chamber: "house"
district: "57"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 57
State House district 57 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 58"
classification: state-house-district
state: "OR"
chamber: "house"
district: "58"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 58
State House district 58 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 59"
classification: state-house-district
state: "OR"
chamber: "house"
district: "59"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 59
State House district 59 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 6"
classification: state-house-district
state: "OR"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 6
State House district 6 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 60"
classification: state-house-district
state: "OR"
chamber: "house"
district: "60"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 60
State House district 60 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 7"
classification: state-house-district
state: "OR"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 7
State House district 7 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 8"
classification: state-house-district
state: "OR"
chamber: "house"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 8
State House district 8 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR House District 9"
classification: state-house-district
state: "OR"
chamber: "house"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, or]
timestamp: "2026-07-03"
---
# OR House District 9
State House district 9 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 1"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 1
State Senate district 1 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 10"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 10
State Senate district 10 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 11"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 11
State Senate district 11 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 12"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 12
State Senate district 12 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 13"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 13
State Senate district 13 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 14"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 14
State Senate district 14 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 15"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 15
State Senate district 15 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 16"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 16
State Senate district 16 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 17"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 17
State Senate district 17 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 18"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 18
State Senate district 18 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 19"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 19
State Senate district 19 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 2"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 2
State Senate district 2 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 20"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 20
State Senate district 20 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 21"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 21
State Senate district 21 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 22"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 22
State Senate district 22 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 23"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 23
State Senate district 23 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 24"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 24
State Senate district 24 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 25"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 25
State Senate district 25 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 26"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 26
State Senate district 26 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 27"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 27
State Senate district 27 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 28"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 28
State Senate district 28 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 29"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 29
State Senate district 29 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 3"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 3
State Senate district 3 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 30"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 30
State Senate district 30 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 4"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 4
State Senate district 4 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 5"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 5
State Senate district 5 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 6"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 6
State Senate district 6 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 7"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 7
State Senate district 7 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 8"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 8
State Senate district 8 (OR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "OR Senate District 9"
classification: state-senate-district
state: "OR"
chamber: "senate"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, or]
timestamp: "2026-07-03"
---
# OR Senate District 9
State Senate district 9 (OR).
## Source
- boundary: Census TIGER 2024