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: 129
hispanic: 508
bachelors_plus: 3299
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9985
- to: "us/states/mt/districts/senate/35"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 508 |
| Bachelor's or higher | 3299 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 35](/us/states/mt/districts/senate/35.md) — 100% (state senate)
- [MT House District 70](/us/states/mt/districts/house/70.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 8607
hispanic: 610
bachelors_plus: 1748
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/senate/21"
rel: in-district
area_weight: 0.8287
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 0.1712
- to: "us/states/mt/districts/house/42"
rel: in-district
area_weight: 0.4431
- to: "us/states/mt/districts/house/41"
rel: in-district
area_weight: 0.3855
- to: "us/states/mt/districts/house/35"
rel: in-district
area_weight: 0.1712
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 610 |
| Bachelor's or higher | 1748 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 21](/us/states/mt/districts/senate/21.md) — 83% (state senate)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 17% (state senate)
- [MT House District 42](/us/states/mt/districts/house/42.md) — 44% (state house)
- [MT House District 41](/us/states/mt/districts/house/41.md) — 39% (state house)
- [MT House District 35](/us/states/mt/districts/house/35.md) — 17% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 3351
hispanic: 194
bachelors_plus: 1351
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.5818
- to: "us/states/mt/districts/senate/14"
rel: in-district
area_weight: 0.4181
- to: "us/states/mt/districts/house/32"
rel: in-district
area_weight: 0.5506
- to: "us/states/mt/districts/house/28"
rel: in-district
area_weight: 0.4181
- to: "us/states/mt/districts/house/31"
rel: in-district
area_weight: 0.0312
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 194 |
| Bachelor's or higher | 1351 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 58% (state senate)
- [MT Senate District 14](/us/states/mt/districts/senate/14.md) — 42% (state senate)
- [MT House District 32](/us/states/mt/districts/house/32.md) — 55% (state house)
- [MT House District 28](/us/states/mt/districts/house/28.md) — 42% (state house)
- [MT House District 31](/us/states/mt/districts/house/31.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 90
hispanic: 217
bachelors_plus: 1892
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9975
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/77"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 217 |
| Bachelor's or higher | 1892 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 100% (state senate)
- [MT House District 77](/us/states/mt/districts/house/77.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 36
hispanic: 337
bachelors_plus: 3998
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/senate/28"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/house/55"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 337 |
| Bachelor's or higher | 3998 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 28](/us/states/mt/districts/senate/28.md) — 100% (state senate)
- [MT House District 55](/us/states/mt/districts/house/55.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2
hispanic: 32
bachelors_plus: 256
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 32 |
| Bachelor's or higher | 256 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.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: 2852
hispanic: 4470
bachelors_plus: 22656
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/13"
rel: in-district
area_weight: 0.7419
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.2442
- to: "us/states/mt/districts/senate/11"
rel: in-district
area_weight: 0.0077
- to: "us/states/mt/districts/house/25"
rel: in-district
area_weight: 0.525
- to: "us/states/mt/districts/house/78"
rel: in-district
area_weight: 0.2442
- to: "us/states/mt/districts/house/26"
rel: in-district
area_weight: 0.2169
- to: "us/states/mt/districts/house/22"
rel: in-district
area_weight: 0.0055
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 4470 |
| Bachelor's or higher | 22656 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 13](/us/states/mt/districts/senate/13.md) — 74% (state senate)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 24% (state senate)
- [MT Senate District 11](/us/states/mt/districts/senate/11.md) — 1% (state senate)
- [MT House District 25](/us/states/mt/districts/house/25.md) — 52% (state house)
- [MT House District 78](/us/states/mt/districts/house/78.md) — 24% (state house)
- [MT House District 26](/us/states/mt/districts/house/26.md) — 22% (state house)
- [MT House District 22](/us/states/mt/districts/house/22.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: 987
hispanic: 183
bachelors_plus: 1227
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/13"
rel: in-district
area_weight: 0.9827
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.0171
- to: "us/states/mt/districts/house/26"
rel: in-district
area_weight: 0.9827
- to: "us/states/mt/districts/house/32"
rel: in-district
area_weight: 0.0171
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 183 |
| Bachelor's or higher | 1227 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 13](/us/states/mt/districts/senate/13.md) — 98% (state senate)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 2% (state senate)
- [MT House District 26](/us/states/mt/districts/house/26.md) — 98% (state house)
- [MT House District 32](/us/states/mt/districts/house/32.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: 220
hispanic: 409
bachelors_plus: 2918
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.778
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 0.222
- to: "us/states/mt/districts/house/34"
rel: in-district
area_weight: 0.778
- to: "us/states/mt/districts/house/36"
rel: in-district
area_weight: 0.222
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 409 |
| Bachelor's or higher | 2918 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 78% (state senate)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 22% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.md) — 78% (state house)
- [MT House District 36](/us/states/mt/districts/house/36.md) — 22% (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: 50
bachelors_plus: 335
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/15"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/29"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 50 |
| Bachelor's or higher | 335 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 15](/us/states/mt/districts/senate/15.md) — 100% (state senate)
- [MT House District 29](/us/states/mt/districts/house/29.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: 119
hispanic: 319
bachelors_plus: 1789
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/house/33"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 319 |
| Bachelor's or higher | 1789 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 33](/us/states/mt/districts/house/33.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: 198
hispanic: 335
bachelors_plus: 2500
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/36"
rel: in-district
area_weight: 0.9489
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.0508
- to: "us/states/mt/districts/house/71"
rel: in-district
area_weight: 0.9489
- to: "us/states/mt/districts/house/76"
rel: in-district
area_weight: 0.0508
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 335 |
| Bachelor's or higher | 2500 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 36](/us/states/mt/districts/senate/36.md) — 95% (state senate)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 5% (state senate)
- [MT House District 71](/us/states/mt/districts/house/71.md) — 95% (state house)
- [MT House District 76](/us/states/mt/districts/house/76.md) — 5% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 62
hispanic: 4
bachelors_plus: 354
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4 |
| Bachelor's or higher | 354 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 263
hispanic: 278
bachelors_plus: 2518
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/19"
rel: in-district
area_weight: 0.8077
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.1922
- to: "us/states/mt/districts/house/37"
rel: in-district
area_weight: 0.8076
- to: "us/states/mt/districts/house/78"
rel: in-district
area_weight: 0.1922
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 278 |
| Bachelor's or higher | 2518 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 19](/us/states/mt/districts/senate/19.md) — 81% (state senate)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 19% (state senate)
- [MT House District 37](/us/states/mt/districts/house/37.md) — 81% (state house)
- [MT House District 78](/us/states/mt/districts/house/78.md) — 19% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 976
hispanic: 4076
bachelors_plus: 39876
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/2"
rel: in-district
area_weight: 0.4298
- to: "us/states/mt/districts/senate/8"
rel: in-district
area_weight: 0.2421
- to: "us/states/mt/districts/senate/1"
rel: in-district
area_weight: 0.1025
- to: "us/states/mt/districts/senate/3"
rel: in-district
area_weight: 0.086
- to: "us/states/mt/districts/senate/6"
rel: in-district
area_weight: 0.0766
- to: "us/states/mt/districts/senate/5"
rel: in-district
area_weight: 0.0602
- to: "us/states/mt/districts/house/3"
rel: in-district
area_weight: 0.4268
- to: "us/states/mt/districts/house/15"
rel: in-district
area_weight: 0.2421
- to: "us/states/mt/districts/house/2"
rel: in-district
area_weight: 0.1025
- to: "us/states/mt/districts/house/11"
rel: in-district
area_weight: 0.0666
- to: "us/states/mt/districts/house/6"
rel: in-district
area_weight: 0.0491
- to: "us/states/mt/districts/house/9"
rel: in-district
area_weight: 0.0491
- to: "us/states/mt/districts/house/5"
rel: in-district
area_weight: 0.0369
- to: "us/states/mt/districts/house/10"
rel: in-district
area_weight: 0.011
- to: "us/states/mt/districts/house/12"
rel: in-district
area_weight: 0.01
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction.
| Hispanic/Latino | 4076 |
| Bachelor's or higher | 39876 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 2](/us/states/mt/districts/senate/2.md) — 43% (state senate)
- [MT Senate District 8](/us/states/mt/districts/senate/8.md) — 24% (state senate)
- [MT Senate District 1](/us/states/mt/districts/senate/1.md) — 10% (state senate)
- [MT Senate District 3](/us/states/mt/districts/senate/3.md) — 9% (state senate)
- [MT Senate District 6](/us/states/mt/districts/senate/6.md) — 8% (state senate)
- [MT Senate District 5](/us/states/mt/districts/senate/5.md) — 6% (state senate)
- [MT House District 3](/us/states/mt/districts/house/3.md) — 43% (state house)
- [MT House District 15](/us/states/mt/districts/house/15.md) — 24% (state house)
- [MT House District 2](/us/states/mt/districts/house/2.md) — 10% (state house)
- [MT House District 11](/us/states/mt/districts/house/11.md) — 7% (state house)
- [MT House District 6](/us/states/mt/districts/house/6.md) — 5% (state house)
- [MT House District 9](/us/states/mt/districts/house/9.md) — 5% (state house)
- [MT House District 5](/us/states/mt/districts/house/5.md) — 4% (state house)
- [MT House District 10](/us/states/mt/districts/house/10.md) — 1% (state house)
- [MT House District 12](/us/states/mt/districts/house/12.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,63 @@ demographics:
race_native: 755
hispanic: 6658
bachelors_plus: 60419
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9977
- to: "us/states/mt/districts/senate/30"
rel: in-district
area_weight: 0.4873
- to: "us/states/mt/districts/senate/33"
rel: in-district
area_weight: 0.1641
- to: "us/states/mt/districts/senate/29"
rel: in-district
area_weight: 0.1326
- to: "us/states/mt/districts/senate/34"
rel: in-district
area_weight: 0.0825
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.0783
- to: "us/states/mt/districts/senate/35"
rel: in-district
area_weight: 0.0417
- to: "us/states/mt/districts/senate/32"
rel: in-district
area_weight: 0.0079
- to: "us/states/mt/districts/senate/31"
rel: in-district
area_weight: 0.0055
- to: "us/states/mt/districts/house/60"
rel: in-district
area_weight: 0.4471
- to: "us/states/mt/districts/house/66"
rel: in-district
area_weight: 0.155
- to: "us/states/mt/districts/house/57"
rel: in-district
area_weight: 0.1326
- to: "us/states/mt/districts/house/68"
rel: in-district
area_weight: 0.0783
- to: "us/states/mt/districts/house/77"
rel: in-district
area_weight: 0.0783
- to: "us/states/mt/districts/house/69"
rel: in-district
area_weight: 0.0417
- to: "us/states/mt/districts/house/59"
rel: in-district
area_weight: 0.0403
- to: "us/states/mt/districts/house/65"
rel: in-district
area_weight: 0.0091
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 6658 |
| Bachelor's or higher | 60419 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 30](/us/states/mt/districts/senate/30.md) — 49% (state senate)
- [MT Senate District 33](/us/states/mt/districts/senate/33.md) — 16% (state senate)
- [MT Senate District 29](/us/states/mt/districts/senate/29.md) — 13% (state senate)
- [MT Senate District 34](/us/states/mt/districts/senate/34.md) — 8% (state senate)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 8% (state senate)
- [MT Senate District 35](/us/states/mt/districts/senate/35.md) — 4% (state senate)
- [MT Senate District 32](/us/states/mt/districts/senate/32.md) — 1% (state senate)
- [MT Senate District 31](/us/states/mt/districts/senate/31.md) — 1% (state senate)
- [MT House District 60](/us/states/mt/districts/house/60.md) — 45% (state house)
- [MT House District 66](/us/states/mt/districts/house/66.md) — 16% (state house)
- [MT House District 57](/us/states/mt/districts/house/57.md) — 13% (state house)
- [MT House District 68](/us/states/mt/districts/house/68.md) — 8% (state house)
- [MT House District 77](/us/states/mt/districts/house/77.md) — 8% (state house)
- [MT House District 69](/us/states/mt/districts/house/69.md) — 4% (state house)
- [MT House District 59](/us/states/mt/districts/house/59.md) — 4% (state house)
- [MT House District 65](/us/states/mt/districts/house/65.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: 12
hispanic: 0
bachelors_plus: 202
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/35"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 0 |
| Bachelor's or higher | 202 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 100% (state senate)
- [MT House District 35](/us/states/mt/districts/house/35.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: 8812
hispanic: 389
bachelors_plus: 1908
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/mt/districts/senate/8"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/16"
rel: in-district
area_weight: 0.8792
- to: "us/states/mt/districts/house/15"
rel: in-district
area_weight: 0.1207
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 389 |
| Bachelor's or higher | 1908 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 8](/us/states/mt/districts/senate/8.md) — 100% (state senate)
- [MT House District 16](/us/states/mt/districts/house/16.md) — 88% (state house)
- [MT House District 15](/us/states/mt/districts/house/15.md) — 12% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 7
hispanic: 39
bachelors_plus: 175
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/19"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/38"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 39 |
| Bachelor's or higher | 175 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 19](/us/states/mt/districts/senate/19.md) — 100% (state senate)
- [MT House District 38](/us/states/mt/districts/house/38.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 63
hispanic: 91
bachelors_plus: 1079
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/76"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 91 |
| Bachelor's or higher | 1079 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 100% (state senate)
- [MT House District 76](/us/states/mt/districts/house/76.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: 3675
hispanic: 566
bachelors_plus: 3147
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/14"
rel: in-district
area_weight: 0.8433
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.1565
- to: "us/states/mt/districts/house/28"
rel: in-district
area_weight: 0.8359
- to: "us/states/mt/districts/house/32"
rel: in-district
area_weight: 0.1565
- to: "us/states/mt/districts/house/27"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 566 |
| Bachelor's or higher | 3147 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 14](/us/states/mt/districts/senate/14.md) — 84% (state senate)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 16% (state senate)
- [MT House District 28](/us/states/mt/districts/house/28.md) — 84% (state house)
- [MT House District 32](/us/states/mt/districts/house/32.md) — 16% (state house)
- [MT House District 27](/us/states/mt/districts/house/27.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: 188
hispanic: 380
bachelors_plus: 4203
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9978
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.934
- to: "us/states/mt/districts/senate/35"
rel: in-district
area_weight: 0.0624
- to: "us/states/mt/districts/house/75"
rel: in-district
area_weight: 0.934
- to: "us/states/mt/districts/house/69"
rel: in-district
area_weight: 0.0624
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 380 |
| Bachelor's or higher | 4203 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 93% (state senate)
- [MT Senate District 35](/us/states/mt/districts/senate/35.md) — 6% (state senate)
- [MT House District 75](/us/states/mt/districts/house/75.md) — 93% (state house)
- [MT House District 69](/us/states/mt/districts/house/69.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 29
hispanic: 159
bachelors_plus: 561
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/78"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 159 |
| Bachelor's or higher | 561 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 100% (state senate)
- [MT House District 78](/us/states/mt/districts/house/78.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: 6608
hispanic: 1397
bachelors_plus: 9822
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/8"
rel: in-district
area_weight: 0.3086
- to: "us/states/mt/districts/senate/6"
rel: in-district
area_weight: 0.2859
- to: "us/states/mt/districts/senate/7"
rel: in-district
area_weight: 0.2072
- to: "us/states/mt/districts/senate/46"
rel: in-district
area_weight: 0.1983
- to: "us/states/mt/districts/house/15"
rel: in-district
area_weight: 0.3086
- to: "us/states/mt/districts/house/12"
rel: in-district
area_weight: 0.2859
- to: "us/states/mt/districts/house/13"
rel: in-district
area_weight: 0.2072
- to: "us/states/mt/districts/house/91"
rel: in-district
area_weight: 0.1983
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1397 |
| Bachelor's or higher | 9822 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 8](/us/states/mt/districts/senate/8.md) — 31% (state senate)
- [MT Senate District 6](/us/states/mt/districts/senate/6.md) — 29% (state senate)
- [MT Senate District 7](/us/states/mt/districts/senate/7.md) — 21% (state senate)
- [MT Senate District 46](/us/states/mt/districts/senate/46.md) — 20% (state senate)
- [MT House District 15](/us/states/mt/districts/house/15.md) — 31% (state house)
- [MT House District 12](/us/states/mt/districts/house/12.md) — 29% (state house)
- [MT House District 13](/us/states/mt/districts/house/13.md) — 21% (state house)
- [MT House District 91](/us/states/mt/districts/house/91.md) — 20% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 965
hispanic: 2958
bachelors_plus: 30194
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9977
- to: "us/states/mt/districts/senate/9"
rel: in-district
area_weight: 0.79
- to: "us/states/mt/districts/senate/42"
rel: in-district
area_weight: 0.106
- to: "us/states/mt/districts/senate/40"
rel: in-district
area_weight: 0.0475
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.0441
- to: "us/states/mt/districts/senate/41"
rel: in-district
area_weight: 0.0122
- to: "us/states/mt/districts/house/17"
rel: in-district
area_weight: 0.79
- to: "us/states/mt/districts/house/84"
rel: in-district
area_weight: 0.1019
- to: "us/states/mt/districts/house/79"
rel: in-district
area_weight: 0.0457
- to: "us/states/mt/districts/house/76"
rel: in-district
area_weight: 0.0441
- to: "us/states/mt/districts/house/81"
rel: in-district
area_weight: 0.0084
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2958 |
| Bachelor's or higher | 30194 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 9](/us/states/mt/districts/senate/9.md) — 79% (state senate)
- [MT Senate District 42](/us/states/mt/districts/senate/42.md) — 11% (state senate)
- [MT Senate District 40](/us/states/mt/districts/senate/40.md) — 5% (state senate)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 4% (state senate)
- [MT Senate District 41](/us/states/mt/districts/senate/41.md) — 1% (state senate)
- [MT House District 17](/us/states/mt/districts/house/17.md) — 79% (state house)
- [MT House District 84](/us/states/mt/districts/house/84.md) — 10% (state house)
- [MT House District 79](/us/states/mt/districts/house/79.md) — 5% (state house)
- [MT House District 76](/us/states/mt/districts/house/76.md) — 4% (state house)
- [MT House District 81](/us/states/mt/districts/house/81.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: 46
hispanic: 1
bachelors_plus: 455
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/14"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/house/28"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1 |
| Bachelor's or higher | 455 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 14](/us/states/mt/districts/senate/14.md) — 100% (state senate)
- [MT House District 28](/us/states/mt/districts/house/28.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: 240
hispanic: 654
bachelors_plus: 4051
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/1"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/1"
rel: in-district
area_weight: 0.7162
- to: "us/states/mt/districts/house/2"
rel: in-district
area_weight: 0.2837
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 654 |
| Bachelor's or higher | 4051 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 1](/us/states/mt/districts/senate/1.md) — 100% (state senate)
- [MT House District 1](/us/states/mt/districts/house/1.md) — 72% (state house)
- [MT House District 2](/us/states/mt/districts/house/2.md) — 28% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 84
hispanic: 337
bachelors_plus: 2942
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/senate/35"
rel: in-district
area_weight: 0.9906
- to: "us/states/mt/districts/senate/30"
rel: in-district
area_weight: 0.0093
- to: "us/states/mt/districts/house/69"
rel: in-district
area_weight: 0.9906
- to: "us/states/mt/districts/house/60"
rel: in-district
area_weight: 0.0093
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 337 |
| Bachelor's or higher | 2942 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 35](/us/states/mt/districts/senate/35.md) — 99% (state senate)
- [MT Senate District 30](/us/states/mt/districts/senate/30.md) — 1% (state senate)
- [MT House District 69](/us/states/mt/districts/house/69.md) — 99% (state house)
- [MT House District 60](/us/states/mt/districts/house/60.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: 42
hispanic: 4
bachelors_plus: 366
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4 |
| Bachelor's or higher | 366 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.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: 65
bachelors_plus: 563
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/78"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 65 |
| Bachelor's or higher | 563 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 100% (state senate)
- [MT House District 78](/us/states/mt/districts/house/78.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 71
hispanic: 185
bachelors_plus: 1222
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9982
- to: "us/states/mt/districts/senate/45"
rel: in-district
area_weight: 0.9994
- to: "us/states/mt/districts/house/90"
rel: in-district
area_weight: 0.9994
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 185 |
| Bachelor's or higher | 1222 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 45](/us/states/mt/districts/senate/45.md) — 100% (state senate)
- [MT House District 90](/us/states/mt/districts/house/90.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 2472
hispanic: 6096
bachelors_plus: 54955
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/senate/46"
rel: in-district
area_weight: 0.5226
- to: "us/states/mt/districts/senate/45"
rel: in-district
area_weight: 0.2776
- to: "us/states/mt/districts/senate/47"
rel: in-district
area_weight: 0.1179
- to: "us/states/mt/districts/senate/50"
rel: in-district
area_weight: 0.0378
- to: "us/states/mt/districts/senate/48"
rel: in-district
area_weight: 0.0228
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.0126
- to: "us/states/mt/districts/senate/49"
rel: in-district
area_weight: 0.0086
- to: "us/states/mt/districts/house/92"
rel: in-district
area_weight: 0.4233
- to: "us/states/mt/districts/house/90"
rel: in-district
area_weight: 0.2677
- to: "us/states/mt/districts/house/93"
rel: in-district
area_weight: 0.1151
- to: "us/states/mt/districts/house/91"
rel: in-district
area_weight: 0.0993
- to: "us/states/mt/districts/house/99"
rel: in-district
area_weight: 0.0369
- to: "us/states/mt/districts/house/96"
rel: in-district
area_weight: 0.022
- to: "us/states/mt/districts/house/76"
rel: in-district
area_weight: 0.0126
- to: "us/states/mt/districts/house/89"
rel: in-district
area_weight: 0.0099
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 6096 |
| Bachelor's or higher | 54955 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 46](/us/states/mt/districts/senate/46.md) — 52% (state senate)
- [MT Senate District 45](/us/states/mt/districts/senate/45.md) — 28% (state senate)
- [MT Senate District 47](/us/states/mt/districts/senate/47.md) — 12% (state senate)
- [MT Senate District 50](/us/states/mt/districts/senate/50.md) — 4% (state senate)
- [MT Senate District 48](/us/states/mt/districts/senate/48.md) — 2% (state senate)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 1% (state senate)
- [MT Senate District 49](/us/states/mt/districts/senate/49.md) — 1% (state senate)
- [MT House District 92](/us/states/mt/districts/house/92.md) — 42% (state house)
- [MT House District 90](/us/states/mt/districts/house/90.md) — 27% (state house)
- [MT House District 93](/us/states/mt/districts/house/93.md) — 12% (state house)
- [MT House District 91](/us/states/mt/districts/house/91.md) — 10% (state house)
- [MT House District 99](/us/states/mt/districts/house/99.md) — 4% (state house)
- [MT House District 96](/us/states/mt/districts/house/96.md) — 2% (state house)
- [MT House District 76](/us/states/mt/districts/house/76.md) — 1% (state house)
- [MT House District 89](/us/states/mt/districts/house/89.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: 196
hispanic: 221
bachelors_plus: 1078
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/19"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/38"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 221 |
| Bachelor's or higher | 1078 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 19](/us/states/mt/districts/senate/19.md) — 100% (state senate)
- [MT House District 38](/us/states/mt/districts/house/38.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: 124
hispanic: 638
bachelors_plus: 7288
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9989
- to: "us/states/mt/districts/senate/29"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/57"
rel: in-district
area_weight: 0.9625
- to: "us/states/mt/districts/house/58"
rel: in-district
area_weight: 0.0373
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 638 |
| Bachelor's or higher | 7288 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 29](/us/states/mt/districts/senate/29.md) — 100% (state senate)
- [MT House District 57](/us/states/mt/districts/house/57.md) — 96% (state house)
- [MT House District 58](/us/states/mt/districts/house/58.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2
hispanic: 0
bachelors_plus: 148
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/19"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/37"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 0 |
| Bachelor's or higher | 148 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 19](/us/states/mt/districts/senate/19.md) — 100% (state senate)
- [MT House District 37](/us/states/mt/districts/house/37.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: 316
hispanic: 46
bachelors_plus: 963
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.6133
- to: "us/states/mt/districts/senate/14"
rel: in-district
area_weight: 0.3867
- to: "us/states/mt/districts/house/28"
rel: in-district
area_weight: 0.3867
- to: "us/states/mt/districts/house/31"
rel: in-district
area_weight: 0.3197
- to: "us/states/mt/districts/house/32"
rel: in-district
area_weight: 0.2935
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 46 |
| Bachelor's or higher | 963 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 61% (state senate)
- [MT Senate District 14](/us/states/mt/districts/senate/14.md) — 39% (state senate)
- [MT House District 28](/us/states/mt/districts/house/28.md) — 39% (state house)
- [MT House District 31](/us/states/mt/districts/house/31.md) — 32% (state house)
- [MT House District 32](/us/states/mt/districts/house/32.md) — 29% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 910
hispanic: 154
bachelors_plus: 1026
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.5171
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.4829
- to: "us/states/mt/districts/senate/9"
rel: in-district
area_weight: 0.8273
- to: "us/states/mt/districts/senate/8"
rel: in-district
area_weight: 0.1727
- to: "us/states/mt/districts/house/18"
rel: in-district
area_weight: 0.8272
- to: "us/states/mt/districts/house/15"
rel: in-district
area_weight: 0.1727
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 154 |
| Bachelor's or higher | 1026 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 52% (congressional)
- [MT-01](/us/states/mt/districts/01.md) — 48% (congressional)
- [MT Senate District 9](/us/states/mt/districts/senate/9.md) — 83% (state senate)
- [MT Senate District 8](/us/states/mt/districts/senate/8.md) — 17% (state senate)
- [MT House District 18](/us/states/mt/districts/house/18.md) — 83% (state house)
- [MT House District 15](/us/states/mt/districts/house/15.md) — 17% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 40
hispanic: 26
bachelors_plus: 488
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 26 |
| Bachelor's or higher | 488 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.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: 356
hispanic: 190
bachelors_plus: 1384
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9989
- to: "us/states/mt/districts/senate/38"
rel: in-district
area_weight: 0.9998
- to: "us/states/mt/districts/house/76"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 190 |
| Bachelor's or higher | 1384 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 38](/us/states/mt/districts/senate/38.md) — 100% (state senate)
- [MT House District 76](/us/states/mt/districts/house/76.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1
hispanic: 7
bachelors_plus: 385
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 7 |
| Bachelor's or higher | 385 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.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: 317
hispanic: 1928
bachelors_plus: 13979
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.998
- to: "us/states/mt/districts/senate/43"
rel: in-district
area_weight: 0.7603
- to: "us/states/mt/districts/senate/44"
rel: in-district
area_weight: 0.2391
- to: "us/states/mt/districts/house/85"
rel: in-district
area_weight: 0.7466
- to: "us/states/mt/districts/house/87"
rel: in-district
area_weight: 0.1647
- to: "us/states/mt/districts/house/88"
rel: in-district
area_weight: 0.0744
- to: "us/states/mt/districts/house/86"
rel: in-district
area_weight: 0.0137
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 1928 |
| Bachelor's or higher | 13979 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 43](/us/states/mt/districts/senate/43.md) — 76% (state senate)
- [MT Senate District 44](/us/states/mt/districts/senate/44.md) — 24% (state senate)
- [MT House District 85](/us/states/mt/districts/house/85.md) — 75% (state house)
- [MT House District 87](/us/states/mt/districts/house/87.md) — 16% (state house)
- [MT House District 88](/us/states/mt/districts/house/88.md) — 7% (state house)
- [MT House District 86](/us/states/mt/districts/house/86.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: 24
hispanic: 620
bachelors_plus: 1965
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/senate/15"
rel: in-district
area_weight: 0.6883
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.3116
- to: "us/states/mt/districts/house/30"
rel: in-district
area_weight: 0.6883
- to: "us/states/mt/districts/house/33"
rel: in-district
area_weight: 0.3115
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 620 |
| Bachelor's or higher | 1965 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 15](/us/states/mt/districts/senate/15.md) — 69% (state senate)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 31% (state senate)
- [MT House District 30](/us/states/mt/districts/house/30.md) — 69% (state house)
- [MT House District 33](/us/states/mt/districts/house/33.md) — 31% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 6033
hispanic: 301
bachelors_plus: 1637
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/15"
rel: in-district
area_weight: 0.7582
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.2417
- to: "us/states/mt/districts/house/29"
rel: in-district
area_weight: 0.6584
- to: "us/states/mt/districts/house/31"
rel: in-district
area_weight: 0.2417
- to: "us/states/mt/districts/house/30"
rel: in-district
area_weight: 0.0998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 301 |
| Bachelor's or higher | 1637 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 15](/us/states/mt/districts/senate/15.md) — 76% (state senate)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 24% (state senate)
- [MT House District 29](/us/states/mt/districts/house/29.md) — 66% (state house)
- [MT House District 31](/us/states/mt/districts/house/31.md) — 24% (state house)
- [MT House District 30](/us/states/mt/districts/house/30.md) — 10% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 3016
hispanic: 299
bachelors_plus: 1413
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 0.82
- to: "us/states/mt/districts/senate/21"
rel: in-district
area_weight: 0.1799
- to: "us/states/mt/districts/house/35"
rel: in-district
area_weight: 0.82
- to: "us/states/mt/districts/house/41"
rel: in-district
area_weight: 0.1799
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 299 |
| Bachelor's or higher | 1413 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 82% (state senate)
- [MT Senate District 21](/us/states/mt/districts/senate/21.md) — 18% (state senate)
- [MT House District 35](/us/states/mt/districts/house/35.md) — 82% (state house)
- [MT House District 41](/us/states/mt/districts/house/41.md) — 18% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 384
hispanic: 466
bachelors_plus: 2806
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/mt/districts/senate/7"
rel: in-district
area_weight: 0.7461
- to: "us/states/mt/districts/senate/46"
rel: in-district
area_weight: 0.1891
- to: "us/states/mt/districts/senate/45"
rel: in-district
area_weight: 0.0645
- to: "us/states/mt/districts/house/14"
rel: in-district
area_weight: 0.7461
- to: "us/states/mt/districts/house/91"
rel: in-district
area_weight: 0.1891
- to: "us/states/mt/districts/house/90"
rel: in-district
area_weight: 0.0645
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 466 |
| Bachelor's or higher | 2806 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 7](/us/states/mt/districts/senate/7.md) — 75% (state senate)
- [MT Senate District 46](/us/states/mt/districts/senate/46.md) — 19% (state senate)
- [MT Senate District 45](/us/states/mt/districts/senate/45.md) — 6% (state senate)
- [MT House District 14](/us/states/mt/districts/house/14.md) — 75% (state house)
- [MT House District 91](/us/states/mt/districts/house/91.md) — 19% (state house)
- [MT House District 90](/us/states/mt/districts/house/90.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 71
hispanic: 145
bachelors_plus: 861
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9993
- to: "us/states/mt/districts/senate/15"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 145 |
| Bachelor's or higher | 861 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 15](/us/states/mt/districts/senate/15.md) — 100% (state senate)
- [MT House District 29](/us/states/mt/districts/house/29.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: 700
hispanic: 1654
bachelors_plus: 9137
districts:
- to: "us/states/mt/districts/01"
rel: in-district
area_weight: 0.9982
- to: "us/states/mt/districts/senate/35"
rel: in-district
area_weight: 0.5774
- to: "us/states/mt/districts/senate/36"
rel: in-district
area_weight: 0.2252
- to: "us/states/mt/districts/senate/37"
rel: in-district
area_weight: 0.1972
- to: "us/states/mt/districts/house/70"
rel: in-district
area_weight: 0.5774
- to: "us/states/mt/districts/house/74"
rel: in-district
area_weight: 0.1924
- to: "us/states/mt/districts/house/71"
rel: in-district
area_weight: 0.184
- to: "us/states/mt/districts/house/72"
rel: in-district
area_weight: 0.0412
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 1654 |
| Bachelor's or higher | 9137 |
## Districts
- [MT-01](/us/states/mt/districts/01.md) — 100% (congressional)
- [MT Senate District 35](/us/states/mt/districts/senate/35.md) — 58% (state senate)
- [MT Senate District 36](/us/states/mt/districts/senate/36.md) — 23% (state senate)
- [MT Senate District 37](/us/states/mt/districts/senate/37.md) — 20% (state senate)
- [MT House District 70](/us/states/mt/districts/house/70.md) — 58% (state house)
- [MT House District 74](/us/states/mt/districts/house/74.md) — 19% (state house)
- [MT House District 71](/us/states/mt/districts/house/71.md) — 18% (state house)
- [MT House District 72](/us/states/mt/districts/house/72.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 25
hispanic: 319
bachelors_plus: 2738
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/28"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/56"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 319 |
| Bachelor's or higher | 2738 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 28](/us/states/mt/districts/senate/28.md) — 100% (state senate)
- [MT House District 56](/us/states/mt/districts/house/56.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: 63
hispanic: 45
bachelors_plus: 835
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/28"
rel: in-district
area_weight: 0.7394
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.2606
- to: "us/states/mt/districts/house/56"
rel: in-district
area_weight: 0.7394
- to: "us/states/mt/districts/house/78"
rel: in-district
area_weight: 0.2606
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 45 |
| Bachelor's or higher | 835 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 28](/us/states/mt/districts/senate/28.md) — 74% (state senate)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 26% (state senate)
- [MT House District 56](/us/states/mt/districts/house/56.md) — 74% (state house)
- [MT House District 78](/us/states/mt/districts/house/78.md) — 26% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 127
hispanic: 128
bachelors_plus: 1555
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9992
- to: "us/states/mt/districts/senate/9"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/17"
rel: in-district
area_weight: 0.7694
- to: "us/states/mt/districts/house/18"
rel: in-district
area_weight: 0.2305
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 128 |
| Bachelor's or higher | 1555 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 9](/us/states/mt/districts/senate/9.md) — 100% (state senate)
- [MT House District 17](/us/states/mt/districts/house/17.md) — 77% (state house)
- [MT House District 18](/us/states/mt/districts/house/18.md) — 23% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 301
hispanic: 225
bachelors_plus: 1113
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9996
- to: "us/states/mt/districts/senate/9"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/house/18"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 225 |
| Bachelor's or higher | 1113 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 9](/us/states/mt/districts/senate/9.md) — 100% (state senate)
- [MT House District 18](/us/states/mt/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: 1
hispanic: 38
bachelors_plus: 248
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/house/35"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 38 |
| Bachelor's or higher | 248 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 100% (state senate)
- [MT House District 35](/us/states/mt/districts/house/35.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: 626
hispanic: 194
bachelors_plus: 1663
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/16"
rel: in-district
area_weight: 0.399
- to: "us/states/mt/districts/senate/14"
rel: in-district
area_weight: 0.3503
- to: "us/states/mt/districts/senate/15"
rel: in-district
area_weight: 0.2505
- to: "us/states/mt/districts/house/28"
rel: in-district
area_weight: 0.3503
- to: "us/states/mt/districts/house/29"
rel: in-district
area_weight: 0.2505
- to: "us/states/mt/districts/house/31"
rel: in-district
area_weight: 0.2183
- to: "us/states/mt/districts/house/32"
rel: in-district
area_weight: 0.1808
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 194 |
| Bachelor's or higher | 1663 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 16](/us/states/mt/districts/senate/16.md) — 40% (state senate)
- [MT Senate District 14](/us/states/mt/districts/senate/14.md) — 35% (state senate)
- [MT Senate District 15](/us/states/mt/districts/senate/15.md) — 25% (state senate)
- [MT House District 28](/us/states/mt/districts/house/28.md) — 35% (state house)
- [MT House District 29](/us/states/mt/districts/house/29.md) — 25% (state house)
- [MT House District 31](/us/states/mt/districts/house/31.md) — 22% (state house)
- [MT House District 32](/us/states/mt/districts/house/32.md) — 18% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 32
hispanic: 51
bachelors_plus: 434
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/39"
rel: in-district
area_weight: 0.9999
- to: "us/states/mt/districts/house/78"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 51 |
| Bachelor's or higher | 434 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 39](/us/states/mt/districts/senate/39.md) — 100% (state senate)
- [MT House District 78](/us/states/mt/districts/house/78.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 0
hispanic: 92
bachelors_plus: 218
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/senate/17"
rel: in-district
area_weight: 0.9997
- to: "us/states/mt/districts/house/34"
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, mt]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 92 |
| Bachelor's or higher | 218 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 17](/us/states/mt/districts/senate/17.md) — 100% (state senate)
- [MT House District 34](/us/states/mt/districts/house/34.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: 6682
hispanic: 11144
bachelors_plus: 52017
districts:
- to: "us/states/mt/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/mt/districts/senate/18"
rel: in-district
area_weight: 0.4084
- to: "us/states/mt/districts/senate/19"
rel: in-district
area_weight: 0.263
- to: "us/states/mt/districts/senate/21"
rel: in-district
area_weight: 0.145
- to: "us/states/mt/districts/senate/27"
rel: in-district
area_weight: 0.0999
- to: "us/states/mt/districts/senate/22"
rel: in-district
area_weight: 0.034
- to: "us/states/mt/districts/senate/20"
rel: in-district
area_weight: 0.0289
- to: "us/states/mt/districts/senate/26"
rel: in-district
area_weight: 0.0098
- to: "us/states/mt/districts/senate/24"
rel: in-district
area_weight: 0.0057
- to: "us/states/mt/districts/house/35"
rel: in-district
area_weight: 0.4084
- to: "us/states/mt/districts/house/38"
rel: in-district
area_weight: 0.263
- to: "us/states/mt/districts/house/42"
rel: in-district
area_weight: 0.145
- to: "us/states/mt/districts/house/54"
rel: in-district
area_weight: 0.0728
- to: "us/states/mt/districts/house/44"
rel: in-district
area_weight: 0.0328
- to: "us/states/mt/districts/house/53"
rel: in-district
area_weight: 0.0271
- to: "us/states/mt/districts/house/40"
rel: in-district
area_weight: 0.0258
- to: "us/states/mt/districts/house/52"
rel: in-district
area_weight: 0.0086
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, mt]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11144 |
| Bachelor's or higher | 52017 |
## Districts
- [MT-02](/us/states/mt/districts/02.md) — 100% (congressional)
- [MT Senate District 18](/us/states/mt/districts/senate/18.md) — 41% (state senate)
- [MT Senate District 19](/us/states/mt/districts/senate/19.md) — 26% (state senate)
- [MT Senate District 21](/us/states/mt/districts/senate/21.md) — 14% (state senate)
- [MT Senate District 27](/us/states/mt/districts/senate/27.md) — 10% (state senate)
- [MT Senate District 22](/us/states/mt/districts/senate/22.md) — 3% (state senate)
- [MT Senate District 20](/us/states/mt/districts/senate/20.md) — 3% (state senate)
- [MT Senate District 26](/us/states/mt/districts/senate/26.md) — 1% (state senate)
- [MT Senate District 24](/us/states/mt/districts/senate/24.md) — 1% (state senate)
- [MT House District 35](/us/states/mt/districts/house/35.md) — 41% (state house)
- [MT House District 38](/us/states/mt/districts/house/38.md) — 26% (state house)
- [MT House District 42](/us/states/mt/districts/house/42.md) — 14% (state house)
- [MT House District 54](/us/states/mt/districts/house/54.md) — 7% (state house)
- [MT House District 44](/us/states/mt/districts/house/44.md) — 3% (state house)
- [MT House District 53](/us/states/mt/districts/house/53.md) — 3% (state house)
- [MT House District 40](/us/states/mt/districts/house/40.md) — 3% (state house)
- [MT House District 52](/us/states/mt/districts/house/52.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 168028
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mt]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 124016
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, mt]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 1"
classification: state-house-district
state: "MT"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 1
State House district 1 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 10"
classification: state-house-district
state: "MT"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 10
State House district 10 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 100"
classification: state-house-district
state: "MT"
chamber: "house"
district: "100"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 100
State House district 100 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 11"
classification: state-house-district
state: "MT"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 11
State House district 11 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 12"
classification: state-house-district
state: "MT"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 12
State House district 12 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 13"
classification: state-house-district
state: "MT"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 13
State House district 13 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 14"
classification: state-house-district
state: "MT"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 14
State House district 14 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 15"
classification: state-house-district
state: "MT"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 15
State House district 15 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 16"
classification: state-house-district
state: "MT"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 16
State House district 16 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 17"
classification: state-house-district
state: "MT"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 17
State House district 17 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 18"
classification: state-house-district
state: "MT"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 18
State House district 18 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 19"
classification: state-house-district
state: "MT"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 19
State House district 19 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 2"
classification: state-house-district
state: "MT"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 2
State House district 2 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 20"
classification: state-house-district
state: "MT"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 20
State House district 20 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 21"
classification: state-house-district
state: "MT"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 21
State House district 21 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 22"
classification: state-house-district
state: "MT"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 22
State House district 22 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 23"
classification: state-house-district
state: "MT"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 23
State House district 23 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 24"
classification: state-house-district
state: "MT"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 24
State House district 24 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 25"
classification: state-house-district
state: "MT"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 25
State House district 25 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 26"
classification: state-house-district
state: "MT"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 26
State House district 26 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 27"
classification: state-house-district
state: "MT"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 27
State House district 27 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 28"
classification: state-house-district
state: "MT"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 28
State House district 28 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 29"
classification: state-house-district
state: "MT"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 29
State House district 29 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 3"
classification: state-house-district
state: "MT"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 3
State House district 3 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 30"
classification: state-house-district
state: "MT"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 30
State House district 30 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 31"
classification: state-house-district
state: "MT"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 31
State House district 31 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 32"
classification: state-house-district
state: "MT"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 32
State House district 32 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 33"
classification: state-house-district
state: "MT"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 33
State House district 33 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 34"
classification: state-house-district
state: "MT"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 34
State House district 34 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 35"
classification: state-house-district
state: "MT"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 35
State House district 35 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 36"
classification: state-house-district
state: "MT"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 36
State House district 36 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 37"
classification: state-house-district
state: "MT"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 37
State House district 37 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 38"
classification: state-house-district
state: "MT"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 38
State House district 38 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 39"
classification: state-house-district
state: "MT"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 39
State House district 39 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 4"
classification: state-house-district
state: "MT"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 4
State House district 4 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 40"
classification: state-house-district
state: "MT"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 40
State House district 40 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 41"
classification: state-house-district
state: "MT"
chamber: "house"
district: "41"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 41
State House district 41 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 42"
classification: state-house-district
state: "MT"
chamber: "house"
district: "42"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 42
State House district 42 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 43"
classification: state-house-district
state: "MT"
chamber: "house"
district: "43"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 43
State House district 43 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 44"
classification: state-house-district
state: "MT"
chamber: "house"
district: "44"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 44
State House district 44 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 45"
classification: state-house-district
state: "MT"
chamber: "house"
district: "45"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 45
State House district 45 (MT).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MT House District 46"
classification: state-house-district
state: "MT"
chamber: "house"
district: "46"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, mt]
timestamp: "2026-07-03"
---
# MT House District 46
State House district 46 (MT).
## Source
- boundary: Census TIGER 2024

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