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,9 +22,27 @@ demographics:
|
||||
race_native: 155
|
||||
hispanic: 1328
|
||||
bachelors_plus: 14521
|
||||
districts:
|
||||
- to: "us/states/md/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9976
|
||||
- to: "us/states/md/districts/senate/1"
|
||||
rel: in-district
|
||||
area_weight: 0.9985
|
||||
- to: "us/states/md/districts/house/1c"
|
||||
rel: in-district
|
||||
area_weight: 0.5522
|
||||
- to: "us/states/md/districts/house/1b"
|
||||
rel: in-district
|
||||
area_weight: 0.2684
|
||||
- to: "us/states/md/districts/house/1a"
|
||||
rel: in-district
|
||||
area_weight: 0.1779
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 1328 |
|
||||
| Bachelor's or higher | 14521 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-06](/us/states/md/districts/06.md) — 100% (congressional)
|
||||
- [MD Senate District 1](/us/states/md/districts/senate/1.md) — 100% (state senate)
|
||||
- [MD House District 1C](/us/states/md/districts/house/1c.md) — 55% (state house)
|
||||
- [MD House District 1B](/us/states/md/districts/house/1b.md) — 27% (state house)
|
||||
- [MD House District 1A](/us/states/md/districts/house/1a.md) — 18% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,63 @@ demographics:
|
||||
race_native: 3261
|
||||
hispanic: 62581
|
||||
bachelors_plus: 275283
|
||||
districts:
|
||||
- to: "us/states/md/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.4033
|
||||
- to: "us/states/md/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.369
|
||||
- to: "us/states/md/districts/senate/30"
|
||||
rel: in-district
|
||||
area_weight: 0.2636
|
||||
- to: "us/states/md/districts/senate/33"
|
||||
rel: in-district
|
||||
area_weight: 0.1924
|
||||
- to: "us/states/md/districts/senate/31"
|
||||
rel: in-district
|
||||
area_weight: 0.1372
|
||||
- to: "us/states/md/districts/senate/32"
|
||||
rel: in-district
|
||||
area_weight: 0.0919
|
||||
- to: "us/states/md/districts/senate/21"
|
||||
rel: in-district
|
||||
area_weight: 0.0518
|
||||
- to: "us/states/md/districts/senate/12"
|
||||
rel: in-district
|
||||
area_weight: 0.0276
|
||||
- to: "us/states/md/districts/house/30b"
|
||||
rel: in-district
|
||||
area_weight: 0.192
|
||||
- to: "us/states/md/districts/house/31"
|
||||
rel: in-district
|
||||
area_weight: 0.1372
|
||||
- to: "us/states/md/districts/house/33b"
|
||||
rel: in-district
|
||||
area_weight: 0.127
|
||||
- to: "us/states/md/districts/house/32"
|
||||
rel: in-district
|
||||
area_weight: 0.0919
|
||||
- to: "us/states/md/districts/house/30a"
|
||||
rel: in-district
|
||||
area_weight: 0.0716
|
||||
- to: "us/states/md/districts/house/21"
|
||||
rel: in-district
|
||||
area_weight: 0.0518
|
||||
- to: "us/states/md/districts/house/33c"
|
||||
rel: in-district
|
||||
area_weight: 0.0438
|
||||
- to: "us/states/md/districts/house/12b"
|
||||
rel: in-district
|
||||
area_weight: 0.0276
|
||||
- to: "us/states/md/districts/house/33a"
|
||||
rel: in-district
|
||||
area_weight: 0.0216
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +110,27 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 62581 |
|
||||
| Bachelor's or higher | 275283 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-03](/us/states/md/districts/03.md) — 40% (congressional)
|
||||
- [MD-05](/us/states/md/districts/05.md) — 37% (congressional)
|
||||
- [MD Senate District 30](/us/states/md/districts/senate/30.md) — 26% (state senate)
|
||||
- [MD Senate District 33](/us/states/md/districts/senate/33.md) — 19% (state senate)
|
||||
- [MD Senate District 31](/us/states/md/districts/senate/31.md) — 14% (state senate)
|
||||
- [MD Senate District 32](/us/states/md/districts/senate/32.md) — 9% (state senate)
|
||||
- [MD Senate District 21](/us/states/md/districts/senate/21.md) — 5% (state senate)
|
||||
- [MD Senate District 12](/us/states/md/districts/senate/12.md) — 3% (state senate)
|
||||
- [MD House District 30B](/us/states/md/districts/house/30b.md) — 19% (state house)
|
||||
- [MD House District 31](/us/states/md/districts/house/31.md) — 14% (state house)
|
||||
- [MD House District 33B](/us/states/md/districts/house/33b.md) — 13% (state house)
|
||||
- [MD House District 32](/us/states/md/districts/house/32.md) — 9% (state house)
|
||||
- [MD House District 30A](/us/states/md/districts/house/30a.md) — 7% (state house)
|
||||
- [MD House District 21](/us/states/md/districts/house/21.md) — 5% (state house)
|
||||
- [MD House District 33C](/us/states/md/districts/house/33c.md) — 4% (state house)
|
||||
- [MD House District 12B](/us/states/md/districts/house/12b.md) — 3% (state house)
|
||||
- [MD House District 33A](/us/states/md/districts/house/33a.md) — 2% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,48 @@ demographics:
|
||||
race_native: 2411
|
||||
hispanic: 47018
|
||||
bachelors_plus: 217729
|
||||
districts:
|
||||
- to: "us/states/md/districts/07"
|
||||
rel: in-district
|
||||
area_weight: 0.8716
|
||||
- to: "us/states/md/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.0663
|
||||
- to: "us/states/md/districts/senate/46"
|
||||
rel: in-district
|
||||
area_weight: 0.2872
|
||||
- to: "us/states/md/districts/senate/41"
|
||||
rel: in-district
|
||||
area_weight: 0.2262
|
||||
- to: "us/states/md/districts/senate/45"
|
||||
rel: in-district
|
||||
area_weight: 0.1765
|
||||
- to: "us/states/md/districts/senate/40"
|
||||
rel: in-district
|
||||
area_weight: 0.1558
|
||||
- to: "us/states/md/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.0928
|
||||
- to: "us/states/md/districts/house/46"
|
||||
rel: in-district
|
||||
area_weight: 0.2872
|
||||
- to: "us/states/md/districts/house/41"
|
||||
rel: in-district
|
||||
area_weight: 0.2262
|
||||
- to: "us/states/md/districts/house/45"
|
||||
rel: in-district
|
||||
area_weight: 0.1765
|
||||
- to: "us/states/md/districts/house/40"
|
||||
rel: in-district
|
||||
area_weight: 0.1558
|
||||
- to: "us/states/md/districts/house/43a"
|
||||
rel: in-district
|
||||
area_weight: 0.0928
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +95,22 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 47018 |
|
||||
| Bachelor's or higher | 217729 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-07](/us/states/md/districts/07.md) — 87% (congressional)
|
||||
- [MD-02](/us/states/md/districts/02.md) — 7% (congressional)
|
||||
- [MD Senate District 46](/us/states/md/districts/senate/46.md) — 29% (state senate)
|
||||
- [MD Senate District 41](/us/states/md/districts/senate/41.md) — 23% (state senate)
|
||||
- [MD Senate District 45](/us/states/md/districts/senate/45.md) — 18% (state senate)
|
||||
- [MD Senate District 40](/us/states/md/districts/senate/40.md) — 16% (state senate)
|
||||
- [MD Senate District 43](/us/states/md/districts/senate/43.md) — 9% (state senate)
|
||||
- [MD House District 46](/us/states/md/districts/house/46.md) — 29% (state house)
|
||||
- [MD House District 41](/us/states/md/districts/house/41.md) — 23% (state house)
|
||||
- [MD House District 45](/us/states/md/districts/house/45.md) — 18% (state house)
|
||||
- [MD House District 40](/us/states/md/districts/house/40.md) — 16% (state house)
|
||||
- [MD House District 43A](/us/states/md/districts/house/43a.md) — 9% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,78 @@ demographics:
|
||||
race_native: 2363
|
||||
hispanic: 66062
|
||||
bachelors_plus: 361826
|
||||
districts:
|
||||
- to: "us/states/md/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.6171
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.2142
|
||||
- to: "us/states/md/districts/07"
|
||||
rel: in-district
|
||||
area_weight: 0.0928
|
||||
- to: "us/states/md/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.3575
|
||||
- to: "us/states/md/districts/senate/10"
|
||||
rel: in-district
|
||||
area_weight: 0.1474
|
||||
- to: "us/states/md/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.1293
|
||||
- to: "us/states/md/districts/senate/11"
|
||||
rel: in-district
|
||||
area_weight: 0.1073
|
||||
- to: "us/states/md/districts/senate/6"
|
||||
rel: in-district
|
||||
area_weight: 0.0768
|
||||
- to: "us/states/md/districts/senate/44"
|
||||
rel: in-district
|
||||
area_weight: 0.0434
|
||||
- to: "us/states/md/districts/senate/8"
|
||||
rel: in-district
|
||||
area_weight: 0.0395
|
||||
- to: "us/states/md/districts/senate/43"
|
||||
rel: in-district
|
||||
area_weight: 0.0091
|
||||
- to: "us/states/md/districts/house/42a"
|
||||
rel: in-district
|
||||
area_weight: 0.3354
|
||||
- to: "us/states/md/districts/house/10"
|
||||
rel: in-district
|
||||
area_weight: 0.1474
|
||||
- to: "us/states/md/districts/house/7a"
|
||||
rel: in-district
|
||||
area_weight: 0.1291
|
||||
- to: "us/states/md/districts/house/6"
|
||||
rel: in-district
|
||||
area_weight: 0.0768
|
||||
- to: "us/states/md/districts/house/11b"
|
||||
rel: in-district
|
||||
area_weight: 0.0738
|
||||
- to: "us/states/md/districts/house/8"
|
||||
rel: in-district
|
||||
area_weight: 0.0395
|
||||
- to: "us/states/md/districts/house/11a"
|
||||
rel: in-district
|
||||
area_weight: 0.0335
|
||||
- to: "us/states/md/districts/house/44b"
|
||||
rel: in-district
|
||||
area_weight: 0.0312
|
||||
- to: "us/states/md/districts/house/42b"
|
||||
rel: in-district
|
||||
area_weight: 0.0221
|
||||
- to: "us/states/md/districts/house/44a"
|
||||
rel: in-district
|
||||
area_weight: 0.0122
|
||||
- to: "us/states/md/districts/house/43b"
|
||||
rel: in-district
|
||||
area_weight: 0.0091
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
- field: districts
|
||||
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
|
||||
confidence: official
|
||||
tags: [jurisdiction, county, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +125,32 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 66062 |
|
||||
| Bachelor's or higher | 361826 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-02](/us/states/md/districts/02.md) — 62% (congressional)
|
||||
- [MD-01](/us/states/md/districts/01.md) — 21% (congressional)
|
||||
- [MD-07](/us/states/md/districts/07.md) — 9% (congressional)
|
||||
- [MD Senate District 42](/us/states/md/districts/senate/42.md) — 36% (state senate)
|
||||
- [MD Senate District 10](/us/states/md/districts/senate/10.md) — 15% (state senate)
|
||||
- [MD Senate District 7](/us/states/md/districts/senate/7.md) — 13% (state senate)
|
||||
- [MD Senate District 11](/us/states/md/districts/senate/11.md) — 11% (state senate)
|
||||
- [MD Senate District 6](/us/states/md/districts/senate/6.md) — 8% (state senate)
|
||||
- [MD Senate District 44](/us/states/md/districts/senate/44.md) — 4% (state senate)
|
||||
- [MD Senate District 8](/us/states/md/districts/senate/8.md) — 4% (state senate)
|
||||
- [MD Senate District 43](/us/states/md/districts/senate/43.md) — 1% (state senate)
|
||||
- [MD House District 42A](/us/states/md/districts/house/42a.md) — 34% (state house)
|
||||
- [MD House District 10](/us/states/md/districts/house/10.md) — 15% (state house)
|
||||
- [MD House District 7A](/us/states/md/districts/house/7a.md) — 13% (state house)
|
||||
- [MD House District 6](/us/states/md/districts/house/6.md) — 8% (state house)
|
||||
- [MD House District 11B](/us/states/md/districts/house/11b.md) — 7% (state house)
|
||||
- [MD House District 8](/us/states/md/districts/house/8.md) — 4% (state house)
|
||||
- [MD House District 11A](/us/states/md/districts/house/11a.md) — 3% (state house)
|
||||
- [MD House District 44B](/us/states/md/districts/house/44b.md) — 3% (state house)
|
||||
- [MD House District 42B](/us/states/md/districts/house/42b.md) — 2% (state house)
|
||||
- [MD House District 44A](/us/states/md/districts/house/44a.md) — 1% (state house)
|
||||
- [MD House District 43B](/us/states/md/districts/house/43b.md) — 1% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 225
|
||||
hispanic: 4863
|
||||
bachelors_plus: 34986
|
||||
districts:
|
||||
- to: "us/states/md/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.6894
|
||||
- to: "us/states/md/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.5895
|
||||
- to: "us/states/md/districts/senate/29"
|
||||
rel: in-district
|
||||
area_weight: 0.0993
|
||||
- to: "us/states/md/districts/house/27c"
|
||||
rel: in-district
|
||||
area_weight: 0.4653
|
||||
- to: "us/states/md/districts/house/27b"
|
||||
rel: in-district
|
||||
area_weight: 0.1242
|
||||
- to: "us/states/md/districts/house/29c"
|
||||
rel: in-district
|
||||
area_weight: 0.0992
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 4863 |
|
||||
| Bachelor's or higher | 34986 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-05](/us/states/md/districts/05.md) — 69% (congressional)
|
||||
- [MD Senate District 27](/us/states/md/districts/senate/27.md) — 59% (state senate)
|
||||
- [MD Senate District 29](/us/states/md/districts/senate/29.md) — 10% (state senate)
|
||||
- [MD House District 27C](/us/states/md/districts/house/27c.md) — 47% (state house)
|
||||
- [MD House District 27B](/us/states/md/districts/house/27b.md) — 12% (state house)
|
||||
- [MD House District 29C](/us/states/md/districts/house/29c.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 358
|
||||
hispanic: 3122
|
||||
bachelors_plus: 5276
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/md/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.6479
|
||||
- to: "us/states/md/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.352
|
||||
- to: "us/states/md/districts/house/37b"
|
||||
rel: in-district
|
||||
area_weight: 0.6479
|
||||
- to: "us/states/md/districts/house/36"
|
||||
rel: in-district
|
||||
area_weight: 0.352
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3122 |
|
||||
| Bachelor's or higher | 5276 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 100% (congressional)
|
||||
- [MD Senate District 37](/us/states/md/districts/senate/37.md) — 65% (state senate)
|
||||
- [MD Senate District 36](/us/states/md/districts/senate/36.md) — 35% (state senate)
|
||||
- [MD House District 37B](/us/states/md/districts/house/37b.md) — 65% (state house)
|
||||
- [MD House District 36](/us/states/md/districts/house/36.md) — 35% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 382
|
||||
hispanic: 8923
|
||||
bachelors_plus: 69013
|
||||
districts:
|
||||
- to: "us/states/md/districts/02"
|
||||
rel: in-district
|
||||
area_weight: 0.9013
|
||||
- to: "us/states/md/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.0946
|
||||
- to: "us/states/md/districts/senate/5"
|
||||
rel: in-district
|
||||
area_weight: 0.7242
|
||||
- to: "us/states/md/districts/senate/42"
|
||||
rel: in-district
|
||||
area_weight: 0.2753
|
||||
- to: "us/states/md/districts/house/5"
|
||||
rel: in-district
|
||||
area_weight: 0.7242
|
||||
- to: "us/states/md/districts/house/42c"
|
||||
rel: in-district
|
||||
area_weight: 0.2753
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 8923 |
|
||||
| Bachelor's or higher | 69013 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-02](/us/states/md/districts/02.md) — 90% (congressional)
|
||||
- [MD-03](/us/states/md/districts/03.md) — 9% (congressional)
|
||||
- [MD Senate District 5](/us/states/md/districts/senate/5.md) — 72% (state senate)
|
||||
- [MD Senate District 42](/us/states/md/districts/senate/42.md) — 28% (state senate)
|
||||
- [MD House District 5](/us/states/md/districts/house/5.md) — 72% (state house)
|
||||
- [MD House District 42C](/us/states/md/districts/house/42c.md) — 28% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 100
|
||||
hispanic: 5852
|
||||
bachelors_plus: 28718
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.91
|
||||
- to: "us/states/md/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.5415
|
||||
- to: "us/states/md/districts/senate/35"
|
||||
rel: in-district
|
||||
area_weight: 0.3595
|
||||
- to: "us/states/md/districts/house/36"
|
||||
rel: in-district
|
||||
area_weight: 0.5415
|
||||
- to: "us/states/md/districts/house/35b"
|
||||
rel: in-district
|
||||
area_weight: 0.3019
|
||||
- to: "us/states/md/districts/house/35a"
|
||||
rel: in-district
|
||||
area_weight: 0.0576
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 5852 |
|
||||
| Bachelor's or higher | 28718 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 91% (congressional)
|
||||
- [MD Senate District 36](/us/states/md/districts/senate/36.md) — 54% (state senate)
|
||||
- [MD Senate District 35](/us/states/md/districts/senate/35.md) — 36% (state senate)
|
||||
- [MD House District 36](/us/states/md/districts/house/36.md) — 54% (state house)
|
||||
- [MD House District 35B](/us/states/md/districts/house/35b.md) — 30% (state house)
|
||||
- [MD House District 35A](/us/states/md/districts/house/35a.md) — 6% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 1053
|
||||
hispanic: 13500
|
||||
bachelors_plus: 55907
|
||||
districts:
|
||||
- to: "us/states/md/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.7551
|
||||
- to: "us/states/md/districts/senate/28"
|
||||
rel: in-district
|
||||
area_weight: 0.6663
|
||||
- to: "us/states/md/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.0872
|
||||
- to: "us/states/md/districts/house/28"
|
||||
rel: in-district
|
||||
area_weight: 0.6663
|
||||
- to: "us/states/md/districts/house/27a"
|
||||
rel: in-district
|
||||
area_weight: 0.0871
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 13500 |
|
||||
| Bachelor's or higher | 55907 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-05](/us/states/md/districts/05.md) — 76% (congressional)
|
||||
- [MD Senate District 28](/us/states/md/districts/senate/28.md) — 67% (state senate)
|
||||
- [MD Senate District 27](/us/states/md/districts/senate/27.md) — 9% (state senate)
|
||||
- [MD House District 28](/us/states/md/districts/house/28.md) — 67% (state house)
|
||||
- [MD House District 27A](/us/states/md/districts/house/27a.md) — 9% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 0
|
||||
hispanic: 1996
|
||||
bachelors_plus: 6269
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.6584
|
||||
- to: "us/states/md/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.6093
|
||||
- to: "us/states/md/districts/house/37b"
|
||||
rel: in-district
|
||||
area_weight: 0.5127
|
||||
- to: "us/states/md/districts/house/37a"
|
||||
rel: in-district
|
||||
area_weight: 0.0966
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1996 |
|
||||
| Bachelor's or higher | 6269 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 66% (congressional)
|
||||
- [MD Senate District 37](/us/states/md/districts/senate/37.md) — 61% (state senate)
|
||||
- [MD House District 37B](/us/states/md/districts/house/37b.md) — 51% (state house)
|
||||
- [MD House District 37A](/us/states/md/districts/house/37a.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,33 @@ demographics:
|
||||
race_native: 938
|
||||
hispanic: 36962
|
||||
bachelors_plus: 130282
|
||||
districts:
|
||||
- to: "us/states/md/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.997
|
||||
- to: "us/states/md/districts/senate/4"
|
||||
rel: in-district
|
||||
area_weight: 0.7841
|
||||
- to: "us/states/md/districts/senate/2"
|
||||
rel: in-district
|
||||
area_weight: 0.1168
|
||||
- to: "us/states/md/districts/senate/3"
|
||||
rel: in-district
|
||||
area_weight: 0.0967
|
||||
- to: "us/states/md/districts/house/4"
|
||||
rel: in-district
|
||||
area_weight: 0.7841
|
||||
- to: "us/states/md/districts/house/2a"
|
||||
rel: in-district
|
||||
area_weight: 0.1168
|
||||
- to: "us/states/md/districts/house/3"
|
||||
rel: in-district
|
||||
area_weight: 0.0967
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 36962 |
|
||||
| Bachelor's or higher | 130282 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-06](/us/states/md/districts/06.md) — 100% (congressional)
|
||||
- [MD Senate District 4](/us/states/md/districts/senate/4.md) — 78% (state senate)
|
||||
- [MD Senate District 2](/us/states/md/districts/senate/2.md) — 12% (state senate)
|
||||
- [MD Senate District 3](/us/states/md/districts/senate/3.md) — 10% (state senate)
|
||||
- [MD House District 4](/us/states/md/districts/house/4.md) — 78% (state house)
|
||||
- [MD House District 2A](/us/states/md/districts/house/2a.md) — 12% (state house)
|
||||
- [MD House District 3](/us/states/md/districts/house/3.md) — 10% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 68
|
||||
hispanic: 393
|
||||
bachelors_plus: 8230
|
||||
districts:
|
||||
- to: "us/states/md/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9982
|
||||
- to: "us/states/md/districts/senate/1"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
- to: "us/states/md/districts/house/1a"
|
||||
rel: in-district
|
||||
area_weight: 0.9993
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 393 |
|
||||
| Bachelor's or higher | 8230 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-06](/us/states/md/districts/06.md) — 100% (congressional)
|
||||
- [MD Senate District 1](/us/states/md/districts/senate/1.md) — 100% (state senate)
|
||||
- [MD House District 1A](/us/states/md/districts/house/1a.md) — 100% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,36 @@ demographics:
|
||||
race_native: 523
|
||||
hispanic: 15290
|
||||
bachelors_plus: 106131
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.8572
|
||||
- to: "us/states/md/districts/senate/35"
|
||||
rel: in-district
|
||||
area_weight: 0.41
|
||||
- to: "us/states/md/districts/senate/34"
|
||||
rel: in-district
|
||||
area_weight: 0.2548
|
||||
- to: "us/states/md/districts/senate/7"
|
||||
rel: in-district
|
||||
area_weight: 0.1922
|
||||
- to: "us/states/md/districts/house/35a"
|
||||
rel: in-district
|
||||
area_weight: 0.41
|
||||
- to: "us/states/md/districts/house/34a"
|
||||
rel: in-district
|
||||
area_weight: 0.2207
|
||||
- to: "us/states/md/districts/house/7b"
|
||||
rel: in-district
|
||||
area_weight: 0.1921
|
||||
- to: "us/states/md/districts/house/34b"
|
||||
rel: in-district
|
||||
area_weight: 0.034
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 15290 |
|
||||
| Bachelor's or higher | 106131 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 86% (congressional)
|
||||
- [MD Senate District 35](/us/states/md/districts/senate/35.md) — 41% (state senate)
|
||||
- [MD Senate District 34](/us/states/md/districts/senate/34.md) — 25% (state senate)
|
||||
- [MD Senate District 7](/us/states/md/districts/senate/7.md) — 19% (state senate)
|
||||
- [MD House District 35A](/us/states/md/districts/house/35a.md) — 41% (state house)
|
||||
- [MD House District 34A](/us/states/md/districts/house/34a.md) — 22% (state house)
|
||||
- [MD House District 7B](/us/states/md/districts/house/7b.md) — 19% (state house)
|
||||
- [MD House District 34B](/us/states/md/districts/house/34b.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: 1091
|
||||
hispanic: 29135
|
||||
bachelors_plus: 226665
|
||||
districts:
|
||||
- to: "us/states/md/districts/03"
|
||||
rel: in-district
|
||||
area_weight: 0.9939
|
||||
- to: "us/states/md/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.6204
|
||||
- to: "us/states/md/districts/senate/13"
|
||||
rel: in-district
|
||||
area_weight: 0.2691
|
||||
- to: "us/states/md/districts/senate/12"
|
||||
rel: in-district
|
||||
area_weight: 0.1096
|
||||
- to: "us/states/md/districts/house/9a"
|
||||
rel: in-district
|
||||
area_weight: 0.5414
|
||||
- to: "us/states/md/districts/house/13"
|
||||
rel: in-district
|
||||
area_weight: 0.2691
|
||||
- to: "us/states/md/districts/house/12a"
|
||||
rel: in-district
|
||||
area_weight: 0.1096
|
||||
- to: "us/states/md/districts/house/9b"
|
||||
rel: in-district
|
||||
area_weight: 0.0789
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 29135 |
|
||||
| Bachelor's or higher | 226665 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-03](/us/states/md/districts/03.md) — 99% (congressional)
|
||||
- [MD Senate District 9](/us/states/md/districts/senate/9.md) — 62% (state senate)
|
||||
- [MD Senate District 13](/us/states/md/districts/senate/13.md) — 27% (state senate)
|
||||
- [MD Senate District 12](/us/states/md/districts/senate/12.md) — 11% (state senate)
|
||||
- [MD House District 9A](/us/states/md/districts/house/9a.md) — 54% (state house)
|
||||
- [MD House District 13](/us/states/md/districts/house/13.md) — 27% (state house)
|
||||
- [MD House District 12A](/us/states/md/districts/house/12a.md) — 11% (state house)
|
||||
- [MD House District 9B](/us/states/md/districts/house/9b.md) — 8% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 2
|
||||
hispanic: 1126
|
||||
bachelors_plus: 8072
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.7294
|
||||
- to: "us/states/md/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.7245
|
||||
- to: "us/states/md/districts/house/36"
|
||||
rel: in-district
|
||||
area_weight: 0.7245
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1126 |
|
||||
| Bachelor's or higher | 8072 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 73% (congressional)
|
||||
- [MD Senate District 36](/us/states/md/districts/senate/36.md) — 72% (state senate)
|
||||
- [MD House District 36](/us/states/md/districts/house/36.md) — 72% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,75 @@ demographics:
|
||||
race_native: 6190
|
||||
hispanic: 223958
|
||||
bachelors_plus: 695754
|
||||
districts:
|
||||
- to: "us/states/md/districts/08"
|
||||
rel: in-district
|
||||
area_weight: 0.549
|
||||
- to: "us/states/md/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.4193
|
||||
- to: "us/states/md/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.0287
|
||||
- to: "us/states/md/districts/senate/15"
|
||||
rel: in-district
|
||||
area_weight: 0.3608
|
||||
- to: "us/states/md/districts/senate/14"
|
||||
rel: in-district
|
||||
area_weight: 0.2325
|
||||
- to: "us/states/md/districts/senate/16"
|
||||
rel: in-district
|
||||
area_weight: 0.0814
|
||||
- to: "us/states/md/districts/senate/19"
|
||||
rel: in-district
|
||||
area_weight: 0.078
|
||||
- to: "us/states/md/districts/senate/9"
|
||||
rel: in-district
|
||||
area_weight: 0.0618
|
||||
- to: "us/states/md/districts/senate/39"
|
||||
rel: in-district
|
||||
area_weight: 0.0574
|
||||
- to: "us/states/md/districts/senate/17"
|
||||
rel: in-district
|
||||
area_weight: 0.0492
|
||||
- to: "us/states/md/districts/senate/18"
|
||||
rel: in-district
|
||||
area_weight: 0.0406
|
||||
- to: "us/states/md/districts/senate/20"
|
||||
rel: in-district
|
||||
area_weight: 0.0376
|
||||
- to: "us/states/md/districts/house/15"
|
||||
rel: in-district
|
||||
area_weight: 0.3608
|
||||
- to: "us/states/md/districts/house/14"
|
||||
rel: in-district
|
||||
area_weight: 0.2325
|
||||
- to: "us/states/md/districts/house/16"
|
||||
rel: in-district
|
||||
area_weight: 0.0814
|
||||
- to: "us/states/md/districts/house/19"
|
||||
rel: in-district
|
||||
area_weight: 0.078
|
||||
- to: "us/states/md/districts/house/9a"
|
||||
rel: in-district
|
||||
area_weight: 0.0618
|
||||
- to: "us/states/md/districts/house/39"
|
||||
rel: in-district
|
||||
area_weight: 0.0574
|
||||
- to: "us/states/md/districts/house/17"
|
||||
rel: in-district
|
||||
area_weight: 0.0492
|
||||
- to: "us/states/md/districts/house/18"
|
||||
rel: in-district
|
||||
area_weight: 0.0406
|
||||
- to: "us/states/md/districts/house/20"
|
||||
rel: in-district
|
||||
area_weight: 0.0376
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +122,31 @@ County jurisdiction — 2 officeholders mapped.
|
||||
| Hispanic/Latino | 223958 |
|
||||
| Bachelor's or higher | 695754 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-08](/us/states/md/districts/08.md) — 55% (congressional)
|
||||
- [MD-06](/us/states/md/districts/06.md) — 42% (congressional)
|
||||
- [MD-04](/us/states/md/districts/04.md) — 3% (congressional)
|
||||
- [MD Senate District 15](/us/states/md/districts/senate/15.md) — 36% (state senate)
|
||||
- [MD Senate District 14](/us/states/md/districts/senate/14.md) — 23% (state senate)
|
||||
- [MD Senate District 16](/us/states/md/districts/senate/16.md) — 8% (state senate)
|
||||
- [MD Senate District 19](/us/states/md/districts/senate/19.md) — 8% (state senate)
|
||||
- [MD Senate District 9](/us/states/md/districts/senate/9.md) — 6% (state senate)
|
||||
- [MD Senate District 39](/us/states/md/districts/senate/39.md) — 6% (state senate)
|
||||
- [MD Senate District 17](/us/states/md/districts/senate/17.md) — 5% (state senate)
|
||||
- [MD Senate District 18](/us/states/md/districts/senate/18.md) — 4% (state senate)
|
||||
- [MD Senate District 20](/us/states/md/districts/senate/20.md) — 4% (state senate)
|
||||
- [MD House District 15](/us/states/md/districts/house/15.md) — 36% (state house)
|
||||
- [MD House District 14](/us/states/md/districts/house/14.md) — 23% (state house)
|
||||
- [MD House District 16](/us/states/md/districts/house/16.md) — 8% (state house)
|
||||
- [MD House District 19](/us/states/md/districts/house/19.md) — 8% (state house)
|
||||
- [MD House District 9A](/us/states/md/districts/house/9a.md) — 6% (state house)
|
||||
- [MD House District 39](/us/states/md/districts/house/39.md) — 6% (state house)
|
||||
- [MD House District 17](/us/states/md/districts/house/17.md) — 5% (state house)
|
||||
- [MD House District 18](/us/states/md/districts/house/18.md) — 4% (state house)
|
||||
- [MD House District 20](/us/states/md/districts/house/20.md) — 4% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,72 @@ demographics:
|
||||
race_native: 5727
|
||||
hispanic: 216088
|
||||
bachelors_plus: 350436
|
||||
districts:
|
||||
- to: "us/states/md/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.5805
|
||||
- to: "us/states/md/districts/04"
|
||||
rel: in-district
|
||||
area_weight: 0.4187
|
||||
- to: "us/states/md/districts/senate/27"
|
||||
rel: in-district
|
||||
area_weight: 0.2364
|
||||
- to: "us/states/md/districts/senate/23"
|
||||
rel: in-district
|
||||
area_weight: 0.2278
|
||||
- to: "us/states/md/districts/senate/26"
|
||||
rel: in-district
|
||||
area_weight: 0.1525
|
||||
- to: "us/states/md/districts/senate/25"
|
||||
rel: in-district
|
||||
area_weight: 0.1318
|
||||
- to: "us/states/md/districts/senate/24"
|
||||
rel: in-district
|
||||
area_weight: 0.0771
|
||||
- to: "us/states/md/districts/senate/21"
|
||||
rel: in-district
|
||||
area_weight: 0.0763
|
||||
- to: "us/states/md/districts/senate/22"
|
||||
rel: in-district
|
||||
area_weight: 0.06
|
||||
- to: "us/states/md/districts/senate/47"
|
||||
rel: in-district
|
||||
area_weight: 0.0375
|
||||
- to: "us/states/md/districts/house/23"
|
||||
rel: in-district
|
||||
area_weight: 0.2278
|
||||
- to: "us/states/md/districts/house/27b"
|
||||
rel: in-district
|
||||
area_weight: 0.1884
|
||||
- to: "us/states/md/districts/house/26"
|
||||
rel: in-district
|
||||
area_weight: 0.1525
|
||||
- to: "us/states/md/districts/house/25"
|
||||
rel: in-district
|
||||
area_weight: 0.1318
|
||||
- to: "us/states/md/districts/house/24"
|
||||
rel: in-district
|
||||
area_weight: 0.0771
|
||||
- to: "us/states/md/districts/house/21"
|
||||
rel: in-district
|
||||
area_weight: 0.0763
|
||||
- to: "us/states/md/districts/house/22"
|
||||
rel: in-district
|
||||
area_weight: 0.06
|
||||
- to: "us/states/md/districts/house/27a"
|
||||
rel: in-district
|
||||
area_weight: 0.048
|
||||
- to: "us/states/md/districts/house/47a"
|
||||
rel: in-district
|
||||
area_weight: 0.0285
|
||||
- to: "us/states/md/districts/house/47b"
|
||||
rel: in-district
|
||||
area_weight: 0.009
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +119,30 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 216088 |
|
||||
| Bachelor's or higher | 350436 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-05](/us/states/md/districts/05.md) — 58% (congressional)
|
||||
- [MD-04](/us/states/md/districts/04.md) — 42% (congressional)
|
||||
- [MD Senate District 27](/us/states/md/districts/senate/27.md) — 24% (state senate)
|
||||
- [MD Senate District 23](/us/states/md/districts/senate/23.md) — 23% (state senate)
|
||||
- [MD Senate District 26](/us/states/md/districts/senate/26.md) — 15% (state senate)
|
||||
- [MD Senate District 25](/us/states/md/districts/senate/25.md) — 13% (state senate)
|
||||
- [MD Senate District 24](/us/states/md/districts/senate/24.md) — 8% (state senate)
|
||||
- [MD Senate District 21](/us/states/md/districts/senate/21.md) — 8% (state senate)
|
||||
- [MD Senate District 22](/us/states/md/districts/senate/22.md) — 6% (state senate)
|
||||
- [MD Senate District 47](/us/states/md/districts/senate/47.md) — 4% (state senate)
|
||||
- [MD House District 23](/us/states/md/districts/house/23.md) — 23% (state house)
|
||||
- [MD House District 27B](/us/states/md/districts/house/27b.md) — 19% (state house)
|
||||
- [MD House District 26](/us/states/md/districts/house/26.md) — 15% (state house)
|
||||
- [MD House District 25](/us/states/md/districts/house/25.md) — 13% (state house)
|
||||
- [MD House District 24](/us/states/md/districts/house/24.md) — 8% (state house)
|
||||
- [MD House District 21](/us/states/md/districts/house/21.md) — 8% (state house)
|
||||
- [MD House District 22](/us/states/md/districts/house/22.md) — 6% (state house)
|
||||
- [MD House District 27A](/us/states/md/districts/house/27a.md) — 5% (state house)
|
||||
- [MD House District 47A](/us/states/md/districts/house/47a.md) — 3% (state house)
|
||||
- [MD House District 47B](/us/states/md/districts/house/47b.md) — 1% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 32
|
||||
hispanic: 2958
|
||||
bachelors_plus: 19849
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.7824
|
||||
- to: "us/states/md/districts/senate/36"
|
||||
rel: in-district
|
||||
area_weight: 0.7725
|
||||
- to: "us/states/md/districts/house/36"
|
||||
rel: in-district
|
||||
area_weight: 0.7725
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2958 |
|
||||
| Bachelor's or higher | 19849 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 78% (congressional)
|
||||
- [MD Senate District 36](/us/states/md/districts/senate/36.md) — 77% (state senate)
|
||||
- [MD House District 36](/us/states/md/districts/house/36.md) — 77% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 60
|
||||
hispanic: 1144
|
||||
bachelors_plus: 4696
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.6047
|
||||
- to: "us/states/md/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.5715
|
||||
- to: "us/states/md/districts/house/38a"
|
||||
rel: in-district
|
||||
area_weight: 0.5715
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 1144 |
|
||||
| Bachelor's or higher | 4696 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 60% (congressional)
|
||||
- [MD Senate District 38](/us/states/md/districts/senate/38.md) — 57% (state senate)
|
||||
- [MD House District 38A](/us/states/md/districts/house/38a.md) — 57% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,27 @@ demographics:
|
||||
race_native: 130
|
||||
hispanic: 7072
|
||||
bachelors_plus: 40882
|
||||
districts:
|
||||
- to: "us/states/md/districts/05"
|
||||
rel: in-district
|
||||
area_weight: 0.5304
|
||||
- to: "us/states/md/districts/senate/29"
|
||||
rel: in-district
|
||||
area_weight: 0.5266
|
||||
- to: "us/states/md/districts/house/29a"
|
||||
rel: in-district
|
||||
area_weight: 0.2804
|
||||
- to: "us/states/md/districts/house/29c"
|
||||
rel: in-district
|
||||
area_weight: 0.1296
|
||||
- to: "us/states/md/districts/house/29b"
|
||||
rel: in-district
|
||||
area_weight: 0.1166
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +74,15 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 7072 |
|
||||
| Bachelor's or higher | 40882 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-05](/us/states/md/districts/05.md) — 53% (congressional)
|
||||
- [MD Senate District 29](/us/states/md/districts/senate/29.md) — 53% (state senate)
|
||||
- [MD House District 29A](/us/states/md/districts/house/29a.md) — 28% (state house)
|
||||
- [MD House District 29C](/us/states/md/districts/house/29c.md) — 13% (state house)
|
||||
- [MD House District 29B](/us/states/md/districts/house/29b.md) — 12% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,21 @@ demographics:
|
||||
race_native: 187
|
||||
hispanic: 3650
|
||||
bachelors_plus: 17138
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.6708
|
||||
- to: "us/states/md/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.6449
|
||||
- to: "us/states/md/districts/house/37b"
|
||||
rel: in-district
|
||||
area_weight: 0.6449
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +68,13 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 3650 |
|
||||
| Bachelor's or higher | 17138 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 67% (congressional)
|
||||
- [MD Senate District 37](/us/states/md/districts/senate/37.md) — 64% (state senate)
|
||||
- [MD House District 37B](/us/states/md/districts/house/37b.md) — 64% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,30 @@ demographics:
|
||||
race_native: 331
|
||||
hispanic: 12297
|
||||
bachelors_plus: 37212
|
||||
districts:
|
||||
- to: "us/states/md/districts/06"
|
||||
rel: in-district
|
||||
area_weight: 0.9981
|
||||
- to: "us/states/md/districts/senate/2"
|
||||
rel: in-district
|
||||
area_weight: 0.5684
|
||||
- to: "us/states/md/districts/senate/1"
|
||||
rel: in-district
|
||||
area_weight: 0.4303
|
||||
- to: "us/states/md/districts/house/2a"
|
||||
rel: in-district
|
||||
area_weight: 0.5416
|
||||
- to: "us/states/md/districts/house/1c"
|
||||
rel: in-district
|
||||
area_weight: 0.4303
|
||||
- to: "us/states/md/districts/house/2b"
|
||||
rel: in-district
|
||||
area_weight: 0.0268
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 12297 |
|
||||
| Bachelor's or higher | 37212 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-06](/us/states/md/districts/06.md) — 100% (congressional)
|
||||
- [MD Senate District 2](/us/states/md/districts/senate/2.md) — 57% (state senate)
|
||||
- [MD Senate District 1](/us/states/md/districts/senate/1.md) — 43% (state senate)
|
||||
- [MD House District 2A](/us/states/md/districts/house/2a.md) — 54% (state house)
|
||||
- [MD House District 1C](/us/states/md/districts/house/1c.md) — 43% (state house)
|
||||
- [MD House District 2B](/us/states/md/districts/house/2b.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: 120
|
||||
hispanic: 7463
|
||||
bachelors_plus: 27377
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.9656
|
||||
- to: "us/states/md/districts/senate/37"
|
||||
rel: in-district
|
||||
area_weight: 0.5346
|
||||
- to: "us/states/md/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.4262
|
||||
- to: "us/states/md/districts/house/37b"
|
||||
rel: in-district
|
||||
area_weight: 0.3907
|
||||
- to: "us/states/md/districts/house/38c"
|
||||
rel: in-district
|
||||
area_weight: 0.2903
|
||||
- to: "us/states/md/districts/house/37a"
|
||||
rel: in-district
|
||||
area_weight: 0.1438
|
||||
- to: "us/states/md/districts/house/38b"
|
||||
rel: in-district
|
||||
area_weight: 0.0748
|
||||
- to: "us/states/md/districts/house/38a"
|
||||
rel: in-district
|
||||
area_weight: 0.0611
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
|
||||
| Hispanic/Latino | 7463 |
|
||||
| Bachelor's or higher | 27377 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 97% (congressional)
|
||||
- [MD Senate District 37](/us/states/md/districts/senate/37.md) — 53% (state senate)
|
||||
- [MD Senate District 38](/us/states/md/districts/senate/38.md) — 43% (state senate)
|
||||
- [MD House District 37B](/us/states/md/districts/house/37b.md) — 39% (state house)
|
||||
- [MD House District 38C](/us/states/md/districts/house/38c.md) — 29% (state house)
|
||||
- [MD House District 37A](/us/states/md/districts/house/37a.md) — 14% (state house)
|
||||
- [MD House District 38B](/us/states/md/districts/house/38b.md) — 7% (state house)
|
||||
- [MD House District 38A](/us/states/md/districts/house/38a.md) — 6% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -22,9 +22,24 @@ demographics:
|
||||
race_native: 29
|
||||
hispanic: 2165
|
||||
bachelors_plus: 20052
|
||||
districts:
|
||||
- to: "us/states/md/districts/01"
|
||||
rel: in-district
|
||||
area_weight: 0.8414
|
||||
- to: "us/states/md/districts/senate/38"
|
||||
rel: in-district
|
||||
area_weight: 0.8408
|
||||
- to: "us/states/md/districts/house/38a"
|
||||
rel: in-district
|
||||
area_weight: 0.4813
|
||||
- to: "us/states/md/districts/house/38c"
|
||||
rel: in-district
|
||||
area_weight: 0.3595
|
||||
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, md]
|
||||
timestamp: "2026-07-03"
|
||||
@@ -56,6 +71,14 @@ County jurisdiction.
|
||||
| Hispanic/Latino | 2165 |
|
||||
| Bachelor's or higher | 20052 |
|
||||
|
||||
## Districts
|
||||
|
||||
- [MD-01](/us/states/md/districts/01.md) — 84% (congressional)
|
||||
- [MD Senate District 38](/us/states/md/districts/senate/38.md) — 84% (state senate)
|
||||
- [MD House District 38A](/us/states/md/districts/house/38a.md) — 48% (state house)
|
||||
- [MD House District 38C](/us/states/md/districts/house/38c.md) — 36% (state house)
|
||||
|
||||
## Source
|
||||
|
||||
- demographics: Census ACS 2023
|
||||
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 208307
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 257620
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 293087
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 181513
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 242267
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 235117
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 177806
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 354562
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 10"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "10"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 10
|
||||
|
||||
State House district 10 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 11A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "11A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 11A
|
||||
|
||||
State House district 11A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 11B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "11B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 11B
|
||||
|
||||
State House district 11B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 12A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "12A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 12A
|
||||
|
||||
State House district 12A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 12B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "12B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 12B
|
||||
|
||||
State House district 12B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 13"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "13"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 13
|
||||
|
||||
State House district 13 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 14"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "14"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 14
|
||||
|
||||
State House district 14 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 15"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "15"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 15
|
||||
|
||||
State House district 15 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 16"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "16"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 16
|
||||
|
||||
State House district 16 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 17"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "17"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 17
|
||||
|
||||
State House district 17 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 18"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "18"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 18
|
||||
|
||||
State House district 18 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 19"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "19"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 19
|
||||
|
||||
State House district 19 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 1A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "1A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 1A
|
||||
|
||||
State House district 1A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 1B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "1B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 1B
|
||||
|
||||
State House district 1B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 1C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "1C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 1C
|
||||
|
||||
State House district 1C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 20"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "20"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 20
|
||||
|
||||
State House district 20 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 21"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "21"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 21
|
||||
|
||||
State House district 21 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 22"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "22"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 22
|
||||
|
||||
State House district 22 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 23"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "23"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 23
|
||||
|
||||
State House district 23 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 24"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "24"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 24
|
||||
|
||||
State House district 24 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 25"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "25"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 25
|
||||
|
||||
State House district 25 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 26"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "26"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 26
|
||||
|
||||
State House district 26 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 27A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "27A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 27A
|
||||
|
||||
State House district 27A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 27B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "27B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 27B
|
||||
|
||||
State House district 27B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 27C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "27C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 27C
|
||||
|
||||
State House district 27C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 28"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "28"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 28
|
||||
|
||||
State House district 28 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 29A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "29A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 29A
|
||||
|
||||
State House district 29A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 29B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "29B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 29B
|
||||
|
||||
State House district 29B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 29C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "29C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 29C
|
||||
|
||||
State House district 29C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 2A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "2A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 2A
|
||||
|
||||
State House district 2A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 2B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "2B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 2B
|
||||
|
||||
State House district 2B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 3"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "3"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 3
|
||||
|
||||
State House district 3 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 30A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "30A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 30A
|
||||
|
||||
State House district 30A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 30B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "30B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 30B
|
||||
|
||||
State House district 30B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 31"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "31"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 31
|
||||
|
||||
State House district 31 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 32"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "32"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 32
|
||||
|
||||
State House district 32 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 33A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "33A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 33A
|
||||
|
||||
State House district 33A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 33B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "33B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 33B
|
||||
|
||||
State House district 33B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 33C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "33C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 33C
|
||||
|
||||
State House district 33C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 34A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "34A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 34A
|
||||
|
||||
State House district 34A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 34B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "34B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 34B
|
||||
|
||||
State House district 34B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 35A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "35A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 35A
|
||||
|
||||
State House district 35A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 35B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "35B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 35B
|
||||
|
||||
State House district 35B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 36"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "36"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 36
|
||||
|
||||
State House district 36 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 37A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "37A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 37A
|
||||
|
||||
State House district 37A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 37B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "37B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 37B
|
||||
|
||||
State House district 37B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 38A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "38A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 38A
|
||||
|
||||
State House district 38A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 38B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "38B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 38B
|
||||
|
||||
State House district 38B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 38C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "38C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 38C
|
||||
|
||||
State House district 38C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 39"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "39"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 39
|
||||
|
||||
State House district 39 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 4"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "4"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 4
|
||||
|
||||
State House district 4 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 40"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "40"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 40
|
||||
|
||||
State House district 40 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 41"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "41"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 41
|
||||
|
||||
State House district 41 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 42A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "42A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 42A
|
||||
|
||||
State House district 42A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 42B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "42B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 42B
|
||||
|
||||
State House district 42B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 42C"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "42C"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 42C
|
||||
|
||||
State House district 42C (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 43A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "43A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 43A
|
||||
|
||||
State House district 43A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 43B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "43B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 43B
|
||||
|
||||
State House district 43B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 44A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "44A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 44A
|
||||
|
||||
State House district 44A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 44B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "44B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 44B
|
||||
|
||||
State House district 44B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 45"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "45"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 45
|
||||
|
||||
State House district 45 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 46"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "46"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 46
|
||||
|
||||
State House district 46 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 47A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "47A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 47A
|
||||
|
||||
State House district 47A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 47B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "47B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 47B
|
||||
|
||||
State House district 47B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 5"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "5"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 5
|
||||
|
||||
State House district 5 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 6"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "6"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 6
|
||||
|
||||
State House district 6 (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 7A"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "7A"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 7A
|
||||
|
||||
State House district 7A (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "MD House District 7B"
|
||||
classification: state-house-district
|
||||
state: "MD"
|
||||
chamber: "house"
|
||||
district: "7B"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, md]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# MD House District 7B
|
||||
|
||||
State House district 7B (MD).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user