Graph: national county↔district↔legislator authority layer

The first edges in the repo. Every US county now links to the districts it
sits in, weighted by area overlap, and every legislator links to the district
they represent — county → district → representative, traversable.

Data (PostGIS, no Atlas dependency — computed directly from geometry):
- data/county_district_edges.jsonl — 16,328 weighted edges. area_weight =
  ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid
  Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection,
  NOT centroid-in-polygon, so urban districts that carve through counties
  (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not
  silently dropped. Per-county weights sum to ~1.0 per district type.

build.py:
- ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse
  for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate
  (geometry-only). GEOID/number-keyed, stable.
- county index.md gains a `districts:` block (frontmatter) + a ## Districts
  section (body links, so link-integrity checks them).
- legislators + US House members gain `represents:` pointing at their district
  node; edge stored once on the person, inverse left to the view.
- schemas/jurisdiction: classification enum + chamber/districts fields.

Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so
their house districts get nodes (represents resolves) but no county edges;
CD nodes for acs_cd-missing states are demographically sparse.

Deterministic (byte-identical rebuild); validate.py passes 26,617 records,
link-integrity clean (every district/represents link resolves).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -22,9 +22,24 @@ demographics:
race_native: 347
hispanic: 8213
bachelors_plus: 27421
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9975
- to: "us/states/pa/districts/senate/33"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/house/91"
rel: in-district
area_weight: 0.6218
- to: "us/states/pa/districts/house/193"
rel: in-district
area_weight: 0.3777
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 8213 |
| Bachelor's or higher | 27421 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 33](/us/states/pa/districts/senate/33.md) — 100% (state senate)
- [PA House District 91](/us/states/pa/districts/house/91.md) — 62% (state house)
- [PA House District 193](/us/states/pa/districts/house/193.md) — 38% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,96 @@ demographics:
race_native: 1255
hispanic: 36691
bachelors_plus: 585673
districts:
- to: "us/states/pa/districts/17"
rel: in-district
area_weight: 0.6254
- to: "us/states/pa/districts/12"
rel: in-district
area_weight: 0.3733
- to: "us/states/pa/districts/senate/37"
rel: in-district
area_weight: 0.3383
- to: "us/states/pa/districts/senate/38"
rel: in-district
area_weight: 0.2778
- to: "us/states/pa/districts/senate/45"
rel: in-district
area_weight: 0.2237
- to: "us/states/pa/districts/senate/42"
rel: in-district
area_weight: 0.0807
- to: "us/states/pa/districts/senate/43"
rel: in-district
area_weight: 0.0792
- to: "us/states/pa/districts/house/44"
rel: in-district
area_weight: 0.1453
- to: "us/states/pa/districts/house/28"
rel: in-district
area_weight: 0.1184
- to: "us/states/pa/districts/house/33"
rel: in-district
area_weight: 0.1064
- to: "us/states/pa/districts/house/39"
rel: in-district
area_weight: 0.0971
- to: "us/states/pa/districts/house/30"
rel: in-district
area_weight: 0.0619
- to: "us/states/pa/districts/house/45"
rel: in-district
area_weight: 0.0598
- to: "us/states/pa/districts/house/32"
rel: in-district
area_weight: 0.0572
- to: "us/states/pa/districts/house/25"
rel: in-district
area_weight: 0.0523
- to: "us/states/pa/districts/house/35"
rel: in-district
area_weight: 0.0423
- to: "us/states/pa/districts/house/38"
rel: in-district
area_weight: 0.0391
- to: "us/states/pa/districts/house/46"
rel: in-district
area_weight: 0.0281
- to: "us/states/pa/districts/house/21"
rel: in-district
area_weight: 0.0269
- to: "us/states/pa/districts/house/20"
rel: in-district
area_weight: 0.0259
- to: "us/states/pa/districts/house/27"
rel: in-district
area_weight: 0.0224
- to: "us/states/pa/districts/house/40"
rel: in-district
area_weight: 0.0221
- to: "us/states/pa/districts/house/34"
rel: in-district
area_weight: 0.0216
- to: "us/states/pa/districts/house/42"
rel: in-district
area_weight: 0.0187
- to: "us/states/pa/districts/house/19"
rel: in-district
area_weight: 0.0175
- to: "us/states/pa/districts/house/36"
rel: in-district
area_weight: 0.0142
- to: "us/states/pa/districts/house/24"
rel: in-district
area_weight: 0.0123
- to: "us/states/pa/districts/house/23"
rel: in-district
area_weight: 0.01
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +143,38 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 36691 |
| Bachelor's or higher | 585673 |
## Districts
- [PA-17](/us/states/pa/districts/17.md) — 63% (congressional)
- [PA-12](/us/states/pa/districts/12.md) — 37% (congressional)
- [PA Senate District 37](/us/states/pa/districts/senate/37.md) — 34% (state senate)
- [PA Senate District 38](/us/states/pa/districts/senate/38.md) — 28% (state senate)
- [PA Senate District 45](/us/states/pa/districts/senate/45.md) — 22% (state senate)
- [PA Senate District 42](/us/states/pa/districts/senate/42.md) — 8% (state senate)
- [PA Senate District 43](/us/states/pa/districts/senate/43.md) — 8% (state senate)
- [PA House District 44](/us/states/pa/districts/house/44.md) — 15% (state house)
- [PA House District 28](/us/states/pa/districts/house/28.md) — 12% (state house)
- [PA House District 33](/us/states/pa/districts/house/33.md) — 11% (state house)
- [PA House District 39](/us/states/pa/districts/house/39.md) — 10% (state house)
- [PA House District 30](/us/states/pa/districts/house/30.md) — 6% (state house)
- [PA House District 45](/us/states/pa/districts/house/45.md) — 6% (state house)
- [PA House District 32](/us/states/pa/districts/house/32.md) — 6% (state house)
- [PA House District 25](/us/states/pa/districts/house/25.md) — 5% (state house)
- [PA House District 35](/us/states/pa/districts/house/35.md) — 4% (state house)
- [PA House District 38](/us/states/pa/districts/house/38.md) — 4% (state house)
- [PA House District 46](/us/states/pa/districts/house/46.md) — 3% (state house)
- [PA House District 21](/us/states/pa/districts/house/21.md) — 3% (state house)
- [PA House District 20](/us/states/pa/districts/house/20.md) — 3% (state house)
- [PA House District 27](/us/states/pa/districts/house/27.md) — 2% (state house)
- [PA House District 40](/us/states/pa/districts/house/40.md) — 2% (state house)
- [PA House District 34](/us/states/pa/districts/house/34.md) — 2% (state house)
- [PA House District 42](/us/states/pa/districts/house/42.md) — 2% (state house)
- [PA House District 19](/us/states/pa/districts/house/19.md) — 2% (state house)
- [PA House District 36](/us/states/pa/districts/house/36.md) — 1% (state house)
- [PA House District 24](/us/states/pa/districts/house/24.md) — 1% (state house)
- [PA House District 23](/us/states/pa/districts/house/23.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 12
hispanic: 605
bachelors_plus: 12329
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9986
- to: "us/states/pa/districts/senate/41"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/63"
rel: in-district
area_weight: 0.6387
- to: "us/states/pa/districts/house/60"
rel: in-district
area_weight: 0.3611
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 605 |
| Bachelor's or higher | 12329 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 41](/us/states/pa/districts/senate/41.md) — 100% (state senate)
- [PA House District 63](/us/states/pa/districts/house/63.md) — 64% (state house)
- [PA House District 60](/us/states/pa/districts/house/60.md) — 36% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 143
hispanic: 3968
bachelors_plus: 46077
districts:
- to: "us/states/pa/districts/17"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/47"
rel: in-district
area_weight: 0.8455
- to: "us/states/pa/districts/senate/46"
rel: in-district
area_weight: 0.1544
- to: "us/states/pa/districts/house/15"
rel: in-district
area_weight: 0.4806
- to: "us/states/pa/districts/house/14"
rel: in-district
area_weight: 0.397
- to: "us/states/pa/districts/house/16"
rel: in-district
area_weight: 0.1222
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 3968 |
| Bachelor's or higher | 46077 |
## Districts
- [PA-17](/us/states/pa/districts/17.md) — 100% (congressional)
- [PA Senate District 47](/us/states/pa/districts/senate/47.md) — 85% (state senate)
- [PA Senate District 46](/us/states/pa/districts/senate/46.md) — 15% (state senate)
- [PA House District 15](/us/states/pa/districts/house/15.md) — 48% (state house)
- [PA House District 14](/us/states/pa/districts/house/14.md) — 40% (state house)
- [PA House District 16](/us/states/pa/districts/house/16.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: 31
hispanic: 644
bachelors_plus: 7621
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/32"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/78"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 644 |
| Bachelor's or higher | 7621 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 32](/us/states/pa/districts/senate/32.md) — 100% (state senate)
- [PA House District 78](/us/states/pa/districts/house/78.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 2854
hispanic: 107531
bachelors_plus: 112321
districts:
- to: "us/states/pa/districts/04"
rel: in-district
area_weight: 0.4302
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.3668
- to: "us/states/pa/districts/06"
rel: in-district
area_weight: 0.2029
- to: "us/states/pa/districts/senate/48"
rel: in-district
area_weight: 0.4834
- to: "us/states/pa/districts/senate/11"
rel: in-district
area_weight: 0.2367
- to: "us/states/pa/districts/senate/24"
rel: in-district
area_weight: 0.1741
- to: "us/states/pa/districts/senate/13"
rel: in-district
area_weight: 0.0767
- to: "us/states/pa/districts/senate/44"
rel: in-district
area_weight: 0.029
- to: "us/states/pa/districts/house/5"
rel: in-district
area_weight: 0.2896
- to: "us/states/pa/districts/house/130"
rel: in-district
area_weight: 0.242
- to: "us/states/pa/districts/house/124"
rel: in-district
area_weight: 0.2131
- to: "us/states/pa/districts/house/128"
rel: in-district
area_weight: 0.1607
- to: "us/states/pa/districts/house/99"
rel: in-district
area_weight: 0.0406
- to: "us/states/pa/districts/house/126"
rel: in-district
area_weight: 0.0305
- to: "us/states/pa/districts/house/129"
rel: in-district
area_weight: 0.0149
- to: "us/states/pa/districts/house/127"
rel: in-district
area_weight: 0.0085
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 107531 |
| Bachelor's or higher | 112321 |
## Districts
- [PA-04](/us/states/pa/districts/04.md) — 43% (congressional)
- [PA-09](/us/states/pa/districts/09.md) — 37% (congressional)
- [PA-06](/us/states/pa/districts/06.md) — 20% (congressional)
- [PA Senate District 48](/us/states/pa/districts/senate/48.md) — 48% (state senate)
- [PA Senate District 11](/us/states/pa/districts/senate/11.md) — 24% (state senate)
- [PA Senate District 24](/us/states/pa/districts/senate/24.md) — 17% (state senate)
- [PA Senate District 13](/us/states/pa/districts/senate/13.md) — 8% (state senate)
- [PA Senate District 44](/us/states/pa/districts/senate/44.md) — 3% (state senate)
- [PA House District 5](/us/states/pa/districts/house/5.md) — 29% (state house)
- [PA House District 130](/us/states/pa/districts/house/130.md) — 24% (state house)
- [PA House District 124](/us/states/pa/districts/house/124.md) — 21% (state house)
- [PA House District 128](/us/states/pa/districts/house/128.md) — 16% (state house)
- [PA House District 99](/us/states/pa/districts/house/99.md) — 4% (state house)
- [PA House District 126](/us/states/pa/districts/house/126.md) — 3% (state house)
- [PA House District 129](/us/states/pa/districts/house/129.md) — 1% (state house)
- [PA House District 127](/us/states/pa/districts/house/127.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 37
hispanic: 1925
bachelors_plus: 27802
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/30"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/80"
rel: in-district
area_weight: 0.8355
- to: "us/states/pa/districts/house/79"
rel: in-district
area_weight: 0.1642
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1925 |
| Bachelor's or higher | 27802 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 30](/us/states/pa/districts/senate/30.md) — 100% (state senate)
- [PA House District 80](/us/states/pa/districts/house/80.md) — 84% (state house)
- [PA House District 79](/us/states/pa/districts/house/79.md) — 16% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 39
hispanic: 1011
bachelors_plus: 12203
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/68"
rel: in-district
area_weight: 0.5013
- to: "us/states/pa/districts/house/110"
rel: in-district
area_weight: 0.4985
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1011 |
| Bachelor's or higher | 12203 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 23](/us/states/pa/districts/senate/23.md) — 100% (state senate)
- [PA House District 68](/us/states/pa/districts/house/68.md) — 50% (state house)
- [PA House District 110](/us/states/pa/districts/house/110.md) — 50% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,54 @@ demographics:
race_native: 1020
hispanic: 42668
bachelors_plus: 295620
districts:
- to: "us/states/pa/districts/01"
rel: in-district
area_weight: 0.999
- to: "us/states/pa/districts/senate/16"
rel: in-district
area_weight: 0.4297
- to: "us/states/pa/districts/senate/10"
rel: in-district
area_weight: 0.3663
- to: "us/states/pa/districts/senate/6"
rel: in-district
area_weight: 0.2035
- to: "us/states/pa/districts/house/145"
rel: in-district
area_weight: 0.2785
- to: "us/states/pa/districts/house/143"
rel: in-district
area_weight: 0.2164
- to: "us/states/pa/districts/house/29"
rel: in-district
area_weight: 0.1322
- to: "us/states/pa/districts/house/31"
rel: in-district
area_weight: 0.0861
- to: "us/states/pa/districts/house/178"
rel: in-district
area_weight: 0.0804
- to: "us/states/pa/districts/house/140"
rel: in-district
area_weight: 0.055
- to: "us/states/pa/districts/house/142"
rel: in-district
area_weight: 0.044
- to: "us/states/pa/districts/house/144"
rel: in-district
area_weight: 0.0424
- to: "us/states/pa/districts/house/18"
rel: in-district
area_weight: 0.0341
- to: "us/states/pa/districts/house/141"
rel: in-district
area_weight: 0.0306
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +101,24 @@ County jurisdiction.
| Hispanic/Latino | 42668 |
| Bachelor's or higher | 295620 |
## Districts
- [PA-01](/us/states/pa/districts/01.md) — 100% (congressional)
- [PA Senate District 16](/us/states/pa/districts/senate/16.md) — 43% (state senate)
- [PA Senate District 10](/us/states/pa/districts/senate/10.md) — 37% (state senate)
- [PA Senate District 6](/us/states/pa/districts/senate/6.md) — 20% (state senate)
- [PA House District 145](/us/states/pa/districts/house/145.md) — 28% (state house)
- [PA House District 143](/us/states/pa/districts/house/143.md) — 22% (state house)
- [PA House District 29](/us/states/pa/districts/house/29.md) — 13% (state house)
- [PA House District 31](/us/states/pa/districts/house/31.md) — 9% (state house)
- [PA House District 178](/us/states/pa/districts/house/178.md) — 8% (state house)
- [PA House District 140](/us/states/pa/districts/house/140.md) — 6% (state house)
- [PA House District 142](/us/states/pa/districts/house/142.md) — 4% (state house)
- [PA House District 144](/us/states/pa/districts/house/144.md) — 4% (state house)
- [PA House District 18](/us/states/pa/districts/house/18.md) — 3% (state house)
- [PA House District 141](/us/states/pa/districts/house/141.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 223
hispanic: 3981
bachelors_plus: 76890
districts:
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 0.8222
- to: "us/states/pa/districts/senate/47"
rel: in-district
area_weight: 0.1777
- to: "us/states/pa/districts/house/8"
rel: in-district
area_weight: 0.3352
- to: "us/states/pa/districts/house/17"
rel: in-district
area_weight: 0.3042
- to: "us/states/pa/districts/house/11"
rel: in-district
area_weight: 0.2697
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 3981 |
| Bachelor's or higher | 76890 |
## Districts
- [PA-16](/us/states/pa/districts/16.md) — 100% (congressional)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 82% (state senate)
- [PA Senate District 47](/us/states/pa/districts/senate/47.md) — 18% (state senate)
- [PA House District 8](/us/states/pa/districts/house/8.md) — 34% (state house)
- [PA House District 17](/us/states/pa/districts/house/17.md) — 30% (state house)
- [PA House District 11](/us/states/pa/districts/house/11.md) — 27% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 62
hispanic: 2796
bachelors_plus: 30434
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9984
- to: "us/states/pa/districts/senate/35"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/71"
rel: in-district
area_weight: 0.5192
- to: "us/states/pa/districts/house/72"
rel: in-district
area_weight: 0.3168
- to: "us/states/pa/districts/house/73"
rel: in-district
area_weight: 0.164
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2796 |
| Bachelor's or higher | 30434 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 35](/us/states/pa/districts/senate/35.md) — 100% (state senate)
- [PA House District 71](/us/states/pa/districts/house/71.md) — 52% (state house)
- [PA House District 72](/us/states/pa/districts/house/72.md) — 32% (state house)
- [PA House District 73](/us/states/pa/districts/house/73.md) — 16% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 13
hispanic: 31
bachelors_plus: 581
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/house/67"
rel: in-district
area_weight: 0.9994
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 31 |
| Bachelor's or higher | 581 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 100% (state senate)
- [PA House District 67](/us/states/pa/districts/house/67.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 241
hispanic: 4522
bachelors_plus: 12182
districts:
- to: "us/states/pa/districts/07"
rel: in-district
area_weight: 0.9966
- to: "us/states/pa/districts/senate/29"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/122"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 4522 |
| Bachelor's or higher | 12182 |
## Districts
- [PA-07](/us/states/pa/districts/07.md) — 100% (congressional)
- [PA Senate District 29](/us/states/pa/districts/senate/29.md) — 100% (state senate)
- [PA House District 122](/us/states/pa/districts/house/122.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 475
hispanic: 5824
bachelors_plus: 68231
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.709
- to: "us/states/pa/districts/senate/35"
rel: in-district
area_weight: 0.291
- to: "us/states/pa/districts/house/82"
rel: in-district
area_weight: 0.4168
- to: "us/states/pa/districts/house/77"
rel: in-district
area_weight: 0.2921
- to: "us/states/pa/districts/house/171"
rel: in-district
area_weight: 0.2908
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 5824 |
| Bachelor's or higher | 68231 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 71% (state senate)
- [PA Senate District 35](/us/states/pa/districts/senate/35.md) — 29% (state senate)
- [PA House District 82](/us/states/pa/districts/house/82.md) — 42% (state house)
- [PA House District 77](/us/states/pa/districts/house/77.md) — 29% (state house)
- [PA House District 171](/us/states/pa/districts/house/171.md) — 29% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,51 @@ demographics:
race_native: 604
hispanic: 45958
bachelors_plus: 306773
districts:
- to: "us/states/pa/districts/06"
rel: in-district
area_weight: 0.9956
- to: "us/states/pa/districts/senate/19"
rel: in-district
area_weight: 0.4322
- to: "us/states/pa/districts/senate/44"
rel: in-district
area_weight: 0.4004
- to: "us/states/pa/districts/senate/9"
rel: in-district
area_weight: 0.1671
- to: "us/states/pa/districts/house/13"
rel: in-district
area_weight: 0.25
- to: "us/states/pa/districts/house/158"
rel: in-district
area_weight: 0.1587
- to: "us/states/pa/districts/house/26"
rel: in-district
area_weight: 0.1438
- to: "us/states/pa/districts/house/74"
rel: in-district
area_weight: 0.1095
- to: "us/states/pa/districts/house/167"
rel: in-district
area_weight: 0.0947
- to: "us/states/pa/districts/house/155"
rel: in-district
area_weight: 0.0835
- to: "us/states/pa/districts/house/157"
rel: in-district
area_weight: 0.0729
- to: "us/states/pa/districts/house/156"
rel: in-district
area_weight: 0.0482
- to: "us/states/pa/districts/house/160"
rel: in-district
area_weight: 0.0383
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +98,23 @@ County jurisdiction.
| Hispanic/Latino | 45958 |
| Bachelor's or higher | 306773 |
## Districts
- [PA-06](/us/states/pa/districts/06.md) — 100% (congressional)
- [PA Senate District 19](/us/states/pa/districts/senate/19.md) — 43% (state senate)
- [PA Senate District 44](/us/states/pa/districts/senate/44.md) — 40% (state senate)
- [PA Senate District 9](/us/states/pa/districts/senate/9.md) — 17% (state senate)
- [PA House District 13](/us/states/pa/districts/house/13.md) — 25% (state house)
- [PA House District 158](/us/states/pa/districts/house/158.md) — 16% (state house)
- [PA House District 26](/us/states/pa/districts/house/26.md) — 14% (state house)
- [PA House District 74](/us/states/pa/districts/house/74.md) — 11% (state house)
- [PA House District 167](/us/states/pa/districts/house/167.md) — 9% (state house)
- [PA House District 155](/us/states/pa/districts/house/155.md) — 8% (state house)
- [PA House District 157](/us/states/pa/districts/house/157.md) — 7% (state house)
- [PA House District 156](/us/states/pa/districts/house/156.md) — 5% (state house)
- [PA House District 160](/us/states/pa/districts/house/160.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 5
hispanic: 435
bachelors_plus: 8160
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/63"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 435 |
| Bachelor's or higher | 8160 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 100% (state senate)
- [PA House District 63](/us/states/pa/districts/house/63.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 51
hispanic: 2378
bachelors_plus: 15723
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/35"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/73"
rel: in-district
area_weight: 0.6642
- to: "us/states/pa/districts/house/75"
rel: in-district
area_weight: 0.3356
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 2378 |
| Bachelor's or higher | 15723 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 35](/us/states/pa/districts/senate/35.md) — 100% (state senate)
- [PA House District 73](/us/states/pa/districts/house/73.md) — 66% (state house)
- [PA House District 75](/us/states/pa/districts/house/75.md) — 34% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 19
hispanic: 719
bachelors_plus: 7390
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/76"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 719 |
| Bachelor's or higher | 7390 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 100% (state senate)
- [PA House District 76](/us/states/pa/districts/house/76.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 134
hispanic: 2663
bachelors_plus: 16465
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/27"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/house/109"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 2663 |
| Bachelor's or higher | 16465 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 27](/us/states/pa/districts/senate/27.md) — 100% (state senate)
- [PA House District 109](/us/states/pa/districts/house/109.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 46
hispanic: 1327
bachelors_plus: 16974
districts:
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/50"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/6"
rel: in-district
area_weight: 0.5774
- to: "us/states/pa/districts/house/65"
rel: in-district
area_weight: 0.2921
- to: "us/states/pa/districts/house/64"
rel: in-district
area_weight: 0.1304
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1327 |
| Bachelor's or higher | 16974 |
## Districts
- [PA-16](/us/states/pa/districts/16.md) — 100% (congressional)
- [PA Senate District 50](/us/states/pa/districts/senate/50.md) — 100% (state senate)
- [PA House District 6](/us/states/pa/districts/house/6.md) — 58% (state house)
- [PA House District 65](/us/states/pa/districts/house/65.md) — 29% (state house)
- [PA House District 64](/us/states/pa/districts/house/64.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 110
hispanic: 13809
bachelors_plus: 104961
districts:
- to: "us/states/pa/districts/10"
rel: in-district
area_weight: 0.7019
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.2981
- to: "us/states/pa/districts/senate/34"
rel: in-district
area_weight: 0.946
- to: "us/states/pa/districts/senate/31"
rel: in-district
area_weight: 0.0539
- to: "us/states/pa/districts/house/199"
rel: in-district
area_weight: 0.4194
- to: "us/states/pa/districts/house/193"
rel: in-district
area_weight: 0.2946
- to: "us/states/pa/districts/house/87"
rel: in-district
area_weight: 0.2064
- to: "us/states/pa/districts/house/88"
rel: in-district
area_weight: 0.0512
- to: "us/states/pa/districts/house/103"
rel: in-district
area_weight: 0.0281
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction.
| Hispanic/Latino | 13809 |
| Bachelor's or higher | 104961 |
## Districts
- [PA-10](/us/states/pa/districts/10.md) — 70% (congressional)
- [PA-13](/us/states/pa/districts/13.md) — 30% (congressional)
- [PA Senate District 34](/us/states/pa/districts/senate/34.md) — 95% (state senate)
- [PA Senate District 31](/us/states/pa/districts/senate/31.md) — 5% (state senate)
- [PA House District 199](/us/states/pa/districts/house/199.md) — 42% (state house)
- [PA House District 193](/us/states/pa/districts/house/193.md) — 29% (state house)
- [PA House District 87](/us/states/pa/districts/house/87.md) — 21% (state house)
- [PA House District 88](/us/states/pa/districts/house/88.md) — 5% (state house)
- [PA House District 103](/us/states/pa/districts/house/103.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: 832
hispanic: 34032
bachelors_plus: 95020
districts:
- to: "us/states/pa/districts/10"
rel: in-district
area_weight: 0.9956
- to: "us/states/pa/districts/senate/15"
rel: in-district
area_weight: 0.5334
- to: "us/states/pa/districts/senate/34"
rel: in-district
area_weight: 0.4664
- to: "us/states/pa/districts/house/125"
rel: in-district
area_weight: 0.6408
- to: "us/states/pa/districts/house/106"
rel: in-district
area_weight: 0.2427
- to: "us/states/pa/districts/house/105"
rel: in-district
area_weight: 0.052
- to: "us/states/pa/districts/house/104"
rel: in-district
area_weight: 0.0479
- to: "us/states/pa/districts/house/103"
rel: in-district
area_weight: 0.0161
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 34032 |
| Bachelor's or higher | 95020 |
## Districts
- [PA-10](/us/states/pa/districts/10.md) — 100% (congressional)
- [PA Senate District 15](/us/states/pa/districts/senate/15.md) — 53% (state senate)
- [PA Senate District 34](/us/states/pa/districts/senate/34.md) — 47% (state senate)
- [PA House District 125](/us/states/pa/districts/house/125.md) — 64% (state house)
- [PA House District 106](/us/states/pa/districts/house/106.md) — 24% (state house)
- [PA House District 105](/us/states/pa/districts/house/105.md) — 5% (state house)
- [PA House District 104](/us/states/pa/districts/house/104.md) — 5% (state house)
- [PA House District 103](/us/states/pa/districts/house/103.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,63 @@ demographics:
race_native: 417
hispanic: 29222
bachelors_plus: 238471
districts:
- to: "us/states/pa/districts/05"
rel: in-district
area_weight: 0.9933
- to: "us/states/pa/districts/06"
rel: in-district
area_weight: 0.0058
- to: "us/states/pa/districts/senate/9"
rel: in-district
area_weight: 0.5036
- to: "us/states/pa/districts/senate/26"
rel: in-district
area_weight: 0.2835
- to: "us/states/pa/districts/senate/17"
rel: in-district
area_weight: 0.1247
- to: "us/states/pa/districts/senate/8"
rel: in-district
area_weight: 0.0878
- to: "us/states/pa/districts/house/168"
rel: in-district
area_weight: 0.2261
- to: "us/states/pa/districts/house/160"
rel: in-district
area_weight: 0.206
- to: "us/states/pa/districts/house/165"
rel: in-district
area_weight: 0.1138
- to: "us/states/pa/districts/house/161"
rel: in-district
area_weight: 0.1093
- to: "us/states/pa/districts/house/159"
rel: in-district
area_weight: 0.0969
- to: "us/states/pa/districts/house/166"
rel: in-district
area_weight: 0.0707
- to: "us/states/pa/districts/house/162"
rel: in-district
area_weight: 0.0541
- to: "us/states/pa/districts/house/185"
rel: in-district
area_weight: 0.0473
- to: "us/states/pa/districts/house/163"
rel: in-district
area_weight: 0.0383
- to: "us/states/pa/districts/house/164"
rel: in-district
area_weight: 0.0243
- to: "us/states/pa/districts/house/191"
rel: in-district
area_weight: 0.0129
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +110,27 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 29222 |
| Bachelor's or higher | 238471 |
## Districts
- [PA-05](/us/states/pa/districts/05.md) — 99% (congressional)
- [PA-06](/us/states/pa/districts/06.md) — 1% (congressional)
- [PA Senate District 9](/us/states/pa/districts/senate/9.md) — 50% (state senate)
- [PA Senate District 26](/us/states/pa/districts/senate/26.md) — 28% (state senate)
- [PA Senate District 17](/us/states/pa/districts/senate/17.md) — 12% (state senate)
- [PA Senate District 8](/us/states/pa/districts/senate/8.md) — 9% (state senate)
- [PA House District 168](/us/states/pa/districts/house/168.md) — 23% (state house)
- [PA House District 160](/us/states/pa/districts/house/160.md) — 21% (state house)
- [PA House District 165](/us/states/pa/districts/house/165.md) — 11% (state house)
- [PA House District 161](/us/states/pa/districts/house/161.md) — 11% (state house)
- [PA House District 159](/us/states/pa/districts/house/159.md) — 10% (state house)
- [PA House District 166](/us/states/pa/districts/house/166.md) — 7% (state house)
- [PA House District 162](/us/states/pa/districts/house/162.md) — 5% (state house)
- [PA House District 185](/us/states/pa/districts/house/185.md) — 5% (state house)
- [PA House District 163](/us/states/pa/districts/house/163.md) — 4% (state house)
- [PA House District 164](/us/states/pa/districts/house/164.md) — 2% (state house)
- [PA House District 191](/us/states/pa/districts/house/191.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: 4
hispanic: 314
bachelors_plus: 6398
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/75"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 314 |
| Bachelor's or higher | 6398 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 100% (state senate)
- [PA House District 75](/us/states/pa/districts/house/75.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: 369
hispanic: 12851
bachelors_plus: 78225
districts:
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.5183
- to: "us/states/pa/districts/senate/49"
rel: in-district
area_weight: 0.4678
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 0.0503
- to: "us/states/pa/districts/house/4"
rel: in-district
area_weight: 0.3246
- to: "us/states/pa/districts/house/6"
rel: in-district
area_weight: 0.0753
- to: "us/states/pa/districts/house/2"
rel: in-district
area_weight: 0.0661
- to: "us/states/pa/districts/house/3"
rel: in-district
area_weight: 0.0398
- to: "us/states/pa/districts/house/1"
rel: in-district
area_weight: 0.0123
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 12851 |
| Bachelor's or higher | 78225 |
## Districts
- [PA-16](/us/states/pa/districts/16.md) — 52% (congressional)
- [PA Senate District 49](/us/states/pa/districts/senate/49.md) — 47% (state senate)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 5% (state senate)
- [PA House District 4](/us/states/pa/districts/house/4.md) — 32% (state house)
- [PA House District 6](/us/states/pa/districts/house/6.md) — 8% (state house)
- [PA House District 2](/us/states/pa/districts/house/2.md) — 7% (state house)
- [PA House District 3](/us/states/pa/districts/house/3.md) — 4% (state house)
- [PA House District 1](/us/states/pa/districts/house/1.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 121
hispanic: 1822
bachelors_plus: 23817
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/senate/32"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/52"
rel: in-district
area_weight: 0.5425
- to: "us/states/pa/districts/house/51"
rel: in-district
area_weight: 0.4571
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 1822 |
| Bachelor's or higher | 23817 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 100% (congressional)
- [PA Senate District 32](/us/states/pa/districts/senate/32.md) — 100% (state senate)
- [PA House District 52](/us/states/pa/districts/house/52.md) — 54% (state house)
- [PA House District 51](/us/states/pa/districts/house/51.md) — 46% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 24
hispanic: 344
bachelors_plus: 936
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/65"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 344 |
| Bachelor's or higher | 936 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 100% (state senate)
- [PA House District 65](/us/states/pa/districts/house/65.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 590
hispanic: 11830
bachelors_plus: 38750
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/senate/33"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/90"
rel: in-district
area_weight: 0.4065
- to: "us/states/pa/districts/house/81"
rel: in-district
area_weight: 0.3979
- to: "us/states/pa/districts/house/89"
rel: in-district
area_weight: 0.1953
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 11830 |
| Bachelor's or higher | 38750 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 33](/us/states/pa/districts/senate/33.md) — 100% (state senate)
- [PA House District 90](/us/states/pa/districts/house/90.md) — 41% (state house)
- [PA House District 81](/us/states/pa/districts/house/81.md) — 40% (state house)
- [PA House District 89](/us/states/pa/districts/house/89.md) — 20% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 6
hispanic: 188
bachelors_plus: 2593
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/30"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/78"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 188 |
| Bachelor's or higher | 2593 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 30](/us/states/pa/districts/senate/30.md) — 100% (state senate)
- [PA House District 78](/us/states/pa/districts/house/78.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 23
hispanic: 556
bachelors_plus: 7504
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.9996
- to: "us/states/pa/districts/senate/46"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/house/50"
rel: in-district
area_weight: 0.9994
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 556 |
| Bachelor's or higher | 7504 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 100% (congressional)
- [PA Senate District 46](/us/states/pa/districts/senate/46.md) — 100% (state senate)
- [PA House District 50](/us/states/pa/districts/house/50.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 49
hispanic: 911
bachelors_plus: 8289
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9993
- to: "us/states/pa/districts/senate/30"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/81"
rel: in-district
area_weight: 0.931
- to: "us/states/pa/districts/house/80"
rel: in-district
area_weight: 0.0688
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 911 |
| Bachelor's or higher | 8289 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 30](/us/states/pa/districts/senate/30.md) — 100% (state senate)
- [PA House District 81](/us/states/pa/districts/house/81.md) — 93% (state house)
- [PA House District 80](/us/states/pa/districts/house/80.md) — 7% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 16
hispanic: 1546
bachelors_plus: 20792
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.7487
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.251
- to: "us/states/pa/districts/senate/41"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/62"
rel: in-district
area_weight: 0.5972
- to: "us/states/pa/districts/house/66"
rel: in-district
area_weight: 0.4026
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1546 |
| Bachelor's or higher | 20792 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 75% (congressional)
- [PA-15](/us/states/pa/districts/15.md) — 25% (congressional)
- [PA Senate District 41](/us/states/pa/districts/senate/41.md) — 100% (state senate)
- [PA House District 62](/us/states/pa/districts/house/62.md) — 60% (state house)
- [PA House District 66](/us/states/pa/districts/house/66.md) — 40% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 26
hispanic: 446
bachelors_plus: 7591
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.6884
- to: "us/states/pa/districts/senate/41"
rel: in-district
area_weight: 0.3114
- to: "us/states/pa/districts/house/66"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 446 |
| Bachelor's or higher | 7591 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 69% (state senate)
- [PA Senate District 41](/us/states/pa/districts/senate/41.md) — 31% (state senate)
- [PA House District 66](/us/states/pa/districts/house/66.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 34
hispanic: 969
bachelors_plus: 3295
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9985
- to: "us/states/pa/districts/senate/30"
rel: in-district
area_weight: 0.9996
- to: "us/states/pa/districts/house/86"
rel: in-district
area_weight: 0.8484
- to: "us/states/pa/districts/house/85"
rel: in-district
area_weight: 0.1515
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 969 |
| Bachelor's or higher | 3295 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 30](/us/states/pa/districts/senate/30.md) — 100% (state senate)
- [PA House District 86](/us/states/pa/districts/house/86.md) — 85% (state house)
- [PA House District 85](/us/states/pa/districts/house/85.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 180
hispanic: 21190
bachelors_plus: 65567
districts:
- to: "us/states/pa/districts/08"
rel: in-district
area_weight: 0.9991
- to: "us/states/pa/districts/senate/40"
rel: in-district
area_weight: 0.537
- to: "us/states/pa/districts/senate/22"
rel: in-district
area_weight: 0.4629
- to: "us/states/pa/districts/house/113"
rel: in-district
area_weight: 0.3445
- to: "us/states/pa/districts/house/112"
rel: in-district
area_weight: 0.2544
- to: "us/states/pa/districts/house/114"
rel: in-district
area_weight: 0.2469
- to: "us/states/pa/districts/house/118"
rel: in-district
area_weight: 0.1539
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 21190 |
| Bachelor's or higher | 65567 |
## Districts
- [PA-08](/us/states/pa/districts/08.md) — 100% (congressional)
- [PA Senate District 40](/us/states/pa/districts/senate/40.md) — 54% (state senate)
- [PA Senate District 22](/us/states/pa/districts/senate/22.md) — 46% (state senate)
- [PA House District 113](/us/states/pa/districts/house/113.md) — 34% (state house)
- [PA House District 112](/us/states/pa/districts/house/112.md) — 25% (state house)
- [PA House District 114](/us/states/pa/districts/house/114.md) — 25% (state house)
- [PA House District 118](/us/states/pa/districts/house/118.md) — 15% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,51 @@ demographics:
race_native: 1162
hispanic: 64326
bachelors_plus: 168247
districts:
- to: "us/states/pa/districts/11"
rel: in-district
area_weight: 0.9979
- to: "us/states/pa/districts/senate/13"
rel: in-district
area_weight: 0.5488
- to: "us/states/pa/districts/senate/36"
rel: in-district
area_weight: 0.3506
- to: "us/states/pa/districts/senate/48"
rel: in-district
area_weight: 0.1003
- to: "us/states/pa/districts/house/100"
rel: in-district
area_weight: 0.314
- to: "us/states/pa/districts/house/37"
rel: in-district
area_weight: 0.1441
- to: "us/states/pa/districts/house/99"
rel: in-district
area_weight: 0.1396
- to: "us/states/pa/districts/house/97"
rel: in-district
area_weight: 0.1215
- to: "us/states/pa/districts/house/43"
rel: in-district
area_weight: 0.1038
- to: "us/states/pa/districts/house/98"
rel: in-district
area_weight: 0.0934
- to: "us/states/pa/districts/house/41"
rel: in-district
area_weight: 0.0498
- to: "us/states/pa/districts/house/96"
rel: in-district
area_weight: 0.0219
- to: "us/states/pa/districts/house/49"
rel: in-district
area_weight: 0.0116
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +98,23 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 64326 |
| Bachelor's or higher | 168247 |
## Districts
- [PA-11](/us/states/pa/districts/11.md) — 100% (congressional)
- [PA Senate District 13](/us/states/pa/districts/senate/13.md) — 55% (state senate)
- [PA Senate District 36](/us/states/pa/districts/senate/36.md) — 35% (state senate)
- [PA Senate District 48](/us/states/pa/districts/senate/48.md) — 10% (state senate)
- [PA House District 100](/us/states/pa/districts/house/100.md) — 31% (state house)
- [PA House District 37](/us/states/pa/districts/house/37.md) — 14% (state house)
- [PA House District 99](/us/states/pa/districts/house/99.md) — 14% (state house)
- [PA House District 97](/us/states/pa/districts/house/97.md) — 12% (state house)
- [PA House District 43](/us/states/pa/districts/house/43.md) — 10% (state house)
- [PA House District 98](/us/states/pa/districts/house/98.md) — 9% (state house)
- [PA House District 41](/us/states/pa/districts/house/41.md) — 5% (state house)
- [PA House District 96](/us/states/pa/districts/house/96.md) — 2% (state house)
- [PA House District 49](/us/states/pa/districts/house/49.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 11
hispanic: 1872
bachelors_plus: 18473
districts:
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/senate/50"
rel: in-district
area_weight: 0.7959
- to: "us/states/pa/districts/senate/47"
rel: in-district
area_weight: 0.204
- to: "us/states/pa/districts/house/9"
rel: in-district
area_weight: 0.564
- to: "us/states/pa/districts/house/8"
rel: in-district
area_weight: 0.4359
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1872 |
| Bachelor's or higher | 18473 |
## Districts
- [PA-16](/us/states/pa/districts/16.md) — 100% (congressional)
- [PA Senate District 50](/us/states/pa/districts/senate/50.md) — 80% (state senate)
- [PA Senate District 47](/us/states/pa/districts/senate/47.md) — 20% (state senate)
- [PA House District 9](/us/states/pa/districts/house/9.md) — 56% (state house)
- [PA House District 8](/us/states/pa/districts/house/8.md) — 44% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 93
hispanic: 21918
bachelors_plus: 33532
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/48"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/102"
rel: in-district
area_weight: 0.6827
- to: "us/states/pa/districts/house/101"
rel: in-district
area_weight: 0.1959
- to: "us/states/pa/districts/house/98"
rel: in-district
area_weight: 0.1212
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 21918 |
| Bachelor's or higher | 33532 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 48](/us/states/pa/districts/senate/48.md) — 100% (state senate)
- [PA House District 102](/us/states/pa/districts/house/102.md) — 68% (state house)
- [PA House District 101](/us/states/pa/districts/house/101.md) — 20% (state house)
- [PA House District 98](/us/states/pa/districts/house/98.md) — 12% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 1801
hispanic: 105976
bachelors_plus: 123421
districts:
- to: "us/states/pa/districts/07"
rel: in-district
area_weight: 0.9993
- to: "us/states/pa/districts/senate/16"
rel: in-district
area_weight: 0.8272
- to: "us/states/pa/districts/senate/14"
rel: in-district
area_weight: 0.1598
- to: "us/states/pa/districts/senate/18"
rel: in-district
area_weight: 0.0126
- to: "us/states/pa/districts/house/187"
rel: in-district
area_weight: 0.4424
- to: "us/states/pa/districts/house/131"
rel: in-district
area_weight: 0.1881
- to: "us/states/pa/districts/house/183"
rel: in-district
area_weight: 0.1266
- to: "us/states/pa/districts/house/132"
rel: in-district
area_weight: 0.1001
- to: "us/states/pa/districts/house/133"
rel: in-district
area_weight: 0.0695
- to: "us/states/pa/districts/house/134"
rel: in-district
area_weight: 0.0383
- to: "us/states/pa/districts/house/22"
rel: in-district
area_weight: 0.0348
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 105976 |
| Bachelor's or higher | 123421 |
## Districts
- [PA-07](/us/states/pa/districts/07.md) — 100% (congressional)
- [PA Senate District 16](/us/states/pa/districts/senate/16.md) — 83% (state senate)
- [PA Senate District 14](/us/states/pa/districts/senate/14.md) — 16% (state senate)
- [PA Senate District 18](/us/states/pa/districts/senate/18.md) — 1% (state senate)
- [PA House District 187](/us/states/pa/districts/house/187.md) — 44% (state house)
- [PA House District 131](/us/states/pa/districts/house/131.md) — 19% (state house)
- [PA House District 183](/us/states/pa/districts/house/183.md) — 13% (state house)
- [PA House District 132](/us/states/pa/districts/house/132.md) — 10% (state house)
- [PA House District 133](/us/states/pa/districts/house/133.md) — 7% (state house)
- [PA House District 134](/us/states/pa/districts/house/134.md) — 4% (state house)
- [PA House District 22](/us/states/pa/districts/house/22.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,48 @@ demographics:
race_native: 370
hispanic: 56836
bachelors_plus: 82126
districts:
- to: "us/states/pa/districts/08"
rel: in-district
area_weight: 0.5645
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.4345
- to: "us/states/pa/districts/senate/20"
rel: in-district
area_weight: 0.3808
- to: "us/states/pa/districts/senate/27"
rel: in-district
area_weight: 0.2934
- to: "us/states/pa/districts/senate/29"
rel: in-district
area_weight: 0.2464
- to: "us/states/pa/districts/senate/22"
rel: in-district
area_weight: 0.0793
- to: "us/states/pa/districts/house/117"
rel: in-district
area_weight: 0.5574
- to: "us/states/pa/districts/house/121"
rel: in-district
area_weight: 0.1287
- to: "us/states/pa/districts/house/119"
rel: in-district
area_weight: 0.11
- to: "us/states/pa/districts/house/120"
rel: in-district
area_weight: 0.1001
- to: "us/states/pa/districts/house/116"
rel: in-district
area_weight: 0.0582
- to: "us/states/pa/districts/house/118"
rel: in-district
area_weight: 0.0455
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +95,22 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 56836 |
| Bachelor's or higher | 82126 |
## Districts
- [PA-08](/us/states/pa/districts/08.md) — 56% (congressional)
- [PA-09](/us/states/pa/districts/09.md) — 43% (congressional)
- [PA Senate District 20](/us/states/pa/districts/senate/20.md) — 38% (state senate)
- [PA Senate District 27](/us/states/pa/districts/senate/27.md) — 29% (state senate)
- [PA Senate District 29](/us/states/pa/districts/senate/29.md) — 25% (state senate)
- [PA Senate District 22](/us/states/pa/districts/senate/22.md) — 8% (state senate)
- [PA House District 117](/us/states/pa/districts/house/117.md) — 56% (state house)
- [PA House District 121](/us/states/pa/districts/house/121.md) — 13% (state house)
- [PA House District 119](/us/states/pa/districts/house/119.md) — 11% (state house)
- [PA House District 120](/us/states/pa/districts/house/120.md) — 10% (state house)
- [PA House District 116](/us/states/pa/districts/house/116.md) — 6% (state house)
- [PA House District 118](/us/states/pa/districts/house/118.md) — 5% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 235
hispanic: 2691
bachelors_plus: 26946
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.722
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.278
- to: "us/states/pa/districts/senate/23"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/84"
rel: in-district
area_weight: 0.8774
- to: "us/states/pa/districts/house/83"
rel: in-district
area_weight: 0.1224
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 2691 |
| Bachelor's or higher | 26946 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 72% (congressional)
- [PA-09](/us/states/pa/districts/09.md) — 28% (congressional)
- [PA Senate District 23](/us/states/pa/districts/senate/23.md) — 100% (state senate)
- [PA House District 84](/us/states/pa/districts/house/84.md) — 88% (state house)
- [PA House District 83](/us/states/pa/districts/house/83.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: 19
hispanic: 784
bachelors_plus: 8162
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/67"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 784 |
| Bachelor's or higher | 8162 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 100% (state senate)
- [PA House District 67](/us/states/pa/districts/house/67.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 102
hispanic: 1837
bachelors_plus: 26861
districts:
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/senate/50"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/17"
rel: in-district
area_weight: 0.6948
- to: "us/states/pa/districts/house/7"
rel: in-district
area_weight: 0.305
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1837 |
| Bachelor's or higher | 26861 |
## Districts
- [PA-16](/us/states/pa/districts/16.md) — 100% (congressional)
- [PA Senate District 50](/us/states/pa/districts/senate/50.md) — 100% (state senate)
- [PA House District 17](/us/states/pa/districts/house/17.md) — 69% (state house)
- [PA House District 7](/us/states/pa/districts/house/7.md) — 30% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 41
hispanic: 1050
bachelors_plus: 6637
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/30"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/171"
rel: in-district
area_weight: 0.8135
- to: "us/states/pa/districts/house/85"
rel: in-district
area_weight: 0.1863
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 1050 |
| Bachelor's or higher | 6637 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 30](/us/states/pa/districts/senate/30.md) — 100% (state senate)
- [PA House District 171](/us/states/pa/districts/house/171.md) — 81% (state house)
- [PA House District 85](/us/states/pa/districts/house/85.md) — 19% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 366
hispanic: 30408
bachelors_plus: 45422
districts:
- to: "us/states/pa/districts/08"
rel: in-district
area_weight: 0.8846
- to: "us/states/pa/districts/07"
rel: in-district
area_weight: 0.1152
- to: "us/states/pa/districts/senate/40"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/176"
rel: in-district
area_weight: 0.4466
- to: "us/states/pa/districts/house/115"
rel: in-district
area_weight: 0.4319
- to: "us/states/pa/districts/house/189"
rel: in-district
area_weight: 0.1211
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction.
| Hispanic/Latino | 30408 |
| Bachelor's or higher | 45422 |
## Districts
- [PA-08](/us/states/pa/districts/08.md) — 88% (congressional)
- [PA-07](/us/states/pa/districts/07.md) — 12% (congressional)
- [PA Senate District 40](/us/states/pa/districts/senate/40.md) — 100% (state senate)
- [PA House District 176](/us/states/pa/districts/house/176.md) — 45% (state house)
- [PA House District 115](/us/states/pa/districts/house/115.md) — 43% (state house)
- [PA House District 189](/us/states/pa/districts/house/189.md) — 12% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,81 @@ demographics:
race_native: 1047
hispanic: 58178
bachelors_plus: 470135
districts:
- to: "us/states/pa/districts/04"
rel: in-district
area_weight: 0.7418
- to: "us/states/pa/districts/01"
rel: in-district
area_weight: 0.1986
- to: "us/states/pa/districts/05"
rel: in-district
area_weight: 0.0574
- to: "us/states/pa/districts/senate/24"
rel: in-district
area_weight: 0.4097
- to: "us/states/pa/districts/senate/12"
rel: in-district
area_weight: 0.2999
- to: "us/states/pa/districts/senate/17"
rel: in-district
area_weight: 0.1211
- to: "us/states/pa/districts/senate/44"
rel: in-district
area_weight: 0.0707
- to: "us/states/pa/districts/senate/4"
rel: in-district
area_weight: 0.066
- to: "us/states/pa/districts/senate/7"
rel: in-district
area_weight: 0.0324
- to: "us/states/pa/districts/house/147"
rel: in-district
area_weight: 0.1953
- to: "us/states/pa/districts/house/70"
rel: in-district
area_weight: 0.1006
- to: "us/states/pa/districts/house/131"
rel: in-district
area_weight: 0.0942
- to: "us/states/pa/districts/house/150"
rel: in-district
area_weight: 0.0813
- to: "us/states/pa/districts/house/146"
rel: in-district
area_weight: 0.0798
- to: "us/states/pa/districts/house/61"
rel: in-district
area_weight: 0.076
- to: "us/states/pa/districts/house/151"
rel: in-district
area_weight: 0.0652
- to: "us/states/pa/districts/house/148"
rel: in-district
area_weight: 0.0614
- to: "us/states/pa/districts/house/149"
rel: in-district
area_weight: 0.0574
- to: "us/states/pa/districts/house/53"
rel: in-district
area_weight: 0.0439
- to: "us/states/pa/districts/house/152"
rel: in-district
area_weight: 0.0423
- to: "us/states/pa/districts/house/153"
rel: in-district
area_weight: 0.042
- to: "us/states/pa/districts/house/154"
rel: in-district
area_weight: 0.0335
- to: "us/states/pa/districts/house/54"
rel: in-district
area_weight: 0.0269
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +128,33 @@ County jurisdiction.
| Hispanic/Latino | 58178 |
| Bachelor's or higher | 470135 |
## Districts
- [PA-04](/us/states/pa/districts/04.md) — 74% (congressional)
- [PA-01](/us/states/pa/districts/01.md) — 20% (congressional)
- [PA-05](/us/states/pa/districts/05.md) — 6% (congressional)
- [PA Senate District 24](/us/states/pa/districts/senate/24.md) — 41% (state senate)
- [PA Senate District 12](/us/states/pa/districts/senate/12.md) — 30% (state senate)
- [PA Senate District 17](/us/states/pa/districts/senate/17.md) — 12% (state senate)
- [PA Senate District 44](/us/states/pa/districts/senate/44.md) — 7% (state senate)
- [PA Senate District 4](/us/states/pa/districts/senate/4.md) — 7% (state senate)
- [PA Senate District 7](/us/states/pa/districts/senate/7.md) — 3% (state senate)
- [PA House District 147](/us/states/pa/districts/house/147.md) — 20% (state house)
- [PA House District 70](/us/states/pa/districts/house/70.md) — 10% (state house)
- [PA House District 131](/us/states/pa/districts/house/131.md) — 9% (state house)
- [PA House District 150](/us/states/pa/districts/house/150.md) — 8% (state house)
- [PA House District 146](/us/states/pa/districts/house/146.md) — 8% (state house)
- [PA House District 61](/us/states/pa/districts/house/61.md) — 8% (state house)
- [PA House District 151](/us/states/pa/districts/house/151.md) — 7% (state house)
- [PA House District 148](/us/states/pa/districts/house/148.md) — 6% (state house)
- [PA House District 149](/us/states/pa/districts/house/149.md) — 6% (state house)
- [PA House District 53](/us/states/pa/districts/house/53.md) — 4% (state house)
- [PA House District 152](/us/states/pa/districts/house/152.md) — 4% (state house)
- [PA House District 153](/us/states/pa/districts/house/153.md) — 4% (state house)
- [PA House District 154](/us/states/pa/districts/house/154.md) — 3% (state house)
- [PA House District 54](/us/states/pa/districts/house/54.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 15
hispanic: 564
bachelors_plus: 7947
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/27"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/house/108"
rel: in-district
area_weight: 0.9992
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 564 |
| Bachelor's or higher | 7947 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 27](/us/states/pa/districts/senate/27.md) — 100% (state senate)
- [PA House District 108](/us/states/pa/districts/house/108.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,39 @@ demographics:
race_native: 635
hispanic: 49253
bachelors_plus: 108520
districts:
- to: "us/states/pa/districts/07"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/senate/18"
rel: in-district
area_weight: 0.6537
- to: "us/states/pa/districts/senate/14"
rel: in-district
area_weight: 0.346
- to: "us/states/pa/districts/house/138"
rel: in-district
area_weight: 0.4651
- to: "us/states/pa/districts/house/183"
rel: in-district
area_weight: 0.2117
- to: "us/states/pa/districts/house/137"
rel: in-district
area_weight: 0.1259
- to: "us/states/pa/districts/house/136"
rel: in-district
area_weight: 0.1141
- to: "us/states/pa/districts/house/135"
rel: in-district
area_weight: 0.054
- to: "us/states/pa/districts/house/131"
rel: in-district
area_weight: 0.0289
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +86,19 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 49253 |
| Bachelor's or higher | 108520 |
## Districts
- [PA-07](/us/states/pa/districts/07.md) — 100% (congressional)
- [PA Senate District 18](/us/states/pa/districts/senate/18.md) — 65% (state senate)
- [PA Senate District 14](/us/states/pa/districts/senate/14.md) — 35% (state senate)
- [PA House District 138](/us/states/pa/districts/house/138.md) — 47% (state house)
- [PA House District 183](/us/states/pa/districts/house/183.md) — 21% (state house)
- [PA House District 137](/us/states/pa/districts/house/137.md) — 13% (state house)
- [PA House District 136](/us/states/pa/districts/house/136.md) — 11% (state house)
- [PA House District 135](/us/states/pa/districts/house/135.md) — 5% (state house)
- [PA House District 131](/us/states/pa/districts/house/131.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 91
hispanic: 4702
bachelors_plus: 16873
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9951
- to: "us/states/pa/districts/senate/27"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/house/107"
rel: in-district
area_weight: 0.5588
- to: "us/states/pa/districts/house/108"
rel: in-district
area_weight: 0.4409
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 4702 |
| Bachelor's or higher | 16873 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 27](/us/states/pa/districts/senate/27.md) — 100% (state senate)
- [PA House District 107](/us/states/pa/districts/house/107.md) — 56% (state house)
- [PA House District 108](/us/states/pa/districts/house/108.md) — 44% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 29
hispanic: 1164
bachelors_plus: 8873
districts:
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.9973
- to: "us/states/pa/districts/senate/34"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/86"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1164 |
| Bachelor's or higher | 8873 |
## Districts
- [PA-13](/us/states/pa/districts/13.md) — 100% (congressional)
- [PA Senate District 34](/us/states/pa/districts/senate/34.md) — 100% (state senate)
- [PA House District 86](/us/states/pa/districts/house/86.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,120 @@ demographics:
race_native: 7518
hispanic: 245882
bachelors_plus: 557919
districts:
- to: "us/states/pa/districts/02"
rel: in-district
area_weight: 0.4688
- to: "us/states/pa/districts/03"
rel: in-district
area_weight: 0.3837
- to: "us/states/pa/districts/05"
rel: in-district
area_weight: 0.1437
- to: "us/states/pa/districts/senate/5"
rel: in-district
area_weight: 0.2521
- to: "us/states/pa/districts/senate/1"
rel: in-district
area_weight: 0.1854
- to: "us/states/pa/districts/senate/7"
rel: in-district
area_weight: 0.1733
- to: "us/states/pa/districts/senate/2"
rel: in-district
area_weight: 0.1207
- to: "us/states/pa/districts/senate/3"
rel: in-district
area_weight: 0.0987
- to: "us/states/pa/districts/senate/4"
rel: in-district
area_weight: 0.0902
- to: "us/states/pa/districts/senate/8"
rel: in-district
area_weight: 0.0779
- to: "us/states/pa/districts/house/185"
rel: in-district
area_weight: 0.1013
- to: "us/states/pa/districts/house/194"
rel: in-district
area_weight: 0.0818
- to: "us/states/pa/districts/house/170"
rel: in-district
area_weight: 0.0764
- to: "us/states/pa/districts/house/173"
rel: in-district
area_weight: 0.0577
- to: "us/states/pa/districts/house/190"
rel: in-district
area_weight: 0.0574
- to: "us/states/pa/districts/house/172"
rel: in-district
area_weight: 0.0555
- to: "us/states/pa/districts/house/177"
rel: in-district
area_weight: 0.0534
- to: "us/states/pa/districts/house/174"
rel: in-district
area_weight: 0.0529
- to: "us/states/pa/districts/house/184"
rel: in-district
area_weight: 0.05
- to: "us/states/pa/districts/house/200"
rel: in-district
area_weight: 0.0452
- to: "us/states/pa/districts/house/201"
rel: in-district
area_weight: 0.0307
- to: "us/states/pa/districts/house/179"
rel: in-district
area_weight: 0.0303
- to: "us/states/pa/districts/house/192"
rel: in-district
area_weight: 0.0282
- to: "us/states/pa/districts/house/198"
rel: in-district
area_weight: 0.0275
- to: "us/states/pa/districts/house/180"
rel: in-district
area_weight: 0.0272
- to: "us/states/pa/districts/house/175"
rel: in-district
area_weight: 0.0267
- to: "us/states/pa/districts/house/203"
rel: in-district
area_weight: 0.0248
- to: "us/states/pa/districts/house/186"
rel: in-district
area_weight: 0.0242
- to: "us/states/pa/districts/house/197"
rel: in-district
area_weight: 0.0227
- to: "us/states/pa/districts/house/10"
rel: in-district
area_weight: 0.0211
- to: "us/states/pa/districts/house/188"
rel: in-district
area_weight: 0.0201
- to: "us/states/pa/districts/house/195"
rel: in-district
area_weight: 0.02
- to: "us/states/pa/districts/house/181"
rel: in-district
area_weight: 0.0195
- to: "us/states/pa/districts/house/202"
rel: in-district
area_weight: 0.0176
- to: "us/states/pa/districts/house/191"
rel: in-district
area_weight: 0.0145
- to: "us/states/pa/districts/house/182"
rel: in-district
area_weight: 0.0113
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +167,46 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 245882 |
| Bachelor's or higher | 557919 |
## Districts
- [PA-02](/us/states/pa/districts/02.md) — 47% (congressional)
- [PA-03](/us/states/pa/districts/03.md) — 38% (congressional)
- [PA-05](/us/states/pa/districts/05.md) — 14% (congressional)
- [PA Senate District 5](/us/states/pa/districts/senate/5.md) — 25% (state senate)
- [PA Senate District 1](/us/states/pa/districts/senate/1.md) — 19% (state senate)
- [PA Senate District 7](/us/states/pa/districts/senate/7.md) — 17% (state senate)
- [PA Senate District 2](/us/states/pa/districts/senate/2.md) — 12% (state senate)
- [PA Senate District 3](/us/states/pa/districts/senate/3.md) — 10% (state senate)
- [PA Senate District 4](/us/states/pa/districts/senate/4.md) — 9% (state senate)
- [PA Senate District 8](/us/states/pa/districts/senate/8.md) — 8% (state senate)
- [PA House District 185](/us/states/pa/districts/house/185.md) — 10% (state house)
- [PA House District 194](/us/states/pa/districts/house/194.md) — 8% (state house)
- [PA House District 170](/us/states/pa/districts/house/170.md) — 8% (state house)
- [PA House District 173](/us/states/pa/districts/house/173.md) — 6% (state house)
- [PA House District 190](/us/states/pa/districts/house/190.md) — 6% (state house)
- [PA House District 172](/us/states/pa/districts/house/172.md) — 6% (state house)
- [PA House District 177](/us/states/pa/districts/house/177.md) — 5% (state house)
- [PA House District 174](/us/states/pa/districts/house/174.md) — 5% (state house)
- [PA House District 184](/us/states/pa/districts/house/184.md) — 5% (state house)
- [PA House District 200](/us/states/pa/districts/house/200.md) — 5% (state house)
- [PA House District 201](/us/states/pa/districts/house/201.md) — 3% (state house)
- [PA House District 179](/us/states/pa/districts/house/179.md) — 3% (state house)
- [PA House District 192](/us/states/pa/districts/house/192.md) — 3% (state house)
- [PA House District 198](/us/states/pa/districts/house/198.md) — 3% (state house)
- [PA House District 180](/us/states/pa/districts/house/180.md) — 3% (state house)
- [PA House District 175](/us/states/pa/districts/house/175.md) — 3% (state house)
- [PA House District 203](/us/states/pa/districts/house/203.md) — 2% (state house)
- [PA House District 186](/us/states/pa/districts/house/186.md) — 2% (state house)
- [PA House District 197](/us/states/pa/districts/house/197.md) — 2% (state house)
- [PA House District 10](/us/states/pa/districts/house/10.md) — 2% (state house)
- [PA House District 188](/us/states/pa/districts/house/188.md) — 2% (state house)
- [PA House District 195](/us/states/pa/districts/house/195.md) — 2% (state house)
- [PA House District 181](/us/states/pa/districts/house/181.md) — 2% (state house)
- [PA House District 202](/us/states/pa/districts/house/202.md) — 2% (state house)
- [PA House District 191](/us/states/pa/districts/house/191.md) — 1% (state house)
- [PA House District 182](/us/states/pa/districts/house/182.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 60
hispanic: 7537
bachelors_plus: 19199
districts:
- to: "us/states/pa/districts/08"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/senate/20"
rel: in-district
area_weight: 0.9994
- to: "us/states/pa/districts/house/139"
rel: in-district
area_weight: 0.7244
- to: "us/states/pa/districts/house/189"
rel: in-district
area_weight: 0.2751
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 7537 |
| Bachelor's or higher | 19199 |
## Districts
- [PA-08](/us/states/pa/districts/08.md) — 100% (congressional)
- [PA Senate District 20](/us/states/pa/districts/senate/20.md) — 100% (state senate)
- [PA House District 139](/us/states/pa/districts/house/139.md) — 72% (state house)
- [PA House District 189](/us/states/pa/districts/house/189.md) — 28% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 12
hispanic: 279
bachelors_plus: 2945
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/senate/25"
rel: in-district
area_weight: 0.9999
- to: "us/states/pa/districts/house/67"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 279 |
| Bachelor's or higher | 2945 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 25](/us/states/pa/districts/senate/25.md) — 100% (state senate)
- [PA House District 67](/us/states/pa/districts/house/67.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,30 @@ demographics:
race_native: 104
hispanic: 11184
bachelors_plus: 28107
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9993
- to: "us/states/pa/districts/senate/29"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/107"
rel: in-district
area_weight: 0.3195
- to: "us/states/pa/districts/house/124"
rel: in-district
area_weight: 0.309
- to: "us/states/pa/districts/house/123"
rel: in-district
area_weight: 0.2372
- to: "us/states/pa/districts/house/116"
rel: in-district
area_weight: 0.1342
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +77,16 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11184 |
| Bachelor's or higher | 28107 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 29](/us/states/pa/districts/senate/29.md) — 100% (state senate)
- [PA House District 107](/us/states/pa/districts/house/107.md) — 32% (state house)
- [PA House District 124](/us/states/pa/districts/house/124.md) — 31% (state house)
- [PA House District 123](/us/states/pa/districts/house/123.md) — 24% (state house)
- [PA House District 116](/us/states/pa/districts/house/116.md) — 13% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 6
hispanic: 1035
bachelors_plus: 7623
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9953
- to: "us/states/pa/districts/senate/27"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/85"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1035 |
| Bachelor's or higher | 7623 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 27](/us/states/pa/districts/senate/27.md) — 100% (state senate)
- [PA House District 85](/us/states/pa/districts/house/85.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 13
hispanic: 1127
bachelors_plus: 13240
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.9829
- to: "us/states/pa/districts/13"
rel: in-district
area_weight: 0.0169
- to: "us/states/pa/districts/senate/32"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/69"
rel: in-district
area_weight: 0.9352
- to: "us/states/pa/districts/house/71"
rel: in-district
area_weight: 0.0645
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 1127 |
| Bachelor's or higher | 13240 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 98% (congressional)
- [PA-13](/us/states/pa/districts/13.md) — 2% (congressional)
- [PA Senate District 32](/us/states/pa/districts/senate/32.md) — 100% (state senate)
- [PA House District 69](/us/states/pa/districts/house/69.md) — 94% (state house)
- [PA House District 71](/us/states/pa/districts/house/71.md) — 6% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 18
hispanic: 138
bachelors_plus: 1442
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/senate/23"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/84"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 138 |
| Bachelor's or higher | 1442 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 23](/us/states/pa/districts/senate/23.md) — 100% (state senate)
- [PA House District 84](/us/states/pa/districts/house/84.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 31
hispanic: 924
bachelors_plus: 7591
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/20"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/111"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 924 |
| Bachelor's or higher | 7591 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 20](/us/states/pa/districts/senate/20.md) — 100% (state senate)
- [PA House District 111](/us/states/pa/districts/house/111.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 25
hispanic: 694
bachelors_plus: 9266
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/senate/23"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/68"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 694 |
| Bachelor's or higher | 9266 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 23](/us/states/pa/districts/senate/23.md) — 100% (state senate)
- [PA House District 68](/us/states/pa/districts/house/68.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 58
hispanic: 2147
bachelors_plus: 11230
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9993
- to: "us/states/pa/districts/senate/23"
rel: in-district
area_weight: 0.9996
- to: "us/states/pa/districts/house/76"
rel: in-district
area_weight: 0.7225
- to: "us/states/pa/districts/house/83"
rel: in-district
area_weight: 0.1939
- to: "us/states/pa/districts/house/85"
rel: in-district
area_weight: 0.0833
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 2147 |
| Bachelor's or higher | 11230 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 23](/us/states/pa/districts/senate/23.md) — 100% (state senate)
- [PA House District 76](/us/states/pa/districts/house/76.md) — 72% (state house)
- [PA House District 83](/us/states/pa/districts/house/83.md) — 19% (state house)
- [PA House District 85](/us/states/pa/districts/house/85.md) — 8% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 45
hispanic: 639
bachelors_plus: 9588
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.6865
- to: "us/states/pa/districts/16"
rel: in-district
area_weight: 0.3135
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/house/64"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 639 |
| Bachelor's or higher | 9588 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 69% (congressional)
- [PA-16](/us/states/pa/districts/16.md) — 31% (congressional)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 100% (state senate)
- [PA House District 64](/us/states/pa/districts/house/64.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 23
hispanic: 481
bachelors_plus: 7533
districts:
- to: "us/states/pa/districts/15"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/senate/21"
rel: in-district
area_weight: 0.9997
- to: "us/states/pa/districts/house/65"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 481 |
| Bachelor's or higher | 7533 |
## Districts
- [PA-15](/us/states/pa/districts/15.md) — 100% (congressional)
- [PA Senate District 21](/us/states/pa/districts/senate/21.md) — 100% (state senate)
- [PA House District 65](/us/states/pa/districts/house/65.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: 178
hispanic: 4335
bachelors_plus: 69127
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.9993
- to: "us/states/pa/districts/senate/46"
rel: in-district
area_weight: 0.9998
- to: "us/states/pa/districts/house/48"
rel: in-district
area_weight: 0.3615
- to: "us/states/pa/districts/house/15"
rel: in-district
area_weight: 0.3377
- to: "us/states/pa/districts/house/50"
rel: in-district
area_weight: 0.1415
- to: "us/states/pa/districts/house/46"
rel: in-district
area_weight: 0.1088
- to: "us/states/pa/districts/house/39"
rel: in-district
area_weight: 0.0275
- to: "us/states/pa/districts/house/40"
rel: in-district
area_weight: 0.0229
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 4335 |
| Bachelor's or higher | 69127 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 100% (congressional)
- [PA Senate District 46](/us/states/pa/districts/senate/46.md) — 100% (state senate)
- [PA House District 48](/us/states/pa/districts/house/48.md) — 36% (state house)
- [PA House District 15](/us/states/pa/districts/house/15.md) — 34% (state house)
- [PA House District 50](/us/states/pa/districts/house/50.md) — 14% (state house)
- [PA House District 46](/us/states/pa/districts/house/46.md) — 11% (state house)
- [PA House District 39](/us/states/pa/districts/house/39.md) — 3% (state house)
- [PA House District 40](/us/states/pa/districts/house/40.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 88
hispanic: 2638
bachelors_plus: 13213
districts:
- to: "us/states/pa/districts/08"
rel: in-district
area_weight: 0.9995
- to: "us/states/pa/districts/senate/20"
rel: in-district
area_weight: 0.7224
- to: "us/states/pa/districts/senate/40"
rel: in-district
area_weight: 0.2771
- to: "us/states/pa/districts/house/111"
rel: in-district
area_weight: 0.7117
- to: "us/states/pa/districts/house/139"
rel: in-district
area_weight: 0.2878
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 2638 |
| Bachelor's or higher | 13213 |
## Districts
- [PA-08](/us/states/pa/districts/08.md) — 100% (congressional)
- [PA Senate District 20](/us/states/pa/districts/senate/20.md) — 72% (state senate)
- [PA Senate District 40](/us/states/pa/districts/senate/40.md) — 28% (state senate)
- [PA House District 111](/us/states/pa/districts/house/111.md) — 71% (state house)
- [PA House District 139](/us/states/pa/districts/house/139.md) — 29% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,42 @@ demographics:
race_native: 295
hispanic: 5692
bachelors_plus: 117251
districts:
- to: "us/states/pa/districts/14"
rel: in-district
area_weight: 0.8498
- to: "us/states/pa/districts/12"
rel: in-district
area_weight: 0.149
- to: "us/states/pa/districts/senate/39"
rel: in-district
area_weight: 0.5846
- to: "us/states/pa/districts/senate/41"
rel: in-district
area_weight: 0.414
- to: "us/states/pa/districts/house/59"
rel: in-district
area_weight: 0.4402
- to: "us/states/pa/districts/house/55"
rel: in-district
area_weight: 0.2158
- to: "us/states/pa/districts/house/58"
rel: in-district
area_weight: 0.1602
- to: "us/states/pa/districts/house/57"
rel: in-district
area_weight: 0.0857
- to: "us/states/pa/districts/house/56"
rel: in-district
area_weight: 0.0564
- to: "us/states/pa/districts/house/60"
rel: in-district
area_weight: 0.0413
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, pa]
timestamp: "2026-07-03"
@@ -56,6 +89,20 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 5692 |
| Bachelor's or higher | 117251 |
## Districts
- [PA-14](/us/states/pa/districts/14.md) — 85% (congressional)
- [PA-12](/us/states/pa/districts/12.md) — 15% (congressional)
- [PA Senate District 39](/us/states/pa/districts/senate/39.md) — 58% (state senate)
- [PA Senate District 41](/us/states/pa/districts/senate/41.md) — 41% (state senate)
- [PA House District 59](/us/states/pa/districts/house/59.md) — 44% (state house)
- [PA House District 55](/us/states/pa/districts/house/55.md) — 22% (state house)
- [PA House District 58](/us/states/pa/districts/house/58.md) — 16% (state house)
- [PA House District 57](/us/states/pa/districts/house/57.md) — 9% (state house)
- [PA House District 56](/us/states/pa/districts/house/56.md) — 6% (state house)
- [PA House District 60](/us/states/pa/districts/house/60.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 30
hispanic: 658
bachelors_plus: 5618
districts:
- to: "us/states/pa/districts/09"
rel: in-district
area_weight: 0.9992
- to: "us/states/pa/districts/senate/20"
rel: in-district
area_weight: 1.0
- to: "us/states/pa/districts/house/110"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 658 |
| Bachelor's or higher | 5618 |
## Districts
- [PA-09](/us/states/pa/districts/09.md) — 100% (congressional)
- [PA Senate District 20](/us/states/pa/districts/senate/20.md) — 100% (state senate)
- [PA House District 110](/us/states/pa/districts/house/110.md) — 100% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,45 @@ demographics:
race_native: 644
hispanic: 44412
bachelors_plus: 123557
districts:
- to: "us/states/pa/districts/11"
rel: in-district
area_weight: 0.6137
- to: "us/states/pa/districts/10"
rel: in-district
area_weight: 0.384
- to: "us/states/pa/districts/senate/28"
rel: in-district
area_weight: 0.662
- to: "us/states/pa/districts/senate/31"
rel: in-district
area_weight: 0.3377
- to: "us/states/pa/districts/house/92"
rel: in-district
area_weight: 0.2241
- to: "us/states/pa/districts/house/94"
rel: in-district
area_weight: 0.1982
- to: "us/states/pa/districts/house/93"
rel: in-district
area_weight: 0.172
- to: "us/states/pa/districts/house/196"
rel: in-district
area_weight: 0.1434
- to: "us/states/pa/districts/house/169"
rel: in-district
area_weight: 0.1381
- to: "us/states/pa/districts/house/47"
rel: in-district
area_weight: 0.1096
- to: "us/states/pa/districts/house/95"
rel: in-district
area_weight: 0.0142
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, pa]
timestamp: "2026-07-03"
@@ -56,6 +92,21 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 44412 |
| Bachelor's or higher | 123557 |
## Districts
- [PA-11](/us/states/pa/districts/11.md) — 61% (congressional)
- [PA-10](/us/states/pa/districts/10.md) — 38% (congressional)
- [PA Senate District 28](/us/states/pa/districts/senate/28.md) — 66% (state senate)
- [PA Senate District 31](/us/states/pa/districts/senate/31.md) — 34% (state senate)
- [PA House District 92](/us/states/pa/districts/house/92.md) — 22% (state house)
- [PA House District 94](/us/states/pa/districts/house/94.md) — 20% (state house)
- [PA House District 93](/us/states/pa/districts/house/93.md) — 17% (state house)
- [PA House District 196](/us/states/pa/districts/house/196.md) — 14% (state house)
- [PA House District 169](/us/states/pa/districts/house/169.md) — 14% (state house)
- [PA House District 47](/us/states/pa/districts/house/47.md) — 11% (state house)
- [PA House District 95](/us/states/pa/districts/house/95.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 255289
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 141718
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 245946
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 287622
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 232234
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 270088
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 184965
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 153809
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 131490
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 198372
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 178292
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 244396
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 128862
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 147618
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 139416
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 168827
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 260566
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, pa]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 1"
classification: state-house-district
state: "PA"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 1
State House district 1 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 10"
classification: state-house-district
state: "PA"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 10
State House district 10 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 100"
classification: state-house-district
state: "PA"
chamber: "house"
district: "100"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 100
State House district 100 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 101"
classification: state-house-district
state: "PA"
chamber: "house"
district: "101"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 101
State House district 101 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 102"
classification: state-house-district
state: "PA"
chamber: "house"
district: "102"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 102
State House district 102 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 103"
classification: state-house-district
state: "PA"
chamber: "house"
district: "103"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 103
State House district 103 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 104"
classification: state-house-district
state: "PA"
chamber: "house"
district: "104"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 104
State House district 104 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 105"
classification: state-house-district
state: "PA"
chamber: "house"
district: "105"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 105
State House district 105 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 106"
classification: state-house-district
state: "PA"
chamber: "house"
district: "106"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 106
State House district 106 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 107"
classification: state-house-district
state: "PA"
chamber: "house"
district: "107"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 107
State House district 107 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 108"
classification: state-house-district
state: "PA"
chamber: "house"
district: "108"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 108
State House district 108 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 109"
classification: state-house-district
state: "PA"
chamber: "house"
district: "109"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 109
State House district 109 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 11"
classification: state-house-district
state: "PA"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 11
State House district 11 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 110"
classification: state-house-district
state: "PA"
chamber: "house"
district: "110"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 110
State House district 110 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 111"
classification: state-house-district
state: "PA"
chamber: "house"
district: "111"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 111
State House district 111 (PA).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "PA House District 112"
classification: state-house-district
state: "PA"
chamber: "house"
district: "112"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, pa]
timestamp: "2026-07-03"
---
# PA House District 112
State House district 112 (PA).
## Source
- boundary: Census TIGER 2024

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