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:
+22
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Berkshire, Hampden, Franklin and Hampshire"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Berkshire, Hampden, Franklin and Hampshire"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Berkshire, Hampden, Franklin and Hampshire
|
||||
|
||||
State Senate district Berkshire, Hampden, Franklin and Hampshire (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Bristol and Norfolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Bristol and Norfolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Bristol and Norfolk
|
||||
|
||||
State Senate district Bristol and Norfolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Cape and Islands"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Cape and Islands"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Cape and Islands
|
||||
|
||||
State Senate district Cape and Islands (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Fifth Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Fifth Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Fifth Middlesex
|
||||
|
||||
State Senate district Fifth Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Bristol and Plymouth"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Bristol and Plymouth"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Bristol and Plymouth
|
||||
|
||||
State Senate district First Bristol and Plymouth (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Essex and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Essex and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Essex and Middlesex
|
||||
|
||||
State Senate district First Essex and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Essex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Essex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Essex
|
||||
|
||||
State Senate district First Essex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Middlesex
|
||||
|
||||
State Senate district First Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Plymouth and Norfolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Plymouth and Norfolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Plymouth and Norfolk
|
||||
|
||||
State Senate district First Plymouth and Norfolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Suffolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Suffolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Suffolk
|
||||
|
||||
State Senate district First Suffolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District First Worcester"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "First Worcester"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District First Worcester
|
||||
|
||||
State Senate district First Worcester (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Fourth Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Fourth Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Fourth Middlesex
|
||||
|
||||
State Senate district Fourth Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Hampden and Hampshire"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Hampden and Hampshire"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Hampden and Hampshire
|
||||
|
||||
State Senate district Hampden and Hampshire (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Hampden, Hampshire and Worcester"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Hampden, Hampshire and Worcester"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Hampden, Hampshire and Worcester
|
||||
|
||||
State Senate district Hampden, Hampshire and Worcester (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Hampden"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Hampden"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Hampden
|
||||
|
||||
State Senate district Hampden (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Hampshire, Franklin and Worcester"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Hampshire, Franklin and Worcester"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Hampshire, Franklin and Worcester
|
||||
|
||||
State Senate district Hampshire, Franklin and Worcester (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Middlesex and Norfolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Middlesex and Norfolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Middlesex and Norfolk
|
||||
|
||||
State Senate district Middlesex and Norfolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Middlesex and Suffolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Middlesex and Suffolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Middlesex and Suffolk
|
||||
|
||||
State Senate district Middlesex and Suffolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Middlesex and Worcester"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Middlesex and Worcester"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Middlesex and Worcester
|
||||
|
||||
State Senate district Middlesex and Worcester (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Norfolk and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Norfolk and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Norfolk and Middlesex
|
||||
|
||||
State Senate district Norfolk and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Norfolk and Plymouth"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Norfolk and Plymouth"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Norfolk and Plymouth
|
||||
|
||||
State Senate district Norfolk and Plymouth (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Norfolk and Suffolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Norfolk and Suffolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Norfolk and Suffolk
|
||||
|
||||
State Senate district Norfolk and Suffolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Norfolk, Plymouth and Bristol"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Norfolk, Plymouth and Bristol"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Norfolk, Plymouth and Bristol
|
||||
|
||||
State Senate district Norfolk, Plymouth and Bristol (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Norfolk, Worcester and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Norfolk, Worcester and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Norfolk, Worcester and Middlesex
|
||||
|
||||
State Senate district Norfolk, Worcester and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Plymouth and Barnstable"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Plymouth and Barnstable"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Plymouth and Barnstable
|
||||
|
||||
State Senate district Plymouth and Barnstable (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Bristol and Plymouth"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Bristol and Plymouth"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Bristol and Plymouth
|
||||
|
||||
State Senate district Second Bristol and Plymouth (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Essex and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Essex and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Essex and Middlesex
|
||||
|
||||
State Senate district Second Essex and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Essex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Essex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Essex
|
||||
|
||||
State Senate district Second Essex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Middlesex
|
||||
|
||||
State Senate district Second Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Plymouth and Norfolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Plymouth and Norfolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Plymouth and Norfolk
|
||||
|
||||
State Senate district Second Plymouth and Norfolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Suffolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Suffolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Suffolk
|
||||
|
||||
State Senate district Second Suffolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Second Worcester"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Second Worcester"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Second Worcester
|
||||
|
||||
State Senate district Second Worcester (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Suffolk and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Suffolk and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Suffolk and Middlesex
|
||||
|
||||
State Senate district Suffolk and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Third Bristol and Plymouth"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Third Bristol and Plymouth"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Third Bristol and Plymouth
|
||||
|
||||
State Senate district Third Bristol and Plymouth (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Third Essex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Third Essex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Third Essex
|
||||
|
||||
State Senate district Third Essex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Third Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Third Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Third Middlesex
|
||||
|
||||
State Senate district Third Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Third Suffolk"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Third Suffolk"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Third Suffolk
|
||||
|
||||
State Senate district Third Suffolk (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Worcester and Hampden"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Worcester and Hampden"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Worcester and Hampden
|
||||
|
||||
State Senate district Worcester and Hampden (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Worcester and Hampshire"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Worcester and Hampshire"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Worcester and Hampshire
|
||||
|
||||
State Senate district Worcester and Hampshire (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MA Senate District Worcester and Middlesex"
|
||||
classification: state-senate-district
|
||||
state: "MA"
|
||||
chamber: "senate"
|
||||
district: "Worcester and Middlesex"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-senate-district, ma]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MA Senate District Worcester and Middlesex
|
||||
|
||||
State Senate district Worcester and Middlesex (MA).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
Reference in New Issue
Block a user