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,72 @@ demographics:
race_native: 189
hispanic: 2495
bachelors_plus: 24129
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.9982
- to: "us/states/me/districts/senate/17"
rel: in-district
area_weight: 0.541
- to: "us/states/me/districts/senate/20"
rel: in-district
area_weight: 0.3051
- to: "us/states/me/districts/senate/18"
rel: in-district
area_weight: 0.0823
- to: "us/states/me/districts/senate/21"
rel: in-district
area_weight: 0.0714
- to: "us/states/me/districts/house/91"
rel: in-district
area_weight: 0.2138
- to: "us/states/me/districts/house/92"
rel: in-district
area_weight: 0.1249
- to: "us/states/me/districts/house/90"
rel: in-district
area_weight: 0.1137
- to: "us/states/me/districts/house/76"
rel: in-district
area_weight: 0.1054
- to: "us/states/me/districts/house/87"
rel: in-district
area_weight: 0.1054
- to: "us/states/me/districts/house/98"
rel: in-district
area_weight: 0.081
- to: "us/states/me/districts/house/88"
rel: in-district
area_weight: 0.0745
- to: "us/states/me/districts/house/97"
rel: in-district
area_weight: 0.0449
- to: "us/states/me/districts/house/96"
rel: in-district
area_weight: 0.0429
- to: "us/states/me/districts/house/56"
rel: in-district
area_weight: 0.0338
- to: "us/states/me/districts/house/77"
rel: in-district
area_weight: 0.0154
- to: "us/states/me/districts/house/93"
rel: in-district
area_weight: 0.0121
- to: "us/states/me/districts/house/86"
rel: in-district
area_weight: 0.0118
- to: "us/states/me/districts/house/94"
rel: in-district
area_weight: 0.0106
- to: "us/states/me/districts/house/95"
rel: in-district
area_weight: 0.0058
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +119,30 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 2495 |
| Bachelor's or higher | 24129 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 17](/us/states/me/districts/senate/17.md) — 54% (state senate)
- [ME Senate District 20](/us/states/me/districts/senate/20.md) — 31% (state senate)
- [ME Senate District 18](/us/states/me/districts/senate/18.md) — 8% (state senate)
- [ME Senate District 21](/us/states/me/districts/senate/21.md) — 7% (state senate)
- [ME House District 91](/us/states/me/districts/house/91.md) — 21% (state house)
- [ME House District 92](/us/states/me/districts/house/92.md) — 12% (state house)
- [ME House District 90](/us/states/me/districts/house/90.md) — 11% (state house)
- [ME House District 76](/us/states/me/districts/house/76.md) — 11% (state house)
- [ME House District 87](/us/states/me/districts/house/87.md) — 11% (state house)
- [ME House District 98](/us/states/me/districts/house/98.md) — 8% (state house)
- [ME House District 88](/us/states/me/districts/house/88.md) — 7% (state house)
- [ME House District 97](/us/states/me/districts/house/97.md) — 4% (state house)
- [ME House District 96](/us/states/me/districts/house/96.md) — 4% (state house)
- [ME House District 56](/us/states/me/districts/house/56.md) — 3% (state house)
- [ME House District 77](/us/states/me/districts/house/77.md) — 2% (state house)
- [ME House District 93](/us/states/me/districts/house/93.md) — 1% (state house)
- [ME House District 86](/us/states/me/districts/house/86.md) — 1% (state house)
- [ME House District 94](/us/states/me/districts/house/94.md) — 1% (state house)
- [ME House District 95](/us/states/me/districts/house/95.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 847
hispanic: 1148
bachelors_plus: 15466
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.9998
- to: "us/states/me/districts/senate/1"
rel: in-district
area_weight: 0.6809
- to: "us/states/me/districts/senate/2"
rel: in-district
area_weight: 0.3189
- to: "us/states/me/districts/house/1"
rel: in-district
area_weight: 0.4885
- to: "us/states/me/districts/house/6"
rel: in-district
area_weight: 0.1677
- to: "us/states/me/districts/house/8"
rel: in-district
area_weight: 0.127
- to: "us/states/me/districts/house/2"
rel: in-district
area_weight: 0.0947
- to: "us/states/me/districts/house/3"
rel: in-district
area_weight: 0.065
- to: "us/states/me/districts/house/7"
rel: in-district
area_weight: 0.0231
- to: "us/states/me/districts/house/4"
rel: in-district
area_weight: 0.0222
- to: "us/states/me/districts/house/5"
rel: in-district
area_weight: 0.0114
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction.
| Hispanic/Latino | 1148 |
| Bachelor's or higher | 15466 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 1](/us/states/me/districts/senate/1.md) — 68% (state senate)
- [ME Senate District 2](/us/states/me/districts/senate/2.md) — 32% (state senate)
- [ME House District 1](/us/states/me/districts/house/1.md) — 49% (state house)
- [ME House District 6](/us/states/me/districts/house/6.md) — 17% (state house)
- [ME House District 8](/us/states/me/districts/house/8.md) — 13% (state house)
- [ME House District 2](/us/states/me/districts/house/2.md) — 9% (state house)
- [ME House District 3](/us/states/me/districts/house/3.md) — 6% (state house)
- [ME House District 7](/us/states/me/districts/house/7.md) — 2% (state house)
- [ME House District 4](/us/states/me/districts/house/4.md) — 2% (state house)
- [ME House District 5](/us/states/me/districts/house/5.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,123 @@ demographics:
race_native: 524
hispanic: 8682
bachelors_plus: 169211
districts:
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.8443
- to: "us/states/me/districts/senate/22"
rel: in-district
area_weight: 0.167
- to: "us/states/me/districts/senate/23"
rel: in-district
area_weight: 0.1323
- to: "us/states/me/districts/senate/26"
rel: in-district
area_weight: 0.1198
- to: "us/states/me/districts/senate/25"
rel: in-district
area_weight: 0.1082
- to: "us/states/me/districts/senate/18"
rel: in-district
area_weight: 0.0834
- to: "us/states/me/districts/senate/30"
rel: in-district
area_weight: 0.0796
- to: "us/states/me/districts/senate/20"
rel: in-district
area_weight: 0.0394
- to: "us/states/me/districts/senate/29"
rel: in-district
area_weight: 0.0261
- to: "us/states/me/districts/senate/27"
rel: in-district
area_weight: 0.0156
- to: "us/states/me/districts/senate/28"
rel: in-district
area_weight: 0.0093
- to: "us/states/me/districts/house/84"
rel: in-district
area_weight: 0.1134
- to: "us/states/me/districts/house/83"
rel: in-district
area_weight: 0.0833
- to: "us/states/me/districts/house/86"
rel: in-district
area_weight: 0.0695
- to: "us/states/me/districts/house/104"
rel: in-district
area_weight: 0.0567
- to: "us/states/me/districts/house/85"
rel: in-district
area_weight: 0.0535
- to: "us/states/me/districts/house/99"
rel: in-district
area_weight: 0.044
- to: "us/states/me/districts/house/105"
rel: in-district
area_weight: 0.038
- to: "us/states/me/districts/house/102"
rel: in-district
area_weight: 0.0304
- to: "us/states/me/districts/house/110"
rel: in-district
area_weight: 0.0234
- to: "us/states/me/districts/house/108"
rel: in-district
area_weight: 0.0221
- to: "us/states/me/districts/house/101"
rel: in-district
area_weight: 0.0218
- to: "us/states/me/districts/house/106"
rel: in-district
area_weight: 0.0217
- to: "us/states/me/districts/house/111"
rel: in-district
area_weight: 0.0216
- to: "us/states/me/districts/house/109"
rel: in-district
area_weight: 0.0199
- to: "us/states/me/districts/house/107"
rel: in-district
area_weight: 0.0194
- to: "us/states/me/districts/house/98"
rel: in-district
area_weight: 0.0188
- to: "us/states/me/districts/house/126"
rel: in-district
area_weight: 0.0171
- to: "us/states/me/districts/house/124"
rel: in-district
area_weight: 0.0146
- to: "us/states/me/districts/house/103"
rel: in-district
area_weight: 0.0122
- to: "us/states/me/districts/house/123"
rel: in-district
area_weight: 0.0118
- to: "us/states/me/districts/house/125"
rel: in-district
area_weight: 0.0114
- to: "us/states/me/districts/house/100"
rel: in-district
area_weight: 0.0087
- to: "us/states/me/districts/house/128"
rel: in-district
area_weight: 0.0087
- to: "us/states/me/districts/house/112"
rel: in-district
area_weight: 0.0057
- to: "us/states/me/districts/house/120"
rel: in-district
area_weight: 0.0057
- to: "us/states/me/districts/house/113"
rel: in-district
area_weight: 0.0056
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +170,47 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 8682 |
| Bachelor's or higher | 169211 |
## Districts
- [ME-01](/us/states/me/districts/01.md) — 84% (congressional)
- [ME Senate District 22](/us/states/me/districts/senate/22.md) — 17% (state senate)
- [ME Senate District 23](/us/states/me/districts/senate/23.md) — 13% (state senate)
- [ME Senate District 26](/us/states/me/districts/senate/26.md) — 12% (state senate)
- [ME Senate District 25](/us/states/me/districts/senate/25.md) — 11% (state senate)
- [ME Senate District 18](/us/states/me/districts/senate/18.md) — 8% (state senate)
- [ME Senate District 30](/us/states/me/districts/senate/30.md) — 8% (state senate)
- [ME Senate District 20](/us/states/me/districts/senate/20.md) — 4% (state senate)
- [ME Senate District 29](/us/states/me/districts/senate/29.md) — 3% (state senate)
- [ME Senate District 27](/us/states/me/districts/senate/27.md) — 2% (state senate)
- [ME Senate District 28](/us/states/me/districts/senate/28.md) — 1% (state senate)
- [ME House District 84](/us/states/me/districts/house/84.md) — 11% (state house)
- [ME House District 83](/us/states/me/districts/house/83.md) — 8% (state house)
- [ME House District 86](/us/states/me/districts/house/86.md) — 7% (state house)
- [ME House District 104](/us/states/me/districts/house/104.md) — 6% (state house)
- [ME House District 85](/us/states/me/districts/house/85.md) — 5% (state house)
- [ME House District 99](/us/states/me/districts/house/99.md) — 4% (state house)
- [ME House District 105](/us/states/me/districts/house/105.md) — 4% (state house)
- [ME House District 102](/us/states/me/districts/house/102.md) — 3% (state house)
- [ME House District 110](/us/states/me/districts/house/110.md) — 2% (state house)
- [ME House District 108](/us/states/me/districts/house/108.md) — 2% (state house)
- [ME House District 101](/us/states/me/districts/house/101.md) — 2% (state house)
- [ME House District 106](/us/states/me/districts/house/106.md) — 2% (state house)
- [ME House District 111](/us/states/me/districts/house/111.md) — 2% (state house)
- [ME House District 109](/us/states/me/districts/house/109.md) — 2% (state house)
- [ME House District 107](/us/states/me/districts/house/107.md) — 2% (state house)
- [ME House District 98](/us/states/me/districts/house/98.md) — 2% (state house)
- [ME House District 126](/us/states/me/districts/house/126.md) — 2% (state house)
- [ME House District 124](/us/states/me/districts/house/124.md) — 1% (state house)
- [ME House District 103](/us/states/me/districts/house/103.md) — 1% (state house)
- [ME House District 123](/us/states/me/districts/house/123.md) — 1% (state house)
- [ME House District 125](/us/states/me/districts/house/125.md) — 1% (state house)
- [ME House District 100](/us/states/me/districts/house/100.md) — 1% (state house)
- [ME House District 128](/us/states/me/districts/house/128.md) — 1% (state house)
- [ME House District 112](/us/states/me/districts/house/112.md) — 1% (state house)
- [ME House District 120](/us/states/me/districts/house/120.md) — 1% (state house)
- [ME House District 113](/us/states/me/districts/house/113.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,36 @@ demographics:
race_native: 50
hispanic: 513
bachelors_plus: 9706
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.9992
- to: "us/states/me/districts/senate/19"
rel: in-district
area_weight: 0.6609
- to: "us/states/me/districts/senate/5"
rel: in-district
area_weight: 0.3389
- to: "us/states/me/districts/house/73"
rel: in-district
area_weight: 0.7062
- to: "us/states/me/districts/house/74"
rel: in-district
area_weight: 0.1857
- to: "us/states/me/districts/house/75"
rel: in-district
area_weight: 0.0532
- to: "us/states/me/districts/house/76"
rel: in-district
area_weight: 0.028
- to: "us/states/me/districts/house/58"
rel: in-district
area_weight: 0.0267
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 513 |
| Bachelor's or higher | 9706 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 19](/us/states/me/districts/senate/19.md) — 66% (state senate)
- [ME Senate District 5](/us/states/me/districts/senate/5.md) — 34% (state senate)
- [ME House District 73](/us/states/me/districts/house/73.md) — 71% (state house)
- [ME House District 74](/us/states/me/districts/house/74.md) — 19% (state house)
- [ME House District 75](/us/states/me/districts/house/75.md) — 5% (state house)
- [ME House District 76](/us/states/me/districts/house/76.md) — 3% (state house)
- [ME House District 58](/us/states/me/districts/house/58.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 237
hispanic: 1050
bachelors_plus: 23917
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.801
- to: "us/states/me/districts/senate/6"
rel: in-district
area_weight: 0.4224
- to: "us/states/me/districts/senate/7"
rel: in-district
area_weight: 0.2708
- to: "us/states/me/districts/senate/10"
rel: in-district
area_weight: 0.0553
- to: "us/states/me/districts/house/18"
rel: in-district
area_weight: 0.3583
- to: "us/states/me/districts/house/16"
rel: in-district
area_weight: 0.0862
- to: "us/states/me/districts/house/12"
rel: in-district
area_weight: 0.0744
- to: "us/states/me/districts/house/17"
rel: in-district
area_weight: 0.069
- to: "us/states/me/districts/house/13"
rel: in-district
area_weight: 0.0608
- to: "us/states/me/districts/house/15"
rel: in-district
area_weight: 0.0526
- to: "us/states/me/districts/house/14"
rel: in-district
area_weight: 0.0473
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction.
| Hispanic/Latino | 1050 |
| Bachelor's or higher | 23917 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 80% (congressional)
- [ME Senate District 6](/us/states/me/districts/senate/6.md) — 42% (state senate)
- [ME Senate District 7](/us/states/me/districts/senate/7.md) — 27% (state senate)
- [ME Senate District 10](/us/states/me/districts/senate/10.md) — 6% (state senate)
- [ME House District 18](/us/states/me/districts/house/18.md) — 36% (state house)
- [ME House District 16](/us/states/me/districts/house/16.md) — 9% (state house)
- [ME House District 12](/us/states/me/districts/house/12.md) — 7% (state house)
- [ME House District 17](/us/states/me/districts/house/17.md) — 7% (state house)
- [ME House District 13](/us/states/me/districts/house/13.md) — 6% (state house)
- [ME House District 15](/us/states/me/districts/house/15.md) — 5% (state house)
- [ME House District 14](/us/states/me/districts/house/14.md) — 5% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,90 @@ demographics:
race_native: 277
hispanic: 2861
bachelors_plus: 40350
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.563
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.437
- to: "us/states/me/districts/senate/15"
rel: in-district
area_weight: 0.3255
- to: "us/states/me/districts/senate/14"
rel: in-district
area_weight: 0.2864
- to: "us/states/me/districts/senate/16"
rel: in-district
area_weight: 0.1268
- to: "us/states/me/districts/senate/3"
rel: in-district
area_weight: 0.0889
- to: "us/states/me/districts/senate/17"
rel: in-district
area_weight: 0.0747
- to: "us/states/me/districts/senate/5"
rel: in-district
area_weight: 0.0603
- to: "us/states/me/districts/senate/13"
rel: in-district
area_weight: 0.0373
- to: "us/states/me/districts/house/58"
rel: in-district
area_weight: 0.2001
- to: "us/states/me/districts/house/62"
rel: in-district
area_weight: 0.097
- to: "us/states/me/districts/house/61"
rel: in-district
area_weight: 0.0951
- to: "us/states/me/districts/house/63"
rel: in-district
area_weight: 0.0921
- to: "us/states/me/districts/house/56"
rel: in-district
area_weight: 0.0825
- to: "us/states/me/districts/house/57"
rel: in-district
area_weight: 0.0723
- to: "us/states/me/districts/house/55"
rel: in-district
area_weight: 0.0585
- to: "us/states/me/districts/house/53"
rel: in-district
area_weight: 0.0583
- to: "us/states/me/districts/house/68"
rel: in-district
area_weight: 0.0472
- to: "us/states/me/districts/house/60"
rel: in-district
area_weight: 0.0397
- to: "us/states/me/districts/house/66"
rel: in-district
area_weight: 0.0328
- to: "us/states/me/districts/house/67"
rel: in-district
area_weight: 0.0307
- to: "us/states/me/districts/house/54"
rel: in-district
area_weight: 0.0295
- to: "us/states/me/districts/house/91"
rel: in-district
area_weight: 0.027
- to: "us/states/me/districts/house/59"
rel: in-district
area_weight: 0.0212
- to: "us/states/me/districts/house/65"
rel: in-district
area_weight: 0.0088
- to: "us/states/me/districts/house/64"
rel: in-district
area_weight: 0.0071
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +137,36 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 2861 |
| Bachelor's or higher | 40350 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 56% (congressional)
- [ME-01](/us/states/me/districts/01.md) — 44% (congressional)
- [ME Senate District 15](/us/states/me/districts/senate/15.md) — 33% (state senate)
- [ME Senate District 14](/us/states/me/districts/senate/14.md) — 29% (state senate)
- [ME Senate District 16](/us/states/me/districts/senate/16.md) — 13% (state senate)
- [ME Senate District 3](/us/states/me/districts/senate/3.md) — 9% (state senate)
- [ME Senate District 17](/us/states/me/districts/senate/17.md) — 7% (state senate)
- [ME Senate District 5](/us/states/me/districts/senate/5.md) — 6% (state senate)
- [ME Senate District 13](/us/states/me/districts/senate/13.md) — 4% (state senate)
- [ME House District 58](/us/states/me/districts/house/58.md) — 20% (state house)
- [ME House District 62](/us/states/me/districts/house/62.md) — 10% (state house)
- [ME House District 61](/us/states/me/districts/house/61.md) — 10% (state house)
- [ME House District 63](/us/states/me/districts/house/63.md) — 9% (state house)
- [ME House District 56](/us/states/me/districts/house/56.md) — 8% (state house)
- [ME House District 57](/us/states/me/districts/house/57.md) — 7% (state house)
- [ME House District 55](/us/states/me/districts/house/55.md) — 6% (state house)
- [ME House District 53](/us/states/me/districts/house/53.md) — 6% (state house)
- [ME House District 68](/us/states/me/districts/house/68.md) — 5% (state house)
- [ME House District 60](/us/states/me/districts/house/60.md) — 4% (state house)
- [ME House District 66](/us/states/me/districts/house/66.md) — 3% (state house)
- [ME House District 67](/us/states/me/districts/house/67.md) — 3% (state house)
- [ME House District 54](/us/states/me/districts/house/54.md) — 3% (state house)
- [ME House District 91](/us/states/me/districts/house/91.md) — 3% (state house)
- [ME House District 59](/us/states/me/districts/house/59.md) — 2% (state house)
- [ME House District 65](/us/states/me/districts/house/65.md) — 1% (state house)
- [ME House District 64](/us/states/me/districts/house/64.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 53
hispanic: 768
bachelors_plus: 17373
districts:
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.4059
- to: "us/states/me/districts/senate/12"
rel: in-district
area_weight: 0.3144
- to: "us/states/me/districts/senate/13"
rel: in-district
area_weight: 0.0348
- to: "us/states/me/districts/senate/7"
rel: in-district
area_weight: 0.0123
- to: "us/states/me/districts/house/44"
rel: in-district
area_weight: 0.0949
- to: "us/states/me/districts/house/43"
rel: in-district
area_weight: 0.0749
- to: "us/states/me/districts/house/45"
rel: in-district
area_weight: 0.05
- to: "us/states/me/districts/house/15"
rel: in-district
area_weight: 0.04
- to: "us/states/me/districts/house/41"
rel: in-district
area_weight: 0.0377
- to: "us/states/me/districts/house/42"
rel: in-district
area_weight: 0.0344
- to: "us/states/me/districts/house/40"
rel: in-district
area_weight: 0.0297
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction.
| Hispanic/Latino | 768 |
| Bachelor's or higher | 17373 |
## Districts
- [ME-01](/us/states/me/districts/01.md) — 41% (congressional)
- [ME Senate District 12](/us/states/me/districts/senate/12.md) — 31% (state senate)
- [ME Senate District 13](/us/states/me/districts/senate/13.md) — 3% (state senate)
- [ME Senate District 7](/us/states/me/districts/senate/7.md) — 1% (state senate)
- [ME House District 44](/us/states/me/districts/house/44.md) — 9% (state house)
- [ME House District 43](/us/states/me/districts/house/43.md) — 7% (state house)
- [ME House District 45](/us/states/me/districts/house/45.md) — 5% (state house)
- [ME House District 15](/us/states/me/districts/house/15.md) — 4% (state house)
- [ME House District 41](/us/states/me/districts/house/41.md) — 4% (state house)
- [ME House District 42](/us/states/me/districts/house/42.md) — 3% (state house)
- [ME House District 40](/us/states/me/districts/house/40.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 134
hispanic: 512
bachelors_plus: 15826
districts:
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.7543
- to: "us/states/me/districts/senate/13"
rel: in-district
area_weight: 0.6907
- to: "us/states/me/districts/senate/24"
rel: in-district
area_weight: 0.0476
- to: "us/states/me/districts/house/47"
rel: in-district
area_weight: 0.2222
- to: "us/states/me/districts/house/46"
rel: in-district
area_weight: 0.1543
- to: "us/states/me/districts/house/45"
rel: in-district
area_weight: 0.1464
- to: "us/states/me/districts/house/48"
rel: in-district
area_weight: 0.134
- to: "us/states/me/districts/house/53"
rel: in-district
area_weight: 0.0475
- to: "us/states/me/districts/house/62"
rel: in-district
area_weight: 0.0338
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction.
| Hispanic/Latino | 512 |
| Bachelor's or higher | 15826 |
## Districts
- [ME-01](/us/states/me/districts/01.md) — 75% (congressional)
- [ME Senate District 13](/us/states/me/districts/senate/13.md) — 69% (state senate)
- [ME Senate District 24](/us/states/me/districts/senate/24.md) — 5% (state senate)
- [ME House District 47](/us/states/me/districts/house/47.md) — 22% (state house)
- [ME House District 46](/us/states/me/districts/house/46.md) — 15% (state house)
- [ME House District 45](/us/states/me/districts/house/45.md) — 15% (state house)
- [ME House District 48](/us/states/me/districts/house/48.md) — 13% (state house)
- [ME House District 53](/us/states/me/districts/house/53.md) — 5% (state house)
- [ME House District 62](/us/states/me/districts/house/62.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,48 @@ demographics:
race_native: 117
hispanic: 1002
bachelors_plus: 14479
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.9987
- to: "us/states/me/districts/senate/19"
rel: in-district
area_weight: 0.7659
- to: "us/states/me/districts/senate/18"
rel: in-district
area_weight: 0.2013
- to: "us/states/me/districts/senate/22"
rel: in-district
area_weight: 0.0326
- to: "us/states/me/districts/house/73"
rel: in-district
area_weight: 0.3781
- to: "us/states/me/districts/house/81"
rel: in-district
area_weight: 0.1509
- to: "us/states/me/districts/house/78"
rel: in-district
area_weight: 0.1172
- to: "us/states/me/districts/house/82"
rel: in-district
area_weight: 0.1052
- to: "us/states/me/districts/house/77"
rel: in-district
area_weight: 0.0866
- to: "us/states/me/districts/house/79"
rel: in-district
area_weight: 0.072
- to: "us/states/me/districts/house/80"
rel: in-district
area_weight: 0.0669
- to: "us/states/me/districts/house/83"
rel: in-district
area_weight: 0.0228
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +95,22 @@ County jurisdiction.
| Hispanic/Latino | 1002 |
| Bachelor's or higher | 14479 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 19](/us/states/me/districts/senate/19.md) — 77% (state senate)
- [ME Senate District 18](/us/states/me/districts/senate/18.md) — 20% (state senate)
- [ME Senate District 22](/us/states/me/districts/senate/22.md) — 3% (state senate)
- [ME House District 73](/us/states/me/districts/house/73.md) — 38% (state house)
- [ME House District 81](/us/states/me/districts/house/81.md) — 15% (state house)
- [ME House District 78](/us/states/me/districts/house/78.md) — 12% (state house)
- [ME House District 82](/us/states/me/districts/house/82.md) — 11% (state house)
- [ME House District 77](/us/states/me/districts/house/77.md) — 9% (state house)
- [ME House District 79](/us/states/me/districts/house/79.md) — 7% (state house)
- [ME House District 80](/us/states/me/districts/house/80.md) — 7% (state house)
- [ME House District 83](/us/states/me/districts/house/83.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,69 @@ demographics:
race_native: 1330
hispanic: 3223
bachelors_plus: 46909
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/me/districts/senate/2"
rel: in-district
area_weight: 0.4396
- to: "us/states/me/districts/senate/8"
rel: in-district
area_weight: 0.3028
- to: "us/states/me/districts/senate/4"
rel: in-district
area_weight: 0.1093
- to: "us/states/me/districts/senate/10"
rel: in-district
area_weight: 0.0822
- to: "us/states/me/districts/senate/3"
rel: in-district
area_weight: 0.0461
- to: "us/states/me/districts/senate/9"
rel: in-district
area_weight: 0.0199
- to: "us/states/me/districts/house/8"
rel: in-district
area_weight: 0.1319
- to: "us/states/me/districts/house/28"
rel: in-district
area_weight: 0.099
- to: "us/states/me/districts/house/18"
rel: in-district
area_weight: 0.0881
- to: "us/states/me/districts/house/27"
rel: in-district
area_weight: 0.0638
- to: "us/states/me/districts/house/32"
rel: in-district
area_weight: 0.0555
- to: "us/states/me/districts/house/33"
rel: in-district
area_weight: 0.047
- to: "us/states/me/districts/house/26"
rel: in-district
area_weight: 0.0324
- to: "us/states/me/districts/house/19"
rel: in-district
area_weight: 0.024
- to: "us/states/me/districts/house/34"
rel: in-district
area_weight: 0.0212
- to: "us/states/me/districts/house/35"
rel: in-district
area_weight: 0.0205
- to: "us/states/me/districts/house/36"
rel: in-district
area_weight: 0.0194
- to: "us/states/me/districts/house/24"
rel: in-district
area_weight: 0.006
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +116,29 @@ County jurisdiction.
| Hispanic/Latino | 3223 |
| Bachelor's or higher | 46909 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 2](/us/states/me/districts/senate/2.md) — 44% (state senate)
- [ME Senate District 8](/us/states/me/districts/senate/8.md) — 30% (state senate)
- [ME Senate District 4](/us/states/me/districts/senate/4.md) — 11% (state senate)
- [ME Senate District 10](/us/states/me/districts/senate/10.md) — 8% (state senate)
- [ME Senate District 3](/us/states/me/districts/senate/3.md) — 5% (state senate)
- [ME Senate District 9](/us/states/me/districts/senate/9.md) — 2% (state senate)
- [ME House District 8](/us/states/me/districts/house/8.md) — 13% (state house)
- [ME House District 28](/us/states/me/districts/house/28.md) — 10% (state house)
- [ME House District 18](/us/states/me/districts/house/18.md) — 9% (state house)
- [ME House District 27](/us/states/me/districts/house/27.md) — 6% (state house)
- [ME House District 32](/us/states/me/districts/house/32.md) — 6% (state house)
- [ME House District 33](/us/states/me/districts/house/33.md) — 5% (state house)
- [ME House District 26](/us/states/me/districts/house/26.md) — 3% (state house)
- [ME House District 19](/us/states/me/districts/house/19.md) — 2% (state house)
- [ME House District 34](/us/states/me/districts/house/34.md) — 2% (state house)
- [ME House District 35](/us/states/me/districts/house/35.md) — 2% (state house)
- [ME House District 36](/us/states/me/districts/house/36.md) — 2% (state house)
- [ME House District 24](/us/states/me/districts/house/24.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 22
hispanic: 320
bachelors_plus: 3788
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/me/districts/senate/4"
rel: in-district
area_weight: 0.9996
- to: "us/states/me/districts/house/30"
rel: in-district
area_weight: 0.9266
- to: "us/states/me/districts/house/31"
rel: in-district
area_weight: 0.073
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 320 |
| Bachelor's or higher | 3788 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 4](/us/states/me/districts/senate/4.md) — 100% (state senate)
- [ME House District 30](/us/states/me/districts/house/30.md) — 93% (state house)
- [ME House District 31](/us/states/me/districts/house/31.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 40
hispanic: 754
bachelors_plus: 17737
districts:
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.8098
- to: "us/states/me/districts/senate/24"
rel: in-district
area_weight: 0.8058
- to: "us/states/me/districts/house/49"
rel: in-district
area_weight: 0.3544
- to: "us/states/me/districts/house/52"
rel: in-district
area_weight: 0.2832
- to: "us/states/me/districts/house/51"
rel: in-district
area_weight: 0.0726
- to: "us/states/me/districts/house/98"
rel: in-district
area_weight: 0.0599
- to: "us/states/me/districts/house/50"
rel: in-district
area_weight: 0.0357
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction.
| Hispanic/Latino | 754 |
| Bachelor's or higher | 17737 |
## Districts
- [ME-01](/us/states/me/districts/01.md) — 81% (congressional)
- [ME Senate District 24](/us/states/me/districts/senate/24.md) — 81% (state senate)
- [ME House District 49](/us/states/me/districts/house/49.md) — 35% (state house)
- [ME House District 52](/us/states/me/districts/house/52.md) — 28% (state house)
- [ME House District 51](/us/states/me/districts/house/51.md) — 7% (state house)
- [ME House District 98](/us/states/me/districts/house/98.md) — 6% (state house)
- [ME House District 50](/us/states/me/districts/house/50.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,54 @@ demographics:
race_native: 108
hispanic: 787
bachelors_plus: 10290
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.9993
- to: "us/states/me/districts/senate/5"
rel: in-district
area_weight: 0.9096
- to: "us/states/me/districts/senate/3"
rel: in-district
area_weight: 0.077
- to: "us/states/me/districts/senate/16"
rel: in-district
area_weight: 0.0131
- to: "us/states/me/districts/house/72"
rel: in-district
area_weight: 0.5975
- to: "us/states/me/districts/house/73"
rel: in-district
area_weight: 0.2351
- to: "us/states/me/districts/house/69"
rel: in-district
area_weight: 0.0469
- to: "us/states/me/districts/house/71"
rel: in-district
area_weight: 0.0355
- to: "us/states/me/districts/house/66"
rel: in-district
area_weight: 0.0203
- to: "us/states/me/districts/house/70"
rel: in-district
area_weight: 0.0146
- to: "us/states/me/districts/house/30"
rel: in-district
area_weight: 0.0145
- to: "us/states/me/districts/house/67"
rel: in-district
area_weight: 0.0131
- to: "us/states/me/districts/house/68"
rel: in-district
area_weight: 0.0117
- to: "us/states/me/districts/house/74"
rel: in-district
area_weight: 0.0107
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +101,24 @@ County jurisdiction.
| Hispanic/Latino | 787 |
| Bachelor's or higher | 10290 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 100% (congressional)
- [ME Senate District 5](/us/states/me/districts/senate/5.md) — 91% (state senate)
- [ME Senate District 3](/us/states/me/districts/senate/3.md) — 8% (state senate)
- [ME Senate District 16](/us/states/me/districts/senate/16.md) — 1% (state senate)
- [ME House District 72](/us/states/me/districts/house/72.md) — 60% (state house)
- [ME House District 73](/us/states/me/districts/house/73.md) — 24% (state house)
- [ME House District 69](/us/states/me/districts/house/69.md) — 5% (state house)
- [ME House District 71](/us/states/me/districts/house/71.md) — 4% (state house)
- [ME House District 66](/us/states/me/districts/house/66.md) — 2% (state house)
- [ME House District 70](/us/states/me/districts/house/70.md) — 1% (state house)
- [ME House District 30](/us/states/me/districts/house/30.md) — 1% (state house)
- [ME House District 67](/us/states/me/districts/house/67.md) — 1% (state house)
- [ME House District 68](/us/states/me/districts/house/68.md) — 1% (state house)
- [ME House District 74](/us/states/me/districts/house/74.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 79
hispanic: 651
bachelors_plus: 14744
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.8866
- to: "us/states/me/districts/senate/11"
rel: in-district
area_weight: 0.8836
- to: "us/states/me/districts/house/38"
rel: in-district
area_weight: 0.2739
- to: "us/states/me/districts/house/40"
rel: in-district
area_weight: 0.2126
- to: "us/states/me/districts/house/37"
rel: in-district
area_weight: 0.1464
- to: "us/states/me/districts/house/68"
rel: in-district
area_weight: 0.0896
- to: "us/states/me/districts/house/39"
rel: in-district
area_weight: 0.0852
- to: "us/states/me/districts/house/62"
rel: in-district
area_weight: 0.0503
- to: "us/states/me/districts/house/63"
rel: in-district
area_weight: 0.0257
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction.
| Hispanic/Latino | 651 |
| Bachelor's or higher | 14744 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 89% (congressional)
- [ME Senate District 11](/us/states/me/districts/senate/11.md) — 88% (state senate)
- [ME House District 38](/us/states/me/districts/house/38.md) — 27% (state house)
- [ME House District 40](/us/states/me/districts/house/40.md) — 21% (state house)
- [ME House District 37](/us/states/me/districts/house/37.md) — 15% (state house)
- [ME House District 68](/us/states/me/districts/house/68.md) — 9% (state house)
- [ME House District 39](/us/states/me/districts/house/39.md) — 9% (state house)
- [ME House District 62](/us/states/me/districts/house/62.md) — 5% (state house)
- [ME House District 63](/us/states/me/districts/house/63.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,36 @@ demographics:
race_native: 1463
hispanic: 796
bachelors_plus: 7861
districts:
- to: "us/states/me/districts/02"
rel: in-district
area_weight: 0.887
- to: "us/states/me/districts/senate/6"
rel: in-district
area_weight: 0.8718
- to: "us/states/me/districts/house/10"
rel: in-district
area_weight: 0.2779
- to: "us/states/me/districts/house/8"
rel: in-district
area_weight: 0.1981
- to: "us/states/me/districts/house/18"
rel: in-district
area_weight: 0.1912
- to: "us/states/me/districts/house/11"
rel: in-district
area_weight: 0.1003
- to: "us/states/me/districts/house/9"
rel: in-district
area_weight: 0.0901
- to: "us/states/me/districts/house/12"
rel: in-district
area_weight: 0.0142
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 796 |
| Bachelor's or higher | 7861 |
## Districts
- [ME-02](/us/states/me/districts/02.md) — 89% (congressional)
- [ME Senate District 6](/us/states/me/districts/senate/6.md) — 87% (state senate)
- [ME House District 10](/us/states/me/districts/house/10.md) — 28% (state house)
- [ME House District 8](/us/states/me/districts/house/8.md) — 20% (state house)
- [ME House District 18](/us/states/me/districts/house/18.md) — 19% (state house)
- [ME House District 11](/us/states/me/districts/house/11.md) — 10% (state house)
- [ME House District 9](/us/states/me/districts/house/9.md) — 9% (state house)
- [ME House District 12](/us/states/me/districts/house/12.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,102 @@ demographics:
race_native: 361
hispanic: 4704
bachelors_plus: 80245
districts:
- to: "us/states/me/districts/01"
rel: in-district
area_weight: 0.806
- to: "us/states/me/districts/senate/22"
rel: in-district
area_weight: 0.213
- to: "us/states/me/districts/senate/34"
rel: in-district
area_weight: 0.1507
- to: "us/states/me/districts/senate/33"
rel: in-district
area_weight: 0.1494
- to: "us/states/me/districts/senate/32"
rel: in-district
area_weight: 0.117
- to: "us/states/me/districts/senate/35"
rel: in-district
area_weight: 0.107
- to: "us/states/me/districts/senate/31"
rel: in-district
area_weight: 0.0696
- to: "us/states/me/districts/house/139"
rel: in-district
area_weight: 0.0902
- to: "us/states/me/districts/house/144"
rel: in-district
area_weight: 0.0762
- to: "us/states/me/districts/house/141"
rel: in-district
area_weight: 0.0707
- to: "us/states/me/districts/house/138"
rel: in-district
area_weight: 0.068
- to: "us/states/me/districts/house/136"
rel: in-district
area_weight: 0.0612
- to: "us/states/me/districts/house/140"
rel: in-district
area_weight: 0.0506
- to: "us/states/me/districts/house/148"
rel: in-district
area_weight: 0.0481
- to: "us/states/me/districts/house/137"
rel: in-district
area_weight: 0.0427
- to: "us/states/me/districts/house/145"
rel: in-district
area_weight: 0.0416
- to: "us/states/me/districts/house/146"
rel: in-district
area_weight: 0.0383
- to: "us/states/me/districts/house/149"
rel: in-district
area_weight: 0.0329
- to: "us/states/me/districts/house/134"
rel: in-district
area_weight: 0.0306
- to: "us/states/me/districts/house/135"
rel: in-district
area_weight: 0.0242
- to: "us/states/me/districts/house/150"
rel: in-district
area_weight: 0.022
- to: "us/states/me/districts/house/143"
rel: in-district
area_weight: 0.0214
- to: "us/states/me/districts/house/151"
rel: in-district
area_weight: 0.0156
- to: "us/states/me/districts/house/133"
rel: in-district
area_weight: 0.0148
- to: "us/states/me/districts/house/147"
rel: in-district
area_weight: 0.014
- to: "us/states/me/districts/house/126"
rel: in-district
area_weight: 0.0112
- to: "us/states/me/districts/house/129"
rel: in-district
area_weight: 0.0102
- to: "us/states/me/districts/house/130"
rel: in-district
area_weight: 0.0097
- to: "us/states/me/districts/house/131"
rel: in-district
area_weight: 0.006
- to: "us/states/me/districts/house/142"
rel: in-district
area_weight: 0.0052
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, me]
timestamp: "2026-07-03"
@@ -56,6 +149,40 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 4704 |
| Bachelor's or higher | 80245 |
## Districts
- [ME-01](/us/states/me/districts/01.md) — 81% (congressional)
- [ME Senate District 22](/us/states/me/districts/senate/22.md) — 21% (state senate)
- [ME Senate District 34](/us/states/me/districts/senate/34.md) — 15% (state senate)
- [ME Senate District 33](/us/states/me/districts/senate/33.md) — 15% (state senate)
- [ME Senate District 32](/us/states/me/districts/senate/32.md) — 12% (state senate)
- [ME Senate District 35](/us/states/me/districts/senate/35.md) — 11% (state senate)
- [ME Senate District 31](/us/states/me/districts/senate/31.md) — 7% (state senate)
- [ME House District 139](/us/states/me/districts/house/139.md) — 9% (state house)
- [ME House District 144](/us/states/me/districts/house/144.md) — 8% (state house)
- [ME House District 141](/us/states/me/districts/house/141.md) — 7% (state house)
- [ME House District 138](/us/states/me/districts/house/138.md) — 7% (state house)
- [ME House District 136](/us/states/me/districts/house/136.md) — 6% (state house)
- [ME House District 140](/us/states/me/districts/house/140.md) — 5% (state house)
- [ME House District 148](/us/states/me/districts/house/148.md) — 5% (state house)
- [ME House District 137](/us/states/me/districts/house/137.md) — 4% (state house)
- [ME House District 145](/us/states/me/districts/house/145.md) — 4% (state house)
- [ME House District 146](/us/states/me/districts/house/146.md) — 4% (state house)
- [ME House District 149](/us/states/me/districts/house/149.md) — 3% (state house)
- [ME House District 134](/us/states/me/districts/house/134.md) — 3% (state house)
- [ME House District 135](/us/states/me/districts/house/135.md) — 2% (state house)
- [ME House District 150](/us/states/me/districts/house/150.md) — 2% (state house)
- [ME House District 143](/us/states/me/districts/house/143.md) — 2% (state house)
- [ME House District 151](/us/states/me/districts/house/151.md) — 2% (state house)
- [ME House District 133](/us/states/me/districts/house/133.md) — 1% (state house)
- [ME House District 147](/us/states/me/districts/house/147.md) — 1% (state house)
- [ME House District 126](/us/states/me/districts/house/126.md) — 1% (state house)
- [ME House District 129](/us/states/me/districts/house/129.md) — 1% (state house)
- [ME House District 130](/us/states/me/districts/house/130.md) — 1% (state house)
- [ME House District 131](/us/states/me/districts/house/131.md) — 1% (state house)
- [ME House District 142](/us/states/me/districts/house/142.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries