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: 4
hispanic: 1088
bachelors_plus: 1304
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/70"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1088 |
| Bachelor's or higher | 1304 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 28](/us/states/ut/districts/senate/28.md) — 100% (state senate)
- [UT House District 70](/us/states/ut/districts/house/70.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: 543
hispanic: 6263
bachelors_plus: 12492
districts:
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/1"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/house/1"
rel: in-district
area_weight: 0.9898
- to: "us/states/ut/districts/house/6"
rel: in-district
area_weight: 0.0102
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 6263 |
| Bachelor's or higher | 12492 |
## Districts
- [UT-01](/us/states/ut/districts/01.md) — 100% (congressional)
- [UT Senate District 1](/us/states/ut/districts/senate/1.md) — 100% (state senate)
- [UT House District 1](/us/states/ut/districts/house/1.md) — 99% (state house)
- [UT House District 6](/us/states/ut/districts/house/6.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
+36 -1
View File
@@ -22,9 +22,33 @@ demographics:
race_native: 323
hispanic: 16428
bachelors_plus: 41982
districts:
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/2"
rel: in-district
area_weight: 0.6156
- to: "us/states/ut/districts/senate/1"
rel: in-district
area_weight: 0.3843
- to: "us/states/ut/districts/house/5"
rel: in-district
area_weight: 0.4331
- to: "us/states/ut/districts/house/3"
rel: in-district
area_weight: 0.3547
- to: "us/states/ut/districts/house/2"
rel: in-district
area_weight: 0.1385
- to: "us/states/ut/districts/house/1"
rel: in-district
area_weight: 0.0736
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 16428 |
| Bachelor's or higher | 41982 |
## Districts
- [UT-01](/us/states/ut/districts/01.md) — 100% (congressional)
- [UT Senate District 2](/us/states/ut/districts/senate/2.md) — 62% (state senate)
- [UT Senate District 1](/us/states/ut/districts/senate/1.md) — 38% (state senate)
- [UT House District 5](/us/states/ut/districts/house/5.md) — 43% (state house)
- [UT House District 3](/us/states/ut/districts/house/3.md) — 35% (state house)
- [UT House District 2](/us/states/ut/districts/house/2.md) — 14% (state house)
- [UT House District 1](/us/states/ut/districts/house/1.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 115
hispanic: 2728
bachelors_plus: 3303
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/house/67"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2728 |
| Bachelor's or higher | 3303 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 100% (state senate)
- [UT House District 67](/us/states/ut/districts/house/67.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 29
hispanic: 22
bachelors_plus: 141
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/senate/20"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/house/68"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 22 |
| Bachelor's or higher | 141 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 20](/us/states/ut/districts/senate/20.md) — 100% (state senate)
- [UT House District 68](/us/states/ut/districts/house/68.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,63 @@ demographics:
race_native: 1385
hispanic: 43362
bachelors_plus: 117940
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.6298
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.3702
- to: "us/states/ut/districts/senate/6"
rel: in-district
area_weight: 0.6709
- to: "us/states/ut/districts/senate/7"
rel: in-district
area_weight: 0.1824
- to: "us/states/ut/districts/senate/8"
rel: in-district
area_weight: 0.092
- to: "us/states/ut/districts/senate/5"
rel: in-district
area_weight: 0.0283
- to: "us/states/ut/districts/senate/4"
rel: in-district
area_weight: 0.0264
- to: "us/states/ut/districts/house/15"
rel: in-district
area_weight: 0.5797
- to: "us/states/ut/districts/house/18"
rel: in-district
area_weight: 0.1047
- to: "us/states/ut/districts/house/12"
rel: in-district
area_weight: 0.0773
- to: "us/states/ut/districts/house/19"
rel: in-district
area_weight: 0.0584
- to: "us/states/ut/districts/house/17"
rel: in-district
area_weight: 0.0516
- to: "us/states/ut/districts/house/16"
rel: in-district
area_weight: 0.0323
- to: "us/states/ut/districts/house/20"
rel: in-district
area_weight: 0.0317
- to: "us/states/ut/districts/house/11"
rel: in-district
area_weight: 0.0257
- to: "us/states/ut/districts/house/14"
rel: in-district
area_weight: 0.0199
- to: "us/states/ut/districts/house/13"
rel: in-district
area_weight: 0.0185
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 5 officeholders mapped.
| Hispanic/Latino | 43362 |
| Bachelor's or higher | 117940 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 63% (congressional)
- [UT-01](/us/states/ut/districts/01.md) — 37% (congressional)
- [UT Senate District 6](/us/states/ut/districts/senate/6.md) — 67% (state senate)
- [UT Senate District 7](/us/states/ut/districts/senate/7.md) — 18% (state senate)
- [UT Senate District 8](/us/states/ut/districts/senate/8.md) — 9% (state senate)
- [UT Senate District 5](/us/states/ut/districts/senate/5.md) — 3% (state senate)
- [UT Senate District 4](/us/states/ut/districts/senate/4.md) — 3% (state senate)
- [UT House District 15](/us/states/ut/districts/house/15.md) — 58% (state house)
- [UT House District 18](/us/states/ut/districts/house/18.md) — 10% (state house)
- [UT House District 12](/us/states/ut/districts/house/12.md) — 8% (state house)
- [UT House District 19](/us/states/ut/districts/house/19.md) — 6% (state house)
- [UT House District 17](/us/states/ut/districts/house/17.md) — 5% (state house)
- [UT House District 16](/us/states/ut/districts/house/16.md) — 3% (state house)
- [UT House District 20](/us/states/ut/districts/house/20.md) — 3% (state house)
- [UT House District 11](/us/states/ut/districts/house/11.md) — 3% (state house)
- [UT House District 14](/us/states/ut/districts/house/14.md) — 2% (state house)
- [UT House District 13](/us/states/ut/districts/house/13.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 677
hispanic: 1509
bachelors_plus: 2932
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/20"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/house/67"
rel: in-district
area_weight: 0.506
- to: "us/states/ut/districts/house/68"
rel: in-district
area_weight: 0.494
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1509 |
| Bachelor's or higher | 2932 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 20](/us/states/ut/districts/senate/20.md) — 100% (state senate)
- [UT House District 67](/us/states/ut/districts/house/67.md) — 51% (state house)
- [UT House District 68](/us/states/ut/districts/house/68.md) — 49% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 75
hispanic: 752
bachelors_plus: 1600
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/house/69"
rel: in-district
area_weight: 0.8358
- to: "us/states/ut/districts/house/67"
rel: in-district
area_weight: 0.1641
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 752 |
| Bachelor's or higher | 1600 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 100% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.md) — 84% (state house)
- [UT House District 67](/us/states/ut/districts/house/67.md) — 16% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 27
hispanic: 381
bachelors_plus: 1376
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.7008
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.2992
- to: "us/states/ut/districts/house/69"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 381 |
| Bachelor's or higher | 1376 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 70% (state senate)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 30% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.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: 314
hispanic: 1265
bachelors_plus: 3486
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/69"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1265 |
| Bachelor's or higher | 3486 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 100% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.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: 883
hispanic: 6534
bachelors_plus: 15120
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/70"
rel: in-district
area_weight: 0.7183
- to: "us/states/ut/districts/house/71"
rel: in-district
area_weight: 0.2815
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 6534 |
| Bachelor's or higher | 15120 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 28](/us/states/ut/districts/senate/28.md) — 100% (state senate)
- [UT House District 70](/us/states/ut/districts/house/70.md) — 72% (state house)
- [UT House District 71](/us/states/ut/districts/house/71.md) — 28% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 108
hispanic: 687
bachelors_plus: 1902
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.726
- to: "us/states/ut/districts/04"
rel: in-district
area_weight: 0.274
- to: "us/states/ut/districts/senate/28"
rel: in-district
area_weight: 0.5545
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.4454
- to: "us/states/ut/districts/house/29"
rel: in-district
area_weight: 0.7052
- to: "us/states/ut/districts/house/66"
rel: in-district
area_weight: 0.2948
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 687 |
| Bachelor's or higher | 1902 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 73% (congressional)
- [UT-04](/us/states/ut/districts/04.md) — 27% (congressional)
- [UT Senate District 28](/us/states/ut/districts/senate/28.md) — 55% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 45% (state senate)
- [UT House District 29](/us/states/ut/districts/house/29.md) — 71% (state house)
- [UT House District 66](/us/states/ut/districts/house/66.md) — 29% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 189
hispanic: 409
bachelors_plus: 2201
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9993
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.7692
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.2307
- to: "us/states/ut/districts/house/69"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 409 |
| Bachelor's or higher | 2201 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 77% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 23% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.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: 164
hispanic: 1805
bachelors_plus: 2318
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/senate/28"
rel: in-district
area_weight: 0.8089
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.1911
- to: "us/states/ut/districts/house/29"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1805 |
| Bachelor's or higher | 2318 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 28](/us/states/ut/districts/senate/28.md) — 81% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 19% (state senate)
- [UT House District 29](/us/states/ut/districts/house/29.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: 9
hispanic: 375
bachelors_plus: 3945
districts:
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/3"
rel: in-district
area_weight: 0.8311
- to: "us/states/ut/districts/senate/5"
rel: in-district
area_weight: 0.0862
- to: "us/states/ut/districts/senate/7"
rel: in-district
area_weight: 0.0826
- to: "us/states/ut/districts/house/4"
rel: in-district
area_weight: 0.9783
- to: "us/states/ut/districts/house/8"
rel: in-district
area_weight: 0.0215
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 375 |
| Bachelor's or higher | 3945 |
## Districts
- [UT-01](/us/states/ut/districts/01.md) — 100% (congressional)
- [UT Senate District 3](/us/states/ut/districts/senate/3.md) — 83% (state senate)
- [UT Senate District 5](/us/states/ut/districts/senate/5.md) — 9% (state senate)
- [UT Senate District 7](/us/states/ut/districts/senate/7.md) — 8% (state senate)
- [UT House District 4](/us/states/ut/districts/house/4.md) — 98% (state house)
- [UT House District 8](/us/states/ut/districts/house/8.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 128
bachelors_plus: 327
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/70"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 128 |
| Bachelor's or higher | 327 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 100% (state senate)
- [UT House District 70](/us/states/ut/districts/house/70.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 21
hispanic: 142
bachelors_plus: 542
districts:
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/ut/districts/senate/2"
rel: in-district
area_weight: 0.9997
- to: "us/states/ut/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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 142 |
| Bachelor's or higher | 542 |
## Districts
- [UT-01](/us/states/ut/districts/01.md) — 100% (congressional)
- [UT Senate District 2](/us/states/ut/districts/senate/2.md) — 100% (state senate)
- [UT House District 4](/us/states/ut/districts/house/4.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,144 @@ demographics:
race_native: 12690
hispanic: 246878
bachelors_plus: 418009
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.3266
- to: "us/states/ut/districts/04"
rel: in-district
area_weight: 0.2738
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.2489
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.1506
- to: "us/states/ut/districts/senate/10"
rel: in-district
area_weight: 0.221
- to: "us/states/ut/districts/senate/11"
rel: in-district
area_weight: 0.1655
- to: "us/states/ut/districts/senate/15"
rel: in-district
area_weight: 0.1513
- to: "us/states/ut/districts/senate/9"
rel: in-district
area_weight: 0.126
- to: "us/states/ut/districts/senate/19"
rel: in-district
area_weight: 0.0806
- to: "us/states/ut/districts/senate/18"
rel: in-district
area_weight: 0.0627
- to: "us/states/ut/districts/senate/17"
rel: in-district
area_weight: 0.0424
- to: "us/states/ut/districts/senate/8"
rel: in-district
area_weight: 0.0353
- to: "us/states/ut/districts/senate/14"
rel: in-district
area_weight: 0.0325
- to: "us/states/ut/districts/senate/16"
rel: in-district
area_weight: 0.0289
- to: "us/states/ut/districts/senate/13"
rel: in-district
area_weight: 0.0279
- to: "us/states/ut/districts/senate/12"
rel: in-district
area_weight: 0.0198
- to: "us/states/ut/districts/senate/22"
rel: in-district
area_weight: 0.0059
- to: "us/states/ut/districts/house/27"
rel: in-district
area_weight: 0.1556
- to: "us/states/ut/districts/house/21"
rel: in-district
area_weight: 0.1493
- to: "us/states/ut/districts/house/41"
rel: in-district
area_weight: 0.1189
- to: "us/states/ut/districts/house/23"
rel: in-district
area_weight: 0.0997
- to: "us/states/ut/districts/house/49"
rel: in-district
area_weight: 0.0625
- to: "us/states/ut/districts/house/33"
rel: in-district
area_weight: 0.0561
- to: "us/states/ut/districts/house/22"
rel: in-district
area_weight: 0.0498
- to: "us/states/ut/districts/house/46"
rel: in-district
area_weight: 0.042
- to: "us/states/ut/districts/house/25"
rel: in-district
area_weight: 0.0309
- to: "us/states/ut/districts/house/26"
rel: in-district
area_weight: 0.0253
- to: "us/states/ut/districts/house/47"
rel: in-district
area_weight: 0.0211
- to: "us/states/ut/districts/house/42"
rel: in-district
area_weight: 0.0173
- to: "us/states/ut/districts/house/38"
rel: in-district
area_weight: 0.0163
- to: "us/states/ut/districts/house/48"
rel: in-district
area_weight: 0.016
- to: "us/states/ut/districts/house/45"
rel: in-district
area_weight: 0.0136
- to: "us/states/ut/districts/house/39"
rel: in-district
area_weight: 0.0131
- to: "us/states/ut/districts/house/43"
rel: in-district
area_weight: 0.0126
- to: "us/states/ut/districts/house/35"
rel: in-district
area_weight: 0.0125
- to: "us/states/ut/districts/house/32"
rel: in-district
area_weight: 0.0116
- to: "us/states/ut/districts/house/44"
rel: in-district
area_weight: 0.0111
- to: "us/states/ut/districts/house/34"
rel: in-district
area_weight: 0.0109
- to: "us/states/ut/districts/house/40"
rel: in-district
area_weight: 0.0102
- to: "us/states/ut/districts/house/36"
rel: in-district
area_weight: 0.0098
- to: "us/states/ut/districts/house/31"
rel: in-district
area_weight: 0.0093
- to: "us/states/ut/districts/house/24"
rel: in-district
area_weight: 0.0086
- to: "us/states/ut/districts/house/30"
rel: in-district
area_weight: 0.0081
- to: "us/states/ut/districts/house/37"
rel: in-district
area_weight: 0.0074
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +191,54 @@ County jurisdiction — 11 officeholders mapped.
| Hispanic/Latino | 246878 |
| Bachelor's or higher | 418009 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 33% (congressional)
- [UT-04](/us/states/ut/districts/04.md) — 27% (congressional)
- [UT-03](/us/states/ut/districts/03.md) — 25% (congressional)
- [UT-01](/us/states/ut/districts/01.md) — 15% (congressional)
- [UT Senate District 10](/us/states/ut/districts/senate/10.md) — 22% (state senate)
- [UT Senate District 11](/us/states/ut/districts/senate/11.md) — 17% (state senate)
- [UT Senate District 15](/us/states/ut/districts/senate/15.md) — 15% (state senate)
- [UT Senate District 9](/us/states/ut/districts/senate/9.md) — 13% (state senate)
- [UT Senate District 19](/us/states/ut/districts/senate/19.md) — 8% (state senate)
- [UT Senate District 18](/us/states/ut/districts/senate/18.md) — 6% (state senate)
- [UT Senate District 17](/us/states/ut/districts/senate/17.md) — 4% (state senate)
- [UT Senate District 8](/us/states/ut/districts/senate/8.md) — 4% (state senate)
- [UT Senate District 14](/us/states/ut/districts/senate/14.md) — 3% (state senate)
- [UT Senate District 16](/us/states/ut/districts/senate/16.md) — 3% (state senate)
- [UT Senate District 13](/us/states/ut/districts/senate/13.md) — 3% (state senate)
- [UT Senate District 12](/us/states/ut/districts/senate/12.md) — 2% (state senate)
- [UT Senate District 22](/us/states/ut/districts/senate/22.md) — 1% (state senate)
- [UT House District 27](/us/states/ut/districts/house/27.md) — 16% (state house)
- [UT House District 21](/us/states/ut/districts/house/21.md) — 15% (state house)
- [UT House District 41](/us/states/ut/districts/house/41.md) — 12% (state house)
- [UT House District 23](/us/states/ut/districts/house/23.md) — 10% (state house)
- [UT House District 49](/us/states/ut/districts/house/49.md) — 6% (state house)
- [UT House District 33](/us/states/ut/districts/house/33.md) — 6% (state house)
- [UT House District 22](/us/states/ut/districts/house/22.md) — 5% (state house)
- [UT House District 46](/us/states/ut/districts/house/46.md) — 4% (state house)
- [UT House District 25](/us/states/ut/districts/house/25.md) — 3% (state house)
- [UT House District 26](/us/states/ut/districts/house/26.md) — 3% (state house)
- [UT House District 47](/us/states/ut/districts/house/47.md) — 2% (state house)
- [UT House District 42](/us/states/ut/districts/house/42.md) — 2% (state house)
- [UT House District 38](/us/states/ut/districts/house/38.md) — 2% (state house)
- [UT House District 48](/us/states/ut/districts/house/48.md) — 2% (state house)
- [UT House District 45](/us/states/ut/districts/house/45.md) — 1% (state house)
- [UT House District 39](/us/states/ut/districts/house/39.md) — 1% (state house)
- [UT House District 43](/us/states/ut/districts/house/43.md) — 1% (state house)
- [UT House District 35](/us/states/ut/districts/house/35.md) — 1% (state house)
- [UT House District 32](/us/states/ut/districts/house/32.md) — 1% (state house)
- [UT House District 44](/us/states/ut/districts/house/44.md) — 1% (state house)
- [UT House District 34](/us/states/ut/districts/house/34.md) — 1% (state house)
- [UT House District 40](/us/states/ut/districts/house/40.md) — 1% (state house)
- [UT House District 36](/us/states/ut/districts/house/36.md) — 1% (state house)
- [UT House District 31](/us/states/ut/districts/house/31.md) — 1% (state house)
- [UT House District 24](/us/states/ut/districts/house/24.md) — 1% (state house)
- [UT House District 30](/us/states/ut/districts/house/30.md) — 1% (state house)
- [UT House District 37](/us/states/ut/districts/house/37.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: 6583
hispanic: 833
bachelors_plus: 2484
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9991
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/house/69"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 833 |
| Bachelor's or higher | 2484 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 100% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.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: 239
hispanic: 3185
bachelors_plus: 6041
districts:
- to: "us/states/ut/districts/04"
rel: in-district
area_weight: 0.9994
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/66"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 3185 |
| Bachelor's or higher | 6041 |
## Districts
- [UT-04](/us/states/ut/districts/04.md) — 100% (congressional)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 100% (state senate)
- [UT House District 66](/us/states/ut/districts/house/66.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: 152
hispanic: 1171
bachelors_plus: 4253
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/house/70"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1171 |
| Bachelor's or higher | 4253 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 100% (state senate)
- [UT House District 70](/us/states/ut/districts/house/70.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: 206
hispanic: 4914
bachelors_plus: 24338
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.6044
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 0.3956
- to: "us/states/ut/districts/senate/20"
rel: in-district
area_weight: 0.7618
- to: "us/states/ut/districts/senate/3"
rel: in-district
area_weight: 0.2381
- to: "us/states/ut/districts/house/4"
rel: in-district
area_weight: 0.6278
- to: "us/states/ut/districts/house/68"
rel: in-district
area_weight: 0.3494
- to: "us/states/ut/districts/house/59"
rel: in-district
area_weight: 0.0213
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 4914 |
| Bachelor's or higher | 24338 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 60% (congressional)
- [UT-01](/us/states/ut/districts/01.md) — 40% (congressional)
- [UT Senate District 20](/us/states/ut/districts/senate/20.md) — 76% (state senate)
- [UT Senate District 3](/us/states/ut/districts/senate/3.md) — 24% (state senate)
- [UT House District 4](/us/states/ut/districts/house/4.md) — 63% (state house)
- [UT House District 68](/us/states/ut/districts/house/68.md) — 35% (state house)
- [UT House District 59](/us/states/ut/districts/house/59.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 456
hispanic: 11935
bachelors_plus: 14545
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/ut/districts/senate/11"
rel: in-district
area_weight: 0.7528
- to: "us/states/ut/districts/senate/1"
rel: in-district
area_weight: 0.2471
- to: "us/states/ut/districts/house/29"
rel: in-district
area_weight: 0.9854
- to: "us/states/ut/districts/house/28"
rel: in-district
area_weight: 0.0145
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11935 |
| Bachelor's or higher | 14545 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 11](/us/states/ut/districts/senate/11.md) — 75% (state senate)
- [UT Senate District 1](/us/states/ut/districts/senate/1.md) — 25% (state senate)
- [UT House District 29](/us/states/ut/districts/house/29.md) — 99% (state house)
- [UT House District 28](/us/states/ut/districts/house/28.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: 1489
hispanic: 3249
bachelors_plus: 4703
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/senate/20"
rel: in-district
area_weight: 0.9999
- to: "us/states/ut/districts/house/68"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 3249 |
| Bachelor's or higher | 4703 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 20](/us/states/ut/districts/senate/20.md) — 100% (state senate)
- [UT House District 68](/us/states/ut/districts/house/68.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,93 @@ demographics:
race_native: 4049
hispanic: 102417
bachelors_plus: 211287
districts:
- to: "us/states/ut/districts/04"
rel: in-district
area_weight: 0.828
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.171
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.4086
- to: "us/states/ut/districts/senate/25"
rel: in-district
area_weight: 0.1463
- to: "us/states/ut/districts/senate/11"
rel: in-district
area_weight: 0.1362
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.1332
- to: "us/states/ut/districts/senate/24"
rel: in-district
area_weight: 0.0592
- to: "us/states/ut/districts/senate/21"
rel: in-district
area_weight: 0.0476
- to: "us/states/ut/districts/senate/22"
rel: in-district
area_weight: 0.031
- to: "us/states/ut/districts/senate/19"
rel: in-district
area_weight: 0.0164
- to: "us/states/ut/districts/senate/23"
rel: in-district
area_weight: 0.0152
- to: "us/states/ut/districts/senate/18"
rel: in-district
area_weight: 0.0063
- to: "us/states/ut/districts/house/66"
rel: in-district
area_weight: 0.2763
- to: "us/states/ut/districts/house/50"
rel: in-district
area_weight: 0.222
- to: "us/states/ut/districts/house/63"
rel: in-district
area_weight: 0.2108
- to: "us/states/ut/districts/house/65"
rel: in-district
area_weight: 0.0518
- to: "us/states/ut/districts/house/58"
rel: in-district
area_weight: 0.0505
- to: "us/states/ut/districts/house/61"
rel: in-district
area_weight: 0.0455
- to: "us/states/ut/districts/house/54"
rel: in-district
area_weight: 0.0449
- to: "us/states/ut/districts/house/64"
rel: in-district
area_weight: 0.0298
- to: "us/states/ut/districts/house/51"
rel: in-district
area_weight: 0.0126
- to: "us/states/ut/districts/house/55"
rel: in-district
area_weight: 0.0108
- to: "us/states/ut/districts/house/52"
rel: in-district
area_weight: 0.009
- to: "us/states/ut/districts/house/62"
rel: in-district
area_weight: 0.0085
- to: "us/states/ut/districts/house/60"
rel: in-district
area_weight: 0.0075
- to: "us/states/ut/districts/house/53"
rel: in-district
area_weight: 0.0072
- to: "us/states/ut/districts/house/56"
rel: in-district
area_weight: 0.0068
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +140,37 @@ County jurisdiction — 5 officeholders mapped.
| Hispanic/Latino | 102417 |
| Bachelor's or higher | 211287 |
## Districts
- [UT-04](/us/states/ut/districts/04.md) — 83% (congressional)
- [UT-03](/us/states/ut/districts/03.md) — 17% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 41% (state senate)
- [UT Senate District 25](/us/states/ut/districts/senate/25.md) — 15% (state senate)
- [UT Senate District 11](/us/states/ut/districts/senate/11.md) — 14% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 13% (state senate)
- [UT Senate District 24](/us/states/ut/districts/senate/24.md) — 6% (state senate)
- [UT Senate District 21](/us/states/ut/districts/senate/21.md) — 5% (state senate)
- [UT Senate District 22](/us/states/ut/districts/senate/22.md) — 3% (state senate)
- [UT Senate District 19](/us/states/ut/districts/senate/19.md) — 2% (state senate)
- [UT Senate District 23](/us/states/ut/districts/senate/23.md) — 2% (state senate)
- [UT Senate District 18](/us/states/ut/districts/senate/18.md) — 1% (state senate)
- [UT House District 66](/us/states/ut/districts/house/66.md) — 28% (state house)
- [UT House District 50](/us/states/ut/districts/house/50.md) — 22% (state house)
- [UT House District 63](/us/states/ut/districts/house/63.md) — 21% (state house)
- [UT House District 65](/us/states/ut/districts/house/65.md) — 5% (state house)
- [UT House District 58](/us/states/ut/districts/house/58.md) — 5% (state house)
- [UT House District 61](/us/states/ut/districts/house/61.md) — 5% (state house)
- [UT House District 54](/us/states/ut/districts/house/54.md) — 4% (state house)
- [UT House District 64](/us/states/ut/districts/house/64.md) — 3% (state house)
- [UT House District 51](/us/states/ut/districts/house/51.md) — 1% (state house)
- [UT House District 55](/us/states/ut/districts/house/55.md) — 1% (state house)
- [UT House District 52](/us/states/ut/districts/house/52.md) — 1% (state house)
- [UT House District 62](/us/states/ut/districts/house/62.md) — 1% (state house)
- [UT House District 60](/us/states/ut/districts/house/60.md) — 1% (state house)
- [UT House District 53](/us/states/ut/districts/house/53.md) — 1% (state house)
- [UT House District 56](/us/states/ut/districts/house/56.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: 98
hispanic: 5387
bachelors_plus: 16026
districts:
- to: "us/states/ut/districts/03"
rel: in-district
area_weight: 0.9986
- to: "us/states/ut/districts/senate/20"
rel: in-district
area_weight: 0.8051
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.1457
- to: "us/states/ut/districts/senate/24"
rel: in-district
area_weight: 0.0492
- to: "us/states/ut/districts/house/59"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 5387 |
| Bachelor's or higher | 16026 |
## Districts
- [UT-03](/us/states/ut/districts/03.md) — 100% (congressional)
- [UT Senate District 20](/us/states/ut/districts/senate/20.md) — 81% (state senate)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 15% (state senate)
- [UT Senate District 24](/us/states/ut/districts/senate/24.md) — 5% (state senate)
- [UT House District 59](/us/states/ut/districts/house/59.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: 1524
hispanic: 23790
bachelors_plus: 62615
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/ut/districts/senate/29"
rel: in-district
area_weight: 0.5375
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.3355
- to: "us/states/ut/districts/senate/28"
rel: in-district
area_weight: 0.1268
- to: "us/states/ut/districts/house/72"
rel: in-district
area_weight: 0.4064
- to: "us/states/ut/districts/house/75"
rel: in-district
area_weight: 0.3565
- to: "us/states/ut/districts/house/74"
rel: in-district
area_weight: 0.1749
- to: "us/states/ut/districts/house/73"
rel: in-district
area_weight: 0.062
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 23790 |
| Bachelor's or higher | 62615 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 29](/us/states/ut/districts/senate/29.md) — 54% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 34% (state senate)
- [UT Senate District 28](/us/states/ut/districts/senate/28.md) — 13% (state senate)
- [UT House District 72](/us/states/ut/districts/house/72.md) — 41% (state house)
- [UT House District 75](/us/states/ut/districts/house/75.md) — 36% (state house)
- [UT House District 74](/us/states/ut/districts/house/74.md) — 17% (state house)
- [UT House District 73](/us/states/ut/districts/house/73.md) — 6% (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: 78
bachelors_plus: 617
districts:
- to: "us/states/ut/districts/02"
rel: in-district
area_weight: 0.9992
- to: "us/states/ut/districts/senate/26"
rel: in-district
area_weight: 0.6328
- to: "us/states/ut/districts/senate/27"
rel: in-district
area_weight: 0.3672
- to: "us/states/ut/districts/house/69"
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, ut]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 78 |
| Bachelor's or higher | 617 |
## Districts
- [UT-02](/us/states/ut/districts/02.md) — 100% (congressional)
- [UT Senate District 26](/us/states/ut/districts/senate/26.md) — 63% (state senate)
- [UT Senate District 27](/us/states/ut/districts/senate/27.md) — 37% (state senate)
- [UT House District 69](/us/states/ut/districts/house/69.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: 1883
hispanic: 51905
bachelors_plus: 64193
districts:
- to: "us/states/ut/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/ut/districts/senate/3"
rel: in-district
area_weight: 0.5353
- to: "us/states/ut/districts/senate/4"
rel: in-district
area_weight: 0.3704
- to: "us/states/ut/districts/senate/5"
rel: in-district
area_weight: 0.0941
- to: "us/states/ut/districts/house/8"
rel: in-district
area_weight: 0.5543
- to: "us/states/ut/districts/house/12"
rel: in-district
area_weight: 0.212
- to: "us/states/ut/districts/house/6"
rel: in-district
area_weight: 0.1351
- to: "us/states/ut/districts/house/9"
rel: in-district
area_weight: 0.0344
- to: "us/states/ut/districts/house/10"
rel: in-district
area_weight: 0.0275
- to: "us/states/ut/districts/house/7"
rel: in-district
area_weight: 0.0202
- to: "us/states/ut/districts/house/11"
rel: in-district
area_weight: 0.0162
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, ut]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 51905 |
| Bachelor's or higher | 64193 |
## Districts
- [UT-01](/us/states/ut/districts/01.md) — 100% (congressional)
- [UT Senate District 3](/us/states/ut/districts/senate/3.md) — 54% (state senate)
- [UT Senate District 4](/us/states/ut/districts/senate/4.md) — 37% (state senate)
- [UT Senate District 5](/us/states/ut/districts/senate/5.md) — 9% (state senate)
- [UT House District 8](/us/states/ut/districts/house/8.md) — 55% (state house)
- [UT House District 12](/us/states/ut/districts/house/12.md) — 21% (state house)
- [UT House District 6](/us/states/ut/districts/house/6.md) — 14% (state house)
- [UT House District 9](/us/states/ut/districts/house/9.md) — 3% (state house)
- [UT House District 10](/us/states/ut/districts/house/10.md) — 3% (state house)
- [UT House District 7](/us/states/ut/districts/house/7.md) — 2% (state house)
- [UT House District 11](/us/states/ut/districts/house/11.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 210051
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ut]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 200071
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ut]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 225795
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ut]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 206364
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ut]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 1"
classification: state-house-district
state: "UT"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 1
State House district 1 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 10"
classification: state-house-district
state: "UT"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 10
State House district 10 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 11"
classification: state-house-district
state: "UT"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 11
State House district 11 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 12"
classification: state-house-district
state: "UT"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 12
State House district 12 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 13"
classification: state-house-district
state: "UT"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 13
State House district 13 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 14"
classification: state-house-district
state: "UT"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 14
State House district 14 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 15"
classification: state-house-district
state: "UT"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 15
State House district 15 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 16"
classification: state-house-district
state: "UT"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 16
State House district 16 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 17"
classification: state-house-district
state: "UT"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 17
State House district 17 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 18"
classification: state-house-district
state: "UT"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 18
State House district 18 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 19"
classification: state-house-district
state: "UT"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 19
State House district 19 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 2"
classification: state-house-district
state: "UT"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 2
State House district 2 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 20"
classification: state-house-district
state: "UT"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 20
State House district 20 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 21"
classification: state-house-district
state: "UT"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 21
State House district 21 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 22"
classification: state-house-district
state: "UT"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 22
State House district 22 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 23"
classification: state-house-district
state: "UT"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 23
State House district 23 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 24"
classification: state-house-district
state: "UT"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 24
State House district 24 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 25"
classification: state-house-district
state: "UT"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 25
State House district 25 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 26"
classification: state-house-district
state: "UT"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 26
State House district 26 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 27"
classification: state-house-district
state: "UT"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 27
State House district 27 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 28"
classification: state-house-district
state: "UT"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 28
State House district 28 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 29"
classification: state-house-district
state: "UT"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 29
State House district 29 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 3"
classification: state-house-district
state: "UT"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 3
State House district 3 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 30"
classification: state-house-district
state: "UT"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 30
State House district 30 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 31"
classification: state-house-district
state: "UT"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 31
State House district 31 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 32"
classification: state-house-district
state: "UT"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 32
State House district 32 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 33"
classification: state-house-district
state: "UT"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 33
State House district 33 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 34"
classification: state-house-district
state: "UT"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 34
State House district 34 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 35"
classification: state-house-district
state: "UT"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 35
State House district 35 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 36"
classification: state-house-district
state: "UT"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 36
State House district 36 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 37"
classification: state-house-district
state: "UT"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 37
State House district 37 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 38"
classification: state-house-district
state: "UT"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 38
State House district 38 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 39"
classification: state-house-district
state: "UT"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 39
State House district 39 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 4"
classification: state-house-district
state: "UT"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 4
State House district 4 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 40"
classification: state-house-district
state: "UT"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 40
State House district 40 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 41"
classification: state-house-district
state: "UT"
chamber: "house"
district: "41"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 41
State House district 41 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 42"
classification: state-house-district
state: "UT"
chamber: "house"
district: "42"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 42
State House district 42 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 43"
classification: state-house-district
state: "UT"
chamber: "house"
district: "43"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 43
State House district 43 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 44"
classification: state-house-district
state: "UT"
chamber: "house"
district: "44"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 44
State House district 44 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 45"
classification: state-house-district
state: "UT"
chamber: "house"
district: "45"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 45
State House district 45 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 46"
classification: state-house-district
state: "UT"
chamber: "house"
district: "46"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 46
State House district 46 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 47"
classification: state-house-district
state: "UT"
chamber: "house"
district: "47"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 47
State House district 47 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 48"
classification: state-house-district
state: "UT"
chamber: "house"
district: "48"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 48
State House district 48 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 49"
classification: state-house-district
state: "UT"
chamber: "house"
district: "49"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 49
State House district 49 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 5"
classification: state-house-district
state: "UT"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 5
State House district 5 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 50"
classification: state-house-district
state: "UT"
chamber: "house"
district: "50"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 50
State House district 50 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 51"
classification: state-house-district
state: "UT"
chamber: "house"
district: "51"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 51
State House district 51 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 52"
classification: state-house-district
state: "UT"
chamber: "house"
district: "52"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 52
State House district 52 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 53"
classification: state-house-district
state: "UT"
chamber: "house"
district: "53"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 53
State House district 53 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 54"
classification: state-house-district
state: "UT"
chamber: "house"
district: "54"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 54
State House district 54 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 55"
classification: state-house-district
state: "UT"
chamber: "house"
district: "55"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 55
State House district 55 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 56"
classification: state-house-district
state: "UT"
chamber: "house"
district: "56"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 56
State House district 56 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 58"
classification: state-house-district
state: "UT"
chamber: "house"
district: "58"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 58
State House district 58 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 59"
classification: state-house-district
state: "UT"
chamber: "house"
district: "59"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 59
State House district 59 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 6"
classification: state-house-district
state: "UT"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 6
State House district 6 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 60"
classification: state-house-district
state: "UT"
chamber: "house"
district: "60"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 60
State House district 60 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 61"
classification: state-house-district
state: "UT"
chamber: "house"
district: "61"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 61
State House district 61 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 62"
classification: state-house-district
state: "UT"
chamber: "house"
district: "62"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 62
State House district 62 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 63"
classification: state-house-district
state: "UT"
chamber: "house"
district: "63"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 63
State House district 63 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 64"
classification: state-house-district
state: "UT"
chamber: "house"
district: "64"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 64
State House district 64 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 65"
classification: state-house-district
state: "UT"
chamber: "house"
district: "65"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 65
State House district 65 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 66"
classification: state-house-district
state: "UT"
chamber: "house"
district: "66"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 66
State House district 66 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 67"
classification: state-house-district
state: "UT"
chamber: "house"
district: "67"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 67
State House district 67 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 68"
classification: state-house-district
state: "UT"
chamber: "house"
district: "68"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 68
State House district 68 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 69"
classification: state-house-district
state: "UT"
chamber: "house"
district: "69"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 69
State House district 69 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 7"
classification: state-house-district
state: "UT"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 7
State House district 7 (UT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "UT House District 70"
classification: state-house-district
state: "UT"
chamber: "house"
district: "70"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ut]
timestamp: "2026-07-03"
---
# UT House District 70
State House district 70 (UT).
## Source
- boundary: Census TIGER 2024

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