Graph: national county↔district↔legislator authority layer

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

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

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

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

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

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -22,9 +22,21 @@ demographics:
race_native: 11
hispanic: 184
bachelors_plus: 441
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/21"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/21"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 184 |
| Bachelor's or higher | 441 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 21](/us/states/sd/districts/senate/21.md) — 100% (state senate)
- [SD House District 21](/us/states/sd/districts/house/21.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 290
hispanic: 2878
bachelors_plus: 4403
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/22"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/22"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 2878 |
| Bachelor's or higher | 4403 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 22](/us/states/sd/districts/senate/22.md) — 100% (state senate)
- [SD House District 22](/us/states/sd/districts/house/22.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: 1942
hispanic: 169
bachelors_plus: 375
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/senate/27"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 169 |
| Bachelor's or higher | 375 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 27](/us/states/sd/districts/senate/27.md) — 100% (state senate)
- [SD House District 27](/us/states/sd/districts/house/27.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: 404
hispanic: 166
bachelors_plus: 1348
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9996
- to: "us/states/sd/districts/senate/19"
rel: in-district
area_weight: 0.9992
- to: "us/states/sd/districts/house/19"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 166 |
| Bachelor's or higher | 1348 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 19](/us/states/sd/districts/senate/19.md) — 100% (state senate)
- [SD House District 19](/us/states/sd/districts/house/19.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: 460
hispanic: 1609
bachelors_plus: 10900
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/8"
rel: in-district
area_weight: 0.865
- to: "us/states/sd/districts/senate/7"
rel: in-district
area_weight: 0.1349
- to: "us/states/sd/districts/house/8"
rel: in-district
area_weight: 0.865
- to: "us/states/sd/districts/house/7"
rel: in-district
area_weight: 0.1349
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 1609 |
| Bachelor's or higher | 10900 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 8](/us/states/sd/districts/senate/8.md) — 86% (state senate)
- [SD Senate District 7](/us/states/sd/districts/senate/7.md) — 13% (state senate)
- [SD House District 8](/us/states/sd/districts/house/8.md) — 86% (state house)
- [SD House District 7](/us/states/sd/districts/house/7.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 1154
hispanic: 1770
bachelors_plus: 11184
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/1"
rel: in-district
area_weight: 0.9538
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.025
- to: "us/states/sd/districts/senate/3"
rel: in-district
area_weight: 0.0212
- to: "us/states/sd/districts/house/1"
rel: in-district
area_weight: 0.9538
- to: "us/states/sd/districts/house/23"
rel: in-district
area_weight: 0.025
- to: "us/states/sd/districts/house/3"
rel: in-district
area_weight: 0.0212
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1770 |
| Bachelor's or higher | 11184 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 1](/us/states/sd/districts/senate/1.md) — 95% (state senate)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 2% (state senate)
- [SD Senate District 3](/us/states/sd/districts/senate/3.md) — 2% (state senate)
- [SD House District 1](/us/states/sd/districts/house/1.md) — 95% (state house)
- [SD House District 23](/us/states/sd/districts/house/23.md) — 2% (state house)
- [SD House District 3](/us/states/sd/districts/house/3.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: 541
hispanic: 121
bachelors_plus: 1312
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26b"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 121 |
| Bachelor's or higher | 1312 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26B](/us/states/sd/districts/house/26b.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: 1428
hispanic: 31
bachelors_plus: 101
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26b"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 31 |
| Bachelor's or higher | 101 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26B](/us/states/sd/districts/house/26b.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: 167
hispanic: 456
bachelors_plus: 1815
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/28b"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 456 |
| Bachelor's or higher | 1815 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28B](/us/states/sd/districts/house/28b.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 8
hispanic: 125
bachelors_plus: 529
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/23"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 125 |
| Bachelor's or higher | 529 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 2625
hispanic: 274
bachelors_plus: 1882
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/21"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/house/21"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 274 |
| Bachelor's or higher | 1882 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 21](/us/states/sd/districts/senate/21.md) — 100% (state senate)
- [SD House District 21](/us/states/sd/districts/house/21.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 29
hispanic: 209
bachelors_plus: 564
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 0.8158
- to: "us/states/sd/districts/senate/22"
rel: in-district
area_weight: 0.1841
- to: "us/states/sd/districts/house/4"
rel: in-district
area_weight: 0.8158
- to: "us/states/sd/districts/house/22"
rel: in-district
area_weight: 0.1841
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 209 |
| Bachelor's or higher | 564 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 82% (state senate)
- [SD Senate District 22](/us/states/sd/districts/senate/22.md) — 18% (state senate)
- [SD House District 4](/us/states/sd/districts/house/4.md) — 82% (state house)
- [SD House District 22](/us/states/sd/districts/house/22.md) — 18% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 574
hispanic: 504
bachelors_plus: 4977
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9994
- to: "us/states/sd/districts/senate/17"
rel: in-district
area_weight: 0.8275
- to: "us/states/sd/districts/senate/18"
rel: in-district
area_weight: 0.1722
- to: "us/states/sd/districts/house/17"
rel: in-district
area_weight: 0.8275
- to: "us/states/sd/districts/house/18"
rel: in-district
area_weight: 0.1722
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 504 |
| Bachelor's or higher | 4977 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 17](/us/states/sd/districts/senate/17.md) — 83% (state senate)
- [SD Senate District 18](/us/states/sd/districts/senate/18.md) — 17% (state senate)
- [SD House District 17](/us/states/sd/districts/house/17.md) — 83% (state house)
- [SD House District 18](/us/states/sd/districts/house/18.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: 538
hispanic: 946
bachelors_plus: 5318
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 0.8005
- to: "us/states/sd/districts/senate/5"
rel: in-district
area_weight: 0.1994
- to: "us/states/sd/districts/house/4"
rel: in-district
area_weight: 0.8005
- to: "us/states/sd/districts/house/5"
rel: in-district
area_weight: 0.1994
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 946 |
| Bachelor's or higher | 5318 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 80% (state senate)
- [SD Senate District 5](/us/states/sd/districts/senate/5.md) — 20% (state senate)
- [SD House District 4](/us/states/sd/districts/house/4.md) — 80% (state house)
- [SD House District 5](/us/states/sd/districts/house/5.md) — 20% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2538
hispanic: 20
bachelors_plus: 478
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/28a"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 20 |
| Bachelor's or higher | 478 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28A](/us/states/sd/districts/house/28a.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: 177
hispanic: 274
bachelors_plus: 3235
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/30"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/30"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 274 |
| Bachelor's or higher | 3235 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 30](/us/states/sd/districts/senate/30.md) — 100% (state senate)
- [SD House District 30](/us/states/sd/districts/house/30.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 824
hispanic: 1017
bachelors_plus: 3832
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/20"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/20"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1017 |
| Bachelor's or higher | 3832 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 20](/us/states/sd/districts/senate/20.md) — 100% (state senate)
- [SD House District 20](/us/states/sd/districts/house/20.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: 534
hispanic: 154
bachelors_plus: 1088
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/1"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/1"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 154 |
| Bachelor's or higher | 1088 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 1](/us/states/sd/districts/senate/1.md) — 100% (state senate)
- [SD House District 1](/us/states/sd/districts/house/1.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 13
hispanic: 136
bachelors_plus: 900
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 0.9997
- to: "us/states/sd/districts/house/4"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 136 |
| Bachelor's or higher | 900 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 100% (state senate)
- [SD House District 4](/us/states/sd/districts/house/4.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 3862
hispanic: 54
bachelors_plus: 680
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/28a"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 54 |
| Bachelor's or higher | 680 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28A](/us/states/sd/districts/house/28a.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: 64
hispanic: 84
bachelors_plus: 585
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/21"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/21"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 84 |
| Bachelor's or higher | 585 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 21](/us/states/sd/districts/senate/21.md) — 100% (state senate)
- [SD House District 21](/us/states/sd/districts/house/21.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 20
hispanic: 108
bachelors_plus: 982
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/23"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 108 |
| Bachelor's or higher | 982 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 376
hispanic: 249
bachelors_plus: 2251
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/30"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/30"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 249 |
| Bachelor's or higher | 2251 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 30](/us/states/sd/districts/senate/30.md) — 100% (state senate)
- [SD House District 30](/us/states/sd/districts/house/30.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 5
hispanic: 28
bachelors_plus: 418
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/23"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 28 |
| Bachelor's or higher | 418 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 203
hispanic: 559
bachelors_plus: 1718
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/4"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 559 |
| Bachelor's or higher | 1718 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 100% (state senate)
- [SD House District 4](/us/states/sd/districts/house/4.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 162
hispanic: 24
bachelors_plus: 805
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/senate/21"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/house/21"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 24 |
| Bachelor's or higher | 805 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 21](/us/states/sd/districts/senate/21.md) — 100% (state senate)
- [SD House District 21](/us/states/sd/districts/house/21.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 108
hispanic: 2
bachelors_plus: 318
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/24"
rel: in-district
area_weight: 0.9997
- to: "us/states/sd/districts/house/24"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 2 |
| Bachelor's or higher | 318 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 24](/us/states/sd/districts/senate/24.md) — 100% (state senate)
- [SD House District 24](/us/states/sd/districts/house/24.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 23
hispanic: 375
bachelors_plus: 1126
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/4"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 375 |
| Bachelor's or higher | 1126 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 100% (state senate)
- [SD House District 4](/us/states/sd/districts/house/4.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 45
hispanic: 65
bachelors_plus: 728
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/23"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 65 |
| Bachelor's or higher | 728 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 48
bachelors_plus: 628
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/19"
rel: in-district
area_weight: 0.9997
- to: "us/states/sd/districts/house/19"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 48 |
| Bachelor's or higher | 628 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 19](/us/states/sd/districts/senate/19.md) — 100% (state senate)
- [SD House District 19](/us/states/sd/districts/house/19.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 6
hispanic: 16
bachelors_plus: 278
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/28b"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 16 |
| Bachelor's or higher | 278 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28B](/us/states/sd/districts/house/28b.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: 1941
hispanic: 580
bachelors_plus: 6532
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/24"
rel: in-district
area_weight: 0.8499
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.1501
- to: "us/states/sd/districts/house/24"
rel: in-district
area_weight: 0.8499
- to: "us/states/sd/districts/house/26b"
rel: in-district
area_weight: 0.1501
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 580 |
| Bachelor's or higher | 6532 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 24](/us/states/sd/districts/senate/24.md) — 85% (state senate)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 15% (state senate)
- [SD House District 24](/us/states/sd/districts/house/24.md) — 85% (state house)
- [SD House District 26B](/us/states/sd/districts/house/26b.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 75
hispanic: 200
bachelors_plus: 1754
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/19"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/19"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 200 |
| Bachelor's or higher | 1754 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 19](/us/states/sd/districts/senate/19.md) — 100% (state senate)
- [SD House District 19](/us/states/sd/districts/house/19.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: 11
hispanic: 19
bachelors_plus: 204
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/24"
rel: in-district
area_weight: 0.9025
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.0975
- to: "us/states/sd/districts/house/24"
rel: in-district
area_weight: 0.9025
- to: "us/states/sd/districts/house/26b"
rel: in-district
area_weight: 0.0975
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 19 |
| Bachelor's or higher | 204 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 24](/us/states/sd/districts/senate/24.md) — 90% (state senate)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 10% (state senate)
- [SD House District 24](/us/states/sd/districts/house/24.md) — 90% (state house)
- [SD House District 26B](/us/states/sd/districts/house/26b.md) — 10% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1716
hispanic: 12
bachelors_plus: 248
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/27"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 12 |
| Bachelor's or higher | 248 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 27](/us/states/sd/districts/senate/27.md) — 100% (state senate)
- [SD House District 27](/us/states/sd/districts/house/27.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 124
bachelors_plus: 322
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/20"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/house/20"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 124 |
| Bachelor's or higher | 322 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 20](/us/states/sd/districts/senate/20.md) — 100% (state senate)
- [SD House District 20](/us/states/sd/districts/house/20.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: 175
hispanic: 10
bachelors_plus: 235
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26a"
rel: in-district
area_weight: 0.5724
- to: "us/states/sd/districts/house/26b"
rel: in-district
area_weight: 0.4275
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 10 |
| Bachelor's or higher | 235 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26A](/us/states/sd/districts/house/26a.md) — 57% (state house)
- [SD House District 26B](/us/states/sd/districts/house/26b.md) — 43% (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: 152
bachelors_plus: 1029
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/8"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/8"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 152 |
| Bachelor's or higher | 1029 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 8](/us/states/sd/districts/senate/8.md) — 100% (state senate)
- [SD House District 8](/us/states/sd/districts/house/8.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 276
hispanic: 577
bachelors_plus: 3417
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/8"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/8"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 577 |
| Bachelor's or higher | 3417 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 8](/us/states/sd/districts/senate/8.md) — 100% (state senate)
- [SD House District 8](/us/states/sd/districts/house/8.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 683
hispanic: 1057
bachelors_plus: 8891
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/31"
rel: in-district
area_weight: 0.9995
- to: "us/states/sd/districts/house/31"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1057 |
| Bachelor's or higher | 8891 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 31](/us/states/sd/districts/senate/31.md) — 100% (state senate)
- [SD House District 31](/us/states/sd/districts/house/31.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 361
hispanic: 2226
bachelors_plus: 27417
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9988
- to: "us/states/sd/districts/senate/16"
rel: in-district
area_weight: 0.7995
- to: "us/states/sd/districts/senate/6"
rel: in-district
area_weight: 0.1794
- to: "us/states/sd/districts/senate/13"
rel: in-district
area_weight: 0.0119
- to: "us/states/sd/districts/senate/12"
rel: in-district
area_weight: 0.0081
- to: "us/states/sd/districts/house/16"
rel: in-district
area_weight: 0.7995
- to: "us/states/sd/districts/house/6"
rel: in-district
area_weight: 0.1794
- to: "us/states/sd/districts/house/13"
rel: in-district
area_weight: 0.0119
- to: "us/states/sd/districts/house/12"
rel: in-district
area_weight: 0.0081
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 4 officeholders mapped.
| Hispanic/Latino | 2226 |
| Bachelor's or higher | 27417 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 16](/us/states/sd/districts/senate/16.md) — 80% (state senate)
- [SD Senate District 6](/us/states/sd/districts/senate/6.md) — 18% (state senate)
- [SD Senate District 13](/us/states/sd/districts/senate/13.md) — 1% (state senate)
- [SD Senate District 12](/us/states/sd/districts/senate/12.md) — 1% (state senate)
- [SD House District 16](/us/states/sd/districts/house/16.md) — 80% (state house)
- [SD House District 6](/us/states/sd/districts/house/6.md) — 18% (state house)
- [SD House District 13](/us/states/sd/districts/house/13.md) — 1% (state house)
- [SD House District 12](/us/states/sd/districts/house/12.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: 1467
hispanic: 44
bachelors_plus: 698
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26b"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 44 |
| Bachelor's or higher | 698 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26B](/us/states/sd/districts/house/26b.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: 255
hispanic: 278
bachelors_plus: 929
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9993
- to: "us/states/sd/districts/senate/1"
rel: in-district
area_weight: 0.9993
- to: "us/states/sd/districts/house/1"
rel: in-district
area_weight: 0.9993
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 278 |
| Bachelor's or higher | 929 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 1](/us/states/sd/districts/senate/1.md) — 100% (state senate)
- [SD House District 1](/us/states/sd/districts/house/1.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 103
hispanic: 206
bachelors_plus: 1477
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/19"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/19"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 206 |
| Bachelor's or higher | 1477 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 19](/us/states/sd/districts/senate/19.md) — 100% (state senate)
- [SD House District 19](/us/states/sd/districts/house/19.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 3
hispanic: 3
bachelors_plus: 488
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/23"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 3 |
| Bachelor's or higher | 488 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 558
hispanic: 1489
bachelors_plus: 7174
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/29"
rel: in-district
area_weight: 0.9941
- to: "us/states/sd/districts/senate/33"
rel: in-district
area_weight: 0.0057
- to: "us/states/sd/districts/house/29"
rel: in-district
area_weight: 0.9941
- to: "us/states/sd/districts/house/33"
rel: in-district
area_weight: 0.0057
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1489 |
| Bachelor's or higher | 7174 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 29](/us/states/sd/districts/senate/29.md) — 99% (state senate)
- [SD Senate District 33](/us/states/sd/districts/senate/33.md) — 1% (state senate)
- [SD House District 29](/us/states/sd/districts/house/29.md) — 99% (state house)
- [SD House District 33](/us/states/sd/districts/house/33.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: 1096
hispanic: 17
bachelors_plus: 310
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26a"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 17 |
| Bachelor's or higher | 310 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26A](/us/states/sd/districts/house/26a.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: 17
hispanic: 30
bachelors_plus: 347
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/8"
rel: in-district
area_weight: 0.8111
- to: "us/states/sd/districts/senate/20"
rel: in-district
area_weight: 0.1889
- to: "us/states/sd/districts/house/8"
rel: in-district
area_weight: 0.8111
- to: "us/states/sd/districts/house/20"
rel: in-district
area_weight: 0.1889
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 30 |
| Bachelor's or higher | 347 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 8](/us/states/sd/districts/senate/8.md) — 81% (state senate)
- [SD Senate District 20](/us/states/sd/districts/senate/20.md) — 19% (state senate)
- [SD House District 8](/us/states/sd/districts/house/8.md) — 81% (state house)
- [SD House District 20](/us/states/sd/districts/house/20.md) — 19% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,63 @@ demographics:
race_native: 3333
hispanic: 15014
bachelors_plus: 70016
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/25"
rel: in-district
area_weight: 0.7076
- to: "us/states/sd/districts/senate/2"
rel: in-district
area_weight: 0.1231
- to: "us/states/sd/districts/senate/9"
rel: in-district
area_weight: 0.1084
- to: "us/states/sd/districts/senate/15"
rel: in-district
area_weight: 0.0199
- to: "us/states/sd/districts/senate/10"
rel: in-district
area_weight: 0.0152
- to: "us/states/sd/districts/senate/14"
rel: in-district
area_weight: 0.008
- to: "us/states/sd/districts/senate/11"
rel: in-district
area_weight: 0.0076
- to: "us/states/sd/districts/senate/12"
rel: in-district
area_weight: 0.0063
- to: "us/states/sd/districts/house/25"
rel: in-district
area_weight: 0.7076
- to: "us/states/sd/districts/house/2"
rel: in-district
area_weight: 0.1231
- to: "us/states/sd/districts/house/9"
rel: in-district
area_weight: 0.1084
- to: "us/states/sd/districts/house/15"
rel: in-district
area_weight: 0.0199
- to: "us/states/sd/districts/house/10"
rel: in-district
area_weight: 0.0152
- to: "us/states/sd/districts/house/14"
rel: in-district
area_weight: 0.008
- to: "us/states/sd/districts/house/11"
rel: in-district
area_weight: 0.0076
- to: "us/states/sd/districts/house/12"
rel: in-district
area_weight: 0.0063
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 4 officeholders mapped.
| Hispanic/Latino | 15014 |
| Bachelor's or higher | 70016 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 25](/us/states/sd/districts/senate/25.md) — 71% (state senate)
- [SD Senate District 2](/us/states/sd/districts/senate/2.md) — 12% (state senate)
- [SD Senate District 9](/us/states/sd/districts/senate/9.md) — 11% (state senate)
- [SD Senate District 15](/us/states/sd/districts/senate/15.md) — 2% (state senate)
- [SD Senate District 10](/us/states/sd/districts/senate/10.md) — 2% (state senate)
- [SD Senate District 14](/us/states/sd/districts/senate/14.md) — 1% (state senate)
- [SD Senate District 11](/us/states/sd/districts/senate/11.md) — 1% (state senate)
- [SD Senate District 12](/us/states/sd/districts/senate/12.md) — 1% (state senate)
- [SD House District 25](/us/states/sd/districts/house/25.md) — 71% (state house)
- [SD House District 2](/us/states/sd/districts/house/2.md) — 12% (state house)
- [SD House District 9](/us/states/sd/districts/house/9.md) — 11% (state house)
- [SD House District 15](/us/states/sd/districts/house/15.md) — 2% (state house)
- [SD House District 10](/us/states/sd/districts/house/10.md) — 2% (state house)
- [SD House District 14](/us/states/sd/districts/house/14.md) — 1% (state house)
- [SD House District 11](/us/states/sd/districts/house/11.md) — 1% (state house)
- [SD House District 12](/us/states/sd/districts/house/12.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: 822
hispanic: 371
bachelors_plus: 1728
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/25"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/house/25"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 371 |
| Bachelor's or higher | 1728 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 25](/us/states/sd/districts/senate/25.md) — 100% (state senate)
- [SD House District 25](/us/states/sd/districts/house/25.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 9062
hispanic: 7116
bachelors_plus: 40179
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/27"
rel: in-district
area_weight: 0.6395
- to: "us/states/sd/districts/senate/30"
rel: in-district
area_weight: 0.278
- to: "us/states/sd/districts/senate/33"
rel: in-district
area_weight: 0.0499
- to: "us/states/sd/districts/senate/35"
rel: in-district
area_weight: 0.0163
- to: "us/states/sd/districts/senate/34"
rel: in-district
area_weight: 0.0132
- to: "us/states/sd/districts/house/27"
rel: in-district
area_weight: 0.6395
- to: "us/states/sd/districts/house/30"
rel: in-district
area_weight: 0.278
- to: "us/states/sd/districts/house/33"
rel: in-district
area_weight: 0.0499
- to: "us/states/sd/districts/house/35"
rel: in-district
area_weight: 0.0163
- to: "us/states/sd/districts/house/34"
rel: in-district
area_weight: 0.0132
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 7116 |
| Bachelor's or higher | 40179 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 27](/us/states/sd/districts/senate/27.md) — 64% (state senate)
- [SD Senate District 30](/us/states/sd/districts/senate/30.md) — 28% (state senate)
- [SD Senate District 33](/us/states/sd/districts/senate/33.md) — 5% (state senate)
- [SD Senate District 35](/us/states/sd/districts/senate/35.md) — 2% (state senate)
- [SD Senate District 34](/us/states/sd/districts/senate/34.md) — 1% (state senate)
- [SD House District 27](/us/states/sd/districts/house/27.md) — 64% (state house)
- [SD House District 30](/us/states/sd/districts/house/30.md) — 28% (state house)
- [SD House District 33](/us/states/sd/districts/house/33.md) — 5% (state house)
- [SD House District 35](/us/states/sd/districts/house/35.md) — 2% (state house)
- [SD House District 34](/us/states/sd/districts/house/34.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: 35
hispanic: 32
bachelors_plus: 726
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/28a"
rel: in-district
area_weight: 0.6729
- to: "us/states/sd/districts/house/28b"
rel: in-district
area_weight: 0.327
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 32 |
| Bachelor's or higher | 726 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28A](/us/states/sd/districts/house/28a.md) — 67% (state house)
- [SD House District 28B](/us/states/sd/districts/house/28b.md) — 33% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 21
hispanic: 0
bachelors_plus: 556
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/house/23"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 0 |
| Bachelor's or higher | 556 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 3544
hispanic: 269
bachelors_plus: 1562
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9995
- to: "us/states/sd/districts/senate/1"
rel: in-district
area_weight: 0.8081
- to: "us/states/sd/districts/senate/4"
rel: in-district
area_weight: 0.1914
- to: "us/states/sd/districts/house/1"
rel: in-district
area_weight: 0.8081
- to: "us/states/sd/districts/house/4"
rel: in-district
area_weight: 0.1914
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 269 |
| Bachelor's or higher | 1562 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 1](/us/states/sd/districts/senate/1.md) — 81% (state senate)
- [SD Senate District 4](/us/states/sd/districts/senate/4.md) — 19% (state senate)
- [SD House District 1](/us/states/sd/districts/house/1.md) — 81% (state house)
- [SD House District 4](/us/states/sd/districts/house/4.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: 56
hispanic: 123
bachelors_plus: 449
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/20"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/20"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 123 |
| Bachelor's or higher | 449 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 20](/us/states/sd/districts/senate/20.md) — 100% (state senate)
- [SD House District 20](/us/states/sd/districts/house/20.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: 28
hispanic: 175
bachelors_plus: 1528
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/22"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/22"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 175 |
| Bachelor's or higher | 1528 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 22](/us/states/sd/districts/senate/22.md) — 100% (state senate)
- [SD House District 22](/us/states/sd/districts/house/22.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: 78
hispanic: 66
bachelors_plus: 802
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/24"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/24"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 66 |
| Bachelor's or higher | 802 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 24](/us/states/sd/districts/senate/24.md) — 100% (state senate)
- [SD House District 24](/us/states/sd/districts/house/24.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 60
hispanic: 0
bachelors_plus: 322
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/24"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/24"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 0 |
| Bachelor's or higher | 322 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 24](/us/states/sd/districts/senate/24.md) — 100% (state senate)
- [SD House District 24](/us/states/sd/districts/house/24.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 7739
hispanic: 224
bachelors_plus: 1006
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/26a"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 224 |
| Bachelor's or higher | 1006 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 26](/us/states/sd/districts/senate/26.md) — 100% (state senate)
- [SD House District 26A](/us/states/sd/districts/house/26a.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: 770
hispanic: 107
bachelors_plus: 863
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/senate/21"
rel: in-district
area_weight: 0.9997
- to: "us/states/sd/districts/house/21"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 107 |
| Bachelor's or higher | 863 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 21](/us/states/sd/districts/senate/21.md) — 100% (state senate)
- [SD House District 21](/us/states/sd/districts/house/21.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 67
hispanic: 314
bachelors_plus: 2079
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/16"
rel: in-district
area_weight: 0.8245
- to: "us/states/sd/districts/senate/19"
rel: in-district
area_weight: 0.1754
- to: "us/states/sd/districts/house/16"
rel: in-district
area_weight: 0.8245
- to: "us/states/sd/districts/house/19"
rel: in-district
area_weight: 0.1754
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 314 |
| Bachelor's or higher | 2079 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 16](/us/states/sd/districts/senate/16.md) — 82% (state senate)
- [SD Senate District 19](/us/states/sd/districts/senate/19.md) — 18% (state senate)
- [SD House District 16](/us/states/sd/districts/house/16.md) — 82% (state house)
- [SD House District 19](/us/states/sd/districts/house/19.md) — 18% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 167
hispanic: 823
bachelors_plus: 5959
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9958
- to: "us/states/sd/districts/senate/16"
rel: in-district
area_weight: 0.6389
- to: "us/states/sd/districts/senate/17"
rel: in-district
area_weight: 0.3592
- to: "us/states/sd/districts/house/16"
rel: in-district
area_weight: 0.6389
- to: "us/states/sd/districts/house/17"
rel: in-district
area_weight: 0.3592
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 823 |
| Bachelor's or higher | 5959 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 16](/us/states/sd/districts/senate/16.md) — 64% (state senate)
- [SD Senate District 17](/us/states/sd/districts/senate/17.md) — 36% (state senate)
- [SD House District 16](/us/states/sd/districts/house/16.md) — 64% (state house)
- [SD House District 17](/us/states/sd/districts/house/17.md) — 36% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 561
hispanic: 29
bachelors_plus: 1488
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/23"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/house/23"
rel: in-district
area_weight: 1.0
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 29 |
| Bachelor's or higher | 1488 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 23](/us/states/sd/districts/senate/23.md) — 100% (state senate)
- [SD House District 23](/us/states/sd/districts/house/23.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: 643
hispanic: 1370
bachelors_plus: 7020
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 0.9998
- to: "us/states/sd/districts/senate/18"
rel: in-district
area_weight: 0.9997
- to: "us/states/sd/districts/house/18"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1370 |
| Bachelor's or higher | 7020 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 18](/us/states/sd/districts/senate/18.md) — 100% (state senate)
- [SD House District 18](/us/states/sd/districts/house/18.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1659
hispanic: 35
bachelors_plus: 259
districts:
- to: "us/states/sd/districts/00"
rel: in-district
area_weight: 1.0
- to: "us/states/sd/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/sd/districts/house/28a"
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, sd]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 35 |
| Bachelor's or higher | 259 |
## Districts
- [SD-00](/us/states/sd/districts/00.md) — 100% (congressional)
- [SD Senate District 28](/us/states/sd/districts/senate/28.md) — 100% (state senate)
- [SD House District 28A](/us/states/sd/districts/house/28a.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 213053
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, sd]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 1"
classification: state-house-district
state: "SD"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 1
State House district 1 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 10"
classification: state-house-district
state: "SD"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 10
State House district 10 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 11"
classification: state-house-district
state: "SD"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 11
State House district 11 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 12"
classification: state-house-district
state: "SD"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 12
State House district 12 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 13"
classification: state-house-district
state: "SD"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 13
State House district 13 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 14"
classification: state-house-district
state: "SD"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 14
State House district 14 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 15"
classification: state-house-district
state: "SD"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 15
State House district 15 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 16"
classification: state-house-district
state: "SD"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 16
State House district 16 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 17"
classification: state-house-district
state: "SD"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 17
State House district 17 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 18"
classification: state-house-district
state: "SD"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 18
State House district 18 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 19"
classification: state-house-district
state: "SD"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 19
State House district 19 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 2"
classification: state-house-district
state: "SD"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 2
State House district 2 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 20"
classification: state-house-district
state: "SD"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 20
State House district 20 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 21"
classification: state-house-district
state: "SD"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 21
State House district 21 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 22"
classification: state-house-district
state: "SD"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 22
State House district 22 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 23"
classification: state-house-district
state: "SD"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 23
State House district 23 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 24"
classification: state-house-district
state: "SD"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 24
State House district 24 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 25"
classification: state-house-district
state: "SD"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 25
State House district 25 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 26A"
classification: state-house-district
state: "SD"
chamber: "house"
district: "26A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 26A
State House district 26A (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 26B"
classification: state-house-district
state: "SD"
chamber: "house"
district: "26B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 26B
State House district 26B (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 27"
classification: state-house-district
state: "SD"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 27
State House district 27 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 28A"
classification: state-house-district
state: "SD"
chamber: "house"
district: "28A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 28A
State House district 28A (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 28B"
classification: state-house-district
state: "SD"
chamber: "house"
district: "28B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 28B
State House district 28B (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 29"
classification: state-house-district
state: "SD"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 29
State House district 29 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 3"
classification: state-house-district
state: "SD"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 3
State House district 3 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 30"
classification: state-house-district
state: "SD"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 30
State House district 30 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 31"
classification: state-house-district
state: "SD"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 31
State House district 31 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 32"
classification: state-house-district
state: "SD"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 32
State House district 32 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 33"
classification: state-house-district
state: "SD"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 33
State House district 33 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 34"
classification: state-house-district
state: "SD"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 34
State House district 34 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 35"
classification: state-house-district
state: "SD"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 35
State House district 35 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 4"
classification: state-house-district
state: "SD"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 4
State House district 4 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 5"
classification: state-house-district
state: "SD"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 5
State House district 5 (SD).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "SD House District 6"
classification: state-house-district
state: "SD"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, sd]
timestamp: "2026-07-03"
---
# SD House District 6
State House district 6 (SD).
## Source
- boundary: Census TIGER 2024

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