Graph: national county↔district↔legislator authority layer

The first edges in the repo. Every US county now links to the districts it
sits in, weighted by area overlap, and every legislator links to the district
they represent — county → district → representative, traversable.

Data (PostGIS, no Atlas dependency — computed directly from geometry):
- data/county_district_edges.jsonl — 16,328 weighted edges. area_weight =
  ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid
  Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection,
  NOT centroid-in-polygon, so urban districts that carve through counties
  (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not
  silently dropped. Per-county weights sum to ~1.0 per district type.

build.py:
- ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse
  for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate
  (geometry-only). GEOID/number-keyed, stable.
- county index.md gains a `districts:` block (frontmatter) + a ## Districts
  section (body links, so link-integrity checks them).
- legislators + US House members gain `represents:` pointing at their district
  node; edge stored once on the person, inverse left to the view.
- schemas/jurisdiction: classification enum + chamber/districts fields.

Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so
their house districts get nodes (represents resolves) but no county edges;
CD nodes for acs_cd-missing states are demographically sparse.

Deterministic (byte-identical rebuild); validate.py passes 26,617 records,
link-integrity clean (every district/represents link resolves).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -22,9 +22,30 @@ demographics:
race_native: 82
hispanic: 682
bachelors_plus: 2103
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9992
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.584
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.4159
- to: "us/states/ar/districts/house/61"
rel: in-district
area_weight: 0.6122
- to: "us/states/ar/districts/house/62"
rel: in-district
area_weight: 0.3575
- to: "us/states/ar/districts/house/65"
rel: in-district
area_weight: 0.0303
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 682 |
| Bachelor's or higher | 2103 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 58% (state senate)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 42% (state senate)
- [AR House District 61](/us/states/ar/districts/house/61.md) — 61% (state house)
- [AR House District 62](/us/states/ar/districts/house/62.md) — 36% (state house)
- [AR House District 65](/us/states/ar/districts/house/65.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 39
hispanic: 1176
bachelors_plus: 2154
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/95"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1176 |
| Bachelor's or higher | 2154 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 100% (state senate)
- [AR House District 95](/us/states/ar/districts/house/95.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: 171
hispanic: 1222
bachelors_plus: 8035
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/3"
rel: in-district
area_weight: 0.4721
- to: "us/states/ar/districts/house/4"
rel: in-district
area_weight: 0.4465
- to: "us/states/ar/districts/house/27"
rel: in-district
area_weight: 0.0814
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1222 |
| Bachelor's or higher | 8035 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 23](/us/states/ar/districts/senate/23.md) — 100% (state senate)
- [AR House District 3](/us/states/ar/districts/house/3.md) — 47% (state house)
- [AR House District 4](/us/states/ar/districts/house/4.md) — 45% (state house)
- [AR House District 27](/us/states/ar/districts/house/27.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,57 @@ demographics:
race_native: 3417
hispanic: 56188
bachelors_plus: 102124
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/32"
rel: in-district
area_weight: 0.3448
- to: "us/states/ar/districts/senate/35"
rel: in-district
area_weight: 0.3029
- to: "us/states/ar/districts/senate/33"
rel: in-district
area_weight: 0.21
- to: "us/states/ar/districts/senate/34"
rel: in-district
area_weight: 0.1419
- to: "us/states/ar/districts/house/12"
rel: in-district
area_weight: 0.2516
- to: "us/states/ar/districts/house/7"
rel: in-district
area_weight: 0.2425
- to: "us/states/ar/districts/house/17"
rel: in-district
area_weight: 0.1767
- to: "us/states/ar/districts/house/8"
rel: in-district
area_weight: 0.083
- to: "us/states/ar/districts/house/16"
rel: in-district
area_weight: 0.0774
- to: "us/states/ar/districts/house/14"
rel: in-district
area_weight: 0.0575
- to: "us/states/ar/districts/house/10"
rel: in-district
area_weight: 0.0371
- to: "us/states/ar/districts/house/11"
rel: in-district
area_weight: 0.0354
- to: "us/states/ar/districts/house/13"
rel: in-district
area_weight: 0.0215
- to: "us/states/ar/districts/house/15"
rel: in-district
area_weight: 0.0149
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +104,25 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 56188 |
| Bachelor's or higher | 102124 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 100% (congressional)
- [AR Senate District 32](/us/states/ar/districts/senate/32.md) — 34% (state senate)
- [AR Senate District 35](/us/states/ar/districts/senate/35.md) — 30% (state senate)
- [AR Senate District 33](/us/states/ar/districts/senate/33.md) — 21% (state senate)
- [AR Senate District 34](/us/states/ar/districts/senate/34.md) — 14% (state senate)
- [AR House District 12](/us/states/ar/districts/house/12.md) — 25% (state house)
- [AR House District 7](/us/states/ar/districts/house/7.md) — 24% (state house)
- [AR House District 17](/us/states/ar/districts/house/17.md) — 18% (state house)
- [AR House District 8](/us/states/ar/districts/house/8.md) — 8% (state house)
- [AR House District 16](/us/states/ar/districts/house/16.md) — 8% (state house)
- [AR House District 14](/us/states/ar/districts/house/14.md) — 6% (state house)
- [AR House District 10](/us/states/ar/districts/house/10.md) — 4% (state house)
- [AR House District 11](/us/states/ar/districts/house/11.md) — 4% (state house)
- [AR House District 13](/us/states/ar/districts/house/13.md) — 2% (state house)
- [AR House District 15](/us/states/ar/districts/house/15.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: 144
hispanic: 1202
bachelors_plus: 6115
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9994
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.6048
- to: "us/states/ar/districts/senate/23"
rel: in-district
area_weight: 0.3951
- to: "us/states/ar/districts/house/5"
rel: in-district
area_weight: 0.6026
- to: "us/states/ar/districts/house/6"
rel: in-district
area_weight: 0.3971
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1202 |
| Bachelor's or higher | 6115 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 60% (state senate)
- [AR Senate District 23](/us/states/ar/districts/senate/23.md) — 40% (state senate)
- [AR House District 5](/us/states/ar/districts/house/5.md) — 60% (state house)
- [AR House District 6](/us/states/ar/districts/house/6.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: 580
hispanic: 1628
bachelors_plus: 1413
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/96"
rel: in-district
area_weight: 0.5751
- to: "us/states/ar/districts/house/94"
rel: in-district
area_weight: 0.4247
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1628 |
| Bachelor's or higher | 1413 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 100% (state senate)
- [AR House District 96](/us/states/ar/districts/house/96.md) — 58% (state house)
- [AR House District 94](/us/states/ar/districts/house/94.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: 30
hispanic: 140
bachelors_plus: 926
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/2"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/96"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 140 |
| Bachelor's or higher | 926 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 2](/us/states/ar/districts/senate/2.md) — 100% (state senate)
- [AR House District 96](/us/states/ar/districts/house/96.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: 331
hispanic: 4504
bachelors_plus: 5481
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.9987
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.9995
- to: "us/states/ar/districts/house/6"
rel: in-district
area_weight: 0.6608
- to: "us/states/ar/districts/house/26"
rel: in-district
area_weight: 0.3385
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 4504 |
| Bachelor's or higher | 5481 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 100% (congressional)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 100% (state senate)
- [AR House District 6](/us/states/ar/districts/house/6.md) — 66% (state house)
- [AR House District 26](/us/states/ar/districts/house/26.md) — 34% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 13
hispanic: 624
bachelors_plus: 1549
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9949
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.9993
- to: "us/states/ar/districts/house/95"
rel: in-district
area_weight: 0.9993
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 624 |
| Bachelor's or higher | 1549 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 99% (congressional)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 100% (state senate)
- [AR House District 95](/us/states/ar/districts/house/95.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 19
hispanic: 1179
bachelors_plus: 4385
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/89"
rel: in-district
area_weight: 0.9184
- to: "us/states/ar/districts/house/90"
rel: in-district
area_weight: 0.0814
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1179 |
| Bachelor's or higher | 4385 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 100% (state senate)
- [AR House District 89](/us/states/ar/districts/house/89.md) — 92% (state house)
- [AR House District 90](/us/states/ar/districts/house/90.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 57
hispanic: 158
bachelors_plus: 2128
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9979
- to: "us/states/ar/districts/senate/21"
rel: in-district
area_weight: 0.999
- to: "us/states/ar/districts/house/1"
rel: in-district
area_weight: 0.999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 158 |
| Bachelor's or higher | 2128 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 21](/us/states/ar/districts/senate/21.md) — 100% (state senate)
- [AR House District 1](/us/states/ar/districts/house/1.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: 123
hispanic: 747
bachelors_plus: 4726
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.5293
- to: "us/states/ar/districts/senate/18"
rel: in-district
area_weight: 0.2899
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 0.1808
- to: "us/states/ar/districts/house/41"
rel: in-district
area_weight: 0.8904
- to: "us/states/ar/districts/house/40"
rel: in-district
area_weight: 0.081
- to: "us/states/ar/districts/house/42"
rel: in-district
area_weight: 0.0286
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 747 |
| Bachelor's or higher | 4726 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 53% (state senate)
- [AR Senate District 18](/us/states/ar/districts/senate/18.md) — 29% (state senate)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 18% (state senate)
- [AR House District 41](/us/states/ar/districts/house/41.md) — 89% (state house)
- [AR House District 40](/us/states/ar/districts/house/40.md) — 8% (state house)
- [AR House District 42](/us/states/ar/districts/house/42.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: 0
hispanic: 108
bachelors_plus: 1367
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/96"
rel: in-district
area_weight: 0.6362
- to: "us/states/ar/districts/house/93"
rel: in-district
area_weight: 0.3638
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 108 |
| Bachelor's or higher | 1367 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 100% (state senate)
- [AR House District 96](/us/states/ar/districts/house/96.md) — 64% (state house)
- [AR House District 93](/us/states/ar/districts/house/93.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: 36
hispanic: 774
bachelors_plus: 4104
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/99"
rel: in-district
area_weight: 0.757
- to: "us/states/ar/districts/house/98"
rel: in-district
area_weight: 0.2429
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 774 |
| Bachelor's or higher | 4104 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 100% (state senate)
- [AR House District 99](/us/states/ar/districts/house/99.md) — 76% (state house)
- [AR House District 98](/us/states/ar/districts/house/98.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: 90
hispanic: 1000
bachelors_plus: 3778
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9989
- to: "us/states/ar/districts/senate/25"
rel: in-district
area_weight: 0.8909
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.1089
- to: "us/states/ar/districts/house/43"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1000 |
| Bachelor's or higher | 3778 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 25](/us/states/ar/districts/senate/25.md) — 89% (state senate)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 11% (state senate)
- [AR House District 43](/us/states/ar/districts/house/43.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: 246
hispanic: 7146
bachelors_plus: 30104
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/19"
rel: in-district
area_weight: 0.7946
- to: "us/states/ar/districts/senate/20"
rel: in-district
area_weight: 0.2051
- to: "us/states/ar/districts/house/33"
rel: in-district
area_weight: 0.4455
- to: "us/states/ar/districts/house/38"
rel: in-district
area_weight: 0.2973
- to: "us/states/ar/districts/house/30"
rel: in-district
area_weight: 0.1347
- to: "us/states/ar/districts/house/36"
rel: in-district
area_weight: 0.0891
- to: "us/states/ar/districts/house/32"
rel: in-district
area_weight: 0.0333
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 7146 |
| Bachelor's or higher | 30104 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 19](/us/states/ar/districts/senate/19.md) — 79% (state senate)
- [AR Senate District 20](/us/states/ar/districts/senate/20.md) — 21% (state senate)
- [AR House District 33](/us/states/ar/districts/house/33.md) — 45% (state house)
- [AR House District 38](/us/states/ar/districts/house/38.md) — 30% (state house)
- [AR House District 30](/us/states/ar/districts/house/30.md) — 13% (state house)
- [AR House District 36](/us/states/ar/districts/house/36.md) — 9% (state house)
- [AR House District 32](/us/states/ar/districts/house/32.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: 558
hispanic: 5251
bachelors_plus: 10845
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.9991
- to: "us/states/ar/districts/senate/29"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/house/24"
rel: in-district
area_weight: 0.573
- to: "us/states/ar/districts/house/25"
rel: in-district
area_weight: 0.3284
- to: "us/states/ar/districts/house/48"
rel: in-district
area_weight: 0.0983
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 5251 |
| Bachelor's or higher | 10845 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 100% (congressional)
- [AR Senate District 29](/us/states/ar/districts/senate/29.md) — 100% (state senate)
- [AR House District 24](/us/states/ar/districts/house/24.md) — 57% (state house)
- [AR House District 25](/us/states/ar/districts/house/25.md) — 33% (state house)
- [AR House District 48](/us/states/ar/districts/house/48.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: 56
hispanic: 1555
bachelors_plus: 6810
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.998
- to: "us/states/ar/districts/senate/9"
rel: in-district
area_weight: 0.9987
- to: "us/states/ar/districts/house/35"
rel: in-district
area_weight: 0.6922
- to: "us/states/ar/districts/house/63"
rel: in-district
area_weight: 0.3064
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1555 |
| Bachelor's or higher | 6810 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 9](/us/states/ar/districts/senate/9.md) — 100% (state senate)
- [AR House District 35](/us/states/ar/districts/house/35.md) — 69% (state house)
- [AR House District 63](/us/states/ar/districts/house/63.md) — 31% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 43
hispanic: 378
bachelors_plus: 2720
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/37"
rel: in-district
area_weight: 0.8584
- to: "us/states/ar/districts/house/35"
rel: in-district
area_weight: 0.1414
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 378 |
| Bachelor's or higher | 2720 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 100% (state senate)
- [AR House District 37](/us/states/ar/districts/house/37.md) — 86% (state house)
- [AR House District 35](/us/states/ar/districts/house/35.md) — 14% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 71
bachelors_plus: 715
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/2"
rel: in-district
area_weight: 0.9995
- to: "us/states/ar/districts/house/96"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 71 |
| Bachelor's or higher | 715 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 2](/us/states/ar/districts/senate/2.md) — 100% (state senate)
- [AR House District 96](/us/states/ar/districts/house/96.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: 19
hispanic: 781
bachelors_plus: 1329
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9979
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.999
- to: "us/states/ar/districts/house/62"
rel: in-district
area_weight: 0.7051
- to: "us/states/ar/districts/house/94"
rel: in-district
area_weight: 0.2003
- to: "us/states/ar/districts/house/64"
rel: in-district
area_weight: 0.094
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 781 |
| Bachelor's or higher | 1329 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 100% (state senate)
- [AR House District 62](/us/states/ar/districts/house/62.md) — 71% (state house)
- [AR House District 94](/us/states/ar/districts/house/94.md) — 20% (state house)
- [AR House District 64](/us/states/ar/districts/house/64.md) — 9% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 0
hispanic: 756
bachelors_plus: 3875
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.9494
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.0506
- to: "us/states/ar/districts/house/94"
rel: in-district
area_weight: 0.9301
- to: "us/states/ar/districts/house/93"
rel: in-district
area_weight: 0.0697
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 756 |
| Bachelor's or higher | 3875 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 95% (state senate)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 5% (state senate)
- [AR House District 94](/us/states/ar/districts/house/94.md) — 93% (state house)
- [AR House District 93](/us/states/ar/districts/house/93.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,42 @@ demographics:
race_native: 250
hispanic: 7303
bachelors_plus: 39045
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 0.6783
- to: "us/states/ar/districts/senate/17"
rel: in-district
area_weight: 0.2277
- to: "us/states/ar/districts/senate/18"
rel: in-district
area_weight: 0.0937
- to: "us/states/ar/districts/house/42"
rel: in-district
area_weight: 0.3876
- to: "us/states/ar/districts/house/57"
rel: in-district
area_weight: 0.2753
- to: "us/states/ar/districts/house/69"
rel: in-district
area_weight: 0.1423
- to: "us/states/ar/districts/house/54"
rel: in-district
area_weight: 0.1034
- to: "us/states/ar/districts/house/56"
rel: in-district
area_weight: 0.0677
- to: "us/states/ar/districts/house/55"
rel: in-district
area_weight: 0.0236
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +89,20 @@ County jurisdiction.
| Hispanic/Latino | 7303 |
| Bachelor's or higher | 39045 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 68% (state senate)
- [AR Senate District 17](/us/states/ar/districts/senate/17.md) — 23% (state senate)
- [AR Senate District 18](/us/states/ar/districts/senate/18.md) — 9% (state senate)
- [AR House District 42](/us/states/ar/districts/house/42.md) — 39% (state house)
- [AR House District 57](/us/states/ar/districts/house/57.md) — 28% (state house)
- [AR House District 69](/us/states/ar/districts/house/69.md) — 14% (state house)
- [AR House District 54](/us/states/ar/districts/house/54.md) — 10% (state house)
- [AR House District 56](/us/states/ar/districts/house/56.md) — 7% (state house)
- [AR House District 55](/us/states/ar/districts/house/55.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 168
hispanic: 577
bachelors_plus: 2364
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9992
- to: "us/states/ar/districts/senate/26"
rel: in-district
area_weight: 0.52
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.48
- to: "us/states/ar/districts/house/26"
rel: in-district
area_weight: 0.5006
- to: "us/states/ar/districts/house/46"
rel: in-district
area_weight: 0.345
- to: "us/states/ar/districts/house/25"
rel: in-district
area_weight: 0.1543
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 577 |
| Bachelor's or higher | 2364 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 26](/us/states/ar/districts/senate/26.md) — 52% (state senate)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 48% (state senate)
- [AR House District 26](/us/states/ar/districts/house/26.md) — 50% (state house)
- [AR House District 46](/us/states/ar/districts/house/46.md) — 34% (state house)
- [AR House District 25](/us/states/ar/districts/house/25.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 89
hispanic: 238
bachelors_plus: 2021
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/23"
rel: in-district
area_weight: 0.8622
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.1375
- to: "us/states/ar/districts/house/2"
rel: in-district
area_weight: 0.6618
- to: "us/states/ar/districts/house/3"
rel: in-district
area_weight: 0.3378
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 238 |
| Bachelor's or higher | 2021 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 23](/us/states/ar/districts/senate/23.md) — 86% (state senate)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 14% (state senate)
- [AR House District 2](/us/states/ar/districts/house/2.md) — 66% (state house)
- [AR House District 3](/us/states/ar/districts/house/3.md) — 34% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,36 @@ demographics:
race_native: 421
hispanic: 7484
bachelors_plus: 25200
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9994
- to: "us/states/ar/districts/senate/6"
rel: in-district
area_weight: 0.8436
- to: "us/states/ar/districts/senate/7"
rel: in-district
area_weight: 0.1562
- to: "us/states/ar/districts/house/85"
rel: in-district
area_weight: 0.6605
- to: "us/states/ar/districts/house/84"
rel: in-district
area_weight: 0.1829
- to: "us/states/ar/districts/house/90"
rel: in-district
area_weight: 0.0749
- to: "us/states/ar/districts/house/91"
rel: in-district
area_weight: 0.0471
- to: "us/states/ar/districts/house/89"
rel: in-district
area_weight: 0.0344
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 7484 |
| Bachelor's or higher | 25200 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 6](/us/states/ar/districts/senate/6.md) — 84% (state senate)
- [AR Senate District 7](/us/states/ar/districts/senate/7.md) — 16% (state senate)
- [AR House District 85](/us/states/ar/districts/house/85.md) — 66% (state house)
- [AR House District 84](/us/states/ar/districts/house/84.md) — 18% (state house)
- [AR House District 90](/us/states/ar/districts/house/90.md) — 7% (state house)
- [AR House District 91](/us/states/ar/districts/house/91.md) — 5% (state house)
- [AR House District 89](/us/states/ar/districts/house/89.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: 26
hispanic: 522
bachelors_plus: 3431
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9995
- to: "us/states/ar/districts/senate/2"
rel: in-district
area_weight: 0.4705
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.2694
- to: "us/states/ar/districts/senate/7"
rel: in-district
area_weight: 0.2601
- to: "us/states/ar/districts/house/92"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 522 |
| Bachelor's or higher | 3431 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 2](/us/states/ar/districts/senate/2.md) — 47% (state senate)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 27% (state senate)
- [AR Senate District 7](/us/states/ar/districts/senate/7.md) — 26% (state senate)
- [AR House District 92](/us/states/ar/districts/house/92.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: 19
hispanic: 1741
bachelors_plus: 7266
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/ar/districts/senate/21"
rel: in-district
area_weight: 0.9995
- to: "us/states/ar/districts/house/1"
rel: in-district
area_weight: 0.6905
- to: "us/states/ar/districts/house/30"
rel: in-district
area_weight: 0.2086
- to: "us/states/ar/districts/house/31"
rel: in-district
area_weight: 0.1005
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1741 |
| Bachelor's or higher | 7266 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 21](/us/states/ar/districts/senate/21.md) — 100% (state senate)
- [AR House District 1](/us/states/ar/districts/house/1.md) — 69% (state house)
- [AR House District 30](/us/states/ar/districts/house/30.md) — 21% (state house)
- [AR House District 31](/us/states/ar/districts/house/31.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: 34
hispanic: 2986
bachelors_plus: 2959
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.6736
- to: "us/states/ar/districts/senate/4"
rel: in-district
area_weight: 0.3264
- to: "us/states/ar/districts/house/88"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2986 |
| Bachelor's or higher | 2959 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 67% (state senate)
- [AR Senate District 4](/us/states/ar/districts/senate/4.md) — 33% (state senate)
- [AR House District 88](/us/states/ar/districts/house/88.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: 175
hispanic: 1362
bachelors_plus: 5817
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/7"
rel: in-district
area_weight: 0.8186
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.1813
- to: "us/states/ar/districts/house/90"
rel: in-district
area_weight: 0.4889
- to: "us/states/ar/districts/house/29"
rel: in-district
area_weight: 0.4129
- to: "us/states/ar/districts/house/89"
rel: in-district
area_weight: 0.0981
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 1362 |
| Bachelor's or higher | 5817 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 7](/us/states/ar/districts/senate/7.md) — 82% (state senate)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 18% (state senate)
- [AR House District 90](/us/states/ar/districts/house/90.md) — 49% (state house)
- [AR House District 29](/us/states/ar/districts/house/29.md) — 41% (state house)
- [AR House District 89](/us/states/ar/districts/house/89.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: 12
hispanic: 1582
bachelors_plus: 1807
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/4"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/86"
rel: in-district
area_weight: 0.6247
- to: "us/states/ar/districts/house/88"
rel: in-district
area_weight: 0.3047
- to: "us/states/ar/districts/house/87"
rel: in-district
area_weight: 0.0706
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1582 |
| Bachelor's or higher | 1807 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 4](/us/states/ar/districts/senate/4.md) — 100% (state senate)
- [AR House District 86](/us/states/ar/districts/house/86.md) — 62% (state house)
- [AR House District 88](/us/states/ar/districts/house/88.md) — 30% (state house)
- [AR House District 87](/us/states/ar/districts/house/87.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: 228
hispanic: 3382
bachelors_plus: 6119
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/28"
rel: in-district
area_weight: 0.5006
- to: "us/states/ar/districts/house/40"
rel: in-district
area_weight: 0.2953
- to: "us/states/ar/districts/house/39"
rel: in-district
area_weight: 0.204
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 3382 |
| Bachelor's or higher | 6119 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 100% (state senate)
- [AR House District 28](/us/states/ar/districts/house/28.md) — 50% (state house)
- [AR House District 40](/us/states/ar/districts/house/40.md) — 30% (state house)
- [AR House District 39](/us/states/ar/districts/house/39.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: 86
hispanic: 414
bachelors_plus: 2733
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/23"
rel: in-district
area_weight: 0.7521
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.2478
- to: "us/states/ar/districts/house/27"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 414 |
| Bachelor's or higher | 2733 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 23](/us/states/ar/districts/senate/23.md) — 75% (state senate)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 25% (state senate)
- [AR House District 27](/us/states/ar/districts/house/27.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: 78
hispanic: 544
bachelors_plus: 2369
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9994
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/39"
rel: in-district
area_weight: 0.4544
- to: "us/states/ar/districts/house/61"
rel: in-district
area_weight: 0.2997
- to: "us/states/ar/districts/house/38"
rel: in-district
area_weight: 0.2457
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 544 |
| Bachelor's or higher | 2369 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 100% (state senate)
- [AR House District 39](/us/states/ar/districts/house/39.md) — 45% (state house)
- [AR House District 61](/us/states/ar/districts/house/61.md) — 30% (state house)
- [AR House District 38](/us/states/ar/districts/house/38.md) — 25% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 238
hispanic: 1735
bachelors_plus: 11473
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9973
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.8581
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.1419
- to: "us/states/ar/districts/house/65"
rel: in-district
area_weight: 0.5754
- to: "us/states/ar/districts/house/93"
rel: in-district
area_weight: 0.2552
- to: "us/states/ar/districts/house/64"
rel: in-district
area_weight: 0.1692
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 1735 |
| Bachelor's or higher | 11473 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 86% (state senate)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 14% (state senate)
- [AR House District 65](/us/states/ar/districts/house/65.md) — 58% (state house)
- [AR House District 93](/us/states/ar/districts/house/93.md) — 26% (state house)
- [AR House District 64](/us/states/ar/districts/house/64.md) — 17% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 156
hispanic: 3606
bachelors_plus: 3997
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/26"
rel: in-district
area_weight: 0.5944
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.4054
- to: "us/states/ar/districts/house/45"
rel: in-district
area_weight: 0.973
- to: "us/states/ar/districts/house/46"
rel: in-district
area_weight: 0.0267
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 3606 |
| Bachelor's or higher | 3997 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 26](/us/states/ar/districts/senate/26.md) — 59% (state senate)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 41% (state senate)
- [AR House District 45](/us/states/ar/districts/house/45.md) — 97% (state house)
- [AR House District 46](/us/states/ar/districts/house/46.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: 14
hispanic: 36
bachelors_plus: 508
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/99"
rel: in-district
area_weight: 0.8259
- to: "us/states/ar/districts/house/98"
rel: in-district
area_weight: 0.174
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 36 |
| Bachelor's or higher | 508 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 100% (state senate)
- [AR House District 99](/us/states/ar/districts/house/99.md) — 83% (state house)
- [AR House District 98](/us/states/ar/districts/house/98.md) — 17% (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: 362
bachelors_plus: 2114
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.7762
- to: "us/states/ar/districts/senate/21"
rel: in-district
area_weight: 0.2237
- to: "us/states/ar/districts/house/28"
rel: in-district
area_weight: 0.7763
- to: "us/states/ar/districts/house/30"
rel: in-district
area_weight: 0.2235
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 362 |
| Bachelor's or higher | 2114 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 78% (state senate)
- [AR Senate District 21](/us/states/ar/districts/senate/21.md) — 22% (state senate)
- [AR House District 28](/us/states/ar/districts/house/28.md) — 78% (state house)
- [AR House District 30](/us/states/ar/districts/house/30.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: 0
hispanic: 263
bachelors_plus: 549
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9984
- to: "us/states/ar/districts/senate/9"
rel: in-district
area_weight: 0.5494
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.4503
- to: "us/states/ar/districts/house/62"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 263 |
| Bachelor's or higher | 549 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 9](/us/states/ar/districts/senate/9.md) — 55% (state senate)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 45% (state senate)
- [AR House District 62](/us/states/ar/districts/house/62.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: 14
hispanic: 662
bachelors_plus: 1575
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9977
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.5365
- to: "us/states/ar/districts/senate/1"
rel: in-district
area_weight: 0.4635
- to: "us/states/ar/districts/house/93"
rel: in-district
area_weight: 0.6525
- to: "us/states/ar/districts/house/64"
rel: in-district
area_weight: 0.3452
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 662 |
| Bachelor's or higher | 1575 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 54% (state senate)
- [AR Senate District 1](/us/states/ar/districts/senate/1.md) — 46% (state senate)
- [AR House District 93](/us/states/ar/districts/house/93.md) — 65% (state house)
- [AR House District 64](/us/states/ar/districts/house/64.md) — 35% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 75
hispanic: 474
bachelors_plus: 1957
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9845
- to: "us/states/tx/districts/04"
rel: in-district
area_weight: 0.0093
- to: "us/states/tx/districts/01"
rel: in-district
area_weight: 0.006
- to: "us/states/ar/districts/senate/4"
rel: in-district
area_weight: 0.9992
- to: "us/states/ar/districts/house/87"
rel: in-district
area_weight: 0.999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 474 |
| Bachelor's or higher | 1957 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 98% (congressional)
- [TX-04](/us/states/tx/districts/04.md) — 1% (congressional)
- [TX-01](/us/states/tx/districts/01.md) — 1% (congressional)
- [AR Senate District 4](/us/states/ar/districts/senate/4.md) — 100% (state senate)
- [AR House District 87](/us/states/ar/districts/house/87.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: 23
hispanic: 744
bachelors_plus: 3288
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/26"
rel: in-district
area_weight: 0.7968
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.2032
- to: "us/states/ar/districts/house/46"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 744 |
| Bachelor's or higher | 3288 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 26](/us/states/ar/districts/senate/26.md) — 80% (state senate)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 20% (state senate)
- [AR House District 46](/us/states/ar/districts/house/46.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: 216
hispanic: 4064
bachelors_plus: 14983
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9983
- to: "us/states/ar/districts/senate/11"
rel: in-district
area_weight: 0.4362
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.2919
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.2718
- to: "us/states/ar/districts/house/60"
rel: in-district
area_weight: 0.8194
- to: "us/states/ar/districts/house/59"
rel: in-district
area_weight: 0.0938
- to: "us/states/ar/districts/house/68"
rel: in-district
area_weight: 0.0641
- to: "us/states/ar/districts/house/57"
rel: in-district
area_weight: 0.0225
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 4064 |
| Bachelor's or higher | 14983 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 11](/us/states/ar/districts/senate/11.md) — 44% (state senate)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 29% (state senate)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 27% (state senate)
- [AR House District 60](/us/states/ar/districts/house/60.md) — 82% (state house)
- [AR House District 59](/us/states/ar/districts/house/59.md) — 9% (state house)
- [AR House District 68](/us/states/ar/districts/house/68.md) — 6% (state house)
- [AR House District 57](/us/states/ar/districts/house/57.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: 272
hispanic: 1125
bachelors_plus: 2137
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/26"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1125 |
| Bachelor's or higher | 2137 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 100% (congressional)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 100% (state senate)
- [AR House District 26](/us/states/ar/districts/house/26.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: 232
hispanic: 470
bachelors_plus: 2807
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/23"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/house/4"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 470 |
| Bachelor's or higher | 2807 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 23](/us/states/ar/districts/senate/23.md) — 100% (state senate)
- [AR House District 4](/us/states/ar/districts/house/4.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: 258
hispanic: 1754
bachelors_plus: 6211
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/senate/4"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/house/99"
rel: in-district
area_weight: 0.7354
- to: "us/states/ar/districts/house/88"
rel: in-district
area_weight: 0.1815
- to: "us/states/ar/districts/house/100"
rel: in-district
area_weight: 0.0828
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1754 |
| Bachelor's or higher | 6211 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 4](/us/states/ar/districts/senate/4.md) — 100% (state senate)
- [AR House District 99](/us/states/ar/districts/house/99.md) — 74% (state house)
- [AR House District 88](/us/states/ar/districts/house/88.md) — 18% (state house)
- [AR House District 100](/us/states/ar/districts/house/100.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 72
hispanic: 1911
bachelors_plus: 4920
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9981
- to: "us/states/ar/districts/senate/19"
rel: in-district
area_weight: 0.9992
- to: "us/states/ar/districts/house/33"
rel: in-district
area_weight: 0.5334
- to: "us/states/ar/districts/house/34"
rel: in-district
area_weight: 0.4659
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1911 |
| Bachelor's or higher | 4920 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 19](/us/states/ar/districts/senate/19.md) — 100% (state senate)
- [AR House District 33](/us/states/ar/districts/house/33.md) — 53% (state house)
- [AR House District 34](/us/states/ar/districts/house/34.md) — 47% (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: 193
bachelors_plus: 721
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/62"
rel: in-district
area_weight: 0.5594
- to: "us/states/ar/districts/house/61"
rel: in-district
area_weight: 0.4406
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 193 |
| Bachelor's or higher | 721 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 100% (state senate)
- [AR House District 62](/us/states/ar/districts/house/62.md) — 56% (state house)
- [AR House District 61](/us/states/ar/districts/house/61.md) — 44% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 113
hispanic: 424
bachelors_plus: 1406
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/86"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 424 |
| Bachelor's or higher | 1406 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 100% (state senate)
- [AR House District 86](/us/states/ar/districts/house/86.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 0
hispanic: 392
bachelors_plus: 938
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/89"
rel: in-district
area_weight: 0.7911
- to: "us/states/ar/districts/house/98"
rel: in-district
area_weight: 0.2088
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 392 |
| Bachelor's or higher | 938 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 100% (state senate)
- [AR House District 89](/us/states/ar/districts/house/89.md) — 79% (state house)
- [AR House District 98](/us/states/ar/districts/house/98.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: 46
hispanic: 118
bachelors_plus: 1093
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9994
- to: "us/states/ar/districts/senate/28"
rel: in-district
area_weight: 0.7701
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 0.2299
- to: "us/states/ar/districts/house/27"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 118 |
| Bachelor's or higher | 1093 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 28](/us/states/ar/districts/senate/28.md) — 77% (state senate)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 23% (state senate)
- [AR House District 27](/us/states/ar/districts/house/27.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 49
hispanic: 575
bachelors_plus: 3441
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/2"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/98"
rel: in-district
area_weight: 0.7098
- to: "us/states/ar/districts/house/96"
rel: in-district
area_weight: 0.2901
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 575 |
| Bachelor's or higher | 3441 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 2](/us/states/ar/districts/senate/2.md) — 100% (state senate)
- [AR House District 98](/us/states/ar/districts/house/98.md) — 71% (state house)
- [AR House District 96](/us/states/ar/districts/house/96.md) — 29% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 40
hispanic: 353
bachelors_plus: 1527
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9986
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/54"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 353 |
| Bachelor's or higher | 1527 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 100% (state senate)
- [AR House District 54](/us/states/ar/districts/house/54.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 4
hispanic: 320
bachelors_plus: 2092
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9981
- to: "us/states/ar/districts/senate/9"
rel: in-district
area_weight: 0.9994
- to: "us/states/ar/districts/house/62"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 320 |
| Bachelor's or higher | 2092 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 9](/us/states/ar/districts/senate/9.md) — 100% (state senate)
- [AR House District 62](/us/states/ar/districts/house/62.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: 30
hispanic: 807
bachelors_plus: 1853
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/3"
rel: in-district
area_weight: 0.5194
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.4805
- to: "us/states/ar/districts/house/89"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 807 |
| Bachelor's or higher | 1853 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 3](/us/states/ar/districts/senate/3.md) — 52% (state senate)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 48% (state senate)
- [AR House District 89](/us/states/ar/districts/house/89.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: 109
hispanic: 859
bachelors_plus: 2293
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/19"
rel: in-district
area_weight: 0.7798
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.2202
- to: "us/states/ar/districts/house/37"
rel: in-district
area_weight: 0.407
- to: "us/states/ar/districts/house/38"
rel: in-district
area_weight: 0.4024
- to: "us/states/ar/districts/house/36"
rel: in-district
area_weight: 0.1905
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 859 |
| Bachelor's or higher | 2293 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 19](/us/states/ar/districts/senate/19.md) — 78% (state senate)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 22% (state senate)
- [AR House District 37](/us/states/ar/districts/house/37.md) — 41% (state house)
- [AR House District 38](/us/states/ar/districts/house/38.md) — 40% (state house)
- [AR House District 36](/us/states/ar/districts/house/36.md) — 19% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 154
hispanic: 1352
bachelors_plus: 3065
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/house/86"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1352 |
| Bachelor's or higher | 3065 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 100% (state senate)
- [AR House District 86](/us/states/ar/districts/house/86.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 496
hispanic: 7074
bachelors_plus: 13535
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/25"
rel: in-district
area_weight: 0.9898
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.0101
- to: "us/states/ar/districts/house/45"
rel: in-district
area_weight: 0.1501
- to: "us/states/ar/districts/house/53"
rel: in-district
area_weight: 0.0598
- to: "us/states/ar/districts/house/54"
rel: in-district
area_weight: 0.0101
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 7074 |
| Bachelor's or higher | 13535 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 25](/us/states/ar/districts/senate/25.md) — 99% (state senate)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 1% (state senate)
- [AR House District 45](/us/states/ar/districts/house/45.md) — 15% (state house)
- [AR House District 53](/us/states/ar/districts/house/53.md) — 6% (state house)
- [AR House District 54](/us/states/ar/districts/house/54.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 13
hispanic: 192
bachelors_plus: 1359
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9986
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/60"
rel: in-district
area_weight: 0.6703
- to: "us/states/ar/districts/house/61"
rel: in-district
area_weight: 0.3296
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 192 |
| Bachelor's or higher | 1359 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 100% (state senate)
- [AR House District 60](/us/states/ar/districts/house/60.md) — 67% (state house)
- [AR House District 61](/us/states/ar/districts/house/61.md) — 33% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,87 @@ demographics:
race_native: 1170
hispanic: 33418
bachelors_plus: 144685
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.6957
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.1603
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.144
- to: "us/states/ar/districts/senate/12"
rel: in-district
area_weight: 0.251
- to: "us/states/ar/districts/senate/17"
rel: in-district
area_weight: 0.2086
- to: "us/states/ar/districts/senate/8"
rel: in-district
area_weight: 0.1422
- to: "us/states/ar/districts/senate/13"
rel: in-district
area_weight: 0.1416
- to: "us/states/ar/districts/senate/11"
rel: in-district
area_weight: 0.1024
- to: "us/states/ar/districts/senate/15"
rel: in-district
area_weight: 0.071
- to: "us/states/ar/districts/senate/14"
rel: in-district
area_weight: 0.0476
- to: "us/states/ar/districts/senate/16"
rel: in-district
area_weight: 0.0355
- to: "us/states/ar/districts/house/78"
rel: in-district
area_weight: 0.2277
- to: "us/states/ar/districts/house/66"
rel: in-district
area_weight: 0.1878
- to: "us/states/ar/districts/house/80"
rel: in-district
area_weight: 0.1759
- to: "us/states/ar/districts/house/69"
rel: in-district
area_weight: 0.1199
- to: "us/states/ar/districts/house/70"
rel: in-district
area_weight: 0.0607
- to: "us/states/ar/districts/house/71"
rel: in-district
area_weight: 0.0417
- to: "us/states/ar/districts/house/73"
rel: in-district
area_weight: 0.0348
- to: "us/states/ar/districts/house/72"
rel: in-district
area_weight: 0.0281
- to: "us/states/ar/districts/house/77"
rel: in-district
area_weight: 0.0276
- to: "us/states/ar/districts/house/79"
rel: in-district
area_weight: 0.0255
- to: "us/states/ar/districts/house/67"
rel: in-district
area_weight: 0.0236
- to: "us/states/ar/districts/house/75"
rel: in-district
area_weight: 0.0196
- to: "us/states/ar/districts/house/76"
rel: in-district
area_weight: 0.0152
- to: "us/states/ar/districts/house/74"
rel: in-district
area_weight: 0.0118
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +134,35 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 33418 |
| Bachelor's or higher | 144685 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 70% (congressional)
- [AR-01](/us/states/ar/districts/01.md) — 16% (congressional)
- [AR-04](/us/states/ar/districts/04.md) — 14% (congressional)
- [AR Senate District 12](/us/states/ar/districts/senate/12.md) — 25% (state senate)
- [AR Senate District 17](/us/states/ar/districts/senate/17.md) — 21% (state senate)
- [AR Senate District 8](/us/states/ar/districts/senate/8.md) — 14% (state senate)
- [AR Senate District 13](/us/states/ar/districts/senate/13.md) — 14% (state senate)
- [AR Senate District 11](/us/states/ar/districts/senate/11.md) — 10% (state senate)
- [AR Senate District 15](/us/states/ar/districts/senate/15.md) — 7% (state senate)
- [AR Senate District 14](/us/states/ar/districts/senate/14.md) — 5% (state senate)
- [AR Senate District 16](/us/states/ar/districts/senate/16.md) — 4% (state senate)
- [AR House District 78](/us/states/ar/districts/house/78.md) — 23% (state house)
- [AR House District 66](/us/states/ar/districts/house/66.md) — 19% (state house)
- [AR House District 80](/us/states/ar/districts/house/80.md) — 18% (state house)
- [AR House District 69](/us/states/ar/districts/house/69.md) — 12% (state house)
- [AR House District 70](/us/states/ar/districts/house/70.md) — 6% (state house)
- [AR House District 71](/us/states/ar/districts/house/71.md) — 4% (state house)
- [AR House District 73](/us/states/ar/districts/house/73.md) — 3% (state house)
- [AR House District 72](/us/states/ar/districts/house/72.md) — 3% (state house)
- [AR House District 77](/us/states/ar/districts/house/77.md) — 3% (state house)
- [AR House District 79](/us/states/ar/districts/house/79.md) — 3% (state house)
- [AR House District 67](/us/states/ar/districts/house/67.md) — 2% (state house)
- [AR House District 75](/us/states/ar/districts/house/75.md) — 2% (state house)
- [AR House District 76](/us/states/ar/districts/house/76.md) — 2% (state house)
- [AR House District 74](/us/states/ar/districts/house/74.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 48
hispanic: 488
bachelors_plus: 2179
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/21"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/1"
rel: in-district
area_weight: 0.5902
- to: "us/states/ar/districts/house/2"
rel: in-district
area_weight: 0.4096
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 488 |
| Bachelor's or higher | 2179 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 21](/us/states/ar/districts/senate/21.md) — 100% (state senate)
- [AR House District 1](/us/states/ar/districts/house/1.md) — 59% (state house)
- [AR House District 2](/us/states/ar/districts/house/2.md) — 41% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 286
hispanic: 9282
bachelors_plus: 34108
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9989
- to: "us/states/ar/districts/senate/7"
rel: in-district
area_weight: 0.4807
- to: "us/states/ar/districts/senate/6"
rel: in-district
area_weight: 0.3422
- to: "us/states/ar/districts/senate/16"
rel: in-district
area_weight: 0.1769
- to: "us/states/ar/districts/house/54"
rel: in-district
area_weight: 0.4084
- to: "us/states/ar/districts/house/83"
rel: in-district
area_weight: 0.182
- to: "us/states/ar/districts/house/92"
rel: in-district
area_weight: 0.1151
- to: "us/states/ar/districts/house/29"
rel: in-district
area_weight: 0.0855
- to: "us/states/ar/districts/house/78"
rel: in-district
area_weight: 0.0796
- to: "us/states/ar/districts/house/82"
rel: in-district
area_weight: 0.0752
- to: "us/states/ar/districts/house/81"
rel: in-district
area_weight: 0.0541
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 9282 |
| Bachelor's or higher | 34108 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 7](/us/states/ar/districts/senate/7.md) — 48% (state senate)
- [AR Senate District 6](/us/states/ar/districts/senate/6.md) — 34% (state senate)
- [AR Senate District 16](/us/states/ar/districts/senate/16.md) — 18% (state senate)
- [AR House District 54](/us/states/ar/districts/house/54.md) — 41% (state house)
- [AR House District 83](/us/states/ar/districts/house/83.md) — 18% (state house)
- [AR House District 92](/us/states/ar/districts/house/92.md) — 12% (state house)
- [AR House District 29](/us/states/ar/districts/house/29.md) — 9% (state house)
- [AR House District 78](/us/states/ar/districts/house/78.md) — 8% (state house)
- [AR House District 82](/us/states/ar/districts/house/82.md) — 8% (state house)
- [AR House District 81](/us/states/ar/districts/house/81.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: 49
hispanic: 777
bachelors_plus: 1071
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/house/52"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 777 |
| Bachelor's or higher | 1071 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 100% (state senate)
- [AR House District 52](/us/states/ar/districts/house/52.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 126
hispanic: 175
bachelors_plus: 1119
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/house/27"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 175 |
| Bachelor's or higher | 1119 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 100% (state senate)
- [AR House District 27](/us/states/ar/districts/house/27.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: 1038
hispanic: 20635
bachelors_plus: 28304
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.5999
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.3998
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.4662
- to: "us/states/ar/districts/senate/26"
rel: in-district
area_weight: 0.4096
- to: "us/states/ar/districts/senate/27"
rel: in-district
area_weight: 0.1239
- to: "us/states/ar/districts/house/47"
rel: in-district
area_weight: 0.584
- to: "us/states/ar/districts/house/52"
rel: in-district
area_weight: 0.2254
- to: "us/states/ar/districts/house/51"
rel: in-district
area_weight: 0.069
- to: "us/states/ar/districts/house/46"
rel: in-district
area_weight: 0.055
- to: "us/states/ar/districts/house/50"
rel: in-district
area_weight: 0.0286
- to: "us/states/ar/districts/house/49"
rel: in-district
area_weight: 0.0267
- to: "us/states/ar/districts/house/48"
rel: in-district
area_weight: 0.011
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +95,22 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 20635 |
| Bachelor's or higher | 28304 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 60% (congressional)
- [AR-04](/us/states/ar/districts/04.md) — 40% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 47% (state senate)
- [AR Senate District 26](/us/states/ar/districts/senate/26.md) — 41% (state senate)
- [AR Senate District 27](/us/states/ar/districts/senate/27.md) — 12% (state senate)
- [AR House District 47](/us/states/ar/districts/house/47.md) — 58% (state house)
- [AR House District 52](/us/states/ar/districts/house/52.md) — 23% (state house)
- [AR House District 51](/us/states/ar/districts/house/51.md) — 7% (state house)
- [AR House District 46](/us/states/ar/districts/house/46.md) — 6% (state house)
- [AR House District 50](/us/states/ar/districts/house/50.md) — 3% (state house)
- [AR House District 49](/us/states/ar/districts/house/49.md) — 3% (state house)
- [AR House District 48](/us/states/ar/districts/house/48.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 385
hispanic: 5574
bachelors_plus: 1205
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/senate/4"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/87"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 5574 |
| Bachelor's or higher | 1205 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 4](/us/states/ar/districts/senate/4.md) — 100% (state senate)
- [AR House District 87](/us/states/ar/districts/house/87.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: 31
hispanic: 437
bachelors_plus: 2327
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/22"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/28"
rel: in-district
area_weight: 0.6555
- to: "us/states/ar/districts/house/2"
rel: in-district
area_weight: 0.3445
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 437 |
| Bachelor's or higher | 2327 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 22](/us/states/ar/districts/senate/22.md) — 100% (state senate)
- [AR House District 28](/us/states/ar/districts/house/28.md) — 66% (state house)
- [AR House District 2](/us/states/ar/districts/house/2.md) — 34% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 68
hispanic: 821
bachelors_plus: 3217
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.556
- to: "us/states/ar/districts/senate/9"
rel: in-district
area_weight: 0.444
- to: "us/states/ar/districts/house/63"
rel: in-district
area_weight: 0.4746
- to: "us/states/ar/districts/house/37"
rel: in-district
area_weight: 0.4625
- to: "us/states/ar/districts/house/62"
rel: in-district
area_weight: 0.0628
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 821 |
| Bachelor's or higher | 3217 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 56% (state senate)
- [AR Senate District 9](/us/states/ar/districts/senate/9.md) — 44% (state senate)
- [AR House District 63](/us/states/ar/districts/house/63.md) — 47% (state house)
- [AR House District 37](/us/states/ar/districts/house/37.md) — 46% (state house)
- [AR House District 62](/us/states/ar/districts/house/62.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 107
hispanic: 281
bachelors_plus: 2027
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/41"
rel: in-district
area_weight: 0.4722
- to: "us/states/ar/districts/house/27"
rel: in-district
area_weight: 0.2895
- to: "us/states/ar/districts/house/28"
rel: in-district
area_weight: 0.2383
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 281 |
| Bachelor's or higher | 2027 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 100% (state senate)
- [AR House District 41](/us/states/ar/districts/house/41.md) — 47% (state house)
- [AR House District 27](/us/states/ar/districts/house/27.md) — 29% (state house)
- [AR House District 28](/us/states/ar/districts/house/28.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: 73
hispanic: 1793
bachelors_plus: 6718
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 1.0
- to: "us/states/ar/districts/senate/2"
rel: in-district
area_weight: 0.9998
- to: "us/states/ar/districts/house/97"
rel: in-district
area_weight: 0.5866
- to: "us/states/ar/districts/house/96"
rel: in-district
area_weight: 0.4133
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1793 |
| Bachelor's or higher | 6718 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 2](/us/states/ar/districts/senate/2.md) — 100% (state senate)
- [AR House District 97](/us/states/ar/districts/house/97.md) — 59% (state house)
- [AR House District 96](/us/states/ar/districts/house/96.md) — 41% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 105
hispanic: 551
bachelors_plus: 2430
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/24"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/house/43"
rel: in-district
area_weight: 0.5448
- to: "us/states/ar/districts/house/42"
rel: in-district
area_weight: 0.2485
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 551 |
| Bachelor's or higher | 2430 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 24](/us/states/ar/districts/senate/24.md) — 100% (state senate)
- [AR House District 43](/us/states/ar/districts/house/43.md) — 54% (state house)
- [AR House District 42](/us/states/ar/districts/house/42.md) — 25% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,57 @@ demographics:
race_native: 3006
hispanic: 47853
bachelors_plus: 79177
districts:
- to: "us/states/ar/districts/03"
rel: in-district
area_weight: 0.9999
- to: "us/states/ar/districts/senate/29"
rel: in-district
area_weight: 0.4951
- to: "us/states/ar/districts/senate/35"
rel: in-district
area_weight: 0.318
- to: "us/states/ar/districts/senate/31"
rel: in-district
area_weight: 0.0707
- to: "us/states/ar/districts/senate/32"
rel: in-district
area_weight: 0.0618
- to: "us/states/ar/districts/senate/30"
rel: in-district
area_weight: 0.0542
- to: "us/states/ar/districts/house/25"
rel: in-district
area_weight: 0.3616
- to: "us/states/ar/districts/house/23"
rel: in-district
area_weight: 0.3023
- to: "us/states/ar/districts/house/24"
rel: in-district
area_weight: 0.1501
- to: "us/states/ar/districts/house/18"
rel: in-district
area_weight: 0.0616
- to: "us/states/ar/districts/house/22"
rel: in-district
area_weight: 0.0337
- to: "us/states/ar/districts/house/20"
rel: in-district
area_weight: 0.0311
- to: "us/states/ar/districts/house/19"
rel: in-district
area_weight: 0.0223
- to: "us/states/ar/districts/house/9"
rel: in-district
area_weight: 0.0198
- to: "us/states/ar/districts/house/21"
rel: in-district
area_weight: 0.0127
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +104,25 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 47853 |
| Bachelor's or higher | 79177 |
## Districts
- [AR-03](/us/states/ar/districts/03.md) — 100% (congressional)
- [AR Senate District 29](/us/states/ar/districts/senate/29.md) — 50% (state senate)
- [AR Senate District 35](/us/states/ar/districts/senate/35.md) — 32% (state senate)
- [AR Senate District 31](/us/states/ar/districts/senate/31.md) — 7% (state senate)
- [AR Senate District 32](/us/states/ar/districts/senate/32.md) — 6% (state senate)
- [AR Senate District 30](/us/states/ar/districts/senate/30.md) — 5% (state senate)
- [AR House District 25](/us/states/ar/districts/house/25.md) — 36% (state house)
- [AR House District 23](/us/states/ar/districts/house/23.md) — 30% (state house)
- [AR House District 24](/us/states/ar/districts/house/24.md) — 15% (state house)
- [AR House District 18](/us/states/ar/districts/house/18.md) — 6% (state house)
- [AR House District 22](/us/states/ar/districts/house/22.md) — 3% (state house)
- [AR House District 20](/us/states/ar/districts/house/20.md) — 3% (state house)
- [AR House District 19](/us/states/ar/districts/house/19.md) — 2% (state house)
- [AR House District 9](/us/states/ar/districts/house/9.md) — 2% (state house)
- [AR House District 21](/us/states/ar/districts/house/21.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 146
hispanic: 3853
bachelors_plus: 14866
districts:
- to: "us/states/ar/districts/02"
rel: in-district
area_weight: 0.9957
- to: "us/states/ar/districts/senate/18"
rel: in-district
area_weight: 0.9996
- to: "us/states/ar/districts/house/57"
rel: in-district
area_weight: 0.2877
- to: "us/states/ar/districts/house/39"
rel: in-district
area_weight: 0.2693
- to: "us/states/ar/districts/house/59"
rel: in-district
area_weight: 0.2222
- to: "us/states/ar/districts/house/40"
rel: in-district
area_weight: 0.1422
- to: "us/states/ar/districts/house/58"
rel: in-district
area_weight: 0.0783
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 3853 |
| Bachelor's or higher | 14866 |
## Districts
- [AR-02](/us/states/ar/districts/02.md) — 100% (congressional)
- [AR Senate District 18](/us/states/ar/districts/senate/18.md) — 100% (state senate)
- [AR House District 57](/us/states/ar/districts/house/57.md) — 29% (state house)
- [AR House District 39](/us/states/ar/districts/house/39.md) — 27% (state house)
- [AR House District 59](/us/states/ar/districts/house/59.md) — 22% (state house)
- [AR House District 40](/us/states/ar/districts/house/40.md) — 14% (state house)
- [AR House District 58](/us/states/ar/districts/house/58.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1
hispanic: 86
bachelors_plus: 969
districts:
- to: "us/states/ar/districts/01"
rel: in-district
area_weight: 0.9951
- to: "us/states/ar/districts/senate/10"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/house/61"
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, ar]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 86 |
| Bachelor's or higher | 969 |
## Districts
- [AR-01](/us/states/ar/districts/01.md) — 100% (congressional)
- [AR Senate District 10](/us/states/ar/districts/senate/10.md) — 100% (state senate)
- [AR House District 61](/us/states/ar/districts/house/61.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: 124
hispanic: 4277
bachelors_plus: 2639
districts:
- to: "us/states/ar/districts/04"
rel: in-district
area_weight: 0.9997
- to: "us/states/ar/districts/senate/5"
rel: in-district
area_weight: 0.9941
- to: "us/states/ar/districts/senate/25"
rel: in-district
area_weight: 0.0059
- to: "us/states/ar/districts/house/52"
rel: in-district
area_weight: 0.7909
- to: "us/states/ar/districts/house/54"
rel: in-district
area_weight: 0.2089
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ar]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 4277 |
| Bachelor's or higher | 2639 |
## Districts
- [AR-04](/us/states/ar/districts/04.md) — 100% (congressional)
- [AR Senate District 5](/us/states/ar/districts/senate/5.md) — 99% (state senate)
- [AR Senate District 25](/us/states/ar/districts/senate/25.md) — 1% (state senate)
- [AR House District 52](/us/states/ar/districts/house/52.md) — 79% (state house)
- [AR House District 54](/us/states/ar/districts/house/54.md) — 21% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 101759
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ar]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 182483
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ar]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 181399
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ar]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 103462
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ar]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 1"
classification: state-house-district
state: "AR"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 1
State House district 1 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 10"
classification: state-house-district
state: "AR"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 10
State House district 10 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 100"
classification: state-house-district
state: "AR"
chamber: "house"
district: "100"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 100
State House district 100 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 11"
classification: state-house-district
state: "AR"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 11
State House district 11 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 12"
classification: state-house-district
state: "AR"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 12
State House district 12 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 13"
classification: state-house-district
state: "AR"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 13
State House district 13 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 14"
classification: state-house-district
state: "AR"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 14
State House district 14 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 15"
classification: state-house-district
state: "AR"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 15
State House district 15 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 16"
classification: state-house-district
state: "AR"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 16
State House district 16 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 17"
classification: state-house-district
state: "AR"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 17
State House district 17 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 18"
classification: state-house-district
state: "AR"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 18
State House district 18 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 19"
classification: state-house-district
state: "AR"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 19
State House district 19 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 2"
classification: state-house-district
state: "AR"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 2
State House district 2 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 20"
classification: state-house-district
state: "AR"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 20
State House district 20 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 21"
classification: state-house-district
state: "AR"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 21
State House district 21 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 22"
classification: state-house-district
state: "AR"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 22
State House district 22 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 23"
classification: state-house-district
state: "AR"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 23
State House district 23 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 24"
classification: state-house-district
state: "AR"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 24
State House district 24 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 25"
classification: state-house-district
state: "AR"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 25
State House district 25 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 26"
classification: state-house-district
state: "AR"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 26
State House district 26 (AR).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "AR House District 27"
classification: state-house-district
state: "AR"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ar]
timestamp: "2026-07-03"
---
# AR House District 27
State House district 27 (AR).
## Source
- boundary: Census TIGER 2024

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