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: 35
hispanic: 192
bachelors_plus: 1762
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/68"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 192 |
| Bachelor's or higher | 1762 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 68](/us/states/wv/districts/house/68.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 151
hispanic: 8294
bachelors_plus: 30467
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/senate/15"
rel: in-district
area_weight: 0.6556
- to: "us/states/wv/districts/senate/16"
rel: in-district
area_weight: 0.3438
- to: "us/states/wv/districts/house/91"
rel: in-district
area_weight: 0.2434
- to: "us/states/wv/districts/house/90"
rel: in-district
area_weight: 0.1607
- to: "us/states/wv/districts/house/92"
rel: in-district
area_weight: 0.1573
- to: "us/states/wv/districts/house/97"
rel: in-district
area_weight: 0.1083
- to: "us/states/wv/districts/house/93"
rel: in-district
area_weight: 0.1054
- to: "us/states/wv/districts/house/96"
rel: in-district
area_weight: 0.0876
- to: "us/states/wv/districts/house/94"
rel: in-district
area_weight: 0.0686
- to: "us/states/wv/districts/house/95"
rel: in-district
area_weight: 0.0681
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 8294 |
| Bachelor's or higher | 30467 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 15](/us/states/wv/districts/senate/15.md) — 66% (state senate)
- [WV Senate District 16](/us/states/wv/districts/senate/16.md) — 34% (state senate)
- [WV House District 91](/us/states/wv/districts/house/91.md) — 24% (state house)
- [WV House District 90](/us/states/wv/districts/house/90.md) — 16% (state house)
- [WV House District 92](/us/states/wv/districts/house/92.md) — 16% (state house)
- [WV House District 97](/us/states/wv/districts/house/97.md) — 11% (state house)
- [WV House District 93](/us/states/wv/districts/house/93.md) — 11% (state house)
- [WV House District 96](/us/states/wv/districts/house/96.md) — 9% (state house)
- [WV House District 94](/us/states/wv/districts/house/94.md) — 7% (state house)
- [WV House District 95](/us/states/wv/districts/house/95.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 5
hispanic: 143
bachelors_plus: 2338
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/7"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/32"
rel: in-district
area_weight: 0.9208
- to: "us/states/wv/districts/house/31"
rel: in-district
area_weight: 0.0784
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 143 |
| Bachelor's or higher | 2338 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 7](/us/states/wv/districts/senate/7.md) — 100% (state senate)
- [WV House District 32](/us/states/wv/districts/house/32.md) — 92% (state house)
- [WV House District 31](/us/states/wv/districts/house/31.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 69
bachelors_plus: 1623
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/63"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 69 |
| Bachelor's or higher | 1623 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 63](/us/states/wv/districts/house/63.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 7
hispanic: 310
bachelors_plus: 5155
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/senate/1"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/3"
rel: in-district
area_weight: 0.6387
- to: "us/states/wv/districts/house/2"
rel: in-district
area_weight: 0.2643
- to: "us/states/wv/districts/house/1"
rel: in-district
area_weight: 0.0966
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 310 |
| Bachelor's or higher | 5155 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 1](/us/states/wv/districts/senate/1.md) — 100% (state senate)
- [WV House District 3](/us/states/wv/districts/house/3.md) — 64% (state house)
- [WV House District 2](/us/states/wv/districts/house/2.md) — 26% (state house)
- [WV House District 1](/us/states/wv/districts/house/1.md) — 10% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 50
hispanic: 1631
bachelors_plus: 28564
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/senate/4"
rel: in-district
area_weight: 0.5678
- to: "us/states/wv/districts/senate/5"
rel: in-district
area_weight: 0.4317
- to: "us/states/wv/districts/house/22"
rel: in-district
area_weight: 0.5009
- to: "us/states/wv/districts/house/23"
rel: in-district
area_weight: 0.2598
- to: "us/states/wv/districts/house/26"
rel: in-district
area_weight: 0.0945
- to: "us/states/wv/districts/house/24"
rel: in-district
area_weight: 0.0734
- to: "us/states/wv/districts/house/27"
rel: in-district
area_weight: 0.0551
- to: "us/states/wv/districts/house/25"
rel: in-district
area_weight: 0.0156
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1631 |
| Bachelor's or higher | 28564 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 4](/us/states/wv/districts/senate/4.md) — 57% (state senate)
- [WV Senate District 5](/us/states/wv/districts/senate/5.md) — 43% (state senate)
- [WV House District 22](/us/states/wv/districts/house/22.md) — 50% (state house)
- [WV House District 23](/us/states/wv/districts/house/23.md) — 26% (state house)
- [WV House District 26](/us/states/wv/districts/house/26.md) — 9% (state house)
- [WV House District 24](/us/states/wv/districts/house/24.md) — 7% (state house)
- [WV House District 27](/us/states/wv/districts/house/27.md) — 6% (state house)
- [WV House District 25](/us/states/wv/districts/house/25.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 9
hispanic: 39
bachelors_plus: 620
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9978
- to: "us/states/wv/districts/senate/12"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/62"
rel: in-district
area_weight: 0.9995
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 39 |
| Bachelor's or higher | 620 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 12](/us/states/wv/districts/senate/12.md) — 100% (state senate)
- [WV House District 62](/us/states/wv/districts/house/62.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: 4
hispanic: 18
bachelors_plus: 854
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/8"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/62"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 18 |
| Bachelor's or higher | 854 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 8](/us/states/wv/districts/senate/8.md) — 100% (state senate)
- [WV House District 62](/us/states/wv/districts/house/62.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: 12
hispanic: 110
bachelors_plus: 1051
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/house/8"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 110 |
| Bachelor's or higher | 1051 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 100% (state senate)
- [WV House District 8](/us/states/wv/districts/house/8.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 10
hispanic: 549
bachelors_plus: 6145
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/10"
rel: in-district
area_weight: 0.8592
- to: "us/states/wv/districts/senate/9"
rel: in-district
area_weight: 0.1408
- to: "us/states/wv/districts/house/51"
rel: in-district
area_weight: 0.5535
- to: "us/states/wv/districts/house/50"
rel: in-district
area_weight: 0.3501
- to: "us/states/wv/districts/house/45"
rel: in-district
area_weight: 0.0943
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 549 |
| Bachelor's or higher | 6145 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 10](/us/states/wv/districts/senate/10.md) — 86% (state senate)
- [WV Senate District 9](/us/states/wv/districts/senate/9.md) — 14% (state senate)
- [WV House District 51](/us/states/wv/districts/house/51.md) — 55% (state house)
- [WV House District 50](/us/states/wv/districts/house/50.md) — 35% (state house)
- [WV House District 45](/us/states/wv/districts/house/45.md) — 9% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 9
hispanic: 299
bachelors_plus: 1261
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9971
- to: "us/states/wv/districts/senate/12"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/62"
rel: in-district
area_weight: 0.6985
- to: "us/states/wv/districts/house/63"
rel: in-district
area_weight: 0.3013
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 299 |
| Bachelor's or higher | 1261 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 12](/us/states/wv/districts/senate/12.md) — 100% (state senate)
- [WV House District 62](/us/states/wv/districts/house/62.md) — 70% (state house)
- [WV House District 63](/us/states/wv/districts/house/63.md) — 30% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 79
bachelors_plus: 1545
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9988
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/85"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 79 |
| Bachelor's or higher | 1545 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 100% (state senate)
- [WV House District 85](/us/states/wv/districts/house/85.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 44
hispanic: 609
bachelors_plus: 7473
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/senate/10"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/47"
rel: in-district
area_weight: 0.4482
- to: "us/states/wv/districts/house/46"
rel: in-district
area_weight: 0.3501
- to: "us/states/wv/districts/house/48"
rel: in-district
area_weight: 0.2012
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 609 |
| Bachelor's or higher | 7473 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 10](/us/states/wv/districts/senate/10.md) — 100% (state senate)
- [WV House District 47](/us/states/wv/districts/house/47.md) — 45% (state house)
- [WV House District 46](/us/states/wv/districts/house/46.md) — 35% (state house)
- [WV House District 48](/us/states/wv/districts/house/48.md) — 20% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 17
hispanic: 409
bachelors_plus: 4483
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/senate/15"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/89"
rel: in-district
area_weight: 0.5864
- to: "us/states/wv/districts/house/88"
rel: in-district
area_weight: 0.4132
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 409 |
| Bachelor's or higher | 4483 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 15](/us/states/wv/districts/senate/15.md) — 100% (state senate)
- [WV House District 89](/us/states/wv/districts/house/89.md) — 59% (state house)
- [WV House District 88](/us/states/wv/districts/house/88.md) — 41% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 7
hispanic: 496
bachelors_plus: 5422
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9984
- to: "us/states/wv/districts/senate/1"
rel: in-district
area_weight: 0.9984
- to: "us/states/wv/districts/house/1"
rel: in-district
area_weight: 0.8888
- to: "us/states/wv/districts/house/2"
rel: in-district
area_weight: 0.1096
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 496 |
| Bachelor's or higher | 5422 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 1](/us/states/wv/districts/senate/1.md) — 100% (state senate)
- [WV House District 1](/us/states/wv/districts/house/1.md) — 89% (state house)
- [WV House District 2](/us/states/wv/districts/house/2.md) — 11% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2
hispanic: 658
bachelors_plus: 2357
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.9994
- to: "us/states/wv/districts/house/86"
rel: in-district
area_weight: 0.9993
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 658 |
| Bachelor's or higher | 2357 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 100% (state senate)
- [WV House District 86](/us/states/wv/districts/house/86.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 77
hispanic: 1472
bachelors_plus: 17457
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/12"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/69"
rel: in-district
area_weight: 0.5097
- to: "us/states/wv/districts/house/72"
rel: in-district
area_weight: 0.3555
- to: "us/states/wv/districts/house/71"
rel: in-district
area_weight: 0.1142
- to: "us/states/wv/districts/house/70"
rel: in-district
area_weight: 0.0202
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1472 |
| Bachelor's or higher | 17457 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 12](/us/states/wv/districts/senate/12.md) — 100% (state senate)
- [WV House District 69](/us/states/wv/districts/house/69.md) — 51% (state house)
- [WV House District 72](/us/states/wv/districts/house/72.md) — 36% (state house)
- [WV House District 71](/us/states/wv/districts/house/71.md) — 11% (state house)
- [WV House District 70](/us/states/wv/districts/house/70.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 7
hispanic: 292
bachelors_plus: 5591
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/senate/4"
rel: in-district
area_weight: 0.5435
- to: "us/states/wv/districts/senate/8"
rel: in-district
area_weight: 0.4563
- to: "us/states/wv/districts/house/16"
rel: in-district
area_weight: 0.7798
- to: "us/states/wv/districts/house/17"
rel: in-district
area_weight: 0.22
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 292 |
| Bachelor's or higher | 5591 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 4](/us/states/wv/districts/senate/4.md) — 54% (state senate)
- [WV Senate District 8](/us/states/wv/districts/senate/8.md) — 46% (state senate)
- [WV House District 16](/us/states/wv/districts/house/16.md) — 78% (state house)
- [WV House District 17](/us/states/wv/districts/house/17.md) — 22% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 154
hispanic: 4630
bachelors_plus: 19315
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9977
- to: "us/states/wv/districts/senate/16"
rel: in-district
area_weight: 0.9985
- to: "us/states/wv/districts/house/98"
rel: in-district
area_weight: 0.4332
- to: "us/states/wv/districts/house/100"
rel: in-district
area_weight: 0.3025
- to: "us/states/wv/districts/house/97"
rel: in-district
area_weight: 0.1368
- to: "us/states/wv/districts/house/99"
rel: in-district
area_weight: 0.1258
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 4630 |
| Bachelor's or higher | 19315 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 16](/us/states/wv/districts/senate/16.md) — 100% (state senate)
- [WV House District 98](/us/states/wv/districts/house/98.md) — 43% (state house)
- [WV House District 100](/us/states/wv/districts/house/100.md) — 30% (state house)
- [WV House District 97](/us/states/wv/districts/house/97.md) — 14% (state house)
- [WV House District 99](/us/states/wv/districts/house/99.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,54 @@ demographics:
race_native: 122
hispanic: 2789
bachelors_plus: 53575
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/17"
rel: in-district
area_weight: 0.6071
- to: "us/states/wv/districts/senate/7"
rel: in-district
area_weight: 0.2919
- to: "us/states/wv/districts/senate/8"
rel: in-district
area_weight: 0.101
- to: "us/states/wv/districts/house/61"
rel: in-district
area_weight: 0.2277
- to: "us/states/wv/districts/house/53"
rel: in-district
area_weight: 0.2189
- to: "us/states/wv/districts/house/52"
rel: in-district
area_weight: 0.1736
- to: "us/states/wv/districts/house/60"
rel: in-district
area_weight: 0.1555
- to: "us/states/wv/districts/house/55"
rel: in-district
area_weight: 0.1407
- to: "us/states/wv/districts/house/56"
rel: in-district
area_weight: 0.0313
- to: "us/states/wv/districts/house/59"
rel: in-district
area_weight: 0.0191
- to: "us/states/wv/districts/house/58"
rel: in-district
area_weight: 0.015
- to: "us/states/wv/districts/house/57"
rel: in-district
area_weight: 0.01
- to: "us/states/wv/districts/house/54"
rel: in-district
area_weight: 0.0075
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +101,24 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2789 |
| Bachelor's or higher | 53575 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 17](/us/states/wv/districts/senate/17.md) — 61% (state senate)
- [WV Senate District 7](/us/states/wv/districts/senate/7.md) — 29% (state senate)
- [WV Senate District 8](/us/states/wv/districts/senate/8.md) — 10% (state senate)
- [WV House District 61](/us/states/wv/districts/house/61.md) — 23% (state house)
- [WV House District 53](/us/states/wv/districts/house/53.md) — 22% (state house)
- [WV House District 52](/us/states/wv/districts/house/52.md) — 17% (state house)
- [WV House District 60](/us/states/wv/districts/house/60.md) — 16% (state house)
- [WV House District 55](/us/states/wv/districts/house/55.md) — 14% (state house)
- [WV House District 56](/us/states/wv/districts/house/56.md) — 3% (state house)
- [WV House District 59](/us/states/wv/districts/house/59.md) — 2% (state house)
- [WV House District 58](/us/states/wv/districts/house/58.md) — 2% (state house)
- [WV House District 57](/us/states/wv/districts/house/57.md) — 1% (state house)
- [WV House District 54](/us/states/wv/districts/house/54.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: 19
hispanic: 232
bachelors_plus: 2969
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9967
- to: "us/states/wv/districts/senate/12"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/64"
rel: in-district
area_weight: 0.8278
- to: "us/states/wv/districts/house/69"
rel: in-district
area_weight: 0.1718
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 232 |
| Bachelor's or higher | 2969 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 12](/us/states/wv/districts/senate/12.md) — 100% (state senate)
- [WV House District 64](/us/states/wv/districts/house/64.md) — 83% (state house)
- [WV House District 69](/us/states/wv/districts/house/69.md) — 17% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 27
hispanic: 164
bachelors_plus: 1561
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/7"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/30"
rel: in-district
area_weight: 0.9116
- to: "us/states/wv/districts/house/31"
rel: in-district
area_weight: 0.0878
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 164 |
| Bachelor's or higher | 1561 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 7](/us/states/wv/districts/senate/7.md) — 100% (state senate)
- [WV House District 30](/us/states/wv/districts/house/30.md) — 91% (state house)
- [WV House District 31](/us/states/wv/districts/house/31.md) — 9% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2
hispanic: 258
bachelors_plus: 4843
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/7"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/33"
rel: in-district
area_weight: 0.5104
- to: "us/states/wv/districts/house/31"
rel: in-district
area_weight: 0.4888
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 258 |
| Bachelor's or higher | 4843 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 7](/us/states/wv/districts/senate/7.md) — 100% (state senate)
- [WV House District 33](/us/states/wv/districts/house/33.md) — 51% (state house)
- [WV House District 31](/us/states/wv/districts/house/31.md) — 49% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 12
hispanic: 919
bachelors_plus: 14388
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.693
- to: "us/states/wv/districts/senate/13"
rel: in-district
area_weight: 0.3068
- to: "us/states/wv/districts/house/74"
rel: in-district
area_weight: 0.518
- to: "us/states/wv/districts/house/76"
rel: in-district
area_weight: 0.2344
- to: "us/states/wv/districts/house/75"
rel: in-district
area_weight: 0.188
- to: "us/states/wv/districts/house/73"
rel: in-district
area_weight: 0.0591
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 919 |
| Bachelor's or higher | 14388 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 69% (state senate)
- [WV Senate District 13](/us/states/wv/districts/senate/13.md) — 31% (state senate)
- [WV House District 74](/us/states/wv/districts/house/74.md) — 52% (state house)
- [WV House District 76](/us/states/wv/districts/house/76.md) — 23% (state house)
- [WV House District 75](/us/states/wv/districts/house/75.md) — 19% (state house)
- [WV House District 73](/us/states/wv/districts/house/73.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 19
hispanic: 347
bachelors_plus: 6067
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9993
- to: "us/states/wv/districts/senate/1"
rel: in-district
area_weight: 0.6739
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.3255
- to: "us/states/wv/districts/house/7"
rel: in-district
area_weight: 0.8493
- to: "us/states/wv/districts/house/6"
rel: in-district
area_weight: 0.1497
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 347 |
| Bachelor's or higher | 6067 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 1](/us/states/wv/districts/senate/1.md) — 67% (state senate)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 33% (state senate)
- [WV House District 7](/us/states/wv/districts/house/7.md) — 85% (state house)
- [WV House District 6](/us/states/wv/districts/house/6.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 5
hispanic: 154
bachelors_plus: 4047
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9994
- to: "us/states/wv/districts/senate/4"
rel: in-district
area_weight: 0.9994
- to: "us/states/wv/districts/house/18"
rel: in-district
area_weight: 0.6646
- to: "us/states/wv/districts/house/17"
rel: in-district
area_weight: 0.3348
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 154 |
| Bachelor's or higher | 4047 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 4](/us/states/wv/districts/senate/4.md) — 100% (state senate)
- [WV House District 18](/us/states/wv/districts/house/18.md) — 66% (state house)
- [WV House District 17](/us/states/wv/districts/house/17.md) — 33% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 17
hispanic: 373
bachelors_plus: 1216
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/wv/districts/senate/6"
rel: in-district
area_weight: 0.999
- to: "us/states/wv/districts/house/36"
rel: in-district
area_weight: 0.9732
- to: "us/states/wv/districts/house/34"
rel: in-district
area_weight: 0.0258
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 373 |
| Bachelor's or higher | 1216 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 6](/us/states/wv/districts/senate/6.md) — 100% (state senate)
- [WV House District 36](/us/states/wv/districts/house/36.md) — 97% (state house)
- [WV House District 34](/us/states/wv/districts/house/34.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 245
hispanic: 789
bachelors_plus: 12898
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/senate/6"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/39"
rel: in-district
area_weight: 0.4292
- to: "us/states/wv/districts/house/41"
rel: in-district
area_weight: 0.2466
- to: "us/states/wv/districts/house/37"
rel: in-district
area_weight: 0.2246
- to: "us/states/wv/districts/house/38"
rel: in-district
area_weight: 0.0991
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 789 |
| Bachelor's or higher | 12898 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 6](/us/states/wv/districts/senate/6.md) — 100% (state senate)
- [WV House District 39](/us/states/wv/districts/house/39.md) — 43% (state house)
- [WV House District 41](/us/states/wv/districts/house/41.md) — 25% (state house)
- [WV House District 37](/us/states/wv/districts/house/37.md) — 22% (state house)
- [WV House District 38](/us/states/wv/districts/house/38.md) — 10% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 102
hispanic: 332
bachelors_plus: 6855
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9924
- to: "us/states/md/districts/06"
rel: in-district
area_weight: 0.0076
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.9983
- to: "us/states/wv/districts/house/88"
rel: in-district
area_weight: 0.6014
- to: "us/states/wv/districts/house/87"
rel: in-district
area_weight: 0.397
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 332 |
| Bachelor's or higher | 6855 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 99% (congressional)
- [MD-06](/us/states/md/districts/06.md) — 1% (congressional)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 100% (state senate)
- [WV House District 88](/us/states/wv/districts/house/88.md) — 60% (state house)
- [WV House District 87](/us/states/wv/districts/house/87.md) — 40% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 3
hispanic: 178
bachelors_plus: 2113
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9922
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.0072
- to: "us/states/wv/districts/senate/6"
rel: in-district
area_weight: 0.9985
- to: "us/states/wv/districts/house/34"
rel: in-district
area_weight: 0.6274
- to: "us/states/wv/districts/house/29"
rel: in-district
area_weight: 0.371
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 178 |
| Bachelor's or higher | 2113 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 99% (congressional)
- [KY-05](/us/states/ky/districts/05.md) — 1% (congressional)
- [WV Senate District 6](/us/states/wv/districts/senate/6.md) — 100% (state senate)
- [WV House District 34](/us/states/wv/districts/house/34.md) — 63% (state house)
- [WV House District 29](/us/states/wv/districts/house/29.md) — 37% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 98
hispanic: 3397
bachelors_plus: 50299
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.6897
- to: "us/states/wv/districts/senate/13"
rel: in-district
area_weight: 0.3101
- to: "us/states/wv/districts/house/77"
rel: in-district
area_weight: 0.6297
- to: "us/states/wv/districts/house/78"
rel: in-district
area_weight: 0.1902
- to: "us/states/wv/districts/house/82"
rel: in-district
area_weight: 0.1301
- to: "us/states/wv/districts/house/80"
rel: in-district
area_weight: 0.021
- to: "us/states/wv/districts/house/81"
rel: in-district
area_weight: 0.0164
- to: "us/states/wv/districts/house/79"
rel: in-district
area_weight: 0.0123
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 3397 |
| Bachelor's or higher | 50299 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 69% (state senate)
- [WV Senate District 13](/us/states/wv/districts/senate/13.md) — 31% (state senate)
- [WV House District 77](/us/states/wv/districts/house/77.md) — 63% (state house)
- [WV House District 78](/us/states/wv/districts/house/78.md) — 19% (state house)
- [WV House District 82](/us/states/wv/districts/house/82.md) — 13% (state house)
- [WV House District 80](/us/states/wv/districts/house/80.md) — 2% (state house)
- [WV House District 81](/us/states/wv/districts/house/81.md) — 2% (state house)
- [WV House District 79](/us/states/wv/districts/house/79.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: 0
hispanic: 79
bachelors_plus: 1784
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/senate/10"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/40"
rel: in-district
area_weight: 0.9988
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 79 |
| Bachelor's or higher | 1784 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 10](/us/states/wv/districts/senate/10.md) — 100% (state senate)
- [WV House District 40](/us/states/wv/districts/house/40.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 0
hispanic: 310
bachelors_plus: 3651
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9963
- to: "us/states/wv/districts/senate/15"
rel: in-district
area_weight: 0.9989
- to: "us/states/wv/districts/house/90"
rel: in-district
area_weight: 0.6004
- to: "us/states/wv/districts/house/89"
rel: in-district
area_weight: 0.3984
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 310 |
| Bachelor's or higher | 3651 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 15](/us/states/wv/districts/senate/15.md) — 100% (state senate)
- [WV House District 90](/us/states/wv/districts/house/90.md) — 60% (state house)
- [WV House District 89](/us/states/wv/districts/house/89.md) — 40% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2
hispanic: 265
bachelors_plus: 5759
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/10"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/house/49"
rel: in-district
area_weight: 0.7701
- to: "us/states/wv/districts/house/48"
rel: in-district
area_weight: 0.2297
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 265 |
| Bachelor's or higher | 5759 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 10](/us/states/wv/districts/senate/10.md) — 100% (state senate)
- [WV House District 49](/us/states/wv/districts/house/49.md) — 77% (state house)
- [WV House District 48](/us/states/wv/districts/house/48.md) — 23% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 31
hispanic: 699
bachelors_plus: 14138
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9984
- to: "us/states/wv/districts/senate/1"
rel: in-district
area_weight: 0.9984
- to: "us/states/wv/districts/house/4"
rel: in-district
area_weight: 0.5909
- to: "us/states/wv/districts/house/3"
rel: in-district
area_weight: 0.3223
- to: "us/states/wv/districts/house/5"
rel: in-district
area_weight: 0.0848
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 699 |
| Bachelor's or higher | 14138 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 1](/us/states/wv/districts/senate/1.md) — 100% (state senate)
- [WV House District 4](/us/states/wv/districts/house/4.md) — 59% (state house)
- [WV House District 3](/us/states/wv/districts/house/3.md) — 32% (state house)
- [WV House District 5](/us/states/wv/districts/house/5.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 9
hispanic: 134
bachelors_plus: 1096
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9968
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/67"
rel: in-district
area_weight: 0.5132
- to: "us/states/wv/districts/house/86"
rel: in-district
area_weight: 0.4864
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 134 |
| Bachelor's or higher | 1096 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 67](/us/states/wv/districts/house/67.md) — 51% (state house)
- [WV House District 86](/us/states/wv/districts/house/86.md) — 49% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 22
hispanic: 158
bachelors_plus: 1127
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/senate/3"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/9"
rel: in-district
area_weight: 0.9993
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 158 |
| Bachelor's or higher | 1127 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 3](/us/states/wv/districts/senate/3.md) — 100% (state senate)
- [WV House District 9](/us/states/wv/districts/house/9.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 77
hispanic: 131
bachelors_plus: 1648
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9979
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/66"
rel: in-district
area_weight: 0.6296
- to: "us/states/wv/districts/house/46"
rel: in-district
area_weight: 0.3699
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 131 |
| Bachelor's or higher | 1648 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 66](/us/states/wv/districts/house/66.md) — 63% (state house)
- [WV House District 46](/us/states/wv/districts/house/46.md) — 37% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 106
hispanic: 661
bachelors_plus: 6180
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/house/84"
rel: in-district
area_weight: 0.5621
- to: "us/states/wv/districts/house/83"
rel: in-district
area_weight: 0.4376
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 661 |
| Bachelor's or higher | 6180 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 100% (state senate)
- [WV House District 84](/us/states/wv/districts/house/84.md) — 56% (state house)
- [WV House District 83](/us/states/wv/districts/house/83.md) — 44% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 32
hispanic: 871
bachelors_plus: 16346
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/4"
rel: in-district
area_weight: 0.5427
- to: "us/states/wv/districts/senate/8"
rel: in-district
area_weight: 0.4572
- to: "us/states/wv/districts/house/19"
rel: in-district
area_weight: 0.4858
- to: "us/states/wv/districts/house/21"
rel: in-district
area_weight: 0.2991
- to: "us/states/wv/districts/house/20"
rel: in-district
area_weight: 0.1401
- to: "us/states/wv/districts/house/18"
rel: in-district
area_weight: 0.0748
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 871 |
| Bachelor's or higher | 16346 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 4](/us/states/wv/districts/senate/4.md) — 54% (state senate)
- [WV Senate District 8](/us/states/wv/districts/senate/8.md) — 46% (state senate)
- [WV House District 19](/us/states/wv/districts/house/19.md) — 49% (state house)
- [WV House District 21](/us/states/wv/districts/house/21.md) — 30% (state house)
- [WV House District 20](/us/states/wv/districts/house/20.md) — 14% (state house)
- [WV House District 18](/us/states/wv/districts/house/18.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 12
hispanic: 1298
bachelors_plus: 16052
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/9"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/43"
rel: in-district
area_weight: 0.4249
- to: "us/states/wv/districts/house/42"
rel: in-district
area_weight: 0.2787
- to: "us/states/wv/districts/house/45"
rel: in-district
area_weight: 0.1502
- to: "us/states/wv/districts/house/41"
rel: in-district
area_weight: 0.129
- to: "us/states/wv/districts/house/44"
rel: in-district
area_weight: 0.0168
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1298 |
| Bachelor's or higher | 16052 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 9](/us/states/wv/districts/senate/9.md) — 100% (state senate)
- [WV House District 43](/us/states/wv/districts/house/43.md) — 42% (state house)
- [WV House District 42](/us/states/wv/districts/house/42.md) — 28% (state house)
- [WV House District 45](/us/states/wv/districts/house/45.md) — 15% (state house)
- [WV House District 41](/us/states/wv/districts/house/41.md) — 13% (state house)
- [WV House District 44](/us/states/wv/districts/house/44.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 23
hispanic: 308
bachelors_plus: 5191
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9981
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/house/66"
rel: in-district
area_weight: 0.6039
- to: "us/states/wv/districts/house/67"
rel: in-district
area_weight: 0.396
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 308 |
| Bachelor's or higher | 5191 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 66](/us/states/wv/districts/house/66.md) — 60% (state house)
- [WV House District 67](/us/states/wv/districts/house/67.md) — 40% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 59
bachelors_plus: 1054
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9962
- to: "us/states/wv/districts/senate/3"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/9"
rel: in-district
area_weight: 0.9995
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 59 |
| Bachelor's or higher | 1054 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 3](/us/states/wv/districts/senate/3.md) — 100% (state senate)
- [WV House District 9](/us/states/wv/districts/house/9.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: 7
hispanic: 167
bachelors_plus: 2103
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/8"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/house/15"
rel: in-district
area_weight: 0.9997
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 167 |
| Bachelor's or higher | 2103 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 8](/us/states/wv/districts/senate/8.md) — 100% (state senate)
- [WV House District 15](/us/states/wv/districts/house/15.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 27
hispanic: 157
bachelors_plus: 2460
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/10"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/41"
rel: in-district
area_weight: 0.6329
- to: "us/states/wv/districts/house/40"
rel: in-district
area_weight: 0.367
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 157 |
| Bachelor's or higher | 2460 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 10](/us/states/wv/districts/senate/10.md) — 100% (state senate)
- [WV House District 41](/us/states/wv/districts/house/41.md) — 63% (state house)
- [WV House District 40](/us/states/wv/districts/house/40.md) — 37% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 22
hispanic: 169
bachelors_plus: 3531
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/12"
rel: in-district
area_weight: 0.5356
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.464
- to: "us/states/wv/districts/house/73"
rel: in-district
area_weight: 0.9996
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 169 |
| Bachelor's or higher | 3531 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 12](/us/states/wv/districts/senate/12.md) — 54% (state senate)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 46% (state senate)
- [WV House District 73](/us/states/wv/districts/house/73.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: 2
hispanic: 33
bachelors_plus: 1826
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/14"
rel: in-district
area_weight: 0.9998
- to: "us/states/wv/districts/house/85"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 33 |
| Bachelor's or higher | 1826 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 14](/us/states/wv/districts/senate/14.md) — 100% (state senate)
- [WV House District 85](/us/states/wv/districts/house/85.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 6
hispanic: 88
bachelors_plus: 1308
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.9996
- to: "us/states/wv/districts/house/9"
rel: in-district
area_weight: 0.5308
- to: "us/states/wv/districts/house/8"
rel: in-district
area_weight: 0.469
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 88 |
| Bachelor's or higher | 1308 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 100% (state senate)
- [WV House District 9](/us/states/wv/districts/house/9.md) — 53% (state house)
- [WV House District 8](/us/states/wv/districts/house/8.md) — 47% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 10
hispanic: 351
bachelors_plus: 4259
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9979
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/house/65"
rel: in-district
area_weight: 0.7008
- to: "us/states/wv/districts/house/68"
rel: in-district
area_weight: 0.1808
- to: "us/states/wv/districts/house/64"
rel: in-district
area_weight: 0.1181
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 351 |
| Bachelor's or higher | 4259 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 65](/us/states/wv/districts/house/65.md) — 70% (state house)
- [WV House District 68](/us/states/wv/districts/house/68.md) — 18% (state house)
- [WV House District 64](/us/states/wv/districts/house/64.md) — 12% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 0
hispanic: 346
bachelors_plus: 7680
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9977
- to: "us/states/wv/districts/senate/5"
rel: in-district
area_weight: 0.6711
- to: "us/states/wv/districts/senate/6"
rel: in-district
area_weight: 0.3283
- to: "us/states/wv/districts/house/29"
rel: in-district
area_weight: 0.6868
- to: "us/states/wv/districts/house/28"
rel: in-district
area_weight: 0.2907
- to: "us/states/wv/districts/house/27"
rel: in-district
area_weight: 0.0218
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 346 |
| Bachelor's or higher | 7680 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 5](/us/states/wv/districts/senate/5.md) — 67% (state senate)
- [WV Senate District 6](/us/states/wv/districts/senate/6.md) — 33% (state senate)
- [WV House District 29](/us/states/wv/districts/house/29.md) — 69% (state house)
- [WV House District 28](/us/states/wv/districts/house/28.md) — 29% (state house)
- [WV House District 27](/us/states/wv/districts/house/27.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 66
bachelors_plus: 955
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.9988
- to: "us/states/wv/districts/senate/11"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/house/48"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, wv]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 66 |
| Bachelor's or higher | 955 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 11](/us/states/wv/districts/senate/11.md) — 100% (state senate)
- [WV House District 48](/us/states/wv/districts/house/48.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 0
hispanic: 196
bachelors_plus: 2411
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/senate/2"
rel: in-district
area_weight: 0.9999
- to: "us/states/wv/districts/house/72"
rel: in-district
area_weight: 0.4053
- to: "us/states/wv/districts/house/8"
rel: in-district
area_weight: 0.3126
- to: "us/states/wv/districts/house/7"
rel: in-district
area_weight: 0.2478
- to: "us/states/wv/districts/house/77"
rel: in-district
area_weight: 0.0342
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 196 |
| Bachelor's or higher | 2411 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 2](/us/states/wv/districts/senate/2.md) — 100% (state senate)
- [WV House District 72](/us/states/wv/districts/house/72.md) — 41% (state house)
- [WV House District 8](/us/states/wv/districts/house/8.md) — 31% (state house)
- [WV House District 7](/us/states/wv/districts/house/7.md) — 25% (state house)
- [WV House District 77](/us/states/wv/districts/house/77.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 0
hispanic: 0
bachelors_plus: 708
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.995
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.005
- to: "us/states/wv/districts/senate/3"
rel: in-district
area_weight: 0.9995
- to: "us/states/wv/districts/house/15"
rel: in-district
area_weight: 0.7765
- to: "us/states/wv/districts/house/14"
rel: in-district
area_weight: 0.2227
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 0 |
| Bachelor's or higher | 708 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV-02](/us/states/wv/districts/02.md) — 0% (congressional)
- [WV Senate District 3](/us/states/wv/districts/senate/3.md) — 100% (state senate)
- [WV House District 15](/us/states/wv/districts/house/15.md) — 78% (state house)
- [WV House District 14](/us/states/wv/districts/house/14.md) — 22% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 85
hispanic: 1231
bachelors_plus: 19943
districts:
- to: "us/states/wv/districts/02"
rel: in-district
area_weight: 0.999
- to: "us/states/wv/districts/senate/3"
rel: in-district
area_weight: 0.9997
- to: "us/states/wv/districts/house/14"
rel: in-district
area_weight: 0.4798
- to: "us/states/wv/districts/house/10"
rel: in-district
area_weight: 0.3881
- to: "us/states/wv/districts/house/13"
rel: in-district
area_weight: 0.0688
- to: "us/states/wv/districts/house/12"
rel: in-district
area_weight: 0.0389
- to: "us/states/wv/districts/house/11"
rel: in-district
area_weight: 0.0239
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1231 |
| Bachelor's or higher | 19943 |
## Districts
- [WV-02](/us/states/wv/districts/02.md) — 100% (congressional)
- [WV Senate District 3](/us/states/wv/districts/senate/3.md) — 100% (state senate)
- [WV House District 14](/us/states/wv/districts/house/14.md) — 48% (state house)
- [WV House District 10](/us/states/wv/districts/house/10.md) — 39% (state house)
- [WV House District 13](/us/states/wv/districts/house/13.md) — 7% (state house)
- [WV House District 12](/us/states/wv/districts/house/12.md) — 4% (state house)
- [WV House District 11](/us/states/wv/districts/house/11.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 0
hispanic: 167
bachelors_plus: 2825
districts:
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/wv/districts/senate/9"
rel: in-district
area_weight: 0.9994
- to: "us/states/wv/districts/house/35"
rel: in-district
area_weight: 0.8924
- to: "us/states/wv/districts/house/43"
rel: in-district
area_weight: 0.1069
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, wv]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 167 |
| Bachelor's or higher | 2825 |
## Districts
- [WV-01](/us/states/wv/districts/01.md) — 100% (congressional)
- [WV Senate District 9](/us/states/wv/districts/senate/9.md) — 100% (state senate)
- [WV House District 35](/us/states/wv/districts/house/35.md) — 89% (state house)
- [WV House District 43](/us/states/wv/districts/house/43.md) — 11% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries