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: 1395
hispanic: 303
bachelors_plus: 630
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.4954
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.4774
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.4774
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 303 |
| Bachelor's or higher | 630 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 50% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 48% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 48% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 435
hispanic: 715
bachelors_plus: 892
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.341
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.3219
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.3219
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 715 |
| Bachelor's or higher | 892 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 34% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 32% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 32% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,51 @@ demographics:
race_native: 22259
hispanic: 28654
bachelors_plus: 110116
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8953
- to: "us/states/ak/districts/senate/l"
rel: in-district
area_weight: 0.5114
- to: "us/states/ak/districts/senate/e"
rel: in-district
area_weight: 0.3192
- to: "us/states/ak/districts/senate/i"
rel: in-district
area_weight: 0.0216
- to: "us/states/ak/districts/senate/h"
rel: in-district
area_weight: 0.0134
- to: "us/states/ak/districts/senate/f"
rel: in-district
area_weight: 0.0113
- to: "us/states/ak/districts/senate/g"
rel: in-district
area_weight: 0.0052
- to: "us/states/ak/districts/house/24"
rel: in-district
area_weight: 0.3512
- to: "us/states/ak/districts/house/9"
rel: in-district
area_weight: 0.3148
- to: "us/states/ak/districts/house/23"
rel: in-district
area_weight: 0.1601
- to: "us/states/ak/districts/house/18"
rel: in-district
area_weight: 0.0195
- to: "us/states/ak/districts/house/16"
rel: in-district
area_weight: 0.0109
- to: "us/states/ak/districts/house/12"
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +98,23 @@ County jurisdiction.
| Hispanic/Latino | 28654 |
| Bachelor's or higher | 110116 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 90% (congressional)
- [AK Senate District L](/us/states/ak/districts/senate/l.md) — 51% (state senate)
- [AK Senate District E](/us/states/ak/districts/senate/e.md) — 32% (state senate)
- [AK Senate District I](/us/states/ak/districts/senate/i.md) — 2% (state senate)
- [AK Senate District H](/us/states/ak/districts/senate/h.md) — 1% (state senate)
- [AK Senate District F](/us/states/ak/districts/senate/f.md) — 1% (state senate)
- [AK Senate District G](/us/states/ak/districts/senate/g.md) — 1% (state senate)
- [AK House District 24](/us/states/ak/districts/house/24.md) — 35% (state house)
- [AK House District 9](/us/states/ak/districts/house/9.md) — 31% (state house)
- [AK House District 23](/us/states/ak/districts/house/23.md) — 16% (state house)
- [AK House District 18](/us/states/ak/districts/house/18.md) — 2% (state house)
- [AK House District 16](/us/states/ak/districts/house/16.md) — 1% (state house)
- [AK House District 12](/us/states/ak/districts/house/12.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 15445
hispanic: 270
bachelors_plus: 1792
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9342
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.9336
- to: "us/states/ak/districts/house/38"
rel: in-district
area_weight: 0.4786
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.455
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 270 |
| Bachelor's or higher | 1792 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 93% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 93% (state senate)
- [AK House District 38](/us/states/ak/districts/house/38.md) — 48% (state house)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 46% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 194
hispanic: 46
bachelors_plus: 182
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.6043
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.6022
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.6022
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 46 |
| Bachelor's or higher | 182 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 60% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 60% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 60% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 57
hispanic: 160
bachelors_plus: 541
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/ak/districts/senate/o"
rel: in-district
area_weight: 1.0
- to: "us/states/ak/districts/house/30"
rel: in-district
area_weight: 1.0
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 160 |
| Bachelor's or higher | 541 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 100% (congressional)
- [AK Senate District O](/us/states/ak/districts/senate/o.md) — 100% (state senate)
- [AK House District 30](/us/states/ak/districts/house/30.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: 3361
hispanic: 177
bachelors_plus: 686
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9235
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.9213
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.9213
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 177 |
| Bachelor's or higher | 686 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 92% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 92% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 92% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 7072
hispanic: 8742
bachelors_plus: 29569
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/ak/districts/senate/q"
rel: in-district
area_weight: 0.5764
- to: "us/states/ak/districts/senate/r"
rel: in-district
area_weight: 0.4168
- to: "us/states/ak/districts/senate/p"
rel: in-district
area_weight: 0.0069
- to: "us/states/ak/districts/house/34"
rel: in-district
area_weight: 0.561
- to: "us/states/ak/districts/house/36"
rel: in-district
area_weight: 0.2138
- to: "us/states/ak/districts/house/35"
rel: in-district
area_weight: 0.2029
- to: "us/states/ak/districts/house/33"
rel: in-district
area_weight: 0.0153
- to: "us/states/ak/districts/house/32"
rel: in-district
area_weight: 0.0055
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 8742 |
| Bachelor's or higher | 29569 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 100% (congressional)
- [AK Senate District Q](/us/states/ak/districts/senate/q.md) — 58% (state senate)
- [AK Senate District R](/us/states/ak/districts/senate/r.md) — 42% (state senate)
- [AK Senate District P](/us/states/ak/districts/senate/p.md) — 1% (state senate)
- [AK House District 34](/us/states/ak/districts/house/34.md) — 56% (state house)
- [AK House District 36](/us/states/ak/districts/house/36.md) — 21% (state house)
- [AK House District 35](/us/states/ak/districts/house/35.md) — 20% (state house)
- [AK House District 33](/us/states/ak/districts/house/33.md) — 2% (state house)
- [AK House District 32](/us/states/ak/districts/house/32.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 129
hispanic: 96
bachelors_plus: 761
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8812
- to: "us/states/ak/districts/senate/b"
rel: in-district
area_weight: 0.8785
- to: "us/states/ak/districts/house/3"
rel: in-district
area_weight: 0.8785
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 96 |
| Bachelor's or higher | 761 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 88% (congressional)
- [AK Senate District B](/us/states/ak/districts/senate/b.md) — 88% (state senate)
- [AK House District 3](/us/states/ak/districts/house/3.md) — 88% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 607
hispanic: 255
bachelors_plus: 561
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.7348
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.5523
- to: "us/states/ak/districts/senate/b"
rel: in-district
area_weight: 0.1635
- to: "us/states/ak/districts/house/2"
rel: in-district
area_weight: 0.5523
- to: "us/states/ak/districts/house/3"
rel: in-district
area_weight: 0.1635
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 255 |
| Bachelor's or higher | 561 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 73% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 55% (state senate)
- [AK Senate District B](/us/states/ak/districts/senate/b.md) — 16% (state senate)
- [AK House District 2](/us/states/ak/districts/house/2.md) — 55% (state house)
- [AK House District 3](/us/states/ak/districts/house/3.md) — 16% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2786
hispanic: 2245
bachelors_plus: 12922
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8761
- to: "us/states/ak/districts/senate/b"
rel: in-district
area_weight: 0.8628
- to: "us/states/ak/districts/house/4"
rel: in-district
area_weight: 0.6558
- to: "us/states/ak/districts/house/3"
rel: in-district
area_weight: 0.207
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 2245 |
| Bachelor's or higher | 12922 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 88% (congressional)
- [AK Senate District B](/us/states/ak/districts/senate/b.md) — 86% (state senate)
- [AK House District 4](/us/states/ak/districts/house/4.md) — 66% (state house)
- [AK House District 3](/us/states/ak/districts/house/3.md) — 21% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,36 @@ demographics:
race_native: 3775
hispanic: 2654
bachelors_plus: 17215
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.6743
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.3144
- to: "us/states/ak/districts/senate/d"
rel: in-district
area_weight: 0.1794
- to: "us/states/ak/districts/senate/c"
rel: in-district
area_weight: 0.1733
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.3144
- to: "us/states/ak/districts/house/8"
rel: in-district
area_weight: 0.1763
- to: "us/states/ak/districts/house/6"
rel: in-district
area_weight: 0.1054
- to: "us/states/ak/districts/house/5"
rel: in-district
area_weight: 0.0679
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 2654 |
| Bachelor's or higher | 17215 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 67% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 31% (state senate)
- [AK Senate District D](/us/states/ak/districts/senate/d.md) — 18% (state senate)
- [AK Senate District C](/us/states/ak/districts/senate/c.md) — 17% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 31% (state house)
- [AK House District 8](/us/states/ak/districts/house/8.md) — 18% (state house)
- [AK House District 6](/us/states/ak/districts/house/6.md) — 11% (state house)
- [AK House District 5](/us/states/ak/districts/house/5.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1734
hispanic: 744
bachelors_plus: 3688
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.7888
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.7749
- to: "us/states/ak/districts/house/1"
rel: in-district
area_weight: 0.7749
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 744 |
| Bachelor's or higher | 3688 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 79% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 77% (state senate)
- [AK House District 1](/us/states/ak/districts/house/1.md) — 77% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 1336
hispanic: 1064
bachelors_plus: 3182
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.5962
- to: "us/states/ak/districts/senate/c"
rel: in-district
area_weight: 0.4313
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.1519
- to: "us/states/ak/districts/house/5"
rel: in-district
area_weight: 0.4313
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.1519
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1064 |
| Bachelor's or higher | 3182 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 60% (congressional)
- [AK Senate District C](/us/states/ak/districts/senate/c.md) — 43% (state senate)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 15% (state senate)
- [AK House District 5](/us/states/ak/districts/house/5.md) — 43% (state house)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 455
hispanic: 28
bachelors_plus: 143
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.7926
- to: "us/states/ak/districts/senate/s"
rel: in-district
area_weight: 0.7907
- to: "us/states/ak/districts/house/37"
rel: in-district
area_weight: 0.7907
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 28 |
| Bachelor's or higher | 143 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 79% (congressional)
- [AK Senate District S](/us/states/ak/districts/senate/s.md) — 79% (state senate)
- [AK House District 37](/us/states/ak/districts/house/37.md) — 79% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 7674
hispanic: 6817
bachelors_plus: 28406
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9895
- to: "us/states/ak/districts/senate/o"
rel: in-district
area_weight: 0.9744
- to: "us/states/ak/districts/senate/m"
rel: in-district
area_weight: 0.0113
- to: "us/states/ak/districts/house/30"
rel: in-district
area_weight: 0.4949
- to: "us/states/ak/districts/house/29"
rel: in-district
area_weight: 0.4796
- to: "us/states/ak/districts/house/25"
rel: in-district
area_weight: 0.0081
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 6817 |
| Bachelor's or higher | 28406 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 99% (congressional)
- [AK Senate District O](/us/states/ak/districts/senate/o.md) — 97% (state senate)
- [AK Senate District M](/us/states/ak/districts/senate/m.md) — 1% (state senate)
- [AK House District 30](/us/states/ak/districts/house/30.md) — 49% (state house)
- [AK House District 29](/us/states/ak/districts/house/29.md) — 48% (state house)
- [AK House District 25](/us/states/ak/districts/house/25.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 7301
hispanic: 214
bachelors_plus: 1106
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8431
- to: "us/states/ak/districts/senate/t"
rel: in-district
area_weight: 0.8405
- to: "us/states/ak/districts/house/39"
rel: in-district
area_weight: 0.8405
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 214 |
| Bachelor's or higher | 1106 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 84% (congressional)
- [AK Senate District T](/us/states/ak/districts/senate/t.md) — 84% (state senate)
- [AK House District 39](/us/states/ak/districts/house/39.md) — 84% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 5413
hispanic: 583
bachelors_plus: 1541
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9504
- to: "us/states/ak/districts/senate/t"
rel: in-district
area_weight: 0.949
- to: "us/states/ak/districts/house/40"
rel: in-district
area_weight: 0.949
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 583 |
| Bachelor's or higher | 1541 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 95% (congressional)
- [AK Senate District T](/us/states/ak/districts/senate/t.md) — 95% (state senate)
- [AK House District 40](/us/states/ak/districts/house/40.md) — 95% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 5997
hispanic: 173
bachelors_plus: 593
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9075
- to: "us/states/ak/districts/senate/t"
rel: in-district
area_weight: 0.8957
- to: "us/states/ak/districts/house/40"
rel: in-district
area_weight: 0.8957
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 173 |
| Bachelor's or higher | 593 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 91% (congressional)
- [AK Senate District T](/us/states/ak/districts/senate/t.md) — 90% (state senate)
- [AK House District 40](/us/states/ak/districts/house/40.md) — 90% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 261
hispanic: 371
bachelors_plus: 849
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8046
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.8001
- to: "us/states/ak/districts/house/2"
rel: in-district
area_weight: 0.8001
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 371 |
| Bachelor's or higher | 849 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 80% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 80% (state senate)
- [AK House District 2](/us/states/ak/districts/house/2.md) — 80% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2107
hispanic: 220
bachelors_plus: 818
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.5685
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.537
- to: "us/states/ak/districts/house/2"
rel: in-district
area_weight: 0.499
- to: "us/states/ak/districts/house/1"
rel: in-district
area_weight: 0.038
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 220 |
| Bachelor's or higher | 818 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 57% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 54% (state senate)
- [AK House District 2](/us/states/ak/districts/house/2.md) — 50% (state house)
- [AK House District 1](/us/states/ak/districts/house/1.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 641
hispanic: 577
bachelors_plus: 2901
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.6908
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.6615
- to: "us/states/ak/districts/house/2"
rel: in-district
area_weight: 0.6615
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 577 |
| Bachelor's or higher | 2901 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 69% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 66% (state senate)
- [AK House District 2](/us/states/ak/districts/house/2.md) — 66% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 69
hispanic: 80
bachelors_plus: 342
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/ak/districts/senate/b"
rel: in-district
area_weight: 0.9797
- to: "us/states/ak/districts/house/3"
rel: in-district
area_weight: 0.9797
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 80 |
| Bachelor's or higher | 342 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 100% (congressional)
- [AK Senate District B](/us/states/ak/districts/senate/b.md) — 98% (state senate)
- [AK House District 3](/us/states/ak/districts/house/3.md) — 98% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 647
hispanic: 421
bachelors_plus: 1453
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9997
- to: "us/states/ak/districts/senate/r"
rel: in-district
area_weight: 1.0
- to: "us/states/ak/districts/house/36"
rel: in-district
area_weight: 1.0
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 421 |
| Bachelor's or higher | 1453 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 100% (congressional)
- [AK Senate District R](/us/states/ak/districts/senate/r.md) — 100% (state senate)
- [AK House District 36](/us/states/ak/districts/house/36.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: 381
hispanic: 79
bachelors_plus: 417
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.8026
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.7714
- to: "us/states/ak/districts/house/1"
rel: in-district
area_weight: 0.7714
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 79 |
| Bachelor's or higher | 417 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 80% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 77% (state senate)
- [AK House District 1](/us/states/ak/districts/house/1.md) — 77% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 111
hispanic: 46
bachelors_plus: 84
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.869
- to: "us/states/ak/districts/senate/a"
rel: in-district
area_weight: 0.8669
- to: "us/states/ak/districts/house/2"
rel: in-district
area_weight: 0.8669
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 46 |
| Bachelor's or higher | 84 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 87% (congressional)
- [AK Senate District A](/us/states/ak/districts/senate/a.md) — 87% (state senate)
- [AK House District 2](/us/states/ak/districts/house/2.md) — 87% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 3419
hispanic: 115
bachelors_plus: 780
districts:
- to: "us/states/ak/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/ak/districts/senate/r"
rel: in-district
area_weight: 0.9999
- to: "us/states/ak/districts/house/36"
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, ak]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 115 |
| Bachelor's or higher | 780 |
## Districts
- [AK-00](/us/states/ak/districts/00.md) — 100% (congressional)
- [AK Senate District R](/us/states/ak/districts/senate/r.md) — 100% (state senate)
- [AK House District 36](/us/states/ak/districts/house/36.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 163093
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ak]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 1"
classification: state-house-district
state: "AK"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 1
State House district 1 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 10"
classification: state-house-district
state: "AK"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 10
State House district 10 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 11"
classification: state-house-district
state: "AK"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 11
State House district 11 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 12"
classification: state-house-district
state: "AK"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 12
State House district 12 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 13"
classification: state-house-district
state: "AK"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 13
State House district 13 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 14"
classification: state-house-district
state: "AK"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 14
State House district 14 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 15"
classification: state-house-district
state: "AK"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 15
State House district 15 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 16"
classification: state-house-district
state: "AK"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 16
State House district 16 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 17"
classification: state-house-district
state: "AK"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 17
State House district 17 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 18"
classification: state-house-district
state: "AK"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 18
State House district 18 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 19"
classification: state-house-district
state: "AK"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 19
State House district 19 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 2"
classification: state-house-district
state: "AK"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 2
State House district 2 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 20"
classification: state-house-district
state: "AK"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 20
State House district 20 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 21"
classification: state-house-district
state: "AK"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 21
State House district 21 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 22"
classification: state-house-district
state: "AK"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 22
State House district 22 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 23"
classification: state-house-district
state: "AK"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 23
State House district 23 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 24"
classification: state-house-district
state: "AK"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 24
State House district 24 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 25"
classification: state-house-district
state: "AK"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 25
State House district 25 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 26"
classification: state-house-district
state: "AK"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 26
State House district 26 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 27"
classification: state-house-district
state: "AK"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 27
State House district 27 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 28"
classification: state-house-district
state: "AK"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 28
State House district 28 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 29"
classification: state-house-district
state: "AK"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 29
State House district 29 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 3"
classification: state-house-district
state: "AK"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 3
State House district 3 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 30"
classification: state-house-district
state: "AK"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 30
State House district 30 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 31"
classification: state-house-district
state: "AK"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 31
State House district 31 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 32"
classification: state-house-district
state: "AK"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 32
State House district 32 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 33"
classification: state-house-district
state: "AK"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 33
State House district 33 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 34"
classification: state-house-district
state: "AK"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 34
State House district 34 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 35"
classification: state-house-district
state: "AK"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 35
State House district 35 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 36"
classification: state-house-district
state: "AK"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 36
State House district 36 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 37"
classification: state-house-district
state: "AK"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 37
State House district 37 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 38"
classification: state-house-district
state: "AK"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 38
State House district 38 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 39"
classification: state-house-district
state: "AK"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 39
State House district 39 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 4"
classification: state-house-district
state: "AK"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 4
State House district 4 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 40"
classification: state-house-district
state: "AK"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 40
State House district 40 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 5"
classification: state-house-district
state: "AK"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 5
State House district 5 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 6"
classification: state-house-district
state: "AK"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 6
State House district 6 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 7"
classification: state-house-district
state: "AK"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 7
State House district 7 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 8"
classification: state-house-district
state: "AK"
chamber: "house"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 8
State House district 8 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK House District 9"
classification: state-house-district
state: "AK"
chamber: "house"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ak]
timestamp: "2026-07-03"
---
# AK House District 9
State House district 9 (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District A"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District A
State Senate district A (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District B"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District B
State Senate district B (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District C"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "C"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District C
State Senate district C (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District D"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "D"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District D
State Senate district D (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District E"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "E"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District E
State Senate district E (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District F"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "F"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District F
State Senate district F (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District G"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "G"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District G
State Senate district G (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District H"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "H"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District H
State Senate district H (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District I"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "I"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District I
State Senate district I (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District J"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "J"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District J
State Senate district J (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District K"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "K"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District K
State Senate district K (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District L"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "L"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District L
State Senate district L (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District M"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "M"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District M
State Senate district M (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District N"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "N"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District N
State Senate district N (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District O"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "O"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District O
State Senate district O (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District P"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "P"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District P
State Senate district P (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District Q"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "Q"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District Q
State Senate district Q (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District R"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "R"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District R
State Senate district R (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District S"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "S"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District S
State Senate district S (AK).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AK Senate District T"
classification: state-senate-district
state: "AK"
chamber: "senate"
district: "T"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ak]
timestamp: "2026-07-03"
---
# AK Senate District T
State Senate district T (AK).
## Source
- boundary: Census TIGER 2024
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 14"
represents: "us/states/ak/districts/house/14"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 14 (AK State House of Representatives District 14).
Represents [AK State House of Representatives District 14](/us/states/ak/districts/house/14.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 3"
represents: "us/states/ak/districts/house/3"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 3 (AK State House of Representatives District 3).
Represents [AK State House of Representatives District 3](/us/states/ak/districts/house/3.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 20"
represents: "us/states/ak/districts/house/20"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 20 (AK State House of Representatives District 20).
Represents [AK State House of Representatives District 20](/us/states/ak/districts/house/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 13"
represents: "us/states/ak/districts/house/13"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 13 (AK State House of Representatives District 13).
Represents [AK State House of Representatives District 13](/us/states/ak/districts/house/13.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 35"
represents: "us/states/ak/districts/house/35"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 35 (AK State House of Representatives District 35).
Represents [AK State House of Representatives District 35](/us/states/ak/districts/house/35.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 36"
represents: "us/states/ak/districts/house/36"
tenure:
start: "2025-01-21"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 36 (AK State House of Representatives District 36).
Represents [AK State House of Representatives District 36](/us/states/ak/districts/house/36.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State Senate District A"
represents: "us/states/ak/districts/senate/a"
tenure:
start: "2023-01-16"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK Senate District A (AK State Senate District A).
Represents [AK State Senate District A](/us/states/ak/districts/senate/a.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 8"
represents: "us/states/ak/districts/house/8"
tenure:
start: "2025-01-21"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 8 (AK State House of Representatives District 8).
Represents [AK State House of Representatives District 8](/us/states/ak/districts/house/8.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State Senate District K"
represents: "us/states/ak/districts/senate/k"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK Senate District K (AK State Senate District K).
Represents [AK State Senate District K](/us/states/ak/districts/senate/k.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 37"
represents: "us/states/ak/districts/house/37"
tenure:
start: "2019-02-11"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 37 (AK State House of Representatives District 37).
Represents [AK State House of Representatives District 37](/us/states/ak/districts/house/37.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 12"
represents: "us/states/ak/districts/house/12"
tenure:
start: "2023-01-17"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 12 (AK State House of Representatives District 12).
Represents [AK State House of Representatives District 12](/us/states/ak/districts/house/12.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "AK"
district: "AK State House of Representatives District 16"
represents: "us/states/ak/districts/house/16"
tenure:
start: "2025-01-21"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current AK House District 16 (AK State House of Representatives District 16).
Represents [AK State House of Representatives District 16](/us/states/ak/districts/house/16.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