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: 3
hispanic: 671
bachelors_plus: 4169
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/senate/16"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/house/21"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 671 |
| Bachelor's or higher | 4169 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 16](/us/states/ky/districts/senate/16.md) — 100% (state senate)
- [KY House District 21](/us/states/ky/districts/house/21.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: 32
hispanic: 620
bachelors_plus: 3755
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9924
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.0075
- to: "us/states/ky/districts/senate/16"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/22"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 620 |
| Bachelor's or higher | 3755 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 99% (congressional)
- [KY-02](/us/states/ky/districts/02.md) — 1% (congressional)
- [KY Senate District 16](/us/states/ky/districts/senate/16.md) — 100% (state senate)
- [KY House District 22](/us/states/ky/districts/house/22.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: 639
bachelors_plus: 5942
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.5147
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.4831
- to: "us/states/ky/districts/senate/7"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/53"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 639 |
| Bachelor's or higher | 5942 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 51% (congressional)
- [KY-01](/us/states/ky/districts/01.md) — 48% (congressional)
- [KY Senate District 7](/us/states/ky/districts/senate/7.md) — 100% (state senate)
- [KY House District 53](/us/states/ky/districts/house/53.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: 119
bachelors_plus: 1356
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.998
- to: "us/states/ky/districts/senate/2"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/1"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 119 |
| Bachelor's or higher | 1356 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 2](/us/states/ky/districts/senate/2.md) — 100% (state senate)
- [KY House District 1](/us/states/ky/districts/house/1.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: 158
hispanic: 1991
bachelors_plus: 7748
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9966
- to: "us/states/ky/districts/senate/9"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/23"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1991 |
| Bachelor's or higher | 7748 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 9](/us/states/ky/districts/senate/9.md) — 100% (state senate)
- [KY House District 23](/us/states/ky/districts/house/23.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: 5
hispanic: 235
bachelors_plus: 1502
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.5425
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.4575
- to: "us/states/ky/districts/senate/28"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/74"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 235 |
| Bachelor's or higher | 1502 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 54% (congressional)
- [KY-06](/us/states/ky/districts/06.md) — 46% (congressional)
- [KY Senate District 28](/us/states/ky/districts/senate/28.md) — 100% (state senate)
- [KY House District 74](/us/states/ky/districts/house/74.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: 27
hispanic: 114
bachelors_plus: 3652
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/senate/29"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/87"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 114 |
| Bachelor's or higher | 3652 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 29](/us/states/ky/districts/senate/29.md) — 100% (state senate)
- [KY House District 87](/us/states/ky/districts/house/87.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 566
hispanic: 8264
bachelors_plus: 45272
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/senate/11"
rel: in-district
area_weight: 0.6724
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.3269
- to: "us/states/ky/districts/house/66"
rel: in-district
area_weight: 0.4636
- to: "us/states/ky/districts/house/60"
rel: in-district
area_weight: 0.2168
- to: "us/states/ky/districts/house/61"
rel: in-district
area_weight: 0.1797
- to: "us/states/ky/districts/house/63"
rel: in-district
area_weight: 0.074
- to: "us/states/ky/districts/house/78"
rel: in-district
area_weight: 0.0436
- to: "us/states/ky/districts/house/69"
rel: in-district
area_weight: 0.0216
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 8264 |
| Bachelor's or higher | 45272 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 11](/us/states/ky/districts/senate/11.md) — 67% (state senate)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 33% (state senate)
- [KY House District 66](/us/states/ky/districts/house/66.md) — 46% (state house)
- [KY House District 60](/us/states/ky/districts/house/60.md) — 22% (state house)
- [KY House District 61](/us/states/ky/districts/house/61.md) — 18% (state house)
- [KY House District 63](/us/states/ky/districts/house/63.md) — 7% (state house)
- [KY House District 78](/us/states/ky/districts/house/78.md) — 4% (state house)
- [KY House District 69](/us/states/ky/districts/house/69.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: 39
hispanic: 1569
bachelors_plus: 5308
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/72"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1569 |
| Bachelor's or higher | 5308 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 100% (state senate)
- [KY House District 72](/us/states/ky/districts/house/72.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: 47
hispanic: 873
bachelors_plus: 9948
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9983
- to: "us/states/ky/districts/senate/18"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/100"
rel: in-district
area_weight: 0.5616
- to: "us/states/ky/districts/house/96"
rel: in-district
area_weight: 0.3573
- to: "us/states/ky/districts/house/98"
rel: in-district
area_weight: 0.0807
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 873 |
| Bachelor's or higher | 9948 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 18](/us/states/ky/districts/senate/18.md) — 100% (state senate)
- [KY House District 100](/us/states/ky/districts/house/100.md) — 56% (state house)
- [KY House District 96](/us/states/ky/districts/house/96.md) — 36% (state house)
- [KY House District 98](/us/states/ky/districts/house/98.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: 0
hispanic: 1457
bachelors_plus: 7900
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9902
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.0064
- to: "us/states/ky/districts/senate/12"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/54"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 1457 |
| Bachelor's or higher | 7900 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 99% (congressional)
- [KY-06](/us/states/ky/districts/06.md) — 1% (congressional)
- [KY Senate District 12](/us/states/ky/districts/senate/12.md) — 100% (state senate)
- [KY House District 54](/us/states/ky/districts/house/54.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: 84
hispanic: 125
bachelors_plus: 1588
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/senate/24"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/house/70"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 125 |
| Bachelor's or higher | 1588 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 24](/us/states/ky/districts/senate/24.md) — 100% (state senate)
- [KY House District 70](/us/states/ky/districts/house/70.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: 23
hispanic: 149
bachelors_plus: 2193
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/84"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 149 |
| Bachelor's or higher | 2193 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 84](/us/states/ky/districts/house/84.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: 0
hispanic: 350
bachelors_plus: 2722
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/senate/5"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/10"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 350 |
| Bachelor's or higher | 2722 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 5](/us/states/ky/districts/senate/5.md) — 100% (state senate)
- [KY House District 10](/us/states/ky/districts/house/10.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: 17
hispanic: 2769
bachelors_plus: 15991
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9978
- to: "us/states/ky/districts/senate/38"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/49"
rel: in-district
area_weight: 0.545
- to: "us/states/ky/districts/house/26"
rel: in-district
area_weight: 0.4518
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2769 |
| Bachelor's or higher | 15991 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 38](/us/states/ky/districts/senate/38.md) — 100% (state senate)
- [KY House District 49](/us/states/ky/districts/house/49.md) — 55% (state house)
- [KY House District 26](/us/states/ky/districts/house/26.md) — 45% (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: 656
bachelors_plus: 1258
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/5"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/15"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 656 |
| Bachelor's or higher | 1258 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 5](/us/states/ky/districts/senate/5.md) — 100% (state senate)
- [KY House District 15](/us/states/ky/districts/house/15.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: 0
hispanic: 186
bachelors_plus: 2123
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/3"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/house/8"
rel: in-district
area_weight: 0.999
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 186 |
| Bachelor's or higher | 2123 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 3](/us/states/ky/districts/senate/3.md) — 100% (state senate)
- [KY House District 8](/us/states/ky/districts/house/8.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: 72
hispanic: 1406
bachelors_plus: 10568
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/5"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1406 |
| Bachelor's or higher | 10568 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 5](/us/states/ky/districts/house/5.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: 47
hispanic: 2449
bachelors_plus: 36416
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/senate/24"
rel: in-district
area_weight: 0.9987
- to: "us/states/ky/districts/house/68"
rel: in-district
area_weight: 0.6458
- to: "us/states/ky/districts/house/78"
rel: in-district
area_weight: 0.2242
- to: "us/states/ky/districts/house/67"
rel: in-district
area_weight: 0.1289
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 2449 |
| Bachelor's or higher | 36416 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 24](/us/states/ky/districts/senate/24.md) — 100% (state senate)
- [KY House District 68](/us/states/ky/districts/house/68.md) — 65% (state house)
- [KY House District 78](/us/states/ky/districts/house/78.md) — 22% (state house)
- [KY House District 67](/us/states/ky/districts/house/67.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 6
hispanic: 153
bachelors_plus: 700
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/senate/2"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/house/1"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 153 |
| Bachelor's or higher | 700 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 2](/us/states/ky/districts/senate/2.md) — 100% (state senate)
- [KY House District 1](/us/states/ky/districts/house/1.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: 0
hispanic: 826
bachelors_plus: 1115
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/47"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 826 |
| Bachelor's or higher | 1115 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 100% (state senate)
- [KY House District 47](/us/states/ky/districts/house/47.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: 227
bachelors_plus: 4282
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.7447
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.2553
- to: "us/states/ky/districts/senate/18"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/96"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 227 |
| Bachelor's or higher | 4282 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 74% (congressional)
- [KY-04](/us/states/ky/districts/04.md) — 26% (congressional)
- [KY Senate District 18](/us/states/ky/districts/senate/18.md) — 100% (state senate)
- [KY House District 96](/us/states/ky/districts/house/96.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: 5
hispanic: 546
bachelors_plus: 2058
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/senate/21"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/54"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 546 |
| Bachelor's or higher | 2058 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 21](/us/states/ky/districts/senate/21.md) — 100% (state senate)
- [KY House District 54](/us/states/ky/districts/house/54.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: 146
hispanic: 6267
bachelors_plus: 10882
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/senate/3"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/8"
rel: in-district
area_weight: 0.4116
- to: "us/states/ky/districts/house/9"
rel: in-district
area_weight: 0.323
- to: "us/states/ky/districts/house/16"
rel: in-district
area_weight: 0.2651
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 6267 |
| Bachelor's or higher | 10882 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 3](/us/states/ky/districts/senate/3.md) — 100% (state senate)
- [KY House District 8](/us/states/ky/districts/house/8.md) — 41% (state house)
- [KY House District 9](/us/states/ky/districts/house/9.md) — 32% (state house)
- [KY House District 16](/us/states/ky/districts/house/16.md) — 27% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 265
hispanic: 1534
bachelors_plus: 8299
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/28"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/73"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1534 |
| Bachelor's or higher | 8299 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 28](/us/states/ky/districts/senate/28.md) — 100% (state senate)
- [KY House District 73](/us/states/ky/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: 14
hispanic: 421
bachelors_plus: 3484
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/25"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/90"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 421 |
| Bachelor's or higher | 3484 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 25](/us/states/ky/districts/senate/25.md) — 100% (state senate)
- [KY House District 90](/us/states/ky/districts/house/90.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: 50
hispanic: 315
bachelors_plus: 1612
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9959
- to: "us/states/ky/districts/senate/15"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/83"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 315 |
| Bachelor's or higher | 1612 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 15](/us/states/ky/districts/senate/15.md) — 100% (state senate)
- [KY House District 83](/us/states/ky/districts/house/83.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: 14
hispanic: 158
bachelors_plus: 1358
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9989
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9989
- to: "us/states/ky/districts/house/12"
rel: in-district
area_weight: 0.999
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 158 |
| Bachelor's or higher | 1358 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 12](/us/states/ky/districts/house/12.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: 39
hispanic: 120
bachelors_plus: 1152
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/senate/15"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/21"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 120 |
| Bachelor's or higher | 1152 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 15](/us/states/ky/districts/senate/15.md) — 100% (state senate)
- [KY House District 21](/us/states/ky/districts/house/21.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: 505
hispanic: 4412
bachelors_plus: 25775
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/senate/8"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/7"
rel: in-district
area_weight: 0.4815
- to: "us/states/ky/districts/house/14"
rel: in-district
area_weight: 0.3994
- to: "us/states/ky/districts/house/13"
rel: in-district
area_weight: 0.1189
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 4412 |
| Bachelor's or higher | 25775 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 8](/us/states/ky/districts/senate/8.md) — 100% (state senate)
- [KY House District 7](/us/states/ky/districts/house/7.md) — 48% (state house)
- [KY House District 14](/us/states/ky/districts/house/14.md) — 40% (state house)
- [KY House District 13](/us/states/ky/districts/house/13.md) — 12% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 10
hispanic: 211
bachelors_plus: 1483
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/9"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/house/19"
rel: in-district
area_weight: 0.999
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 211 |
| Bachelor's or higher | 1483 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 9](/us/states/ky/districts/senate/9.md) — 100% (state senate)
- [KY House District 19](/us/states/ky/districts/house/19.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 15
hispanic: 124
bachelors_plus: 686
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/31"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/99"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 124 |
| Bachelor's or higher | 686 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 31](/us/states/ky/districts/senate/31.md) — 100% (state senate)
- [KY House District 99](/us/states/ky/districts/house/99.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: 5
hispanic: 132
bachelors_plus: 1677
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9976
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/91"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 132 |
| Bachelor's or higher | 1677 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 91](/us/states/ky/districts/house/91.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,63 @@ demographics:
race_native: 714
hispanic: 30824
bachelors_plus: 146521
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/28"
rel: in-district
area_weight: 0.2798
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 0.222
- to: "us/states/ky/districts/senate/34"
rel: in-district
area_weight: 0.163
- to: "us/states/ky/districts/senate/17"
rel: in-district
area_weight: 0.1184
- to: "us/states/ky/districts/senate/13"
rel: in-district
area_weight: 0.0968
- to: "us/states/ky/districts/senate/12"
rel: in-district
area_weight: 0.0884
- to: "us/states/ky/districts/senate/22"
rel: in-district
area_weight: 0.0317
- to: "us/states/ky/districts/house/88"
rel: in-district
area_weight: 0.4274
- to: "us/states/ky/districts/house/73"
rel: in-district
area_weight: 0.2261
- to: "us/states/ky/districts/house/45"
rel: in-district
area_weight: 0.1124
- to: "us/states/ky/districts/house/77"
rel: in-district
area_weight: 0.0591
- to: "us/states/ky/districts/house/76"
rel: in-district
area_weight: 0.0511
- to: "us/states/ky/districts/house/93"
rel: in-district
area_weight: 0.0388
- to: "us/states/ky/districts/house/75"
rel: in-district
area_weight: 0.038
- to: "us/states/ky/districts/house/79"
rel: in-district
area_weight: 0.0371
- to: "us/states/ky/districts/house/39"
rel: in-district
area_weight: 0.0097
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 30824 |
| Bachelor's or higher | 146521 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 28](/us/states/ky/districts/senate/28.md) — 28% (state senate)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 22% (state senate)
- [KY Senate District 34](/us/states/ky/districts/senate/34.md) — 16% (state senate)
- [KY Senate District 17](/us/states/ky/districts/senate/17.md) — 12% (state senate)
- [KY Senate District 13](/us/states/ky/districts/senate/13.md) — 10% (state senate)
- [KY Senate District 12](/us/states/ky/districts/senate/12.md) — 9% (state senate)
- [KY Senate District 22](/us/states/ky/districts/senate/22.md) — 3% (state senate)
- [KY House District 88](/us/states/ky/districts/house/88.md) — 43% (state house)
- [KY House District 73](/us/states/ky/districts/house/73.md) — 23% (state house)
- [KY House District 45](/us/states/ky/districts/house/45.md) — 11% (state house)
- [KY House District 77](/us/states/ky/districts/house/77.md) — 6% (state house)
- [KY House District 76](/us/states/ky/districts/house/76.md) — 5% (state house)
- [KY House District 93](/us/states/ky/districts/house/93.md) — 4% (state house)
- [KY House District 75](/us/states/ky/districts/house/75.md) — 4% (state house)
- [KY House District 79](/us/states/ky/districts/house/79.md) — 4% (state house)
- [KY House District 39](/us/states/ky/districts/house/39.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: 0
hispanic: 259
bachelors_plus: 2772
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9904
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.0074
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/72"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 259 |
| Bachelor's or higher | 2772 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 99% (congressional)
- [KY-05](/us/states/ky/districts/05.md) — 1% (congressional)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 100% (state senate)
- [KY House District 72](/us/states/ky/districts/house/72.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: 17
hispanic: 329
bachelors_plus: 5537
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/29"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/house/95"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 329 |
| Bachelor's or higher | 5537 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 29](/us/states/ky/districts/senate/29.md) — 100% (state senate)
- [KY House District 95](/us/states/ky/districts/house/95.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: 60
hispanic: 2281
bachelors_plus: 16374
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9967
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/57"
rel: in-district
area_weight: 0.6077
- to: "us/states/ky/districts/house/56"
rel: in-district
area_weight: 0.3919
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2281 |
| Bachelor's or higher | 16374 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 100% (state senate)
- [KY House District 57](/us/states/ky/districts/house/57.md) — 61% (state house)
- [KY House District 56](/us/states/ky/districts/house/56.md) — 39% (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: 213
bachelors_plus: 869
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9978
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9978
- to: "us/states/ky/districts/house/1"
rel: in-district
area_weight: 0.9978
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 213 |
| Bachelor's or higher | 869 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 1](/us/states/ky/districts/house/1.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: 1
hispanic: 478
bachelors_plus: 1220
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/61"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 478 |
| Bachelor's or higher | 1220 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 100% (state senate)
- [KY House District 61](/us/states/ky/districts/house/61.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: 30
hispanic: 524
bachelors_plus: 3347
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9948
- to: "us/states/ky/districts/senate/22"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/house/80"
rel: in-district
area_weight: 0.9989
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 524 |
| Bachelor's or higher | 3347 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 99% (congressional)
- [KY Senate District 22](/us/states/ky/districts/senate/22.md) — 100% (state senate)
- [KY House District 80](/us/states/ky/districts/house/80.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: 17
hispanic: 824
bachelors_plus: 3505
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/17"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/61"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 824 |
| Bachelor's or higher | 3505 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 17](/us/states/ky/districts/senate/17.md) — 100% (state senate)
- [KY House District 61](/us/states/ky/districts/house/61.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: 84
hispanic: 2983
bachelors_plus: 6595
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/2"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2983 |
| Bachelor's or higher | 6595 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 2](/us/states/ky/districts/house/2.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: 10
hispanic: 430
bachelors_plus: 4358
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/5"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/18"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 430 |
| Bachelor's or higher | 4358 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 5](/us/states/ky/districts/senate/5.md) — 100% (state senate)
- [KY House District 18](/us/states/ky/districts/house/18.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: 8
hispanic: 259
bachelors_plus: 2148
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9965
- to: "us/states/ky/districts/senate/9"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/24"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 259 |
| Bachelor's or higher | 2148 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 9](/us/states/ky/districts/senate/9.md) — 100% (state senate)
- [KY House District 24](/us/states/ky/districts/house/24.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: 29
hispanic: 420
bachelors_plus: 7073
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9986
- to: "us/states/ky/districts/senate/18"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/house/98"
rel: in-district
area_weight: 0.9989
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 420 |
| Bachelor's or higher | 7073 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 18](/us/states/ky/districts/senate/18.md) — 100% (state senate)
- [KY House District 98](/us/states/ky/districts/house/98.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: 6
hispanic: 74
bachelors_plus: 1429
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/senate/8"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/14"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 74 |
| Bachelor's or higher | 1429 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 8](/us/states/ky/districts/senate/8.md) — 100% (state senate)
- [KY House District 14](/us/states/ky/districts/house/14.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 238
hispanic: 7273
bachelors_plus: 25948
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/10"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/18"
rel: in-district
area_weight: 0.4165
- to: "us/states/ky/districts/house/10"
rel: in-district
area_weight: 0.2477
- to: "us/states/ky/districts/house/25"
rel: in-district
area_weight: 0.1663
- to: "us/states/ky/districts/house/26"
rel: in-district
area_weight: 0.1549
- to: "us/states/ky/districts/house/27"
rel: in-district
area_weight: 0.0145
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 7273 |
| Bachelor's or higher | 25948 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 10](/us/states/ky/districts/senate/10.md) — 100% (state senate)
- [KY House District 18](/us/states/ky/districts/house/18.md) — 42% (state house)
- [KY House District 10](/us/states/ky/districts/house/10.md) — 25% (state house)
- [KY House District 25](/us/states/ky/districts/house/25.md) — 17% (state house)
- [KY House District 26](/us/states/ky/districts/house/26.md) — 15% (state house)
- [KY House District 27](/us/states/ky/districts/house/27.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: 56
hispanic: 135
bachelors_plus: 3542
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/senate/29"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/house/87"
rel: in-district
area_weight: 0.7149
- to: "us/states/ky/districts/house/94"
rel: in-district
area_weight: 0.284
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 135 |
| Bachelor's or higher | 3542 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 29](/us/states/ky/districts/senate/29.md) — 100% (state senate)
- [KY House District 87](/us/states/ky/districts/house/87.md) — 71% (state house)
- [KY House District 94](/us/states/ky/districts/house/94.md) — 28% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 11
hispanic: 446
bachelors_plus: 4282
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9945
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.0055
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/70"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 446 |
| Bachelor's or higher | 4282 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 99% (congressional)
- [KY-06](/us/states/ky/districts/06.md) — 1% (congressional)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 100% (state senate)
- [KY House District 70](/us/states/ky/districts/house/70.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: 55
hispanic: 412
bachelors_plus: 2259
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/9"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/24"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 412 |
| Bachelor's or higher | 2259 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 9](/us/states/ky/districts/senate/9.md) — 100% (state senate)
- [KY House District 24](/us/states/ky/districts/house/24.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: 17
hispanic: 1495
bachelors_plus: 8279
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9971
- to: "us/states/ky/districts/senate/4"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/11"
rel: in-district
area_weight: 0.999
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1495 |
| Bachelor's or higher | 8279 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 4](/us/states/ky/districts/senate/4.md) — 100% (state senate)
- [KY House District 11](/us/states/ky/districts/house/11.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: 53
hispanic: 651
bachelors_plus: 2300
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/senate/7"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/47"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 651 |
| Bachelor's or higher | 2300 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 7](/us/states/ky/districts/senate/7.md) — 100% (state senate)
- [KY House District 47](/us/states/ky/districts/house/47.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: 116
bachelors_plus: 671
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/1"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 116 |
| Bachelor's or higher | 671 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 1](/us/states/ky/districts/house/1.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: 533
hispanic: 1249
bachelors_plus: 7652
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.996
- to: "us/states/ky/districts/senate/4"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/4"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1249 |
| Bachelor's or higher | 7652 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 4](/us/states/ky/districts/senate/4.md) — 100% (state senate)
- [KY House District 4](/us/states/ky/districts/house/4.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: 19
hispanic: 142
bachelors_plus: 1095
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/senate/25"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/89"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 142 |
| Bachelor's or higher | 1095 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 25](/us/states/ky/districts/senate/25.md) — 100% (state senate)
- [KY House District 89](/us/states/ky/districts/house/89.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,102 @@ demographics:
race_native: 1196
hispanic: 67277
bachelors_plus: 285054
districts:
- to: "us/states/ky/districts/03"
rel: in-district
area_weight: 0.8124
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.1868
- to: "us/states/ky/districts/senate/36"
rel: in-district
area_weight: 0.203
- to: "us/states/ky/districts/senate/33"
rel: in-district
area_weight: 0.1211
- to: "us/states/ky/districts/senate/7"
rel: in-district
area_weight: 0.1144
- to: "us/states/ky/districts/senate/35"
rel: in-district
area_weight: 0.1127
- to: "us/states/ky/districts/senate/26"
rel: in-district
area_weight: 0.1039
- to: "us/states/ky/districts/senate/38"
rel: in-district
area_weight: 0.0995
- to: "us/states/ky/districts/senate/37"
rel: in-district
area_weight: 0.0893
- to: "us/states/ky/districts/senate/19"
rel: in-district
area_weight: 0.0813
- to: "us/states/ky/districts/senate/6"
rel: in-district
area_weight: 0.0506
- to: "us/states/ky/districts/senate/10"
rel: in-district
area_weight: 0.0238
- to: "us/states/ky/districts/house/36"
rel: in-district
area_weight: 0.1567
- to: "us/states/ky/districts/house/29"
rel: in-district
area_weight: 0.1181
- to: "us/states/ky/districts/house/37"
rel: in-district
area_weight: 0.1085
- to: "us/states/ky/districts/house/48"
rel: in-district
area_weight: 0.0731
- to: "us/states/ky/districts/house/44"
rel: in-district
area_weight: 0.0604
- to: "us/states/ky/districts/house/35"
rel: in-district
area_weight: 0.0575
- to: "us/states/ky/districts/house/28"
rel: in-district
area_weight: 0.0477
- to: "us/states/ky/districts/house/38"
rel: in-district
area_weight: 0.0461
- to: "us/states/ky/districts/house/31"
rel: in-district
area_weight: 0.0406
- to: "us/states/ky/districts/house/33"
rel: in-district
area_weight: 0.04
- to: "us/states/ky/districts/house/43"
rel: in-district
area_weight: 0.0391
- to: "us/states/ky/districts/house/32"
rel: in-district
area_weight: 0.0356
- to: "us/states/ky/districts/house/46"
rel: in-district
area_weight: 0.0354
- to: "us/states/ky/districts/house/34"
rel: in-district
area_weight: 0.0352
- to: "us/states/ky/districts/house/30"
rel: in-district
area_weight: 0.0316
- to: "us/states/ky/districts/house/40"
rel: in-district
area_weight: 0.0277
- to: "us/states/ky/districts/house/41"
rel: in-district
area_weight: 0.0268
- to: "us/states/ky/districts/house/42"
rel: in-district
area_weight: 0.0196
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +149,40 @@ County jurisdiction — 5 officeholders mapped.
| Hispanic/Latino | 67277 |
| Bachelor's or higher | 285054 |
## Districts
- [KY-03](/us/states/ky/districts/03.md) — 81% (congressional)
- [KY-02](/us/states/ky/districts/02.md) — 19% (congressional)
- [KY Senate District 36](/us/states/ky/districts/senate/36.md) — 20% (state senate)
- [KY Senate District 33](/us/states/ky/districts/senate/33.md) — 12% (state senate)
- [KY Senate District 7](/us/states/ky/districts/senate/7.md) — 11% (state senate)
- [KY Senate District 35](/us/states/ky/districts/senate/35.md) — 11% (state senate)
- [KY Senate District 26](/us/states/ky/districts/senate/26.md) — 10% (state senate)
- [KY Senate District 38](/us/states/ky/districts/senate/38.md) — 10% (state senate)
- [KY Senate District 37](/us/states/ky/districts/senate/37.md) — 9% (state senate)
- [KY Senate District 19](/us/states/ky/districts/senate/19.md) — 8% (state senate)
- [KY Senate District 6](/us/states/ky/districts/senate/6.md) — 5% (state senate)
- [KY Senate District 10](/us/states/ky/districts/senate/10.md) — 2% (state senate)
- [KY House District 36](/us/states/ky/districts/house/36.md) — 16% (state house)
- [KY House District 29](/us/states/ky/districts/house/29.md) — 12% (state house)
- [KY House District 37](/us/states/ky/districts/house/37.md) — 11% (state house)
- [KY House District 48](/us/states/ky/districts/house/48.md) — 7% (state house)
- [KY House District 44](/us/states/ky/districts/house/44.md) — 6% (state house)
- [KY House District 35](/us/states/ky/districts/house/35.md) — 6% (state house)
- [KY House District 28](/us/states/ky/districts/house/28.md) — 5% (state house)
- [KY House District 38](/us/states/ky/districts/house/38.md) — 5% (state house)
- [KY House District 31](/us/states/ky/districts/house/31.md) — 4% (state house)
- [KY House District 33](/us/states/ky/districts/house/33.md) — 4% (state house)
- [KY House District 43](/us/states/ky/districts/house/43.md) — 4% (state house)
- [KY House District 32](/us/states/ky/districts/house/32.md) — 4% (state house)
- [KY House District 46](/us/states/ky/districts/house/46.md) — 4% (state house)
- [KY House District 34](/us/states/ky/districts/house/34.md) — 4% (state house)
- [KY House District 30](/us/states/ky/districts/house/30.md) — 3% (state house)
- [KY House District 40](/us/states/ky/districts/house/40.md) — 3% (state house)
- [KY House District 41](/us/states/ky/districts/house/41.md) — 3% (state house)
- [KY House District 42](/us/states/ky/districts/house/42.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 50
hispanic: 2740
bachelors_plus: 17610
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/22"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/55"
rel: in-district
area_weight: 0.4325
- to: "us/states/ky/districts/house/39"
rel: in-district
area_weight: 0.2682
- to: "us/states/ky/districts/house/56"
rel: in-district
area_weight: 0.1533
- to: "us/states/ky/districts/house/45"
rel: in-district
area_weight: 0.1456
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2740 |
| Bachelor's or higher | 17610 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 22](/us/states/ky/districts/senate/22.md) — 100% (state senate)
- [KY House District 55](/us/states/ky/districts/house/55.md) — 43% (state house)
- [KY House District 39](/us/states/ky/districts/house/39.md) — 27% (state house)
- [KY House District 56](/us/states/ky/districts/house/56.md) — 15% (state house)
- [KY House District 45](/us/states/ky/districts/house/45.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: 30
hispanic: 110
bachelors_plus: 3777
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/31"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/97"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 110 |
| Bachelor's or higher | 3777 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 31](/us/states/ky/districts/senate/31.md) — 100% (state senate)
- [KY House District 97](/us/states/ky/districts/house/97.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,42 @@ demographics:
race_native: 283
hispanic: 8330
bachelors_plus: 59445
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/senate/17"
rel: in-district
area_weight: 0.4611
- to: "us/states/ky/districts/senate/23"
rel: in-district
area_weight: 0.3702
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.165
- to: "us/states/ky/districts/house/78"
rel: in-district
area_weight: 0.4286
- to: "us/states/ky/districts/house/64"
rel: in-district
area_weight: 0.2133
- to: "us/states/ky/districts/house/65"
rel: in-district
area_weight: 0.11
- to: "us/states/ky/districts/house/61"
rel: in-district
area_weight: 0.0927
- to: "us/states/ky/districts/house/63"
rel: in-district
area_weight: 0.0927
- to: "us/states/ky/districts/house/69"
rel: in-district
area_weight: 0.0621
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +89,20 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 8330 |
| Bachelor's or higher | 59445 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 17](/us/states/ky/districts/senate/17.md) — 46% (state senate)
- [KY Senate District 23](/us/states/ky/districts/senate/23.md) — 37% (state senate)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 16% (state senate)
- [KY House District 78](/us/states/ky/districts/house/78.md) — 43% (state house)
- [KY House District 64](/us/states/ky/districts/house/64.md) — 21% (state house)
- [KY House District 65](/us/states/ky/districts/house/65.md) — 11% (state house)
- [KY House District 61](/us/states/ky/districts/house/61.md) — 9% (state house)
- [KY House District 63](/us/states/ky/districts/house/63.md) — 9% (state house)
- [KY House District 69](/us/states/ky/districts/house/69.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 21
hispanic: 80
bachelors_plus: 2919
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/29"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/92"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 80 |
| Bachelor's or higher | 2919 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 29](/us/states/ky/districts/senate/29.md) — 100% (state senate)
- [KY House District 92](/us/states/ky/districts/house/92.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: 389
bachelors_plus: 4168
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/25"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 389 |
| Bachelor's or higher | 4168 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 25](/us/states/ky/districts/senate/25.md) — 100% (state senate)
- [KY House District 86](/us/states/ky/districts/house/86.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: 502
bachelors_plus: 2503
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9967
- to: "us/states/ky/districts/senate/14"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/24"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 502 |
| Bachelor's or higher | 2503 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 14](/us/states/ky/districts/senate/14.md) — 100% (state senate)
- [KY House District 24](/us/states/ky/districts/house/24.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,36 @@ demographics:
race_native: 71
hispanic: 1061
bachelors_plus: 11058
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/21"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/85"
rel: in-district
area_weight: 0.2496
- to: "us/states/ky/districts/house/89"
rel: in-district
area_weight: 0.2018
- to: "us/states/ky/districts/house/90"
rel: in-district
area_weight: 0.1793
- to: "us/states/ky/districts/house/86"
rel: in-district
area_weight: 0.1502
- to: "us/states/ky/districts/house/71"
rel: in-district
area_weight: 0.1343
- to: "us/states/ky/districts/house/82"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 1061 |
| Bachelor's or higher | 11058 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 21](/us/states/ky/districts/senate/21.md) — 100% (state senate)
- [KY House District 85](/us/states/ky/districts/house/85.md) — 25% (state house)
- [KY House District 89](/us/states/ky/districts/house/89.md) — 20% (state house)
- [KY House District 90](/us/states/ky/districts/house/90.md) — 18% (state house)
- [KY House District 86](/us/states/ky/districts/house/86.md) — 15% (state house)
- [KY House District 71](/us/states/ky/districts/house/71.md) — 13% (state house)
- [KY House District 82](/us/states/ky/districts/house/82.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: 5
hispanic: 59
bachelors_plus: 2335
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/senate/31"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/100"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 59 |
| Bachelor's or higher | 2335 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 31](/us/states/ky/districts/senate/31.md) — 100% (state senate)
- [KY House District 100](/us/states/ky/districts/house/100.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: 21
hispanic: 83
bachelors_plus: 723
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9965
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/89"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 83 |
| Bachelor's or higher | 723 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 89](/us/states/ky/districts/house/89.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: 0
hispanic: 11
bachelors_plus: 1113
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/90"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 11 |
| Bachelor's or higher | 1113 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 90](/us/states/ky/districts/house/90.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: 8
hispanic: 160
bachelors_plus: 2683
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/senate/29"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/house/94"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 160 |
| Bachelor's or higher | 2683 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 29](/us/states/ky/districts/senate/29.md) — 100% (state senate)
- [KY House District 94](/us/states/ky/districts/house/94.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: 0
hispanic: 15
bachelors_plus: 2076
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9963
- to: "us/states/ky/districts/senate/18"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/96"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 15 |
| Bachelor's or higher | 2076 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 18](/us/states/ky/districts/senate/18.md) — 100% (state senate)
- [KY House District 96](/us/states/ky/districts/house/96.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: 1
hispanic: 523
bachelors_plus: 3824
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9928
- to: "us/states/ky/districts/senate/21"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/80"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 523 |
| Bachelor's or higher | 3824 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 99% (congressional)
- [KY Senate District 21](/us/states/ky/districts/senate/21.md) — 100% (state senate)
- [KY House District 80](/us/states/ky/districts/house/80.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: 5
hispanic: 226
bachelors_plus: 1368
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9987
- to: "us/states/ky/districts/senate/2"
rel: in-district
area_weight: 0.9987
- to: "us/states/ky/districts/house/3"
rel: in-district
area_weight: 0.9986
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 226 |
| Bachelor's or higher | 1368 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 2](/us/states/ky/districts/senate/2.md) — 100% (state senate)
- [KY House District 3](/us/states/ky/districts/house/3.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: 57
hispanic: 996
bachelors_plus: 4103
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.927
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.0729
- to: "us/states/ky/districts/senate/32"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/16"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 996 |
| Bachelor's or higher | 4103 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 93% (congressional)
- [KY-02](/us/states/ky/districts/02.md) — 7% (congressional)
- [KY Senate District 32](/us/states/ky/districts/senate/32.md) — 100% (state senate)
- [KY House District 16](/us/states/ky/districts/house/16.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: 36
hispanic: 194
bachelors_plus: 1707
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/1"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/house/6"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 194 |
| Bachelor's or higher | 1707 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 1](/us/states/ky/districts/senate/1.md) — 100% (state senate)
- [KY House District 6](/us/states/ky/districts/house/6.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 56
hispanic: 3388
bachelors_plus: 29174
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/senate/34"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/81"
rel: in-district
area_weight: 0.5671
- to: "us/states/ky/districts/house/89"
rel: in-district
area_weight: 0.2042
- to: "us/states/ky/districts/house/91"
rel: in-district
area_weight: 0.1361
- to: "us/states/ky/districts/house/71"
rel: in-district
area_weight: 0.0923
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 3388 |
| Bachelor's or higher | 29174 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 34](/us/states/ky/districts/senate/34.md) — 100% (state senate)
- [KY House District 81](/us/states/ky/districts/house/81.md) — 57% (state house)
- [KY House District 89](/us/states/ky/districts/house/89.md) — 20% (state house)
- [KY House District 91](/us/states/ky/districts/house/91.md) — 14% (state house)
- [KY House District 71](/us/states/ky/districts/house/71.md) — 9% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 45
hispanic: 104
bachelors_plus: 1658
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/92"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 104 |
| Bachelor's or higher | 1658 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 92](/us/states/ky/districts/house/92.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: 22
hispanic: 723
bachelors_plus: 3118
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9987
- to: "us/states/ky/districts/senate/14"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/51"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 723 |
| Bachelor's or higher | 3118 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 14](/us/states/ky/districts/senate/14.md) — 100% (state senate)
- [KY House District 51](/us/states/ky/districts/house/51.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: 53
hispanic: 622
bachelors_plus: 6871
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/2"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/6"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 622 |
| Bachelor's or higher | 6871 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 2](/us/states/ky/districts/senate/2.md) — 100% (state senate)
- [KY House District 6](/us/states/ky/districts/house/6.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: 40
hispanic: 189
bachelors_plus: 1221
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.99
- to: "us/states/wv/districts/01"
rel: in-district
area_weight: 0.01
- to: "us/states/ky/districts/senate/31"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/97"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 189 |
| Bachelor's or higher | 1221 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 99% (congressional)
- [WV-01](/us/states/wv/districts/01.md) — 1% (congressional)
- [KY Senate District 31](/us/states/ky/districts/senate/31.md) — 100% (state senate)
- [KY House District 97](/us/states/ky/districts/house/97.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: 147
hispanic: 402
bachelors_plus: 3444
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/70"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 402 |
| Bachelor's or higher | 3444 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 100% (state senate)
- [KY House District 70](/us/states/ky/districts/house/70.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: 114
hispanic: 2314
bachelors_plus: 19333
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/senate/2"
rel: in-district
area_weight: 0.9991
- to: "us/states/ky/districts/house/1"
rel: in-district
area_weight: 0.5379
- to: "us/states/ky/districts/house/2"
rel: in-district
area_weight: 0.1771
- to: "us/states/ky/districts/house/3"
rel: in-district
area_weight: 0.1582
- to: "us/states/ky/districts/house/6"
rel: in-district
area_weight: 0.1259
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2314 |
| Bachelor's or higher | 19333 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 2](/us/states/ky/districts/senate/2.md) — 100% (state senate)
- [KY House District 1](/us/states/ky/districts/house/1.md) — 54% (state house)
- [KY House District 2](/us/states/ky/districts/house/2.md) — 18% (state house)
- [KY House District 3](/us/states/ky/districts/house/3.md) — 16% (state house)
- [KY House District 6](/us/states/ky/districts/house/6.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 25
hispanic: 375
bachelors_plus: 1432
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/senate/25"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/52"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 375 |
| Bachelor's or higher | 1432 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 25](/us/states/ky/districts/senate/25.md) — 100% (state senate)
- [KY House District 52](/us/states/ky/districts/house/52.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: 15
hispanic: 203
bachelors_plus: 1524
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9966
- to: "us/states/ky/districts/senate/8"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/12"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 203 |
| Bachelor's or higher | 1524 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 8](/us/states/ky/districts/senate/8.md) — 100% (state senate)
- [KY House District 12](/us/states/ky/districts/house/12.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: 88
hispanic: 1280
bachelors_plus: 5701
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9976
- to: "us/states/ky/districts/senate/5"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/house/27"
rel: in-district
area_weight: 0.9982
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1280 |
| Bachelor's or higher | 5701 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 5](/us/states/ky/districts/senate/5.md) — 100% (state senate)
- [KY House District 27](/us/states/ky/districts/house/27.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: 177
bachelors_plus: 953
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9948
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.0052
- to: "us/states/ky/districts/senate/28"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/74"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 177 |
| Bachelor's or higher | 953 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 99% (congressional)
- [KY-06](/us/states/ky/districts/06.md) — 1% (congressional)
- [KY Senate District 28](/us/states/ky/districts/senate/28.md) — 100% (state senate)
- [KY House District 74](/us/states/ky/districts/house/74.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: 43
hispanic: 779
bachelors_plus: 5487
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9983
- to: "us/states/ky/districts/senate/12"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/55"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 779 |
| Bachelor's or higher | 5487 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 12](/us/states/ky/districts/senate/12.md) — 100% (state senate)
- [KY House District 55](/us/states/ky/districts/house/55.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: 10
hispanic: 288
bachelors_plus: 1378
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.9979
- to: "us/states/ky/districts/senate/16"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/house/21"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 288 |
| Bachelor's or higher | 1378 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 16](/us/states/ky/districts/senate/16.md) — 100% (state senate)
- [KY House District 21](/us/states/ky/districts/house/21.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: 8
hispanic: 522
bachelors_plus: 1928
districts:
- to: "us/states/ky/districts/01"
rel: in-district
area_weight: 0.999
- to: "us/states/ky/districts/senate/16"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/21"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 522 |
| Bachelor's or higher | 1928 |
## Districts
- [KY-01](/us/states/ky/districts/01.md) — 100% (congressional)
- [KY Senate District 16](/us/states/ky/districts/senate/16.md) — 100% (state senate)
- [KY House District 21](/us/states/ky/districts/house/21.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: 206
hispanic: 983
bachelors_plus: 5703
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.998
- to: "us/states/ky/districts/senate/28"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/74"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 983 |
| Bachelor's or higher | 5703 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 28](/us/states/ky/districts/senate/28.md) — 100% (state senate)
- [KY House District 74](/us/states/ky/districts/house/74.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: 8
hispanic: 506
bachelors_plus: 2863
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/99"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 506 |
| Bachelor's or higher | 2863 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 99](/us/states/ky/districts/house/99.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: 34
hispanic: 626
bachelors_plus: 4712
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.9957
- to: "us/states/ky/districts/senate/3"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/15"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 626 |
| Bachelor's or higher | 4712 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 3](/us/states/ky/districts/senate/3.md) — 100% (state senate)
- [KY House District 15](/us/states/ky/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: 26
hispanic: 1397
bachelors_plus: 10966
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 0.5076
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.4875
- to: "us/states/ky/districts/senate/14"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/50"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1397 |
| Bachelor's or higher | 10966 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 51% (congressional)
- [KY-04](/us/states/ky/districts/04.md) — 49% (congressional)
- [KY Senate District 14](/us/states/ky/districts/senate/14.md) — 100% (state senate)
- [KY House District 50](/us/states/ky/districts/house/50.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: 16
hispanic: 80
bachelors_plus: 750
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9945
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.0055
- to: "us/states/ky/districts/senate/27"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/house/72"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 80 |
| Bachelor's or higher | 750 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 99% (congressional)
- [KY-04](/us/states/ky/districts/04.md) — 1% (congressional)
- [KY Senate District 27](/us/states/ky/districts/senate/27.md) — 100% (state senate)
- [KY House District 72](/us/states/ky/districts/house/72.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: 93
hispanic: 1131
bachelors_plus: 3147
districts:
- to: "us/states/ky/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/5"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/14"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1131 |
| Bachelor's or higher | 3147 |
## Districts
- [KY-02](/us/states/ky/districts/02.md) — 100% (congressional)
- [KY Senate District 5](/us/states/ky/districts/senate/5.md) — 100% (state senate)
- [KY House District 14](/us/states/ky/districts/house/14.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: 97
hispanic: 3466
bachelors_plus: 30810
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/senate/6"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/59"
rel: in-district
area_weight: 0.8561
- to: "us/states/ky/districts/house/33"
rel: in-district
area_weight: 0.114
- to: "us/states/ky/districts/house/48"
rel: in-district
area_weight: 0.0295
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 3466 |
| Bachelor's or higher | 30810 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 6](/us/states/ky/districts/senate/6.md) — 100% (state senate)
- [KY House District 59](/us/states/ky/districts/house/59.md) — 86% (state house)
- [KY House District 33](/us/states/ky/districts/house/33.md) — 11% (state house)
- [KY House District 48](/us/states/ky/districts/house/48.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 11
hispanic: 292
bachelors_plus: 1859
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 0.9987
- to: "us/states/ky/districts/senate/20"
rel: in-district
area_weight: 0.9997
- to: "us/states/ky/districts/house/47"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 292 |
| Bachelor's or higher | 1859 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 20](/us/states/ky/districts/senate/20.md) — 100% (state senate)
- [KY House District 47](/us/states/ky/districts/house/47.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: 0
hispanic: 3
bachelors_plus: 273
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/25"
rel: in-district
area_weight: 0.9993
- to: "us/states/ky/districts/house/84"
rel: in-district
area_weight: 0.9992
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 3 |
| Bachelor's or higher | 273 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 25](/us/states/ky/districts/senate/25.md) — 100% (state senate)
- [KY House District 84](/us/states/ky/districts/house/84.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: 8
hispanic: 237
bachelors_plus: 2019
districts:
- to: "us/states/ky/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/24"
rel: in-district
area_weight: 0.9998
- to: "us/states/ky/districts/house/78"
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 237 |
| Bachelor's or higher | 2019 |
## Districts
- [KY-04](/us/states/ky/districts/04.md) — 100% (congressional)
- [KY Senate District 24](/us/states/ky/districts/senate/24.md) — 100% (state senate)
- [KY House District 78](/us/states/ky/districts/house/78.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: 34
hispanic: 67
bachelors_plus: 4497
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 1.0
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9995
- to: "us/states/ky/districts/house/84"
rel: in-district
area_weight: 0.9991
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 67 |
| Bachelor's or higher | 4497 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 84](/us/states/ky/districts/house/84.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: 39
hispanic: 712
bachelors_plus: 10515
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9968
- to: "us/states/ky/districts/senate/31"
rel: in-district
area_weight: 0.9992
- to: "us/states/ky/districts/house/94"
rel: in-district
area_weight: 0.3642
- to: "us/states/ky/districts/house/97"
rel: in-district
area_weight: 0.3015
- to: "us/states/ky/districts/house/92"
rel: in-district
area_weight: 0.2743
- to: "us/states/ky/districts/house/95"
rel: in-district
area_weight: 0.0593
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 712 |
| Bachelor's or higher | 10515 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 31](/us/states/ky/districts/senate/31.md) — 100% (state senate)
- [KY House District 94](/us/states/ky/districts/house/94.md) — 36% (state house)
- [KY House District 97](/us/states/ky/districts/house/97.md) — 30% (state house)
- [KY House District 92](/us/states/ky/districts/house/92.md) — 27% (state house)
- [KY House District 95](/us/states/ky/districts/house/95.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 19
hispanic: 214
bachelors_plus: 1706
districts:
- to: "us/states/ky/districts/06"
rel: in-district
area_weight: 0.9978
- to: "us/states/ky/districts/senate/30"
rel: in-district
area_weight: 0.9994
- to: "us/states/ky/districts/house/91"
rel: in-district
area_weight: 0.9994
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 214 |
| Bachelor's or higher | 1706 |
## Districts
- [KY-06](/us/states/ky/districts/06.md) — 100% (congressional)
- [KY Senate District 30](/us/states/ky/districts/senate/30.md) — 100% (state senate)
- [KY House District 91](/us/states/ky/districts/house/91.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 106
hispanic: 2040
bachelors_plus: 12108
districts:
- to: "us/states/ky/districts/05"
rel: in-district
area_weight: 0.9999
- to: "us/states/ky/districts/senate/15"
rel: in-district
area_weight: 0.9996
- to: "us/states/ky/districts/house/85"
rel: in-district
area_weight: 0.4444
- to: "us/states/ky/districts/house/83"
rel: in-district
area_weight: 0.2817
- to: "us/states/ky/districts/house/71"
rel: in-district
area_weight: 0.167
- to: "us/states/ky/districts/house/52"
rel: in-district
area_weight: 0.083
- to: "us/states/ky/districts/house/80"
rel: in-district
area_weight: 0.0237
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, ky]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2040 |
| Bachelor's or higher | 12108 |
## Districts
- [KY-05](/us/states/ky/districts/05.md) — 100% (congressional)
- [KY Senate District 15](/us/states/ky/districts/senate/15.md) — 100% (state senate)
- [KY House District 85](/us/states/ky/districts/house/85.md) — 44% (state house)
- [KY House District 83](/us/states/ky/districts/house/83.md) — 28% (state house)
- [KY House District 71](/us/states/ky/districts/house/71.md) — 17% (state house)
- [KY House District 52](/us/states/ky/districts/house/52.md) — 8% (state house)
- [KY House District 80](/us/states/ky/districts/house/80.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries

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