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:
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 165
|
||||
hispanic: 1729
|
||||
bachelors_plus: 4604
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/79"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1729 |
|
||||
| Bachelor's or higher | 4604 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 19](/us/states/in/districts/senate/19.md) — 100% (state senate)
|
||||
- [IN House District 79](/us/states/in/districts/house/79.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,45 @@ demographics:
|
||||
race_native: 2233
|
||||
hispanic: 35389
|
||||
bachelors_plus: 108333
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/14"
|
||||
rel: in-district
|
||||
area_weight: 0.5277
|
||||
- to: "us/states/in/districts/senate/16"
|
||||
rel: in-district
|
||||
area_weight: 0.2167
|
||||
- to: "us/states/in/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.1329
|
||||
- to: "us/states/in/districts/senate/15"
|
||||
rel: in-district
|
||||
area_weight: 0.1227
|
||||
- to: "us/states/in/districts/house/85"
|
||||
rel: in-district
|
||||
area_weight: 0.6146
|
||||
- to: "us/states/in/districts/house/81"
|
||||
rel: in-district
|
||||
area_weight: 0.1988
|
||||
- to: "us/states/in/districts/house/83"
|
||||
rel: in-district
|
||||
area_weight: 0.0595
|
||||
- to: "us/states/in/districts/house/84"
|
||||
rel: in-district
|
||||
area_weight: 0.0494
|
||||
- to: "us/states/in/districts/house/80"
|
||||
rel: in-district
|
||||
area_weight: 0.0397
|
||||
- to: "us/states/in/districts/house/82"
|
||||
rel: in-district
|
||||
area_weight: 0.0375
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 35389 |
|
||||
| Bachelor's or higher | 108333 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 14](/us/states/in/districts/senate/14.md) — 53% (state senate)
|
||||
- [IN Senate District 16](/us/states/in/districts/senate/16.md) — 22% (state senate)
|
||||
- [IN Senate District 19](/us/states/in/districts/senate/19.md) — 13% (state senate)
|
||||
- [IN Senate District 15](/us/states/in/districts/senate/15.md) — 12% (state senate)
|
||||
- [IN House District 85](/us/states/in/districts/house/85.md) — 61% (state house)
|
||||
- [IN House District 81](/us/states/in/districts/house/81.md) — 20% (state house)
|
||||
- [IN House District 83](/us/states/in/districts/house/83.md) — 6% (state house)
|
||||
- [IN House District 84](/us/states/in/districts/house/84.md) — 5% (state house)
|
||||
- [IN House District 80](/us/states/in/districts/house/80.md) — 4% (state house)
|
||||
- [IN House District 82](/us/states/in/districts/house/82.md) — 4% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 70
|
||||
hispanic: 7710
|
||||
bachelors_plus: 27388
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.7296
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.2704
|
||||
- to: "us/states/in/districts/senate/41"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/59"
|
||||
rel: in-district
|
||||
area_weight: 0.5407
|
||||
- to: "us/states/in/districts/house/73"
|
||||
rel: in-district
|
||||
area_weight: 0.4089
|
||||
- to: "us/states/in/districts/house/69"
|
||||
rel: in-district
|
||||
area_weight: 0.0503
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7710 |
|
||||
| Bachelor's or higher | 27388 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 73% (congressional)
|
||||
- [IN-09](/us/states/in/districts/09.md) — 27% (congressional)
|
||||
- [IN Senate District 41](/us/states/in/districts/senate/41.md) — 100% (state senate)
|
||||
- [IN House District 59](/us/states/in/districts/house/59.md) — 54% (state house)
|
||||
- [IN House District 73](/us/states/in/districts/house/73.md) — 41% (state house)
|
||||
- [IN House District 69](/us/states/in/districts/house/69.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 52
|
||||
hispanic: 638
|
||||
bachelors_plus: 1348
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/6"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/13"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 638 |
|
||||
| Bachelor's or higher | 1348 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 6](/us/states/in/districts/senate/6.md) — 100% (state senate)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.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: 283
|
||||
bachelors_plus: 1602
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/house/33"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 283 |
|
||||
| Bachelor's or higher | 1602 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 19](/us/states/in/districts/senate/19.md) — 100% (state senate)
|
||||
- [IN House District 33](/us/states/in/districts/house/33.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: 18
|
||||
hispanic: 3234
|
||||
bachelors_plus: 36353
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.9477
|
||||
- to: "us/states/in/districts/senate/29"
|
||||
rel: in-district
|
||||
area_weight: 0.0522
|
||||
- to: "us/states/in/districts/house/41"
|
||||
rel: in-district
|
||||
area_weight: 0.4307
|
||||
- to: "us/states/in/districts/house/25"
|
||||
rel: in-district
|
||||
area_weight: 0.231
|
||||
- to: "us/states/in/districts/house/28"
|
||||
rel: in-district
|
||||
area_weight: 0.1702
|
||||
- to: "us/states/in/districts/house/24"
|
||||
rel: in-district
|
||||
area_weight: 0.1681
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3234 |
|
||||
| Bachelor's or higher | 36353 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 7](/us/states/in/districts/senate/7.md) — 95% (state senate)
|
||||
- [IN Senate District 29](/us/states/in/districts/senate/29.md) — 5% (state senate)
|
||||
- [IN House District 41](/us/states/in/districts/house/41.md) — 43% (state house)
|
||||
- [IN House District 25](/us/states/in/districts/house/25.md) — 23% (state house)
|
||||
- [IN House District 28](/us/states/in/districts/house/28.md) — 17% (state house)
|
||||
- [IN House District 24](/us/states/in/districts/house/24.md) — 17% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 145
|
||||
hispanic: 304
|
||||
bachelors_plus: 4608
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/62"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
- field: districts
|
||||
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
|
||||
confidence: official
|
||||
tags: [jurisdiction, county, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 304 |
|
||||
| Bachelor's or higher | 4608 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 44](/us/states/in/districts/senate/44.md) — 100% (state senate)
|
||||
- [IN House District 62](/us/states/in/districts/house/62.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 96
|
||||
hispanic: 942
|
||||
bachelors_plus: 3334
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/22"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/38"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 942 |
|
||||
| Bachelor's or higher | 3334 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 22](/us/states/in/districts/senate/22.md) — 100% (state senate)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.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: 263
|
||||
hispanic: 7000
|
||||
bachelors_plus: 5878
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.5744
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.4256
|
||||
- to: "us/states/in/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/23"
|
||||
rel: in-district
|
||||
area_weight: 0.8409
|
||||
- to: "us/states/in/districts/house/38"
|
||||
rel: in-district
|
||||
area_weight: 0.1591
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7000 |
|
||||
| Bachelor's or higher | 5878 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 57% (congressional)
|
||||
- [IN-04](/us/states/in/districts/04.md) — 43% (congressional)
|
||||
- [IN Senate District 18](/us/states/in/districts/senate/18.md) — 100% (state senate)
|
||||
- [IN House District 23](/us/states/in/districts/house/23.md) — 84% (state house)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.md) — 16% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 429
|
||||
hispanic: 8547
|
||||
bachelors_plus: 32186
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9983
|
||||
- to: "us/states/in/districts/senate/45"
|
||||
rel: in-district
|
||||
area_weight: 0.9989
|
||||
- to: "us/states/in/districts/house/66"
|
||||
rel: in-district
|
||||
area_weight: 0.7254
|
||||
- to: "us/states/in/districts/house/70"
|
||||
rel: in-district
|
||||
area_weight: 0.1748
|
||||
- to: "us/states/in/districts/house/71"
|
||||
rel: in-district
|
||||
area_weight: 0.0988
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 8547 |
|
||||
| Bachelor's or higher | 32186 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 45](/us/states/in/districts/senate/45.md) — 100% (state senate)
|
||||
- [IN House District 66](/us/states/in/districts/house/66.md) — 73% (state house)
|
||||
- [IN House District 70](/us/states/in/districts/house/70.md) — 17% (state house)
|
||||
- [IN House District 71](/us/states/in/districts/house/71.md) — 10% (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: 523
|
||||
bachelors_plus: 4929
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/46"
|
||||
rel: in-district
|
||||
area_weight: 0.6
|
||||
- to: "us/states/in/districts/house/42"
|
||||
rel: in-district
|
||||
area_weight: 0.3999
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 523 |
|
||||
| Bachelor's or higher | 4929 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 38](/us/states/in/districts/senate/38.md) — 100% (state senate)
|
||||
- [IN House District 46](/us/states/in/districts/house/46.md) — 60% (state house)
|
||||
- [IN House District 42](/us/states/in/districts/house/42.md) — 40% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 30
|
||||
hispanic: 6415
|
||||
bachelors_plus: 4617
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/41"
|
||||
rel: in-district
|
||||
area_weight: 0.646
|
||||
- to: "us/states/in/districts/house/38"
|
||||
rel: in-district
|
||||
area_weight: 0.354
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 6415 |
|
||||
| Bachelor's or higher | 4617 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 7](/us/states/in/districts/senate/7.md) — 100% (state senate)
|
||||
- [IN House District 41](/us/states/in/districts/house/41.md) — 65% (state house)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.md) — 35% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 8
|
||||
hispanic: 167
|
||||
bachelors_plus: 1162
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9924
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.0067
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9991
|
||||
- to: "us/states/in/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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 167 |
|
||||
| Bachelor's or higher | 1162 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 99% (congressional)
|
||||
- [IN-09](/us/states/in/districts/09.md) — 1% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 74](/us/states/in/districts/house/74.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: 66
|
||||
hispanic: 2193
|
||||
bachelors_plus: 4329
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/63"
|
||||
rel: in-district
|
||||
area_weight: 0.8343
|
||||
- to: "us/states/in/districts/house/45"
|
||||
rel: in-district
|
||||
area_weight: 0.1656
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2193 |
|
||||
| Bachelor's or higher | 4329 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 100% (state senate)
|
||||
- [IN House District 63](/us/states/in/districts/house/63.md) — 83% (state house)
|
||||
- [IN House District 45](/us/states/in/districts/house/45.md) — 17% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 60
|
||||
hispanic: 795
|
||||
bachelors_plus: 12352
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9992
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/68"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 795 |
|
||||
| Bachelor's or higher | 12352 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 100% (state senate)
|
||||
- [IN House District 68](/us/states/in/districts/house/68.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: 77
|
||||
hispanic: 667
|
||||
bachelors_plus: 4576
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9994
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/73"
|
||||
rel: in-district
|
||||
area_weight: 0.5484
|
||||
- to: "us/states/in/districts/house/55"
|
||||
rel: in-district
|
||||
area_weight: 0.2556
|
||||
- to: "us/states/in/districts/house/67"
|
||||
rel: in-district
|
||||
area_weight: 0.1959
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 667 |
|
||||
| Bachelor's or higher | 4576 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 100% (state senate)
|
||||
- [IN House District 73](/us/states/in/districts/house/73.md) — 55% (state house)
|
||||
- [IN House District 55](/us/states/in/districts/house/55.md) — 26% (state house)
|
||||
- [IN House District 67](/us/states/in/districts/house/67.md) — 20% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 24
|
||||
hispanic: 1347
|
||||
bachelors_plus: 7828
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/14"
|
||||
rel: in-district
|
||||
area_weight: 0.7051
|
||||
- to: "us/states/in/districts/senate/13"
|
||||
rel: in-district
|
||||
area_weight: 0.2949
|
||||
- to: "us/states/in/districts/house/52"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1347 |
|
||||
| Bachelor's or higher | 7828 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 14](/us/states/in/districts/senate/14.md) — 71% (state senate)
|
||||
- [IN Senate District 13](/us/states/in/districts/senate/13.md) — 29% (state senate)
|
||||
- [IN House District 52](/us/states/in/districts/house/52.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: 172
|
||||
hispanic: 3657
|
||||
bachelors_plus: 26275
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/26"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/35"
|
||||
rel: in-district
|
||||
area_weight: 0.5064
|
||||
- to: "us/states/in/districts/house/33"
|
||||
rel: in-district
|
||||
area_weight: 0.39
|
||||
- to: "us/states/in/districts/house/34"
|
||||
rel: in-district
|
||||
area_weight: 0.1035
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3657 |
|
||||
| Bachelor's or higher | 26275 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 100% (congressional)
|
||||
- [IN Senate District 26](/us/states/in/districts/senate/26.md) — 100% (state senate)
|
||||
- [IN House District 35](/us/states/in/districts/house/35.md) — 51% (state house)
|
||||
- [IN House District 33](/us/states/in/districts/house/33.md) — 39% (state house)
|
||||
- [IN House District 34](/us/states/in/districts/house/34.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 33
|
||||
hispanic: 4372
|
||||
bachelors_plus: 9828
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/63"
|
||||
rel: in-district
|
||||
area_weight: 0.5108
|
||||
- to: "us/states/in/districts/house/74"
|
||||
rel: in-district
|
||||
area_weight: 0.4891
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 4372 |
|
||||
| Bachelor's or higher | 9828 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 63](/us/states/in/districts/house/63.md) — 51% (state house)
|
||||
- [IN House District 74](/us/states/in/districts/house/74.md) — 49% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,36 @@ demographics:
|
||||
race_native: 1349
|
||||
hispanic: 41619
|
||||
bachelors_plus: 36070
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/senate/12"
|
||||
rel: in-district
|
||||
area_weight: 0.5299
|
||||
- to: "us/states/in/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.2686
|
||||
- to: "us/states/in/districts/senate/11"
|
||||
rel: in-district
|
||||
area_weight: 0.2013
|
||||
- to: "us/states/in/districts/house/49"
|
||||
rel: in-district
|
||||
area_weight: 0.3583
|
||||
- to: "us/states/in/districts/house/21"
|
||||
rel: in-district
|
||||
area_weight: 0.3111
|
||||
- to: "us/states/in/districts/house/48"
|
||||
rel: in-district
|
||||
area_weight: 0.1699
|
||||
- to: "us/states/in/districts/house/18"
|
||||
rel: in-district
|
||||
area_weight: 0.1604
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 41619 |
|
||||
| Bachelor's or higher | 36070 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 12](/us/states/in/districts/senate/12.md) — 53% (state senate)
|
||||
- [IN Senate District 9](/us/states/in/districts/senate/9.md) — 27% (state senate)
|
||||
- [IN Senate District 11](/us/states/in/districts/senate/11.md) — 20% (state senate)
|
||||
- [IN House District 49](/us/states/in/districts/house/49.md) — 36% (state house)
|
||||
- [IN House District 21](/us/states/in/districts/house/21.md) — 31% (state house)
|
||||
- [IN House District 48](/us/states/in/districts/house/48.md) — 17% (state house)
|
||||
- [IN House District 18](/us/states/in/districts/house/18.md) — 16% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 33
|
||||
hispanic: 318
|
||||
bachelors_plus: 3315
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/house/55"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 318 |
|
||||
| Bachelor's or higher | 3315 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 100% (state senate)
|
||||
- [IN House District 55](/us/states/in/districts/house/55.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: 162
|
||||
hispanic: 3453
|
||||
bachelors_plus: 25333
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9985
|
||||
- to: "us/states/in/districts/senate/47"
|
||||
rel: in-district
|
||||
area_weight: 0.9416
|
||||
- to: "us/states/in/districts/senate/45"
|
||||
rel: in-district
|
||||
area_weight: 0.0581
|
||||
- to: "us/states/in/districts/house/72"
|
||||
rel: in-district
|
||||
area_weight: 0.6559
|
||||
- to: "us/states/in/districts/house/70"
|
||||
rel: in-district
|
||||
area_weight: 0.3397
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 3453 |
|
||||
| Bachelor's or higher | 25333 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 47](/us/states/in/districts/senate/47.md) — 94% (state senate)
|
||||
- [IN Senate District 45](/us/states/in/districts/senate/45.md) — 6% (state senate)
|
||||
- [IN House District 72](/us/states/in/districts/house/72.md) — 66% (state house)
|
||||
- [IN House District 70](/us/states/in/districts/house/70.md) — 34% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 9
|
||||
hispanic: 501
|
||||
bachelors_plus: 2390
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.5489
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.4511
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.815
|
||||
- to: "us/states/in/districts/house/42"
|
||||
rel: in-district
|
||||
area_weight: 0.185
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 501 |
|
||||
| Bachelor's or higher | 2390 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 55% (congressional)
|
||||
- [IN-04](/us/states/in/districts/04.md) — 45% (congressional)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 100% (state senate)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 82% (state house)
|
||||
- [IN House District 42](/us/states/in/districts/house/42.md) — 18% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 8
|
||||
hispanic: 270
|
||||
bachelors_plus: 4058
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9991
|
||||
- to: "us/states/in/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.5183
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.4817
|
||||
- to: "us/states/in/districts/house/55"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
- field: districts
|
||||
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
|
||||
confidence: official
|
||||
tags: [jurisdiction, county, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 270 |
|
||||
| Bachelor's or higher | 4058 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 27](/us/states/in/districts/senate/27.md) — 52% (state senate)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 48% (state senate)
|
||||
- [IN House District 55](/us/states/in/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: 19
|
||||
hispanic: 1108
|
||||
bachelors_plus: 3240
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/17"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1108 |
|
||||
| Bachelor's or higher | 3240 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 18](/us/states/in/districts/senate/18.md) — 100% (state senate)
|
||||
- [IN House District 17](/us/states/in/districts/house/17.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: 11
|
||||
hispanic: 767
|
||||
bachelors_plus: 5383
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9992
|
||||
- to: "us/states/in/districts/house/64"
|
||||
rel: in-district
|
||||
area_weight: 0.8384
|
||||
- to: "us/states/in/districts/house/75"
|
||||
rel: in-district
|
||||
area_weight: 0.1611
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 767 |
|
||||
| Bachelor's or higher | 5383 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 64](/us/states/in/districts/house/64.md) — 84% (state house)
|
||||
- [IN House District 75](/us/states/in/districts/house/75.md) — 16% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 359
|
||||
hispanic: 3674
|
||||
bachelors_plus: 12399
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/senate/17"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/31"
|
||||
rel: in-district
|
||||
area_weight: 0.9417
|
||||
- to: "us/states/in/districts/house/30"
|
||||
rel: in-district
|
||||
area_weight: 0.0581
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3674 |
|
||||
| Bachelor's or higher | 12399 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 100% (congressional)
|
||||
- [IN Senate District 17](/us/states/in/districts/senate/17.md) — 100% (state senate)
|
||||
- [IN House District 31](/us/states/in/districts/house/31.md) — 94% (state house)
|
||||
- [IN House District 30](/us/states/in/districts/house/30.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: 26
|
||||
hispanic: 649
|
||||
bachelors_plus: 4690
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/45"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 649 |
|
||||
| Bachelor's or higher | 4690 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 100% (state senate)
|
||||
- [IN House District 45](/us/states/in/districts/house/45.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,48 @@ demographics:
|
||||
race_native: 341
|
||||
hispanic: 20577
|
||||
bachelors_plus: 207834
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/20"
|
||||
rel: in-district
|
||||
area_weight: 0.3418
|
||||
- to: "us/states/in/districts/senate/21"
|
||||
rel: in-district
|
||||
area_weight: 0.2593
|
||||
- to: "us/states/in/districts/senate/25"
|
||||
rel: in-district
|
||||
area_weight: 0.204
|
||||
- to: "us/states/in/districts/senate/31"
|
||||
rel: in-district
|
||||
area_weight: 0.1276
|
||||
- to: "us/states/in/districts/senate/29"
|
||||
rel: in-district
|
||||
area_weight: 0.0672
|
||||
- to: "us/states/in/districts/house/37"
|
||||
rel: in-district
|
||||
area_weight: 0.4251
|
||||
- to: "us/states/in/districts/house/24"
|
||||
rel: in-district
|
||||
area_weight: 0.2782
|
||||
- to: "us/states/in/districts/house/29"
|
||||
rel: in-district
|
||||
area_weight: 0.1239
|
||||
- to: "us/states/in/districts/house/32"
|
||||
rel: in-district
|
||||
area_weight: 0.0761
|
||||
- to: "us/states/in/districts/house/39"
|
||||
rel: in-district
|
||||
area_weight: 0.07
|
||||
- to: "us/states/in/districts/house/88"
|
||||
rel: in-district
|
||||
area_weight: 0.0265
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +95,22 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 20577 |
|
||||
| Bachelor's or higher | 207834 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 100% (congressional)
|
||||
- [IN Senate District 20](/us/states/in/districts/senate/20.md) — 34% (state senate)
|
||||
- [IN Senate District 21](/us/states/in/districts/senate/21.md) — 26% (state senate)
|
||||
- [IN Senate District 25](/us/states/in/districts/senate/25.md) — 20% (state senate)
|
||||
- [IN Senate District 31](/us/states/in/districts/senate/31.md) — 13% (state senate)
|
||||
- [IN Senate District 29](/us/states/in/districts/senate/29.md) — 7% (state senate)
|
||||
- [IN House District 37](/us/states/in/districts/house/37.md) — 43% (state house)
|
||||
- [IN House District 24](/us/states/in/districts/house/24.md) — 28% (state house)
|
||||
- [IN House District 29](/us/states/in/districts/house/29.md) — 12% (state house)
|
||||
- [IN House District 32](/us/states/in/districts/house/32.md) — 8% (state house)
|
||||
- [IN House District 39](/us/states/in/districts/house/39.md) — 7% (state house)
|
||||
- [IN House District 88](/us/states/in/districts/house/88.md) — 3% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 73
|
||||
hispanic: 2952
|
||||
bachelors_plus: 27147
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/28"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/53"
|
||||
rel: in-district
|
||||
area_weight: 0.6663
|
||||
- to: "us/states/in/districts/house/88"
|
||||
rel: in-district
|
||||
area_weight: 0.2364
|
||||
- to: "us/states/in/districts/house/54"
|
||||
rel: in-district
|
||||
area_weight: 0.0971
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2952 |
|
||||
| Bachelor's or higher | 27147 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 28](/us/states/in/districts/senate/28.md) — 100% (state senate)
|
||||
- [IN House District 53](/us/states/in/districts/house/53.md) — 67% (state house)
|
||||
- [IN House District 88](/us/states/in/districts/house/88.md) — 24% (state house)
|
||||
- [IN House District 54](/us/states/in/districts/house/54.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 321
|
||||
hispanic: 961
|
||||
bachelors_plus: 8150
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9945
|
||||
- to: "us/states/in/districts/senate/47"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/in/districts/house/70"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 961 |
|
||||
| Bachelor's or higher | 8150 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 99% (congressional)
|
||||
- [IN Senate District 47](/us/states/in/districts/senate/47.md) — 100% (state senate)
|
||||
- [IN House District 70](/us/states/in/districts/house/70.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: 518
|
||||
hispanic: 9546
|
||||
bachelors_plus: 66079
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/24"
|
||||
rel: in-district
|
||||
area_weight: 0.4903
|
||||
- to: "us/states/in/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.3011
|
||||
- to: "us/states/in/districts/senate/35"
|
||||
rel: in-district
|
||||
area_weight: 0.2085
|
||||
- to: "us/states/in/districts/house/28"
|
||||
rel: in-district
|
||||
area_weight: 0.7398
|
||||
- to: "us/states/in/districts/house/40"
|
||||
rel: in-district
|
||||
area_weight: 0.1061
|
||||
- to: "us/states/in/districts/house/25"
|
||||
rel: in-district
|
||||
area_weight: 0.0849
|
||||
- to: "us/states/in/districts/house/57"
|
||||
rel: in-district
|
||||
area_weight: 0.069
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 9546 |
|
||||
| Bachelor's or higher | 66079 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 24](/us/states/in/districts/senate/24.md) — 49% (state senate)
|
||||
- [IN Senate District 7](/us/states/in/districts/senate/7.md) — 30% (state senate)
|
||||
- [IN Senate District 35](/us/states/in/districts/senate/35.md) — 21% (state senate)
|
||||
- [IN House District 28](/us/states/in/districts/house/28.md) — 74% (state house)
|
||||
- [IN House District 40](/us/states/in/districts/house/40.md) — 11% (state house)
|
||||
- [IN House District 25](/us/states/in/districts/house/25.md) — 8% (state house)
|
||||
- [IN House District 57](/us/states/in/districts/house/57.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 43
|
||||
hispanic: 1113
|
||||
bachelors_plus: 8278
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/54"
|
||||
rel: in-district
|
||||
area_weight: 0.8948
|
||||
- to: "us/states/in/districts/house/56"
|
||||
rel: in-district
|
||||
area_weight: 0.0545
|
||||
- to: "us/states/in/districts/house/33"
|
||||
rel: in-district
|
||||
area_weight: 0.0505
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1113 |
|
||||
| Bachelor's or higher | 8278 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 27](/us/states/in/districts/senate/27.md) — 100% (state senate)
|
||||
- [IN House District 54](/us/states/in/districts/house/54.md) — 89% (state house)
|
||||
- [IN House District 56](/us/states/in/districts/house/56.md) — 5% (state house)
|
||||
- [IN House District 33](/us/states/in/districts/house/33.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 46
|
||||
hispanic: 3438
|
||||
bachelors_plus: 16136
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9611
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.0389
|
||||
- to: "us/states/in/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 0.6897
|
||||
- to: "us/states/in/districts/senate/21"
|
||||
rel: in-district
|
||||
area_weight: 0.3102
|
||||
- to: "us/states/in/districts/house/30"
|
||||
rel: in-district
|
||||
area_weight: 0.5778
|
||||
- to: "us/states/in/districts/house/38"
|
||||
rel: in-district
|
||||
area_weight: 0.4221
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3438 |
|
||||
| Bachelor's or higher | 16136 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 96% (congressional)
|
||||
- [IN-04](/us/states/in/districts/04.md) — 4% (congressional)
|
||||
- [IN Senate District 18](/us/states/in/districts/senate/18.md) — 69% (state senate)
|
||||
- [IN Senate District 21](/us/states/in/districts/senate/21.md) — 31% (state senate)
|
||||
- [IN House District 30](/us/states/in/districts/house/30.md) — 58% (state house)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.md) — 42% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 64
|
||||
hispanic: 1164
|
||||
bachelors_plus: 7261
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9994
|
||||
- to: "us/states/in/districts/senate/17"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/50"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1164 |
|
||||
| Bachelor's or higher | 7261 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 17](/us/states/in/districts/senate/17.md) — 100% (state senate)
|
||||
- [IN House District 50](/us/states/in/districts/house/50.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: 1005
|
||||
hispanic: 6707
|
||||
bachelors_plus: 8074
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/house/69"
|
||||
rel: in-district
|
||||
area_weight: 0.6678
|
||||
- to: "us/states/in/districts/house/62"
|
||||
rel: in-district
|
||||
area_weight: 0.2505
|
||||
- to: "us/states/in/districts/house/65"
|
||||
rel: in-district
|
||||
area_weight: 0.0816
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 6707 |
|
||||
| Bachelor's or higher | 8074 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 44](/us/states/in/districts/senate/44.md) — 100% (state senate)
|
||||
- [IN House District 69](/us/states/in/districts/house/69.md) — 67% (state house)
|
||||
- [IN House District 62](/us/states/in/districts/house/62.md) — 25% (state house)
|
||||
- [IN House District 65](/us/states/in/districts/house/65.md) — 8% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 15
|
||||
hispanic: 2526
|
||||
bachelors_plus: 5881
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/6"
|
||||
rel: in-district
|
||||
area_weight: 0.5014
|
||||
- to: "us/states/in/districts/senate/5"
|
||||
rel: in-district
|
||||
area_weight: 0.4985
|
||||
- to: "us/states/in/districts/house/16"
|
||||
rel: in-district
|
||||
area_weight: 0.7431
|
||||
- to: "us/states/in/districts/house/11"
|
||||
rel: in-district
|
||||
area_weight: 0.1639
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.093
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2526 |
|
||||
| Bachelor's or higher | 5881 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 6](/us/states/in/districts/senate/6.md) — 50% (state senate)
|
||||
- [IN Senate District 5](/us/states/in/districts/senate/5.md) — 50% (state senate)
|
||||
- [IN House District 16](/us/states/in/districts/house/16.md) — 74% (state house)
|
||||
- [IN House District 11](/us/states/in/districts/house/11.md) — 16% (state house)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 9% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 12
|
||||
hispanic: 922
|
||||
bachelors_plus: 2463
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/33"
|
||||
rel: in-district
|
||||
area_weight: 0.6707
|
||||
- to: "us/states/in/districts/house/79"
|
||||
rel: in-district
|
||||
area_weight: 0.3292
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 922 |
|
||||
| Bachelor's or higher | 2463 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 19](/us/states/in/districts/senate/19.md) — 100% (state senate)
|
||||
- [IN House District 33](/us/states/in/districts/house/33.md) — 67% (state house)
|
||||
- [IN House District 79](/us/states/in/districts/house/79.md) — 33% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 60
|
||||
hispanic: 1148
|
||||
bachelors_plus: 6623
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/house/67"
|
||||
rel: in-district
|
||||
area_weight: 0.7472
|
||||
- to: "us/states/in/districts/house/66"
|
||||
rel: in-district
|
||||
area_weight: 0.1557
|
||||
- to: "us/states/in/districts/house/68"
|
||||
rel: in-district
|
||||
area_weight: 0.0966
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
- field: districts
|
||||
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
|
||||
confidence: official
|
||||
tags: [jurisdiction, county, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1148 |
|
||||
| Bachelor's or higher | 6623 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 100% (state senate)
|
||||
- [IN House District 67](/us/states/in/districts/house/67.md) — 75% (state house)
|
||||
- [IN House District 66](/us/states/in/districts/house/66.md) — 16% (state house)
|
||||
- [IN House District 68](/us/states/in/districts/house/68.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 93
|
||||
hispanic: 957
|
||||
bachelors_plus: 3792
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.5378
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.4621
|
||||
- to: "us/states/in/districts/house/67"
|
||||
rel: in-district
|
||||
area_weight: 0.8504
|
||||
- to: "us/states/in/districts/house/73"
|
||||
rel: in-district
|
||||
area_weight: 0.1495
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 957 |
|
||||
| Bachelor's or higher | 3792 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 54% (state senate)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 46% (state senate)
|
||||
- [IN House District 67](/us/states/in/districts/house/67.md) — 85% (state house)
|
||||
- [IN House District 73](/us/states/in/districts/house/73.md) — 15% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,39 @@ demographics:
|
||||
race_native: 806
|
||||
hispanic: 7159
|
||||
bachelors_plus: 54213
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/41"
|
||||
rel: in-district
|
||||
area_weight: 0.4622
|
||||
- to: "us/states/in/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.3552
|
||||
- to: "us/states/in/districts/senate/32"
|
||||
rel: in-district
|
||||
area_weight: 0.1537
|
||||
- to: "us/states/in/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.0289
|
||||
- to: "us/states/in/districts/house/47"
|
||||
rel: in-district
|
||||
area_weight: 0.669
|
||||
- to: "us/states/in/districts/house/58"
|
||||
rel: in-district
|
||||
area_weight: 0.2198
|
||||
- to: "us/states/in/districts/house/60"
|
||||
rel: in-district
|
||||
area_weight: 0.0591
|
||||
- to: "us/states/in/districts/house/57"
|
||||
rel: in-district
|
||||
area_weight: 0.0521
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +86,19 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7159 |
|
||||
| Bachelor's or higher | 54213 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 41](/us/states/in/districts/senate/41.md) — 46% (state senate)
|
||||
- [IN Senate District 37](/us/states/in/districts/senate/37.md) — 36% (state senate)
|
||||
- [IN Senate District 32](/us/states/in/districts/senate/32.md) — 15% (state senate)
|
||||
- [IN Senate District 36](/us/states/in/districts/senate/36.md) — 3% (state senate)
|
||||
- [IN House District 47](/us/states/in/districts/house/47.md) — 67% (state house)
|
||||
- [IN House District 58](/us/states/in/districts/house/58.md) — 22% (state house)
|
||||
- [IN House District 60](/us/states/in/districts/house/60.md) — 6% (state house)
|
||||
- [IN House District 57](/us/states/in/districts/house/57.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 20
|
||||
hispanic: 1076
|
||||
bachelors_plus: 6314
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9936
|
||||
- to: "us/states/il/districts/12"
|
||||
rel: in-district
|
||||
area_weight: 0.0064
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.9994
|
||||
- to: "us/states/in/districts/house/64"
|
||||
rel: in-district
|
||||
area_weight: 0.5977
|
||||
- to: "us/states/in/districts/house/45"
|
||||
rel: in-district
|
||||
area_weight: 0.4016
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1076 |
|
||||
| Bachelor's or higher | 6314 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 99% (congressional)
|
||||
- [IL-12](/us/states/il/districts/12.md) — 1% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 100% (state senate)
|
||||
- [IN House District 64](/us/states/in/districts/house/64.md) — 60% (state house)
|
||||
- [IN House District 45](/us/states/in/districts/house/45.md) — 40% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 30
|
||||
hispanic: 7818
|
||||
bachelors_plus: 18146
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.8082
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.1918
|
||||
- to: "us/states/in/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 0.5041
|
||||
- to: "us/states/in/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.4958
|
||||
- to: "us/states/in/districts/house/22"
|
||||
rel: in-district
|
||||
area_weight: 0.8726
|
||||
- to: "us/states/in/districts/house/18"
|
||||
rel: in-district
|
||||
area_weight: 0.1274
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7818 |
|
||||
| Bachelor's or higher | 18146 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 81% (congressional)
|
||||
- [IN-03](/us/states/in/districts/03.md) — 19% (congressional)
|
||||
- [IN Senate District 18](/us/states/in/districts/senate/18.md) — 50% (state senate)
|
||||
- [IN Senate District 9](/us/states/in/districts/senate/9.md) — 50% (state senate)
|
||||
- [IN House District 22](/us/states/in/districts/house/22.md) — 87% (state house)
|
||||
- [IN House District 18](/us/states/in/districts/house/18.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: 54
|
||||
hispanic: 1845
|
||||
bachelors_plus: 3694
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/13"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/51"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1845 |
|
||||
| Bachelor's or higher | 3694 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 13](/us/states/in/districts/senate/13.md) — 100% (state senate)
|
||||
- [IN House District 51](/us/states/in/districts/house/51.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,51 @@ demographics:
|
||||
race_native: 2582
|
||||
hispanic: 104584
|
||||
bachelors_plus: 117510
|
||||
districts:
|
||||
- to: "us/states/in/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.8033
|
||||
- to: "us/states/in/districts/senate/6"
|
||||
rel: in-district
|
||||
area_weight: 0.4329
|
||||
- to: "us/states/in/districts/senate/3"
|
||||
rel: in-district
|
||||
area_weight: 0.1836
|
||||
- to: "us/states/in/districts/senate/1"
|
||||
rel: in-district
|
||||
area_weight: 0.1104
|
||||
- to: "us/states/in/districts/senate/2"
|
||||
rel: in-district
|
||||
area_weight: 0.077
|
||||
- to: "us/states/in/districts/house/11"
|
||||
rel: in-district
|
||||
area_weight: 0.306
|
||||
- to: "us/states/in/districts/house/19"
|
||||
rel: in-district
|
||||
area_weight: 0.1453
|
||||
- to: "us/states/in/districts/house/3"
|
||||
rel: in-district
|
||||
area_weight: 0.0819
|
||||
- to: "us/states/in/districts/house/15"
|
||||
rel: in-district
|
||||
area_weight: 0.0724
|
||||
- to: "us/states/in/districts/house/2"
|
||||
rel: in-district
|
||||
area_weight: 0.0637
|
||||
- to: "us/states/in/districts/house/14"
|
||||
rel: in-district
|
||||
area_weight: 0.0605
|
||||
- to: "us/states/in/districts/house/12"
|
||||
rel: in-district
|
||||
area_weight: 0.0396
|
||||
- to: "us/states/in/districts/house/1"
|
||||
rel: in-district
|
||||
area_weight: 0.0346
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +98,23 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 104584 |
|
||||
| Bachelor's or higher | 117510 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-01](/us/states/in/districts/01.md) — 80% (congressional)
|
||||
- [IN Senate District 6](/us/states/in/districts/senate/6.md) — 43% (state senate)
|
||||
- [IN Senate District 3](/us/states/in/districts/senate/3.md) — 18% (state senate)
|
||||
- [IN Senate District 1](/us/states/in/districts/senate/1.md) — 11% (state senate)
|
||||
- [IN Senate District 2](/us/states/in/districts/senate/2.md) — 8% (state senate)
|
||||
- [IN House District 11](/us/states/in/districts/house/11.md) — 31% (state house)
|
||||
- [IN House District 19](/us/states/in/districts/house/19.md) — 15% (state house)
|
||||
- [IN House District 3](/us/states/in/districts/house/3.md) — 8% (state house)
|
||||
- [IN House District 15](/us/states/in/districts/house/15.md) — 7% (state house)
|
||||
- [IN House District 2](/us/states/in/districts/house/2.md) — 6% (state house)
|
||||
- [IN House District 14](/us/states/in/districts/house/14.md) — 6% (state house)
|
||||
- [IN House District 12](/us/states/in/districts/house/12.md) — 4% (state house)
|
||||
- [IN House District 1](/us/states/in/districts/house/1.md) — 3% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,33 @@ demographics:
|
||||
race_native: 234
|
||||
hispanic: 8498
|
||||
bachelors_plus: 24005
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.6773
|
||||
- to: "us/states/in/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.3079
|
||||
- to: "us/states/in/districts/senate/8"
|
||||
rel: in-district
|
||||
area_weight: 0.8505
|
||||
- to: "us/states/in/districts/senate/4"
|
||||
rel: in-district
|
||||
area_weight: 0.1341
|
||||
- to: "us/states/in/districts/house/20"
|
||||
rel: in-district
|
||||
area_weight: 0.7747
|
||||
- to: "us/states/in/districts/house/9"
|
||||
rel: in-district
|
||||
area_weight: 0.1877
|
||||
- to: "us/states/in/districts/house/7"
|
||||
rel: in-district
|
||||
area_weight: 0.0223
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 8498 |
|
||||
| Bachelor's or higher | 24005 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 68% (congressional)
|
||||
- [IN-01](/us/states/in/districts/01.md) — 31% (congressional)
|
||||
- [IN Senate District 8](/us/states/in/districts/senate/8.md) — 85% (state senate)
|
||||
- [IN Senate District 4](/us/states/in/districts/senate/4.md) — 13% (state senate)
|
||||
- [IN House District 20](/us/states/in/districts/house/20.md) — 77% (state house)
|
||||
- [IN House District 9](/us/states/in/districts/house/9.md) — 19% (state house)
|
||||
- [IN House District 7](/us/states/in/districts/house/7.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: 27
|
||||
hispanic: 900
|
||||
bachelors_plus: 9148
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/65"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 900 |
|
||||
| Bachelor's or higher | 9148 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 44](/us/states/in/districts/senate/44.md) — 100% (state senate)
|
||||
- [IN House District 65](/us/states/in/districts/house/65.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: 321
|
||||
hispanic: 7102
|
||||
bachelors_plus: 25405
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/senate/25"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/35"
|
||||
rel: in-district
|
||||
area_weight: 0.4763
|
||||
- to: "us/states/in/districts/house/36"
|
||||
rel: in-district
|
||||
area_weight: 0.2023
|
||||
- to: "us/states/in/districts/house/31"
|
||||
rel: in-district
|
||||
area_weight: 0.1751
|
||||
- to: "us/states/in/districts/house/53"
|
||||
rel: in-district
|
||||
area_weight: 0.0931
|
||||
- to: "us/states/in/districts/house/88"
|
||||
rel: in-district
|
||||
area_weight: 0.0531
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7102 |
|
||||
| Bachelor's or higher | 25405 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 100% (congressional)
|
||||
- [IN Senate District 25](/us/states/in/districts/senate/25.md) — 100% (state senate)
|
||||
- [IN House District 35](/us/states/in/districts/house/35.md) — 48% (state house)
|
||||
- [IN House District 36](/us/states/in/districts/house/36.md) — 20% (state house)
|
||||
- [IN House District 31](/us/states/in/districts/house/31.md) — 18% (state house)
|
||||
- [IN House District 53](/us/states/in/districts/house/53.md) — 9% (state house)
|
||||
- [IN House District 88](/us/states/in/districts/house/88.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,96 @@ demographics:
|
||||
race_native: 5651
|
||||
hispanic: 134243
|
||||
bachelors_plus: 303489
|
||||
districts:
|
||||
- to: "us/states/in/districts/07"
|
||||
rel: in-district
|
||||
area_weight: 0.7018
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.298
|
||||
- to: "us/states/in/districts/senate/32"
|
||||
rel: in-district
|
||||
area_weight: 0.1618
|
||||
- to: "us/states/in/districts/senate/35"
|
||||
rel: in-district
|
||||
area_weight: 0.1475
|
||||
- to: "us/states/in/districts/senate/30"
|
||||
rel: in-district
|
||||
area_weight: 0.1403
|
||||
- to: "us/states/in/districts/senate/34"
|
||||
rel: in-district
|
||||
area_weight: 0.1193
|
||||
- to: "us/states/in/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.1058
|
||||
- to: "us/states/in/districts/senate/46"
|
||||
rel: in-district
|
||||
area_weight: 0.0921
|
||||
- to: "us/states/in/districts/senate/33"
|
||||
rel: in-district
|
||||
area_weight: 0.0896
|
||||
- to: "us/states/in/districts/senate/29"
|
||||
rel: in-district
|
||||
area_weight: 0.0838
|
||||
- to: "us/states/in/districts/senate/31"
|
||||
rel: in-district
|
||||
area_weight: 0.0376
|
||||
- to: "us/states/in/districts/senate/28"
|
||||
rel: in-district
|
||||
area_weight: 0.0221
|
||||
- to: "us/states/in/districts/house/91"
|
||||
rel: in-district
|
||||
area_weight: 0.1413
|
||||
- to: "us/states/in/districts/house/90"
|
||||
rel: in-district
|
||||
area_weight: 0.1012
|
||||
- to: "us/states/in/districts/house/89"
|
||||
rel: in-district
|
||||
area_weight: 0.0927
|
||||
- to: "us/states/in/districts/house/86"
|
||||
rel: in-district
|
||||
area_weight: 0.0843
|
||||
- to: "us/states/in/districts/house/87"
|
||||
rel: in-district
|
||||
area_weight: 0.0827
|
||||
- to: "us/states/in/districts/house/92"
|
||||
rel: in-district
|
||||
area_weight: 0.0724
|
||||
- to: "us/states/in/districts/house/97"
|
||||
rel: in-district
|
||||
area_weight: 0.0658
|
||||
- to: "us/states/in/districts/house/93"
|
||||
rel: in-district
|
||||
area_weight: 0.0525
|
||||
- to: "us/states/in/districts/house/98"
|
||||
rel: in-district
|
||||
area_weight: 0.0507
|
||||
- to: "us/states/in/districts/house/95"
|
||||
rel: in-district
|
||||
area_weight: 0.0506
|
||||
- to: "us/states/in/districts/house/96"
|
||||
rel: in-district
|
||||
area_weight: 0.0493
|
||||
- to: "us/states/in/districts/house/99"
|
||||
rel: in-district
|
||||
area_weight: 0.0475
|
||||
- to: "us/states/in/districts/house/94"
|
||||
rel: in-district
|
||||
area_weight: 0.0417
|
||||
- to: "us/states/in/districts/house/100"
|
||||
rel: in-district
|
||||
area_weight: 0.0379
|
||||
- to: "us/states/in/districts/house/88"
|
||||
rel: in-district
|
||||
area_weight: 0.0202
|
||||
- to: "us/states/in/districts/house/32"
|
||||
rel: in-district
|
||||
area_weight: 0.0089
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +143,38 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 134243 |
|
||||
| Bachelor's or higher | 303489 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-07](/us/states/in/districts/07.md) — 70% (congressional)
|
||||
- [IN-06](/us/states/in/districts/06.md) — 30% (congressional)
|
||||
- [IN Senate District 32](/us/states/in/districts/senate/32.md) — 16% (state senate)
|
||||
- [IN Senate District 35](/us/states/in/districts/senate/35.md) — 15% (state senate)
|
||||
- [IN Senate District 30](/us/states/in/districts/senate/30.md) — 14% (state senate)
|
||||
- [IN Senate District 34](/us/states/in/districts/senate/34.md) — 12% (state senate)
|
||||
- [IN Senate District 36](/us/states/in/districts/senate/36.md) — 11% (state senate)
|
||||
- [IN Senate District 46](/us/states/in/districts/senate/46.md) — 9% (state senate)
|
||||
- [IN Senate District 33](/us/states/in/districts/senate/33.md) — 9% (state senate)
|
||||
- [IN Senate District 29](/us/states/in/districts/senate/29.md) — 8% (state senate)
|
||||
- [IN Senate District 31](/us/states/in/districts/senate/31.md) — 4% (state senate)
|
||||
- [IN Senate District 28](/us/states/in/districts/senate/28.md) — 2% (state senate)
|
||||
- [IN House District 91](/us/states/in/districts/house/91.md) — 14% (state house)
|
||||
- [IN House District 90](/us/states/in/districts/house/90.md) — 10% (state house)
|
||||
- [IN House District 89](/us/states/in/districts/house/89.md) — 9% (state house)
|
||||
- [IN House District 86](/us/states/in/districts/house/86.md) — 8% (state house)
|
||||
- [IN House District 87](/us/states/in/districts/house/87.md) — 8% (state house)
|
||||
- [IN House District 92](/us/states/in/districts/house/92.md) — 7% (state house)
|
||||
- [IN House District 97](/us/states/in/districts/house/97.md) — 7% (state house)
|
||||
- [IN House District 93](/us/states/in/districts/house/93.md) — 5% (state house)
|
||||
- [IN House District 98](/us/states/in/districts/house/98.md) — 5% (state house)
|
||||
- [IN House District 95](/us/states/in/districts/house/95.md) — 5% (state house)
|
||||
- [IN House District 96](/us/states/in/districts/house/96.md) — 5% (state house)
|
||||
- [IN House District 99](/us/states/in/districts/house/99.md) — 5% (state house)
|
||||
- [IN House District 94](/us/states/in/districts/house/94.md) — 4% (state house)
|
||||
- [IN House District 100](/us/states/in/districts/house/100.md) — 4% (state house)
|
||||
- [IN House District 88](/us/states/in/districts/house/88.md) — 2% (state house)
|
||||
- [IN House District 32](/us/states/in/districts/house/32.md) — 1% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 120
|
||||
hispanic: 5506
|
||||
bachelors_plus: 8675
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/8"
|
||||
rel: in-district
|
||||
area_weight: 0.8616
|
||||
- to: "us/states/in/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.1383
|
||||
- to: "us/states/in/districts/house/17"
|
||||
rel: in-district
|
||||
area_weight: 0.9767
|
||||
- to: "us/states/in/districts/house/7"
|
||||
rel: in-district
|
||||
area_weight: 0.0232
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 5506 |
|
||||
| Bachelor's or higher | 8675 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 8](/us/states/in/districts/senate/8.md) — 86% (state senate)
|
||||
- [IN Senate District 9](/us/states/in/districts/senate/9.md) — 14% (state senate)
|
||||
- [IN House District 17](/us/states/in/districts/house/17.md) — 98% (state house)
|
||||
- [IN House District 7](/us/states/in/districts/house/7.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: 3
|
||||
hispanic: 142
|
||||
bachelors_plus: 1183
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/63"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 142 |
|
||||
| Bachelor's or higher | 1183 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 100% (state senate)
|
||||
- [IN House District 63](/us/states/in/districts/house/63.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: 98
|
||||
hispanic: 1327
|
||||
bachelors_plus: 5303
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/23"
|
||||
rel: in-district
|
||||
area_weight: 0.9376
|
||||
- to: "us/states/in/districts/house/50"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1327 |
|
||||
| Bachelor's or higher | 5303 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 18](/us/states/in/districts/senate/18.md) — 100% (state senate)
|
||||
- [IN House District 23](/us/states/in/districts/house/23.md) — 94% (state house)
|
||||
- [IN House District 50](/us/states/in/districts/house/50.md) — 6% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,33 @@ demographics:
|
||||
race_native: 219
|
||||
hispanic: 6736
|
||||
bachelors_plus: 62538
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9991
|
||||
- to: "us/states/in/districts/senate/40"
|
||||
rel: in-district
|
||||
area_weight: 0.7193
|
||||
- to: "us/states/in/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 0.2806
|
||||
- to: "us/states/in/districts/house/62"
|
||||
rel: in-district
|
||||
area_weight: 0.6077
|
||||
- to: "us/states/in/districts/house/46"
|
||||
rel: in-district
|
||||
area_weight: 0.1748
|
||||
- to: "us/states/in/districts/house/60"
|
||||
rel: in-district
|
||||
area_weight: 0.1682
|
||||
- to: "us/states/in/districts/house/61"
|
||||
rel: in-district
|
||||
area_weight: 0.0493
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 6736 |
|
||||
| Bachelor's or higher | 62538 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 40](/us/states/in/districts/senate/40.md) — 72% (state senate)
|
||||
- [IN Senate District 44](/us/states/in/districts/senate/44.md) — 28% (state senate)
|
||||
- [IN House District 62](/us/states/in/districts/house/62.md) — 61% (state house)
|
||||
- [IN House District 46](/us/states/in/districts/house/46.md) — 17% (state house)
|
||||
- [IN House District 60](/us/states/in/districts/house/60.md) — 17% (state house)
|
||||
- [IN House District 61](/us/states/in/districts/house/61.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,33 @@ demographics:
|
||||
race_native: 40
|
||||
hispanic: 2367
|
||||
bachelors_plus: 7241
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.6517
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.3482
|
||||
- to: "us/states/in/districts/house/44"
|
||||
rel: in-district
|
||||
area_weight: 0.6053
|
||||
- to: "us/states/in/districts/house/28"
|
||||
rel: in-district
|
||||
area_weight: 0.2209
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.1066
|
||||
- to: "us/states/in/districts/house/41"
|
||||
rel: in-district
|
||||
area_weight: 0.0671
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2367 |
|
||||
| Bachelor's or higher | 7241 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 7](/us/states/in/districts/senate/7.md) — 65% (state senate)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 35% (state senate)
|
||||
- [IN House District 44](/us/states/in/districts/house/44.md) — 61% (state house)
|
||||
- [IN House District 28](/us/states/in/districts/house/28.md) — 22% (state house)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 11% (state house)
|
||||
- [IN House District 41](/us/states/in/districts/house/41.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 14
|
||||
hispanic: 1560
|
||||
bachelors_plus: 14133
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/60"
|
||||
rel: in-district
|
||||
area_weight: 0.9107
|
||||
- to: "us/states/in/districts/house/57"
|
||||
rel: in-district
|
||||
area_weight: 0.0891
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1560 |
|
||||
| Bachelor's or higher | 14133 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 37](/us/states/in/districts/senate/37.md) — 100% (state senate)
|
||||
- [IN House District 60](/us/states/in/districts/house/60.md) — 91% (state house)
|
||||
- [IN House District 57](/us/states/in/districts/house/57.md) — 9% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 22
|
||||
hispanic: 1173
|
||||
bachelors_plus: 2018
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9991
|
||||
- to: "us/states/in/districts/senate/6"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/11"
|
||||
rel: in-district
|
||||
area_weight: 0.8005
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.1995
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1173 |
|
||||
| Bachelor's or higher | 2018 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 6](/us/states/in/districts/senate/6.md) — 100% (state senate)
|
||||
- [IN House District 11](/us/states/in/districts/house/11.md) — 80% (state house)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 20% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 26
|
||||
hispanic: 5374
|
||||
bachelors_plus: 8179
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/13"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/18"
|
||||
rel: in-district
|
||||
area_weight: 0.8268
|
||||
- to: "us/states/in/districts/house/52"
|
||||
rel: in-district
|
||||
area_weight: 0.1731
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 5374 |
|
||||
| Bachelor's or higher | 8179 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 13](/us/states/in/districts/senate/13.md) — 100% (state senate)
|
||||
- [IN House District 18](/us/states/in/districts/house/18.md) — 83% (state house)
|
||||
- [IN House District 52](/us/states/in/districts/house/52.md) — 17% (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: 112
|
||||
bachelors_plus: 1009
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9986
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/in/districts/house/68"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 112 |
|
||||
| Bachelor's or higher | 1009 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 100% (state senate)
|
||||
- [IN House District 68](/us/states/in/districts/house/68.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: 18
|
||||
hispanic: 360
|
||||
bachelors_plus: 2928
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/65"
|
||||
rel: in-district
|
||||
area_weight: 0.7902
|
||||
- to: "us/states/in/districts/house/74"
|
||||
rel: in-district
|
||||
area_weight: 0.2098
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 360 |
|
||||
| Bachelor's or higher | 2928 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 44](/us/states/in/districts/senate/44.md) — 100% (state senate)
|
||||
- [IN House District 65](/us/states/in/districts/house/65.md) — 79% (state house)
|
||||
- [IN House District 74](/us/states/in/districts/house/74.md) — 21% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 9
|
||||
hispanic: 333
|
||||
bachelors_plus: 3516
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.5224
|
||||
- to: "us/states/in/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.4775
|
||||
- to: "us/states/in/districts/house/46"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 333 |
|
||||
| Bachelor's or higher | 3516 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 52% (state senate)
|
||||
- [IN Senate District 37](/us/states/in/districts/senate/37.md) — 48% (state senate)
|
||||
- [IN House District 46](/us/states/in/districts/house/46.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: 125
|
||||
bachelors_plus: 2515
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/42"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 125 |
|
||||
| Bachelor's or higher | 2515 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 100% (state senate)
|
||||
- [IN House District 42](/us/states/in/districts/house/42.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: 60
|
||||
hispanic: 302
|
||||
bachelors_plus: 2958
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 302 |
|
||||
| Bachelor's or higher | 2958 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 74](/us/states/in/districts/house/74.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: 113
|
||||
hispanic: 138
|
||||
bachelors_plus: 1796
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/75"
|
||||
rel: in-district
|
||||
area_weight: 0.7802
|
||||
- to: "us/states/in/districts/house/63"
|
||||
rel: in-district
|
||||
area_weight: 0.2197
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 138 |
|
||||
| Bachelor's or higher | 1796 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 75](/us/states/in/districts/house/75.md) — 78% (state house)
|
||||
- [IN House District 63](/us/states/in/districts/house/63.md) — 22% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,36 @@ demographics:
|
||||
race_native: 202
|
||||
hispanic: 20367
|
||||
bachelors_plus: 52232
|
||||
districts:
|
||||
- to: "us/states/in/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.8036
|
||||
- to: "us/states/in/districts/senate/5"
|
||||
rel: in-district
|
||||
area_weight: 0.5225
|
||||
- to: "us/states/in/districts/senate/4"
|
||||
rel: in-district
|
||||
area_weight: 0.2815
|
||||
- to: "us/states/in/districts/house/4"
|
||||
rel: in-district
|
||||
area_weight: 0.3461
|
||||
- to: "us/states/in/districts/house/9"
|
||||
rel: in-district
|
||||
area_weight: 0.142
|
||||
- to: "us/states/in/districts/house/10"
|
||||
rel: in-district
|
||||
area_weight: 0.1395
|
||||
- to: "us/states/in/districts/house/19"
|
||||
rel: in-district
|
||||
area_weight: 0.1227
|
||||
- to: "us/states/in/districts/house/11"
|
||||
rel: in-district
|
||||
area_weight: 0.0537
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 20367 |
|
||||
| Bachelor's or higher | 52232 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-01](/us/states/in/districts/01.md) — 80% (congressional)
|
||||
- [IN Senate District 5](/us/states/in/districts/senate/5.md) — 52% (state senate)
|
||||
- [IN Senate District 4](/us/states/in/districts/senate/4.md) — 28% (state senate)
|
||||
- [IN House District 4](/us/states/in/districts/house/4.md) — 35% (state house)
|
||||
- [IN House District 9](/us/states/in/districts/house/9.md) — 14% (state house)
|
||||
- [IN House District 10](/us/states/in/districts/house/10.md) — 14% (state house)
|
||||
- [IN House District 19](/us/states/in/districts/house/19.md) — 12% (state house)
|
||||
- [IN House District 11](/us/states/in/districts/house/11.md) — 5% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 20
|
||||
hispanic: 386
|
||||
bachelors_plus: 6188
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9958
|
||||
- to: "us/states/in/districts/senate/49"
|
||||
rel: in-district
|
||||
area_weight: 0.9987
|
||||
- to: "us/states/in/districts/house/76"
|
||||
rel: in-district
|
||||
area_weight: 0.9987
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 386 |
|
||||
| Bachelor's or higher | 6188 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 49](/us/states/in/districts/senate/49.md) — 100% (state senate)
|
||||
- [IN House District 76](/us/states/in/districts/house/76.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: 7
|
||||
hispanic: 526
|
||||
bachelors_plus: 1614
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/5"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/16"
|
||||
rel: in-district
|
||||
area_weight: 0.7598
|
||||
- to: "us/states/in/districts/house/17"
|
||||
rel: in-district
|
||||
area_weight: 0.2401
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 526 |
|
||||
| Bachelor's or higher | 1614 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 5](/us/states/in/districts/senate/5.md) — 100% (state senate)
|
||||
- [IN House District 16](/us/states/in/districts/house/16.md) — 76% (state house)
|
||||
- [IN House District 17](/us/states/in/districts/house/17.md) — 24% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 33
|
||||
hispanic: 839
|
||||
bachelors_plus: 6805
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/24"
|
||||
rel: in-district
|
||||
area_weight: 0.6493
|
||||
- to: "us/states/in/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.3507
|
||||
- to: "us/states/in/districts/house/44"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 839 |
|
||||
| Bachelor's or higher | 6805 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 24](/us/states/in/districts/senate/24.md) — 65% (state senate)
|
||||
- [IN Senate District 37](/us/states/in/districts/senate/37.md) — 35% (state senate)
|
||||
- [IN House District 44](/us/states/in/districts/house/44.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: 75
|
||||
hispanic: 1287
|
||||
bachelors_plus: 3478
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.5506
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.4487
|
||||
- to: "us/states/in/districts/senate/26"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/33"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1287 |
|
||||
| Bachelor's or higher | 3478 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 55% (congressional)
|
||||
- [IN-03](/us/states/in/districts/03.md) — 45% (congressional)
|
||||
- [IN Senate District 26](/us/states/in/districts/senate/26.md) — 100% (state senate)
|
||||
- [IN House District 33](/us/states/in/districts/house/33.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: 7
|
||||
hispanic: 577
|
||||
bachelors_plus: 5913
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/67"
|
||||
rel: in-district
|
||||
area_weight: 0.8439
|
||||
- to: "us/states/in/districts/house/55"
|
||||
rel: in-district
|
||||
area_weight: 0.156
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 577 |
|
||||
| Bachelor's or higher | 5913 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 100% (state senate)
|
||||
- [IN House District 67](/us/states/in/districts/house/67.md) — 84% (state house)
|
||||
- [IN House District 55](/us/states/in/districts/house/55.md) — 16% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 0
|
||||
hispanic: 321
|
||||
bachelors_plus: 2998
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/house/54"
|
||||
rel: in-district
|
||||
area_weight: 0.9304
|
||||
- to: "us/states/in/districts/house/55"
|
||||
rel: in-district
|
||||
area_weight: 0.0696
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 321 |
|
||||
| Bachelor's or higher | 2998 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 100% (state senate)
|
||||
- [IN House District 54](/us/states/in/districts/house/54.md) — 93% (state house)
|
||||
- [IN House District 55](/us/states/in/districts/house/55.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 2
|
||||
hispanic: 644
|
||||
bachelors_plus: 2957
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/69"
|
||||
rel: in-district
|
||||
area_weight: 0.5304
|
||||
- to: "us/states/in/districts/house/66"
|
||||
rel: in-district
|
||||
area_weight: 0.4693
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 644 |
|
||||
| Bachelor's or higher | 2957 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 100% (state senate)
|
||||
- [IN House District 69](/us/states/in/districts/house/69.md) — 53% (state house)
|
||||
- [IN House District 66](/us/states/in/districts/house/66.md) — 47% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 67
|
||||
hispanic: 2549
|
||||
bachelors_plus: 9260
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.6019
|
||||
- to: "us/states/in/districts/senate/28"
|
||||
rel: in-district
|
||||
area_weight: 0.3979
|
||||
- to: "us/states/in/districts/house/47"
|
||||
rel: in-district
|
||||
area_weight: 0.501
|
||||
- to: "us/states/in/districts/house/73"
|
||||
rel: in-district
|
||||
area_weight: 0.4325
|
||||
- to: "us/states/in/districts/house/54"
|
||||
rel: in-district
|
||||
area_weight: 0.0664
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2549 |
|
||||
| Bachelor's or higher | 9260 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 42](/us/states/in/districts/senate/42.md) — 60% (state senate)
|
||||
- [IN Senate District 28](/us/states/in/districts/senate/28.md) — 40% (state senate)
|
||||
- [IN House District 47](/us/states/in/districts/house/47.md) — 50% (state house)
|
||||
- [IN House District 73](/us/states/in/districts/house/73.md) — 43% (state house)
|
||||
- [IN House District 54](/us/states/in/districts/house/54.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 31
|
||||
hispanic: 721
|
||||
bachelors_plus: 4319
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9985
|
||||
- to: "us/states/in/districts/senate/48"
|
||||
rel: in-district
|
||||
area_weight: 0.9994
|
||||
- to: "us/states/in/districts/house/74"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 721 |
|
||||
| Bachelor's or higher | 4319 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 48](/us/states/in/districts/senate/48.md) — 100% (state senate)
|
||||
- [IN House District 74](/us/states/in/districts/house/74.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: 736
|
||||
hispanic: 28786
|
||||
bachelors_plus: 83784
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/10"
|
||||
rel: in-district
|
||||
area_weight: 0.4256
|
||||
- to: "us/states/in/districts/senate/8"
|
||||
rel: in-district
|
||||
area_weight: 0.2343
|
||||
- to: "us/states/in/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.2153
|
||||
- to: "us/states/in/districts/senate/11"
|
||||
rel: in-district
|
||||
area_weight: 0.1243
|
||||
- to: "us/states/in/districts/house/7"
|
||||
rel: in-district
|
||||
area_weight: 0.7029
|
||||
- to: "us/states/in/districts/house/8"
|
||||
rel: in-district
|
||||
area_weight: 0.1248
|
||||
- to: "us/states/in/districts/house/5"
|
||||
rel: in-district
|
||||
area_weight: 0.0973
|
||||
- to: "us/states/in/districts/house/6"
|
||||
rel: in-district
|
||||
area_weight: 0.0394
|
||||
- to: "us/states/in/districts/house/21"
|
||||
rel: in-district
|
||||
area_weight: 0.0349
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +89,20 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 28786 |
|
||||
| Bachelor's or higher | 83784 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 10](/us/states/in/districts/senate/10.md) — 43% (state senate)
|
||||
- [IN Senate District 8](/us/states/in/districts/senate/8.md) — 23% (state senate)
|
||||
- [IN Senate District 9](/us/states/in/districts/senate/9.md) — 22% (state senate)
|
||||
- [IN Senate District 11](/us/states/in/districts/senate/11.md) — 12% (state senate)
|
||||
- [IN House District 7](/us/states/in/districts/house/7.md) — 70% (state house)
|
||||
- [IN House District 8](/us/states/in/districts/house/8.md) — 12% (state house)
|
||||
- [IN House District 5](/us/states/in/districts/house/5.md) — 10% (state house)
|
||||
- [IN House District 6](/us/states/in/districts/house/6.md) — 4% (state house)
|
||||
- [IN House District 21](/us/states/in/districts/house/21.md) — 3% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 81
|
||||
hispanic: 1016
|
||||
bachelors_plus: 2687
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/8"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/16"
|
||||
rel: in-district
|
||||
area_weight: 0.6382
|
||||
- to: "us/states/in/districts/house/20"
|
||||
rel: in-district
|
||||
area_weight: 0.3618
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1016 |
|
||||
| Bachelor's or higher | 2687 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 8](/us/states/in/districts/senate/8.md) — 100% (state senate)
|
||||
- [IN House District 16](/us/states/in/districts/house/16.md) — 64% (state house)
|
||||
- [IN House District 20](/us/states/in/districts/house/20.md) — 36% (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: 1547
|
||||
bachelors_plus: 8384
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/13"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/51"
|
||||
rel: in-district
|
||||
area_weight: 0.6682
|
||||
- to: "us/states/in/districts/house/52"
|
||||
rel: in-district
|
||||
area_weight: 0.3315
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1547 |
|
||||
| Bachelor's or higher | 8384 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 13](/us/states/in/districts/senate/13.md) — 100% (state senate)
|
||||
- [IN House District 51](/us/states/in/districts/house/51.md) — 67% (state house)
|
||||
- [IN House District 52](/us/states/in/districts/house/52.md) — 33% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 17
|
||||
hispanic: 393
|
||||
bachelors_plus: 2849
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9926
|
||||
- to: "us/states/il/districts/12"
|
||||
rel: in-district
|
||||
area_weight: 0.0074
|
||||
- to: "us/states/in/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.8249
|
||||
- to: "us/states/in/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.1748
|
||||
- to: "us/states/in/districts/house/45"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 393 |
|
||||
| Bachelor's or higher | 2849 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 99% (congressional)
|
||||
- [IL-12](/us/states/il/districts/12.md) — 1% (congressional)
|
||||
- [IN Senate District 39](/us/states/in/districts/senate/39.md) — 82% (state senate)
|
||||
- [IN Senate District 38](/us/states/in/districts/senate/38.md) — 17% (state senate)
|
||||
- [IN House District 45](/us/states/in/districts/house/45.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: 26
|
||||
hispanic: 61
|
||||
bachelors_plus: 781
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9989
|
||||
- to: "us/states/in/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.9988
|
||||
- to: "us/states/in/districts/house/68"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 61 |
|
||||
| Bachelor's or higher | 781 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 43](/us/states/in/districts/senate/43.md) — 100% (state senate)
|
||||
- [IN House District 68](/us/states/in/districts/house/68.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: 228
|
||||
hispanic: 19548
|
||||
bachelors_plus: 61258
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/22"
|
||||
rel: in-district
|
||||
area_weight: 0.5299
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.4699
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.4518
|
||||
- to: "us/states/in/districts/house/41"
|
||||
rel: in-district
|
||||
area_weight: 0.2513
|
||||
- to: "us/states/in/districts/house/26"
|
||||
rel: in-district
|
||||
area_weight: 0.1181
|
||||
- to: "us/states/in/districts/house/38"
|
||||
rel: in-district
|
||||
area_weight: 0.1103
|
||||
- to: "us/states/in/districts/house/27"
|
||||
rel: in-district
|
||||
area_weight: 0.0683
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 19548 |
|
||||
| Bachelor's or higher | 61258 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 22](/us/states/in/districts/senate/22.md) — 53% (state senate)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 47% (state senate)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 45% (state house)
|
||||
- [IN House District 41](/us/states/in/districts/house/41.md) — 25% (state house)
|
||||
- [IN House District 26](/us/states/in/districts/house/26.md) — 12% (state house)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.md) — 11% (state house)
|
||||
- [IN House District 27](/us/states/in/districts/house/27.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 32
|
||||
hispanic: 499
|
||||
bachelors_plus: 3468
|
||||
districts:
|
||||
- to: "us/states/in/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/21"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/38"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 499 |
|
||||
| Bachelor's or higher | 3468 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-05](/us/states/in/districts/05.md) — 100% (congressional)
|
||||
- [IN Senate District 21](/us/states/in/districts/senate/21.md) — 100% (state senate)
|
||||
- [IN House District 38](/us/states/in/districts/house/38.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 4
|
||||
hispanic: 178
|
||||
bachelors_plus: 1186
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/55"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 178 |
|
||||
| Bachelor's or higher | 1186 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 27](/us/states/in/districts/senate/27.md) — 100% (state senate)
|
||||
- [IN House District 55](/us/states/in/districts/house/55.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: 445
|
||||
hispanic: 6830
|
||||
bachelors_plus: 46203
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9946
|
||||
- to: "us/states/ky/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.0054
|
||||
- to: "us/states/in/districts/senate/49"
|
||||
rel: in-district
|
||||
area_weight: 0.7899
|
||||
- to: "us/states/in/districts/senate/50"
|
||||
rel: in-district
|
||||
area_weight: 0.2093
|
||||
- to: "us/states/in/districts/house/76"
|
||||
rel: in-district
|
||||
area_weight: 0.3827
|
||||
- to: "us/states/in/districts/house/64"
|
||||
rel: in-district
|
||||
area_weight: 0.3014
|
||||
- to: "us/states/in/districts/house/78"
|
||||
rel: in-district
|
||||
area_weight: 0.1896
|
||||
- to: "us/states/in/districts/house/77"
|
||||
rel: in-district
|
||||
area_weight: 0.1254
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 6830 |
|
||||
| Bachelor's or higher | 46203 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 99% (congressional)
|
||||
- [KY-01](/us/states/ky/districts/01.md) — 1% (congressional)
|
||||
- [IN Senate District 49](/us/states/in/districts/senate/49.md) — 79% (state senate)
|
||||
- [IN Senate District 50](/us/states/in/districts/senate/50.md) — 21% (state senate)
|
||||
- [IN House District 76](/us/states/in/districts/house/76.md) — 38% (state house)
|
||||
- [IN House District 64](/us/states/in/districts/house/64.md) — 30% (state house)
|
||||
- [IN House District 78](/us/states/in/districts/house/78.md) — 19% (state house)
|
||||
- [IN House District 77](/us/states/in/districts/house/77.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: 17
|
||||
hispanic: 236
|
||||
bachelors_plus: 2479
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/42"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 236 |
|
||||
| Bachelor's or higher | 2479 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 100% (state senate)
|
||||
- [IN House District 42](/us/states/in/districts/house/42.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: 254
|
||||
hispanic: 3411
|
||||
bachelors_plus: 25266
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9976
|
||||
- to: "us/states/in/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/42"
|
||||
rel: in-district
|
||||
area_weight: 0.2729
|
||||
- to: "us/states/in/districts/house/46"
|
||||
rel: in-district
|
||||
area_weight: 0.2576
|
||||
- to: "us/states/in/districts/house/43"
|
||||
rel: in-district
|
||||
area_weight: 0.2458
|
||||
- to: "us/states/in/districts/house/45"
|
||||
rel: in-district
|
||||
area_weight: 0.2236
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3411 |
|
||||
| Bachelor's or higher | 25266 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 38](/us/states/in/districts/senate/38.md) — 100% (state senate)
|
||||
- [IN House District 42](/us/states/in/districts/house/42.md) — 27% (state house)
|
||||
- [IN House District 46](/us/states/in/districts/house/46.md) — 26% (state house)
|
||||
- [IN House District 43](/us/states/in/districts/house/43.md) — 25% (state house)
|
||||
- [IN House District 45](/us/states/in/districts/house/45.md) — 22% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 21
|
||||
hispanic: 982
|
||||
bachelors_plus: 6541
|
||||
districts:
|
||||
- to: "us/states/in/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/17"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/50"
|
||||
rel: in-district
|
||||
area_weight: 0.8691
|
||||
- to: "us/states/in/districts/house/22"
|
||||
rel: in-district
|
||||
area_weight: 0.1308
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 982 |
|
||||
| Bachelor's or higher | 6541 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-02](/us/states/in/districts/02.md) — 100% (congressional)
|
||||
- [IN Senate District 17](/us/states/in/districts/senate/17.md) — 100% (state senate)
|
||||
- [IN House District 50](/us/states/in/districts/house/50.md) — 87% (state house)
|
||||
- [IN House District 22](/us/states/in/districts/house/22.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: 7
|
||||
hispanic: 123
|
||||
bachelors_plus: 1433
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/13"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 123 |
|
||||
| Bachelor's or higher | 1433 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 23](/us/states/in/districts/senate/23.md) — 100% (state senate)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.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: 182
|
||||
hispanic: 1630
|
||||
bachelors_plus: 22168
|
||||
districts:
|
||||
- to: "us/states/in/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/50"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/house/75"
|
||||
rel: in-district
|
||||
area_weight: 0.9803
|
||||
- to: "us/states/in/districts/house/78"
|
||||
rel: in-district
|
||||
area_weight: 0.0192
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1630 |
|
||||
| Bachelor's or higher | 22168 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-08](/us/states/in/districts/08.md) — 100% (congressional)
|
||||
- [IN Senate District 50](/us/states/in/districts/senate/50.md) — 100% (state senate)
|
||||
- [IN House District 75](/us/states/in/districts/house/75.md) — 98% (state house)
|
||||
- [IN House District 78](/us/states/in/districts/house/78.md) — 2% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 3
|
||||
hispanic: 433
|
||||
bachelors_plus: 3638
|
||||
districts:
|
||||
- to: "us/states/in/districts/09"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/senate/47"
|
||||
rel: in-district
|
||||
area_weight: 0.9996
|
||||
- to: "us/states/in/districts/house/69"
|
||||
rel: in-district
|
||||
area_weight: 0.4059
|
||||
- to: "us/states/in/districts/house/70"
|
||||
rel: in-district
|
||||
area_weight: 0.3231
|
||||
- to: "us/states/in/districts/house/65"
|
||||
rel: in-district
|
||||
area_weight: 0.271
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 433 |
|
||||
| Bachelor's or higher | 3638 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-09](/us/states/in/districts/09.md) — 100% (congressional)
|
||||
- [IN Senate District 47](/us/states/in/districts/senate/47.md) — 100% (state senate)
|
||||
- [IN House District 69](/us/states/in/districts/house/69.md) — 41% (state house)
|
||||
- [IN House District 70](/us/states/in/districts/house/70.md) — 32% (state house)
|
||||
- [IN House District 65](/us/states/in/districts/house/65.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: 119
|
||||
hispanic: 2630
|
||||
bachelors_plus: 12752
|
||||
districts:
|
||||
- to: "us/states/in/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.9997
|
||||
- to: "us/states/in/districts/house/56"
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2630 |
|
||||
| Bachelor's or higher | 12752 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-06](/us/states/in/districts/06.md) — 100% (congressional)
|
||||
- [IN Senate District 27](/us/states/in/districts/senate/27.md) — 100% (state senate)
|
||||
- [IN House District 56](/us/states/in/districts/house/56.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: 2
|
||||
hispanic: 1145
|
||||
bachelors_plus: 4955
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 1.0
|
||||
- to: "us/states/in/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.9999
|
||||
- to: "us/states/in/districts/house/79"
|
||||
rel: in-district
|
||||
area_weight: 0.9029
|
||||
- to: "us/states/in/districts/house/50"
|
||||
rel: in-district
|
||||
area_weight: 0.0969
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1145 |
|
||||
| Bachelor's or higher | 4955 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 19](/us/states/in/districts/senate/19.md) — 100% (state senate)
|
||||
- [IN House District 79](/us/states/in/districts/house/79.md) — 90% (state house)
|
||||
- [IN House District 50](/us/states/in/districts/house/50.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 84
|
||||
hispanic: 2657
|
||||
bachelors_plus: 4172
|
||||
districts:
|
||||
- to: "us/states/in/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/senate/5"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/16"
|
||||
rel: in-district
|
||||
area_weight: 0.9301
|
||||
- to: "us/states/in/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.0698
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2657 |
|
||||
| Bachelor's or higher | 4172 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-04](/us/states/in/districts/04.md) — 100% (congressional)
|
||||
- [IN Senate District 5](/us/states/in/districts/senate/5.md) — 100% (state senate)
|
||||
- [IN House District 16](/us/states/in/districts/house/16.md) — 93% (state house)
|
||||
- [IN House District 13](/us/states/in/districts/house/13.md) — 7% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 30
|
||||
hispanic: 964
|
||||
bachelors_plus: 7423
|
||||
districts:
|
||||
- to: "us/states/in/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9995
|
||||
- to: "us/states/in/districts/senate/16"
|
||||
rel: in-district
|
||||
area_weight: 0.9998
|
||||
- to: "us/states/in/districts/house/83"
|
||||
rel: in-district
|
||||
area_weight: 0.5354
|
||||
- to: "us/states/in/districts/house/18"
|
||||
rel: in-district
|
||||
area_weight: 0.4645
|
||||
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, in]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 964 |
|
||||
| Bachelor's or higher | 7423 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [IN-03](/us/states/in/districts/03.md) — 100% (congressional)
|
||||
- [IN Senate District 16](/us/states/in/districts/senate/16.md) — 100% (state senate)
|
||||
- [IN House District 83](/us/states/in/districts/house/83.md) — 54% (state house)
|
||||
- [IN House District 18](/us/states/in/districts/house/18.md) — 46% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 154136
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 127476
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 138696
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 166145
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 222128
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 161824
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 185371
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 130064
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, in]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user