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
@@ -22,9 +22,21 @@ demographics:
race_native: 46752
hispanic: 4169
bachelors_plus: 9973
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.9999
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4169 |
| Bachelor's or higher | 9973 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 100% (congressional)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 100% (state senate)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 1700
hispanic: 44719
bachelors_plus: 35041
districts:
- to: "us/states/az/districts/06"
rel: in-district
area_weight: 0.9296
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.0704
- to: "us/states/az/districts/senate/19"
rel: in-district
area_weight: 0.9543
- to: "us/states/az/districts/senate/21"
rel: in-district
area_weight: 0.0457
- to: "us/states/az/districts/house/19"
rel: in-district
area_weight: 0.9543
- to: "us/states/az/districts/house/21"
rel: in-district
area_weight: 0.0457
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 44719 |
| Bachelor's or higher | 35041 |
## Districts
- [AZ-06](/us/states/az/districts/06.md) — 93% (congressional)
- [AZ-07](/us/states/az/districts/07.md) — 7% (congressional)
- [AZ Senate District 19](/us/states/az/districts/senate/19.md) — 95% (state senate)
- [AZ Senate District 21](/us/states/az/districts/senate/21.md) — 5% (state senate)
- [AZ House District 19](/us/states/az/districts/house/19.md) — 95% (state house)
- [AZ House District 21](/us/states/az/districts/house/21.md) — 5% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 37412
hispanic: 23080
bachelors_plus: 54535
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.8118
- to: "us/states/az/districts/senate/7"
rel: in-district
area_weight: 0.1878
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.8118
- to: "us/states/az/districts/house/7"
rel: in-district
area_weight: 0.1878
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 23080 |
| Bachelor's or higher | 54535 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 100% (congressional)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 81% (state senate)
- [AZ Senate District 7](/us/states/az/districts/senate/7.md) — 19% (state senate)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 81% (state house)
- [AZ House District 7](/us/states/az/districts/house/7.md) — 19% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 5279
hispanic: 9659
bachelors_plus: 10392
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.9996
- to: "us/states/az/districts/senate/7"
rel: in-district
area_weight: 0.616
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.3839
- to: "us/states/az/districts/house/7"
rel: in-district
area_weight: 0.616
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.3839
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 9659 |
| Bachelor's or higher | 10392 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 100% (congressional)
- [AZ Senate District 7](/us/states/az/districts/senate/7.md) — 62% (state senate)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 38% (state senate)
- [AZ House District 7](/us/states/az/districts/house/7.md) — 62% (state house)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 38% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 3505
hispanic: 12075
bachelors_plus: 4853
districts:
- to: "us/states/az/districts/06"
rel: in-district
area_weight: 0.6326
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.3674
- to: "us/states/az/districts/senate/19"
rel: in-district
area_weight: 0.633
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.367
- to: "us/states/az/districts/house/19"
rel: in-district
area_weight: 0.633
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.367
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 12075 |
| Bachelor's or higher | 4853 |
## Districts
- [AZ-06](/us/states/az/districts/06.md) — 63% (congressional)
- [AZ-02](/us/states/az/districts/02.md) — 37% (congressional)
- [AZ Senate District 19](/us/states/az/districts/senate/19.md) — 63% (state senate)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 37% (state senate)
- [AZ House District 19](/us/states/az/districts/house/19.md) — 63% (state house)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 37% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 196
hispanic: 4396
bachelors_plus: 1802
districts:
- to: "us/states/az/districts/06"
rel: in-district
area_weight: 0.9995
- to: "us/states/az/districts/senate/19"
rel: in-district
area_weight: 0.9999
- to: "us/states/az/districts/house/19"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4396 |
| Bachelor's or higher | 1802 |
## Districts
- [AZ-06](/us/states/az/districts/06.md) — 100% (congressional)
- [AZ Senate District 19](/us/states/az/districts/senate/19.md) — 100% (state senate)
- [AZ House District 19](/us/states/az/districts/house/19.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2202
hispanic: 4263
bachelors_plus: 2285
districts:
- to: "us/states/az/districts/09"
rel: in-district
area_weight: 0.9997
- to: "us/states/az/districts/senate/30"
rel: in-district
area_weight: 0.9998
- to: "us/states/az/districts/house/30"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4263 |
| Bachelor's or higher | 2285 |
## Districts
- [AZ-09](/us/states/az/districts/09.md) — 100% (congressional)
- [AZ Senate District 30](/us/states/az/districts/senate/30.md) — 100% (state senate)
- [AZ House District 30](/us/states/az/districts/house/30.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,144 @@ demographics:
race_native: 90213
hispanic: 1422451
bachelors_plus: 1578463
districts:
- to: "us/states/az/districts/09"
rel: in-district
area_weight: 0.3534
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.3251
- to: "us/states/az/districts/01"
rel: in-district
area_weight: 0.1757
- to: "us/states/az/districts/08"
rel: in-district
area_weight: 0.0628
- to: "us/states/az/districts/05"
rel: in-district
area_weight: 0.0246
- to: "us/states/az/districts/03"
rel: in-district
area_weight: 0.0224
- to: "us/states/az/districts/04"
rel: in-district
area_weight: 0.0195
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.0165
- to: "us/states/az/districts/senate/23"
rel: in-district
area_weight: 0.2888
- to: "us/states/az/districts/senate/25"
rel: in-district
area_weight: 0.2423
- to: "us/states/az/districts/senate/3"
rel: in-district
area_weight: 0.1621
- to: "us/states/az/districts/senate/30"
rel: in-district
area_weight: 0.0976
- to: "us/states/az/districts/senate/29"
rel: in-district
area_weight: 0.0422
- to: "us/states/az/districts/senate/28"
rel: in-district
area_weight: 0.0329
- to: "us/states/az/districts/senate/8"
rel: in-district
area_weight: 0.0148
- to: "us/states/az/districts/senate/12"
rel: in-district
area_weight: 0.014
- to: "us/states/az/districts/senate/22"
rel: in-district
area_weight: 0.0121
- to: "us/states/az/districts/senate/11"
rel: in-district
area_weight: 0.0115
- to: "us/states/az/districts/senate/4"
rel: in-district
area_weight: 0.011
- to: "us/states/az/districts/senate/10"
rel: in-district
area_weight: 0.0089
- to: "us/states/az/districts/senate/16"
rel: in-district
area_weight: 0.0087
- to: "us/states/az/districts/senate/2"
rel: in-district
area_weight: 0.0085
- to: "us/states/az/districts/senate/15"
rel: in-district
area_weight: 0.0078
- to: "us/states/az/districts/senate/14"
rel: in-district
area_weight: 0.0073
- to: "us/states/az/districts/senate/13"
rel: in-district
area_weight: 0.0069
- to: "us/states/az/districts/senate/27"
rel: in-district
area_weight: 0.0064
- to: "us/states/az/districts/house/23"
rel: in-district
area_weight: 0.2888
- to: "us/states/az/districts/house/25"
rel: in-district
area_weight: 0.2423
- to: "us/states/az/districts/house/3"
rel: in-district
area_weight: 0.1621
- to: "us/states/az/districts/house/30"
rel: in-district
area_weight: 0.0976
- to: "us/states/az/districts/house/29"
rel: in-district
area_weight: 0.0422
- to: "us/states/az/districts/house/28"
rel: in-district
area_weight: 0.0329
- to: "us/states/az/districts/house/8"
rel: in-district
area_weight: 0.0148
- to: "us/states/az/districts/house/12"
rel: in-district
area_weight: 0.014
- to: "us/states/az/districts/house/22"
rel: in-district
area_weight: 0.0121
- to: "us/states/az/districts/house/11"
rel: in-district
area_weight: 0.0115
- to: "us/states/az/districts/house/4"
rel: in-district
area_weight: 0.011
- to: "us/states/az/districts/house/10"
rel: in-district
area_weight: 0.0089
- to: "us/states/az/districts/house/16"
rel: in-district
area_weight: 0.0087
- to: "us/states/az/districts/house/2"
rel: in-district
area_weight: 0.0085
- to: "us/states/az/districts/house/15"
rel: in-district
area_weight: 0.0078
- to: "us/states/az/districts/house/14"
rel: in-district
area_weight: 0.0073
- to: "us/states/az/districts/house/13"
rel: in-district
area_weight: 0.0069
- to: "us/states/az/districts/house/27"
rel: in-district
area_weight: 0.0064
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +191,54 @@ County jurisdiction — 12 officeholders mapped.
| Hispanic/Latino | 1422451 |
| Bachelor's or higher | 1578463 |
## Districts
- [AZ-09](/us/states/az/districts/09.md) — 35% (congressional)
- [AZ-07](/us/states/az/districts/07.md) — 33% (congressional)
- [AZ-01](/us/states/az/districts/01.md) — 18% (congressional)
- [AZ-08](/us/states/az/districts/08.md) — 6% (congressional)
- [AZ-05](/us/states/az/districts/05.md) — 2% (congressional)
- [AZ-03](/us/states/az/districts/03.md) — 2% (congressional)
- [AZ-04](/us/states/az/districts/04.md) — 2% (congressional)
- [AZ-02](/us/states/az/districts/02.md) — 2% (congressional)
- [AZ Senate District 23](/us/states/az/districts/senate/23.md) — 29% (state senate)
- [AZ Senate District 25](/us/states/az/districts/senate/25.md) — 24% (state senate)
- [AZ Senate District 3](/us/states/az/districts/senate/3.md) — 16% (state senate)
- [AZ Senate District 30](/us/states/az/districts/senate/30.md) — 10% (state senate)
- [AZ Senate District 29](/us/states/az/districts/senate/29.md) — 4% (state senate)
- [AZ Senate District 28](/us/states/az/districts/senate/28.md) — 3% (state senate)
- [AZ Senate District 8](/us/states/az/districts/senate/8.md) — 1% (state senate)
- [AZ Senate District 12](/us/states/az/districts/senate/12.md) — 1% (state senate)
- [AZ Senate District 22](/us/states/az/districts/senate/22.md) — 1% (state senate)
- [AZ Senate District 11](/us/states/az/districts/senate/11.md) — 1% (state senate)
- [AZ Senate District 4](/us/states/az/districts/senate/4.md) — 1% (state senate)
- [AZ Senate District 10](/us/states/az/districts/senate/10.md) — 1% (state senate)
- [AZ Senate District 16](/us/states/az/districts/senate/16.md) — 1% (state senate)
- [AZ Senate District 2](/us/states/az/districts/senate/2.md) — 1% (state senate)
- [AZ Senate District 15](/us/states/az/districts/senate/15.md) — 1% (state senate)
- [AZ Senate District 14](/us/states/az/districts/senate/14.md) — 1% (state senate)
- [AZ Senate District 13](/us/states/az/districts/senate/13.md) — 1% (state senate)
- [AZ Senate District 27](/us/states/az/districts/senate/27.md) — 1% (state senate)
- [AZ House District 23](/us/states/az/districts/house/23.md) — 29% (state house)
- [AZ House District 25](/us/states/az/districts/house/25.md) — 24% (state house)
- [AZ House District 3](/us/states/az/districts/house/3.md) — 16% (state house)
- [AZ House District 30](/us/states/az/districts/house/30.md) — 10% (state house)
- [AZ House District 29](/us/states/az/districts/house/29.md) — 4% (state house)
- [AZ House District 28](/us/states/az/districts/house/28.md) — 3% (state house)
- [AZ House District 8](/us/states/az/districts/house/8.md) — 1% (state house)
- [AZ House District 12](/us/states/az/districts/house/12.md) — 1% (state house)
- [AZ House District 22](/us/states/az/districts/house/22.md) — 1% (state house)
- [AZ House District 11](/us/states/az/districts/house/11.md) — 1% (state house)
- [AZ House District 4](/us/states/az/districts/house/4.md) — 1% (state house)
- [AZ House District 10](/us/states/az/districts/house/10.md) — 1% (state house)
- [AZ House District 16](/us/states/az/districts/house/16.md) — 1% (state house)
- [AZ House District 2](/us/states/az/districts/house/2.md) — 1% (state house)
- [AZ House District 15](/us/states/az/districts/house/15.md) — 1% (state house)
- [AZ House District 14](/us/states/az/districts/house/14.md) — 1% (state house)
- [AZ House District 13](/us/states/az/districts/house/13.md) — 1% (state house)
- [AZ House District 27](/us/states/az/districts/house/27.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 3771
hispanic: 37708
bachelors_plus: 36183
districts:
- to: "us/states/az/districts/09"
rel: in-district
area_weight: 0.9292
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.0705
- to: "us/states/az/districts/senate/30"
rel: in-district
area_weight: 0.9294
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.0704
- to: "us/states/az/districts/house/30"
rel: in-district
area_weight: 0.9294
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.0704
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 37708 |
| Bachelor's or higher | 36183 |
## Districts
- [AZ-09](/us/states/az/districts/09.md) — 93% (congressional)
- [AZ-02](/us/states/az/districts/02.md) — 7% (congressional)
- [AZ Senate District 30](/us/states/az/districts/senate/30.md) — 93% (state senate)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 7% (state senate)
- [AZ House District 30](/us/states/az/districts/house/30.md) — 93% (state house)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 45712
hispanic: 11786
bachelors_plus: 19299
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.7671
- to: "us/states/az/districts/senate/7"
rel: in-district
area_weight: 0.2329
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.7671
- to: "us/states/az/districts/house/7"
rel: in-district
area_weight: 0.2329
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11786 |
| Bachelor's or higher | 19299 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 100% (congressional)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 77% (state senate)
- [AZ Senate District 7](/us/states/az/districts/senate/7.md) — 23% (state senate)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 77% (state house)
- [AZ House District 7](/us/states/az/districts/house/7.md) — 23% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 30810
hispanic: 386110
bachelors_plus: 385688
districts:
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.806
- to: "us/states/az/districts/06"
rel: in-district
area_weight: 0.1939
- to: "us/states/az/districts/senate/23"
rel: in-district
area_weight: 0.6301
- to: "us/states/az/districts/senate/21"
rel: in-district
area_weight: 0.1145
- to: "us/states/az/districts/senate/17"
rel: in-district
area_weight: 0.1144
- to: "us/states/az/districts/senate/19"
rel: in-district
area_weight: 0.0679
- to: "us/states/az/districts/senate/16"
rel: in-district
area_weight: 0.0532
- to: "us/states/az/districts/senate/18"
rel: in-district
area_weight: 0.0104
- to: "us/states/az/districts/senate/20"
rel: in-district
area_weight: 0.0094
- to: "us/states/az/districts/house/23"
rel: in-district
area_weight: 0.6301
- to: "us/states/az/districts/house/21"
rel: in-district
area_weight: 0.1145
- to: "us/states/az/districts/house/17"
rel: in-district
area_weight: 0.1144
- to: "us/states/az/districts/house/19"
rel: in-district
area_weight: 0.0679
- to: "us/states/az/districts/house/16"
rel: in-district
area_weight: 0.0532
- to: "us/states/az/districts/house/18"
rel: in-district
area_weight: 0.0104
- to: "us/states/az/districts/house/20"
rel: in-district
area_weight: 0.0094
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 386110 |
| Bachelor's or higher | 385688 |
## Districts
- [AZ-07](/us/states/az/districts/07.md) — 81% (congressional)
- [AZ-06](/us/states/az/districts/06.md) — 19% (congressional)
- [AZ Senate District 23](/us/states/az/districts/senate/23.md) — 63% (state senate)
- [AZ Senate District 21](/us/states/az/districts/senate/21.md) — 11% (state senate)
- [AZ Senate District 17](/us/states/az/districts/senate/17.md) — 11% (state senate)
- [AZ Senate District 19](/us/states/az/districts/senate/19.md) — 7% (state senate)
- [AZ Senate District 16](/us/states/az/districts/senate/16.md) — 5% (state senate)
- [AZ Senate District 18](/us/states/az/districts/senate/18.md) — 1% (state senate)
- [AZ Senate District 20](/us/states/az/districts/senate/20.md) — 1% (state senate)
- [AZ House District 23](/us/states/az/districts/house/23.md) — 63% (state house)
- [AZ House District 21](/us/states/az/districts/house/21.md) — 11% (state house)
- [AZ House District 17](/us/states/az/districts/house/17.md) — 11% (state house)
- [AZ House District 19](/us/states/az/districts/house/19.md) — 7% (state house)
- [AZ House District 16](/us/states/az/districts/house/16.md) — 5% (state house)
- [AZ House District 18](/us/states/az/districts/house/18.md) — 1% (state house)
- [AZ House District 20](/us/states/az/districts/house/20.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 20793
hispanic: 139779
bachelors_plus: 99437
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.5481
- to: "us/states/az/districts/06"
rel: in-district
area_weight: 0.2522
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.1665
- to: "us/states/az/districts/05"
rel: in-district
area_weight: 0.0331
- to: "us/states/az/districts/senate/16"
rel: in-district
area_weight: 0.4526
- to: "us/states/az/districts/senate/7"
rel: in-district
area_weight: 0.3626
- to: "us/states/az/districts/senate/23"
rel: in-district
area_weight: 0.0775
- to: "us/states/az/districts/senate/6"
rel: in-district
area_weight: 0.0395
- to: "us/states/az/districts/senate/17"
rel: in-district
area_weight: 0.0389
- to: "us/states/az/districts/senate/15"
rel: in-district
area_weight: 0.0283
- to: "us/states/az/districts/house/16"
rel: in-district
area_weight: 0.4526
- to: "us/states/az/districts/house/7"
rel: in-district
area_weight: 0.3626
- to: "us/states/az/districts/house/23"
rel: in-district
area_weight: 0.0775
- to: "us/states/az/districts/house/6"
rel: in-district
area_weight: 0.0395
- to: "us/states/az/districts/house/17"
rel: in-district
area_weight: 0.0389
- to: "us/states/az/districts/house/15"
rel: in-district
area_weight: 0.0283
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction.
| Hispanic/Latino | 139779 |
| Bachelor's or higher | 99437 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 55% (congressional)
- [AZ-06](/us/states/az/districts/06.md) — 25% (congressional)
- [AZ-07](/us/states/az/districts/07.md) — 17% (congressional)
- [AZ-05](/us/states/az/districts/05.md) — 3% (congressional)
- [AZ Senate District 16](/us/states/az/districts/senate/16.md) — 45% (state senate)
- [AZ Senate District 7](/us/states/az/districts/senate/7.md) — 36% (state senate)
- [AZ Senate District 23](/us/states/az/districts/senate/23.md) — 8% (state senate)
- [AZ Senate District 6](/us/states/az/districts/senate/6.md) — 4% (state senate)
- [AZ Senate District 17](/us/states/az/districts/senate/17.md) — 4% (state senate)
- [AZ Senate District 15](/us/states/az/districts/senate/15.md) — 3% (state senate)
- [AZ House District 16](/us/states/az/districts/house/16.md) — 45% (state house)
- [AZ House District 7](/us/states/az/districts/house/7.md) — 36% (state house)
- [AZ House District 23](/us/states/az/districts/house/23.md) — 8% (state house)
- [AZ House District 6](/us/states/az/districts/house/6.md) — 4% (state house)
- [AZ House District 17](/us/states/az/districts/house/17.md) — 4% (state house)
- [AZ House District 15](/us/states/az/districts/house/15.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 282
hispanic: 40367
bachelors_plus: 10260
districts:
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.9997
- to: "us/states/az/districts/senate/21"
rel: in-district
area_weight: 0.6238
- to: "us/states/az/districts/senate/19"
rel: in-district
area_weight: 0.376
- to: "us/states/az/districts/house/21"
rel: in-district
area_weight: 0.6238
- to: "us/states/az/districts/house/19"
rel: in-district
area_weight: 0.376
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 40367 |
| Bachelor's or higher | 10260 |
## Districts
- [AZ-07](/us/states/az/districts/07.md) — 100% (congressional)
- [AZ Senate District 21](/us/states/az/districts/senate/21.md) — 62% (state senate)
- [AZ Senate District 19](/us/states/az/districts/senate/19.md) — 38% (state senate)
- [AZ House District 21](/us/states/az/districts/house/21.md) — 62% (state house)
- [AZ House District 19](/us/states/az/districts/house/19.md) — 38% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 3727
hispanic: 37748
bachelors_plus: 81558
districts:
- to: "us/states/az/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/az/districts/senate/1"
rel: in-district
area_weight: 0.9991
- to: "us/states/az/districts/house/1"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 37748 |
| Bachelor's or higher | 81558 |
## Districts
- [AZ-02](/us/states/az/districts/02.md) — 100% (congressional)
- [AZ Senate District 1](/us/states/az/districts/senate/1.md) — 100% (state senate)
- [AZ House District 1](/us/states/az/districts/house/1.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 2965
hispanic: 137437
bachelors_plus: 31600
districts:
- to: "us/states/az/districts/09"
rel: in-district
area_weight: 0.5624
- to: "us/states/az/districts/07"
rel: in-district
area_weight: 0.4375
- to: "us/states/az/districts/senate/25"
rel: in-district
area_weight: 0.5623
- to: "us/states/az/districts/senate/23"
rel: in-district
area_weight: 0.4376
- to: "us/states/az/districts/house/25"
rel: in-district
area_weight: 0.5623
- to: "us/states/az/districts/house/23"
rel: in-district
area_weight: 0.4376
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, az]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 137437 |
| Bachelor's or higher | 31600 |
## Districts
- [AZ-09](/us/states/az/districts/09.md) — 56% (congressional)
- [AZ-07](/us/states/az/districts/07.md) — 44% (congressional)
- [AZ Senate District 25](/us/states/az/districts/senate/25.md) — 56% (state senate)
- [AZ Senate District 23](/us/states/az/districts/senate/23.md) — 44% (state senate)
- [AZ House District 25](/us/states/az/districts/house/25.md) — 56% (state house)
- [AZ House District 23](/us/states/az/districts/house/23.md) — 44% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 344227
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 165757
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 113037
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 228151
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 250763
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 246335
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 113714
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 214658
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 153770
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, az]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 1"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 1
State House district 1 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 10"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 10
State House district 10 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 11"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 11
State House district 11 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 12"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 12
State House district 12 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 13"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 13
State House district 13 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 14"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 14
State House district 14 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 15"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 15
State House district 15 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 16"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 16
State House district 16 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 17"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 17
State House district 17 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 18"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 18
State House district 18 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 19"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 19
State House district 19 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 2"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 2
State House district 2 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 20"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 20
State House district 20 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 21"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 21
State House district 21 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 22"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 22
State House district 22 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 23"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 23
State House district 23 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 24"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 24
State House district 24 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 25"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 25
State House district 25 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 26"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 26
State House district 26 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 27"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 27
State House district 27 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 28"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 28
State House district 28 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 29"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 29
State House district 29 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 3"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 3
State House district 3 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 30"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 30
State House district 30 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 4"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 4
State House district 4 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 5"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 5
State House district 5 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 6"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 6
State House district 6 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 7"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 7
State House district 7 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 8"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 8
State House district 8 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ House District 9"
classification: state-house-district
state: "AZ"
chamber: "house"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, az]
timestamp: "2026-07-03"
---
# AZ House District 9
State House district 9 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 1"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 1
State Senate district 1 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 10"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 10
State Senate district 10 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 11"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 11
State Senate district 11 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 12"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 12
State Senate district 12 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 13"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 13
State Senate district 13 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 14"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 14
State Senate district 14 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 15"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 15
State Senate district 15 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 16"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 16
State Senate district 16 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 17"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 17
State Senate district 17 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 18"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 18
State Senate district 18 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 19"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 19
State Senate district 19 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 2"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 2
State Senate district 2 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 20"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 20
State Senate district 20 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 21"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 21
State Senate district 21 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 22"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 22
State Senate district 22 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 23"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 23
State Senate district 23 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 24"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 24
State Senate district 24 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 25"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 25
State Senate district 25 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 26"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 26
State Senate district 26 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 27"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 27
State Senate district 27 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 28"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 28
State Senate district 28 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 29"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 29
State Senate district 29 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 3"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 3
State Senate district 3 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 30"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 30
State Senate district 30 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 4"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 4
State Senate district 4 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 5"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 5
State Senate district 5 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 6"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 6
State Senate district 6 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 7"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 7
State Senate district 7 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 8"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 8
State Senate district 8 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AZ Senate District 9"
classification: state-senate-district
state: "AZ"
chamber: "senate"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, az]
timestamp: "2026-07-03"
---
# AZ Senate District 9
State Senate district 9 (AZ).
## Source
- boundary: Census TIGER 2024
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 5"
represents: "us/states/az/districts/house/5"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 5 (AZ State House of Representatives District 5).
Represents [AZ State House of Representatives District 5](/us/states/az/districts/house/5.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 3"
represents: "us/states/az/districts/house/3"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 3 (AZ State House of Representatives District 3).
Represents [AZ State House of Representatives District 3](/us/states/az/districts/house/3.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 20"
represents: "us/states/az/districts/house/20"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 20 (AZ State House of Representatives District 20).
Represents [AZ State House of Representatives District 20](/us/states/az/districts/house/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State Senate District 24"
represents: "us/states/az/districts/senate/24"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ Senate District 24 (AZ State Senate District 24).
Represents [AZ State Senate District 24](/us/states/az/districts/senate/24.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 24"
represents: "us/states/az/districts/house/24"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 24 (AZ State House of Representatives District 24).
Represents [AZ State House of Representatives District 24](/us/states/az/districts/house/24.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 20"
represents: "us/states/az/districts/house/20"
tenure:
start: "2023-07-31"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 20 (AZ State House of Representatives District 20).
Represents [AZ State House of Representatives District 20](/us/states/az/districts/house/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 28"
represents: "us/states/az/districts/house/28"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 28 (AZ State House of Representatives District 28).
Represents [AZ State House of Representatives District 28](/us/states/az/districts/house/28.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State Senate District 23"
represents: "us/states/az/districts/senate/23"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ Senate District 23 (AZ State Senate District 23).
Represents [AZ State Senate District 23](/us/states/az/districts/senate/23.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 8"
represents: "us/states/az/districts/house/8"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 8 (AZ State House of Representatives District 8).
Represents [AZ State House of Representatives District 8](/us/states/az/districts/house/8.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State Senate District 4"
represents: "us/states/az/districts/senate/4"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ Senate District 4 (AZ State Senate District 4).
Represents [AZ State Senate District 4](/us/states/az/districts/senate/4.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State Senate District 11"
represents: "us/states/az/districts/senate/11"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ Senate District 11 (AZ State Senate District 11).
Represents [AZ State Senate District 11](/us/states/az/districts/senate/11.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 26"
represents: "us/states/az/districts/house/26"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 26 (AZ State House of Representatives District 26).
Represents [AZ State House of Representatives District 26](/us/states/az/districts/house/26.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 16"
represents: "us/states/az/districts/house/16"
tenure:
start: "2025-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 16 (AZ State House of Representatives District 16).
Represents [AZ State House of Representatives District 16](/us/states/az/districts/house/16.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 18"
represents: "us/states/az/districts/house/18"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 18 (AZ State House of Representatives District 18).
Represents [AZ State House of Representatives District 18](/us/states/az/districts/house/18.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 3"
represents: "us/states/az/districts/house/3"
tenure:
start: "2026-03-18"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 3 (AZ State House of Representatives District 3).
Represents [AZ State House of Representatives District 3](/us/states/az/districts/house/3.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AZ"
district: "AZ State House of Representatives District 21"
represents: "us/states/az/districts/house/21"
tenure:
start: "2023-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AZ House District 21 (AZ State House of Representatives District 21).
Represents [AZ State House of Representatives District 21](/us/states/az/districts/house/21.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20

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