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,15 @@ demographics:
race_native: 1025
hispanic: 8561
bachelors_plus: 129740
districts:
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.3491
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +62,11 @@ County jurisdiction.
| Hispanic/Latino | 8561 |
| Bachelor's or higher | 129740 |
## Districts
- [MA-09](/us/states/ma/districts/09.md) — 35% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,15 @@ demographics:
race_native: 565
hispanic: 7591
bachelors_plus: 56324
districts:
- to: "us/states/ma/districts/01"
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +62,11 @@ County jurisdiction.
| Hispanic/Latino | 7591 |
| Bachelor's or higher | 56324 |
## Districts
- [MA-01](/us/states/ma/districts/01.md) — 100% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1323
hispanic: 59389
bachelors_plus: 174153
districts:
- to: "us/states/ma/districts/04"
rel: in-district
area_weight: 0.545
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.2673
- to: "us/states/ma/districts/08"
rel: in-district
area_weight: 0.0425
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 59389 |
| Bachelor's or higher | 174153 |
## Districts
- [MA-04](/us/states/ma/districts/04.md) — 55% (congressional)
- [MA-09](/us/states/ma/districts/09.md) — 27% (congressional)
- [MA-08](/us/states/ma/districts/08.md) — 4% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,15 @@ demographics:
race_native: 222
hispanic: 682
bachelors_plus: 12627
districts:
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.2533
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +62,11 @@ County jurisdiction.
| Hispanic/Latino | 682 |
| Bachelor's or higher | 12627 |
## Districts
- [MA-09](/us/states/ma/districts/09.md) — 25% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 2429
hispanic: 195593
bachelors_plus: 348582
districts:
- to: "us/states/ma/districts/06"
rel: in-district
area_weight: 0.5662
- to: "us/states/ma/districts/03"
rel: in-district
area_weight: 0.0799
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction — 8 officeholders mapped.
| Hispanic/Latino | 195593 |
| Bachelor's or higher | 348582 |
## Districts
- [MA-06](/us/states/ma/districts/06.md) — 57% (congressional)
- [MA-03](/us/states/ma/districts/03.md) — 8% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 82
hispanic: 3839
bachelors_plus: 32142
districts:
- to: "us/states/ma/districts/02"
rel: in-district
area_weight: 0.8723
- to: "us/states/ma/districts/01"
rel: in-district
area_weight: 0.1275
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 3839 |
| Bachelor's or higher | 32142 |
## Districts
- [MA-02](/us/states/ma/districts/02.md) — 87% (congressional)
- [MA-01](/us/states/ma/districts/01.md) — 13% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,15 @@ demographics:
race_native: 1292
hispanic: 125188
bachelors_plus: 132778
districts:
- to: "us/states/ma/districts/01"
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +62,11 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 125188 |
| Bachelor's or higher | 132778 |
## Districts
- [MA-01](/us/states/ma/districts/01.md) — 100% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 333
hispanic: 11964
bachelors_plus: 79914
districts:
- to: "us/states/ma/districts/01"
rel: in-district
area_weight: 0.569
- to: "us/states/ma/districts/02"
rel: in-district
area_weight: 0.431
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11964 |
| Bachelor's or higher | 79914 |
## Districts
- [MA-01](/us/states/ma/districts/01.md) — 57% (congressional)
- [MA-02](/us/states/ma/districts/02.md) — 43% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 3246
hispanic: 151761
bachelors_plus: 1044737
districts:
- to: "us/states/ma/districts/03"
rel: in-district
area_weight: 0.4993
- to: "us/states/ma/districts/05"
rel: in-district
area_weight: 0.2518
- to: "us/states/ma/districts/06"
rel: in-district
area_weight: 0.1237
- to: "us/states/ma/districts/02"
rel: in-district
area_weight: 0.0708
- to: "us/states/ma/districts/04"
rel: in-district
area_weight: 0.0406
- to: "us/states/ma/districts/07"
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 7 officeholders mapped.
| Hispanic/Latino | 151761 |
| Bachelor's or higher | 1044737 |
## Districts
- [MA-03](/us/states/ma/districts/03.md) — 50% (congressional)
- [MA-05](/us/states/ma/districts/05.md) — 25% (congressional)
- [MA-06](/us/states/ma/districts/06.md) — 12% (congressional)
- [MA-02](/us/states/ma/districts/02.md) — 7% (congressional)
- [MA-04](/us/states/ma/districts/04.md) — 4% (congressional)
- [MA-07](/us/states/ma/districts/07.md) — 1% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,15 @@ demographics:
race_native: 8
hispanic: 2467
bachelors_plus: 8240
districts:
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.1959
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +62,11 @@ County jurisdiction.
| Hispanic/Latino | 2467 |
| Bachelor's or higher | 8240 |
## Districts
- [MA-09](/us/states/ma/districts/09.md) — 20% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 706
hispanic: 42383
bachelors_plus: 451470
districts:
- to: "us/states/ma/districts/04"
rel: in-district
area_weight: 0.463
- to: "us/states/ma/districts/08"
rel: in-district
area_weight: 0.3729
- to: "us/states/ma/districts/07"
rel: in-district
area_weight: 0.0393
- to: "us/states/ma/districts/02"
rel: in-district
area_weight: 0.026
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.0234
- to: "us/states/ma/districts/05"
rel: in-district
area_weight: 0.0169
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 42383 |
| Bachelor's or higher | 451470 |
## Districts
- [MA-04](/us/states/ma/districts/04.md) — 46% (congressional)
- [MA-08](/us/states/ma/districts/08.md) — 37% (congressional)
- [MA-07](/us/states/ma/districts/07.md) — 4% (congressional)
- [MA-02](/us/states/ma/districts/02.md) — 3% (congressional)
- [MA-09](/us/states/ma/districts/09.md) — 2% (congressional)
- [MA-05](/us/states/ma/districts/05.md) — 2% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 801
hispanic: 26184
bachelors_plus: 220404
districts:
- to: "us/states/ma/districts/09"
rel: in-district
area_weight: 0.5137
- to: "us/states/ma/districts/08"
rel: in-district
area_weight: 0.0966
- to: "us/states/ma/districts/04"
rel: in-district
area_weight: 0.0332
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 26184 |
| Bachelor's or higher | 220404 |
## Districts
- [MA-09](/us/states/ma/districts/09.md) — 51% (congressional)
- [MA-08](/us/states/ma/districts/08.md) — 10% (congressional)
- [MA-04](/us/states/ma/districts/04.md) — 3% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 2825
hispanic: 182283
bachelors_plus: 409219
districts:
- to: "us/states/ma/districts/07"
rel: in-district
area_weight: 0.3081
- to: "us/states/ma/districts/08"
rel: in-district
area_weight: 0.1782
- to: "us/states/ma/districts/05"
rel: in-district
area_weight: 0.0832
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 182283 |
| Bachelor's or higher | 409219 |
## Districts
- [MA-07](/us/states/ma/districts/07.md) — 31% (congressional)
- [MA-08](/us/states/ma/districts/08.md) — 18% (congressional)
- [MA-05](/us/states/ma/districts/05.md) — 8% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2170
hispanic: 118968
bachelors_plus: 343880
districts:
- to: "us/states/ma/districts/02"
rel: in-district
area_weight: 0.587
- to: "us/states/ma/districts/01"
rel: in-district
area_weight: 0.1949
- to: "us/states/ma/districts/03"
rel: in-district
area_weight: 0.1838
- to: "us/states/ma/districts/04"
rel: in-district
area_weight: 0.0342
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, ma]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 118968 |
| Bachelor's or higher | 343880 |
## Districts
- [MA-02](/us/states/ma/districts/02.md) — 59% (congressional)
- [MA-01](/us/states/ma/districts/01.md) — 19% (congressional)
- [MA-03](/us/states/ma/districts/03.md) — 18% (congressional)
- [MA-04](/us/states/ma/districts/04.md) — 3% (congressional)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 181603
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 266581
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 217318
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 285275
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 350781
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 292135
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 272970
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 318455
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 264452
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ma]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Bristol
State House district 10th Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Essex
State House district 10th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Hampden"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Hampden"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Hampden
State House district 10th Hampden (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Middlesex
State House district 10th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Norfolk
State House district 10th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Plymouth"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Plymouth"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Plymouth
State House district 10th Plymouth (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Suffolk
State House district 10th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 10th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "10th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 10th Worcester
State House district 10th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Bristol
State House district 11th Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Essex
State House district 11th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Hampden"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Hampden"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Hampden
State House district 11th Hampden (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Middlesex
State House district 11th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Norfolk
State House district 11th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Plymouth"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Plymouth"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Plymouth
State House district 11th Plymouth (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Suffolk
State House district 11th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 11th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "11th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 11th Worcester
State House district 11th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Bristol
State House district 12th Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Essex
State House district 12th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Hampden"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Hampden"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Hampden
State House district 12th Hampden (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Middlesex
State House district 12th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Norfolk
State House district 12th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Plymouth"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Plymouth"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Plymouth
State House district 12th Plymouth (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Suffolk
State House district 12th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 12th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "12th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 12th Worcester
State House district 12th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Bristol
State House district 13th Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Essex
State House district 13th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Middlesex
State House district 13th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Norfolk
State House district 13th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Suffolk
State House district 13th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 13th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "13th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 13th Worcester
State House district 13th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Bristol
State House district 14th Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Essex
State House district 14th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Middlesex
State House district 14th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Norfolk
State House district 14th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Suffolk
State House district 14th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 14th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "14th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 14th Worcester
State House district 14th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 15th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "15th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 15th Essex
State House district 15th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 15th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "15th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 15th Middlesex
State House district 15th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 15th Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "15th Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 15th Norfolk
State House district 15th Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 15th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "15th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 15th Suffolk
State House district 15th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 15th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "15th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 15th Worcester
State House district 15th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 16th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "16th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 16th Essex
State House district 16th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 16th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "16th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 16th Middlesex
State House district 16th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 16th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "16th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 16th Suffolk
State House district 16th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 16th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "16th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 16th Worcester
State House district 16th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 17th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "17th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 17th Essex
State House district 17th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 17th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "17th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 17th Suffolk
State House district 17th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 17th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "17th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 17th Worcester
State House district 17th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 18th Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "18th Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 18th Essex
State House district 18th Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 18th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "18th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 18th Middlesex
State House district 18th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 18th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "18th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 18th Suffolk
State House district 18th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 18th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "18th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 18th Worcester
State House district 18th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 19th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "19th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 19th Middlesex
State House district 19th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 19th Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "19th Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 19th Suffolk
State House district 19th Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 19th Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "19th Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 19th Worcester
State House district 19th Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Barnstable"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Barnstable"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Barnstable
State House district 1st Barnstable (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Berkshire"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Berkshire"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Berkshire
State House district 1st Berkshire (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Bristol"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Bristol"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Bristol
State House district 1st Bristol (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Essex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Essex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Essex
State House district 1st Essex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Hampden"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Hampden"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Hampden
State House district 1st Hampden (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Hampshire"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Hampshire"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Hampshire
State House district 1st Hampshire (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Middlesex
State House district 1st Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Norfolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Norfolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Norfolk
State House district 1st Norfolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Plymouth"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Plymouth"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Plymouth
State House district 1st Plymouth (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Suffolk"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Suffolk"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Suffolk
State House district 1st Suffolk (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 1st Worcester"
classification: state-house-district
state: "MA"
chamber: "house"
district: "1st Worcester"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 1st Worcester
State House district 1st Worcester (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 20th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "20th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 20th Middlesex
State House district 20th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 21st Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "21st Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 21st Middlesex
State House district 21st Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 22nd Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "22nd Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 22nd Middlesex
State House district 22nd Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 23rd Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "23rd Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 23rd Middlesex
State House district 23rd Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 24th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "24th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 24th Middlesex
State House district 24th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 25th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "25th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 25th Middlesex
State House district 25th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 26th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "26th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 26th Middlesex
State House district 26th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 27th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "27th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 27th Middlesex
State House district 27th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 28th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "28th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 28th Middlesex
State House district 28th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 29th Middlesex"
classification: state-house-district
state: "MA"
chamber: "house"
district: "29th Middlesex"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 29th Middlesex
State House district 29th Middlesex (MA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "MA House District 2nd Barnstable"
classification: state-house-district
state: "MA"
chamber: "house"
district: "2nd Barnstable"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ma]
timestamp: "2026-07-03"
---
# MA House District 2nd Barnstable
State House district 2nd Barnstable (MA).
## Source
- boundary: Census TIGER 2024

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