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