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,36 @@ demographics:
race_native: 20
hispanic: 2108
bachelors_plus: 27880
districts:
- to: "us/states/ri/districts/01"
rel: in-district
area_weight: 0.6737
- to: "us/states/ri/districts/senate/32"
rel: in-district
area_weight: 0.3184
- to: "us/states/ri/districts/senate/10"
rel: in-district
area_weight: 0.2355
- to: "us/states/ri/districts/senate/11"
rel: in-district
area_weight: 0.0785
- to: "us/states/ri/districts/house/67"
rel: in-district
area_weight: 0.2518
- to: "us/states/ri/districts/house/68"
rel: in-district
area_weight: 0.155
- to: "us/states/ri/districts/house/69"
rel: in-district
area_weight: 0.1167
- to: "us/states/ri/districts/house/66"
rel: in-district
area_weight: 0.109
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, ri]
timestamp: "2026-07-03"
@@ -56,6 +83,18 @@ County jurisdiction.
| Hispanic/Latino | 2108 |
| Bachelor's or higher | 27880 |
## Districts
- [RI-01](/us/states/ri/districts/01.md) — 67% (congressional)
- [RI Senate District 32](/us/states/ri/districts/senate/32.md) — 32% (state senate)
- [RI Senate District 10](/us/states/ri/districts/senate/10.md) — 24% (state senate)
- [RI Senate District 11](/us/states/ri/districts/senate/11.md) — 8% (state senate)
- [RI House District 67](/us/states/ri/districts/house/67.md) — 25% (state house)
- [RI House District 68](/us/states/ri/districts/house/68.md) — 16% (state house)
- [RI House District 69](/us/states/ri/districts/house/69.md) — 12% (state house)
- [RI House District 66](/us/states/ri/districts/house/66.md) — 11% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,78 @@ demographics:
race_native: 451
hispanic: 11762
bachelors_plus: 61842
districts:
- to: "us/states/ri/districts/02"
rel: in-district
area_weight: 0.9324
- to: "us/states/ri/districts/senate/21"
rel: in-district
area_weight: 0.2984
- to: "us/states/ri/districts/senate/33"
rel: in-district
area_weight: 0.2218
- to: "us/states/ri/districts/senate/35"
rel: in-district
area_weight: 0.0882
- to: "us/states/ri/districts/senate/30"
rel: in-district
area_weight: 0.0849
- to: "us/states/ri/districts/senate/34"
rel: in-district
area_weight: 0.084
- to: "us/states/ri/districts/senate/31"
rel: in-district
area_weight: 0.0603
- to: "us/states/ri/districts/senate/29"
rel: in-district
area_weight: 0.0523
- to: "us/states/ri/districts/senate/9"
rel: in-district
area_weight: 0.0405
- to: "us/states/ri/districts/house/29"
rel: in-district
area_weight: 0.2105
- to: "us/states/ri/districts/house/30"
rel: in-district
area_weight: 0.1763
- to: "us/states/ri/districts/house/28"
rel: in-district
area_weight: 0.1526
- to: "us/states/ri/districts/house/40"
rel: in-district
area_weight: 0.1202
- to: "us/states/ri/districts/house/24"
rel: in-district
area_weight: 0.0528
- to: "us/states/ri/districts/house/20"
rel: in-district
area_weight: 0.0406
- to: "us/states/ri/districts/house/26"
rel: in-district
area_weight: 0.0331
- to: "us/states/ri/districts/house/21"
rel: in-district
area_weight: 0.03
- to: "us/states/ri/districts/house/22"
rel: in-district
area_weight: 0.0296
- to: "us/states/ri/districts/house/27"
rel: in-district
area_weight: 0.0283
- to: "us/states/ri/districts/house/23"
rel: in-district
area_weight: 0.0245
- to: "us/states/ri/districts/house/25"
rel: in-district
area_weight: 0.0172
- to: "us/states/ri/districts/house/19"
rel: in-district
area_weight: 0.0165
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, ri]
timestamp: "2026-07-03"
@@ -56,6 +125,32 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 11762 |
| Bachelor's or higher | 61842 |
## Districts
- [RI-02](/us/states/ri/districts/02.md) — 93% (congressional)
- [RI Senate District 21](/us/states/ri/districts/senate/21.md) — 30% (state senate)
- [RI Senate District 33](/us/states/ri/districts/senate/33.md) — 22% (state senate)
- [RI Senate District 35](/us/states/ri/districts/senate/35.md) — 9% (state senate)
- [RI Senate District 30](/us/states/ri/districts/senate/30.md) — 8% (state senate)
- [RI Senate District 34](/us/states/ri/districts/senate/34.md) — 8% (state senate)
- [RI Senate District 31](/us/states/ri/districts/senate/31.md) — 6% (state senate)
- [RI Senate District 29](/us/states/ri/districts/senate/29.md) — 5% (state senate)
- [RI Senate District 9](/us/states/ri/districts/senate/9.md) — 4% (state senate)
- [RI House District 29](/us/states/ri/districts/house/29.md) — 21% (state house)
- [RI House District 30](/us/states/ri/districts/house/30.md) — 18% (state house)
- [RI House District 28](/us/states/ri/districts/house/28.md) — 15% (state house)
- [RI House District 40](/us/states/ri/districts/house/40.md) — 12% (state house)
- [RI House District 24](/us/states/ri/districts/house/24.md) — 5% (state house)
- [RI House District 20](/us/states/ri/districts/house/20.md) — 4% (state house)
- [RI House District 26](/us/states/ri/districts/house/26.md) — 3% (state house)
- [RI House District 21](/us/states/ri/districts/house/21.md) — 3% (state house)
- [RI House District 22](/us/states/ri/districts/house/22.md) — 3% (state house)
- [RI House District 27](/us/states/ri/districts/house/27.md) — 3% (state house)
- [RI House District 23](/us/states/ri/districts/house/23.md) — 2% (state house)
- [RI House District 25](/us/states/ri/districts/house/25.md) — 2% (state house)
- [RI House District 19](/us/states/ri/districts/house/19.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,48 @@ demographics:
race_native: 171
hispanic: 5701
bachelors_plus: 49077
districts:
- to: "us/states/ri/districts/01"
rel: in-district
area_weight: 0.3621
- to: "us/states/ri/districts/senate/12"
rel: in-district
area_weight: 0.1843
- to: "us/states/ri/districts/senate/11"
rel: in-district
area_weight: 0.0789
- to: "us/states/ri/districts/senate/13"
rel: in-district
area_weight: 0.0562
- to: "us/states/ri/districts/senate/10"
rel: in-district
area_weight: 0.0301
- to: "us/states/ri/districts/house/71"
rel: in-district
area_weight: 0.1208
- to: "us/states/ri/districts/house/70"
rel: in-district
area_weight: 0.0719
- to: "us/states/ri/districts/house/72"
rel: in-district
area_weight: 0.0575
- to: "us/states/ri/districts/house/74"
rel: in-district
area_weight: 0.0476
- to: "us/states/ri/districts/house/69"
rel: in-district
area_weight: 0.0211
- to: "us/states/ri/districts/house/75"
rel: in-district
area_weight: 0.0194
- to: "us/states/ri/districts/house/73"
rel: in-district
area_weight: 0.0112
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, ri]
timestamp: "2026-07-03"
@@ -56,6 +95,22 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 5701 |
| Bachelor's or higher | 49077 |
## Districts
- [RI-01](/us/states/ri/districts/01.md) — 36% (congressional)
- [RI Senate District 12](/us/states/ri/districts/senate/12.md) — 18% (state senate)
- [RI Senate District 11](/us/states/ri/districts/senate/11.md) — 8% (state senate)
- [RI Senate District 13](/us/states/ri/districts/senate/13.md) — 6% (state senate)
- [RI Senate District 10](/us/states/ri/districts/senate/10.md) — 3% (state senate)
- [RI House District 71](/us/states/ri/districts/house/71.md) — 12% (state house)
- [RI House District 70](/us/states/ri/districts/house/70.md) — 7% (state house)
- [RI House District 72](/us/states/ri/districts/house/72.md) — 6% (state house)
- [RI House District 74](/us/states/ri/districts/house/74.md) — 5% (state house)
- [RI House District 69](/us/states/ri/districts/house/69.md) — 2% (state house)
- [RI House District 75](/us/states/ri/districts/house/75.md) — 2% (state house)
- [RI House District 73](/us/states/ri/districts/house/73.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,171 @@ demographics:
race_native: 4298
hispanic: 170376
bachelors_plus: 208021
districts:
- to: "us/states/ri/districts/02"
rel: in-district
area_weight: 0.6479
- to: "us/states/ri/districts/01"
rel: in-district
area_weight: 0.3444
- to: "us/states/ri/districts/senate/23"
rel: in-district
area_weight: 0.2692
- to: "us/states/ri/districts/senate/21"
rel: in-district
area_weight: 0.2444
- to: "us/states/ri/districts/senate/17"
rel: in-district
area_weight: 0.0861
- to: "us/states/ri/districts/senate/22"
rel: in-district
area_weight: 0.0683
- to: "us/states/ri/districts/senate/25"
rel: in-district
area_weight: 0.0546
- to: "us/states/ri/districts/senate/19"
rel: in-district
area_weight: 0.0455
- to: "us/states/ri/districts/senate/26"
rel: in-district
area_weight: 0.0387
- to: "us/states/ri/districts/senate/20"
rel: in-district
area_weight: 0.0316
- to: "us/states/ri/districts/senate/18"
rel: in-district
area_weight: 0.0172
- to: "us/states/ri/districts/senate/27"
rel: in-district
area_weight: 0.0168
- to: "us/states/ri/districts/senate/14"
rel: in-district
area_weight: 0.0143
- to: "us/states/ri/districts/senate/28"
rel: in-district
area_weight: 0.0138
- to: "us/states/ri/districts/senate/24"
rel: in-district
area_weight: 0.0116
- to: "us/states/ri/districts/senate/4"
rel: in-district
area_weight: 0.011
- to: "us/states/ri/districts/senate/3"
rel: in-district
area_weight: 0.009
- to: "us/states/ri/districts/senate/15"
rel: in-district
area_weight: 0.0086
- to: "us/states/ri/districts/senate/8"
rel: in-district
area_weight: 0.0076
- to: "us/states/ri/districts/senate/6"
rel: in-district
area_weight: 0.0074
- to: "us/states/ri/districts/senate/7"
rel: in-district
area_weight: 0.0073
- to: "us/states/ri/districts/senate/1"
rel: in-district
area_weight: 0.0066
- to: "us/states/ri/districts/senate/32"
rel: in-district
area_weight: 0.0064
- to: "us/states/ri/districts/senate/5"
rel: in-district
area_weight: 0.0052
- to: "us/states/ri/districts/senate/2"
rel: in-district
area_weight: 0.005
- to: "us/states/ri/districts/house/40"
rel: in-district
area_weight: 0.2353
- to: "us/states/ri/districts/house/41"
rel: in-district
area_weight: 0.1431
- to: "us/states/ri/districts/house/47"
rel: in-district
area_weight: 0.1077
- to: "us/states/ri/districts/house/48"
rel: in-district
area_weight: 0.0867
- to: "us/states/ri/districts/house/53"
rel: in-district
area_weight: 0.0513
- to: "us/states/ri/districts/house/52"
rel: in-district
area_weight: 0.0383
- to: "us/states/ri/districts/house/44"
rel: in-district
area_weight: 0.0367
- to: "us/states/ri/districts/house/42"
rel: in-district
area_weight: 0.0283
- to: "us/states/ri/districts/house/46"
rel: in-district
area_weight: 0.028
- to: "us/states/ri/districts/house/43"
rel: in-district
area_weight: 0.0204
- to: "us/states/ri/districts/house/15"
rel: in-district
area_weight: 0.0193
- to: "us/states/ri/districts/house/45"
rel: in-district
area_weight: 0.0167
- to: "us/states/ri/districts/house/51"
rel: in-district
area_weight: 0.0114
- to: "us/states/ri/districts/house/63"
rel: in-district
area_weight: 0.011
- to: "us/states/ri/districts/house/57"
rel: in-district
area_weight: 0.0107
- to: "us/states/ri/districts/house/65"
rel: in-district
area_weight: 0.0102
- to: "us/states/ri/districts/house/17"
rel: in-district
area_weight: 0.0088
- to: "us/states/ri/districts/house/64"
rel: in-district
area_weight: 0.008
- to: "us/states/ri/districts/house/12"
rel: in-district
area_weight: 0.0069
- to: "us/states/ri/districts/house/49"
rel: in-district
area_weight: 0.0069
- to: "us/states/ri/districts/house/50"
rel: in-district
area_weight: 0.0066
- to: "us/states/ri/districts/house/4"
rel: in-district
area_weight: 0.0064
- to: "us/states/ri/districts/house/55"
rel: in-district
area_weight: 0.0064
- to: "us/states/ri/districts/house/54"
rel: in-district
area_weight: 0.0057
- to: "us/states/ri/districts/house/66"
rel: in-district
area_weight: 0.0057
- to: "us/states/ri/districts/house/14"
rel: in-district
area_weight: 0.0056
- to: "us/states/ri/districts/house/16"
rel: in-district
area_weight: 0.0056
- to: "us/states/ri/districts/house/62"
rel: in-district
area_weight: 0.005
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, ri]
timestamp: "2026-07-03"
@@ -56,6 +218,63 @@ County jurisdiction — 6 officeholders mapped.
| Hispanic/Latino | 170376 |
| Bachelor's or higher | 208021 |
## Districts
- [RI-02](/us/states/ri/districts/02.md) — 65% (congressional)
- [RI-01](/us/states/ri/districts/01.md) — 34% (congressional)
- [RI Senate District 23](/us/states/ri/districts/senate/23.md) — 27% (state senate)
- [RI Senate District 21](/us/states/ri/districts/senate/21.md) — 24% (state senate)
- [RI Senate District 17](/us/states/ri/districts/senate/17.md) — 9% (state senate)
- [RI Senate District 22](/us/states/ri/districts/senate/22.md) — 7% (state senate)
- [RI Senate District 25](/us/states/ri/districts/senate/25.md) — 5% (state senate)
- [RI Senate District 19](/us/states/ri/districts/senate/19.md) — 5% (state senate)
- [RI Senate District 26](/us/states/ri/districts/senate/26.md) — 4% (state senate)
- [RI Senate District 20](/us/states/ri/districts/senate/20.md) — 3% (state senate)
- [RI Senate District 18](/us/states/ri/districts/senate/18.md) — 2% (state senate)
- [RI Senate District 27](/us/states/ri/districts/senate/27.md) — 2% (state senate)
- [RI Senate District 14](/us/states/ri/districts/senate/14.md) — 1% (state senate)
- [RI Senate District 28](/us/states/ri/districts/senate/28.md) — 1% (state senate)
- [RI Senate District 24](/us/states/ri/districts/senate/24.md) — 1% (state senate)
- [RI Senate District 4](/us/states/ri/districts/senate/4.md) — 1% (state senate)
- [RI Senate District 3](/us/states/ri/districts/senate/3.md) — 1% (state senate)
- [RI Senate District 15](/us/states/ri/districts/senate/15.md) — 1% (state senate)
- [RI Senate District 8](/us/states/ri/districts/senate/8.md) — 1% (state senate)
- [RI Senate District 6](/us/states/ri/districts/senate/6.md) — 1% (state senate)
- [RI Senate District 7](/us/states/ri/districts/senate/7.md) — 1% (state senate)
- [RI Senate District 1](/us/states/ri/districts/senate/1.md) — 1% (state senate)
- [RI Senate District 32](/us/states/ri/districts/senate/32.md) — 1% (state senate)
- [RI Senate District 5](/us/states/ri/districts/senate/5.md) — 1% (state senate)
- [RI Senate District 2](/us/states/ri/districts/senate/2.md) — 0% (state senate)
- [RI House District 40](/us/states/ri/districts/house/40.md) — 24% (state house)
- [RI House District 41](/us/states/ri/districts/house/41.md) — 14% (state house)
- [RI House District 47](/us/states/ri/districts/house/47.md) — 11% (state house)
- [RI House District 48](/us/states/ri/districts/house/48.md) — 9% (state house)
- [RI House District 53](/us/states/ri/districts/house/53.md) — 5% (state house)
- [RI House District 52](/us/states/ri/districts/house/52.md) — 4% (state house)
- [RI House District 44](/us/states/ri/districts/house/44.md) — 4% (state house)
- [RI House District 42](/us/states/ri/districts/house/42.md) — 3% (state house)
- [RI House District 46](/us/states/ri/districts/house/46.md) — 3% (state house)
- [RI House District 43](/us/states/ri/districts/house/43.md) — 2% (state house)
- [RI House District 15](/us/states/ri/districts/house/15.md) — 2% (state house)
- [RI House District 45](/us/states/ri/districts/house/45.md) — 2% (state house)
- [RI House District 51](/us/states/ri/districts/house/51.md) — 1% (state house)
- [RI House District 63](/us/states/ri/districts/house/63.md) — 1% (state house)
- [RI House District 57](/us/states/ri/districts/house/57.md) — 1% (state house)
- [RI House District 65](/us/states/ri/districts/house/65.md) — 1% (state house)
- [RI House District 17](/us/states/ri/districts/house/17.md) — 1% (state house)
- [RI House District 64](/us/states/ri/districts/house/64.md) — 1% (state house)
- [RI House District 12](/us/states/ri/districts/house/12.md) — 1% (state house)
- [RI House District 49](/us/states/ri/districts/house/49.md) — 1% (state house)
- [RI House District 50](/us/states/ri/districts/house/50.md) — 1% (state house)
- [RI House District 4](/us/states/ri/districts/house/4.md) — 1% (state house)
- [RI House District 55](/us/states/ri/districts/house/55.md) — 1% (state house)
- [RI House District 54](/us/states/ri/districts/house/54.md) — 1% (state house)
- [RI House District 66](/us/states/ri/districts/house/66.md) — 1% (state house)
- [RI House District 14](/us/states/ri/districts/house/14.md) — 1% (state house)
- [RI House District 16](/us/states/ri/districts/house/16.md) — 1% (state house)
- [RI House District 62](/us/states/ri/districts/house/62.md) — 0% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,57 @@ demographics:
race_native: 490
hispanic: 4968
bachelors_plus: 69499
districts:
- to: "us/states/ri/districts/02"
rel: in-district
area_weight: 0.6241
- to: "us/states/ri/districts/senate/34"
rel: in-district
area_weight: 0.2922
- to: "us/states/ri/districts/senate/38"
rel: in-district
area_weight: 0.1023
- to: "us/states/ri/districts/senate/37"
rel: in-district
area_weight: 0.0967
- to: "us/states/ri/districts/senate/36"
rel: in-district
area_weight: 0.0903
- to: "us/states/ri/districts/senate/35"
rel: in-district
area_weight: 0.044
- to: "us/states/ri/districts/house/39"
rel: in-district
area_weight: 0.1838
- to: "us/states/ri/districts/house/36"
rel: in-district
area_weight: 0.1304
- to: "us/states/ri/districts/house/38"
rel: in-district
area_weight: 0.0741
- to: "us/states/ri/districts/house/35"
rel: in-district
area_weight: 0.0555
- to: "us/states/ri/districts/house/32"
rel: in-district
area_weight: 0.0457
- to: "us/states/ri/districts/house/31"
rel: in-district
area_weight: 0.0447
- to: "us/states/ri/districts/house/33"
rel: in-district
area_weight: 0.034
- to: "us/states/ri/districts/house/37"
rel: in-district
area_weight: 0.031
- to: "us/states/ri/districts/house/34"
rel: in-district
area_weight: 0.0261
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, ri]
timestamp: "2026-07-03"
@@ -56,6 +104,25 @@ County jurisdiction.
| Hispanic/Latino | 4968 |
| Bachelor's or higher | 69499 |
## Districts
- [RI-02](/us/states/ri/districts/02.md) — 62% (congressional)
- [RI Senate District 34](/us/states/ri/districts/senate/34.md) — 29% (state senate)
- [RI Senate District 38](/us/states/ri/districts/senate/38.md) — 10% (state senate)
- [RI Senate District 37](/us/states/ri/districts/senate/37.md) — 10% (state senate)
- [RI Senate District 36](/us/states/ri/districts/senate/36.md) — 9% (state senate)
- [RI Senate District 35](/us/states/ri/districts/senate/35.md) — 4% (state senate)
- [RI House District 39](/us/states/ri/districts/house/39.md) — 18% (state house)
- [RI House District 36](/us/states/ri/districts/house/36.md) — 13% (state house)
- [RI House District 38](/us/states/ri/districts/house/38.md) — 7% (state house)
- [RI House District 35](/us/states/ri/districts/house/35.md) — 6% (state house)
- [RI House District 32](/us/states/ri/districts/house/32.md) — 5% (state house)
- [RI House District 31](/us/states/ri/districts/house/31.md) — 4% (state house)
- [RI House District 33](/us/states/ri/districts/house/33.md) — 3% (state house)
- [RI House District 37](/us/states/ri/districts/house/37.md) — 3% (state house)
- [RI House District 34](/us/states/ri/districts/house/34.md) — 3% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 153327
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ri]
timestamp: "2026-07-03"
@@ -23,7 +23,7 @@ demographics:
bachelors_plus: 157555
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
confidence: official
tags: [jurisdiction, congressional-district, ri]
timestamp: "2026-07-03"
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 1"
classification: state-house-district
state: "RI"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 1
State House district 1 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 10"
classification: state-house-district
state: "RI"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 10
State House district 10 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 11"
classification: state-house-district
state: "RI"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 11
State House district 11 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 12"
classification: state-house-district
state: "RI"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 12
State House district 12 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 13"
classification: state-house-district
state: "RI"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 13
State House district 13 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 14"
classification: state-house-district
state: "RI"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 14
State House district 14 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 15"
classification: state-house-district
state: "RI"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 15
State House district 15 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 16"
classification: state-house-district
state: "RI"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 16
State House district 16 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 17"
classification: state-house-district
state: "RI"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 17
State House district 17 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 18"
classification: state-house-district
state: "RI"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 18
State House district 18 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 19"
classification: state-house-district
state: "RI"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 19
State House district 19 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 2"
classification: state-house-district
state: "RI"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 2
State House district 2 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 20"
classification: state-house-district
state: "RI"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 20
State House district 20 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 21"
classification: state-house-district
state: "RI"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 21
State House district 21 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 22"
classification: state-house-district
state: "RI"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 22
State House district 22 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 23"
classification: state-house-district
state: "RI"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 23
State House district 23 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 24"
classification: state-house-district
state: "RI"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 24
State House district 24 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 25"
classification: state-house-district
state: "RI"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 25
State House district 25 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 26"
classification: state-house-district
state: "RI"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 26
State House district 26 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 27"
classification: state-house-district
state: "RI"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 27
State House district 27 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 28"
classification: state-house-district
state: "RI"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 28
State House district 28 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 29"
classification: state-house-district
state: "RI"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 29
State House district 29 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 3"
classification: state-house-district
state: "RI"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 3
State House district 3 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 30"
classification: state-house-district
state: "RI"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 30
State House district 30 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 31"
classification: state-house-district
state: "RI"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 31
State House district 31 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 32"
classification: state-house-district
state: "RI"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 32
State House district 32 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 33"
classification: state-house-district
state: "RI"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 33
State House district 33 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 34"
classification: state-house-district
state: "RI"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 34
State House district 34 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 35"
classification: state-house-district
state: "RI"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 35
State House district 35 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 36"
classification: state-house-district
state: "RI"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 36
State House district 36 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 37"
classification: state-house-district
state: "RI"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 37
State House district 37 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 38"
classification: state-house-district
state: "RI"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 38
State House district 38 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 39"
classification: state-house-district
state: "RI"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 39
State House district 39 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 4"
classification: state-house-district
state: "RI"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 4
State House district 4 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 40"
classification: state-house-district
state: "RI"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 40
State House district 40 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 41"
classification: state-house-district
state: "RI"
chamber: "house"
district: "41"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 41
State House district 41 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 42"
classification: state-house-district
state: "RI"
chamber: "house"
district: "42"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 42
State House district 42 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 43"
classification: state-house-district
state: "RI"
chamber: "house"
district: "43"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 43
State House district 43 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 44"
classification: state-house-district
state: "RI"
chamber: "house"
district: "44"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 44
State House district 44 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 45"
classification: state-house-district
state: "RI"
chamber: "house"
district: "45"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 45
State House district 45 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 46"
classification: state-house-district
state: "RI"
chamber: "house"
district: "46"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 46
State House district 46 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 47"
classification: state-house-district
state: "RI"
chamber: "house"
district: "47"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 47
State House district 47 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 48"
classification: state-house-district
state: "RI"
chamber: "house"
district: "48"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 48
State House district 48 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 49"
classification: state-house-district
state: "RI"
chamber: "house"
district: "49"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 49
State House district 49 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 5"
classification: state-house-district
state: "RI"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 5
State House district 5 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 50"
classification: state-house-district
state: "RI"
chamber: "house"
district: "50"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 50
State House district 50 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 51"
classification: state-house-district
state: "RI"
chamber: "house"
district: "51"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 51
State House district 51 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 52"
classification: state-house-district
state: "RI"
chamber: "house"
district: "52"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 52
State House district 52 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 53"
classification: state-house-district
state: "RI"
chamber: "house"
district: "53"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 53
State House district 53 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 54"
classification: state-house-district
state: "RI"
chamber: "house"
district: "54"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 54
State House district 54 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 55"
classification: state-house-district
state: "RI"
chamber: "house"
district: "55"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 55
State House district 55 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 56"
classification: state-house-district
state: "RI"
chamber: "house"
district: "56"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 56
State House district 56 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 57"
classification: state-house-district
state: "RI"
chamber: "house"
district: "57"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 57
State House district 57 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 58"
classification: state-house-district
state: "RI"
chamber: "house"
district: "58"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 58
State House district 58 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 59"
classification: state-house-district
state: "RI"
chamber: "house"
district: "59"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 59
State House district 59 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 6"
classification: state-house-district
state: "RI"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 6
State House district 6 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 60"
classification: state-house-district
state: "RI"
chamber: "house"
district: "60"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 60
State House district 60 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 61"
classification: state-house-district
state: "RI"
chamber: "house"
district: "61"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 61
State House district 61 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 62"
classification: state-house-district
state: "RI"
chamber: "house"
district: "62"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 62
State House district 62 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 63"
classification: state-house-district
state: "RI"
chamber: "house"
district: "63"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 63
State House district 63 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 64"
classification: state-house-district
state: "RI"
chamber: "house"
district: "64"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 64
State House district 64 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 65"
classification: state-house-district
state: "RI"
chamber: "house"
district: "65"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 65
State House district 65 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 66"
classification: state-house-district
state: "RI"
chamber: "house"
district: "66"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 66
State House district 66 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 67"
classification: state-house-district
state: "RI"
chamber: "house"
district: "67"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 67
State House district 67 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 68"
classification: state-house-district
state: "RI"
chamber: "house"
district: "68"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 68
State House district 68 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 69"
classification: state-house-district
state: "RI"
chamber: "house"
district: "69"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 69
State House district 69 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 7"
classification: state-house-district
state: "RI"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 7
State House district 7 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 70"
classification: state-house-district
state: "RI"
chamber: "house"
district: "70"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 70
State House district 70 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 71"
classification: state-house-district
state: "RI"
chamber: "house"
district: "71"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 71
State House district 71 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 72"
classification: state-house-district
state: "RI"
chamber: "house"
district: "72"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 72
State House district 72 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 73"
classification: state-house-district
state: "RI"
chamber: "house"
district: "73"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 73
State House district 73 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 74"
classification: state-house-district
state: "RI"
chamber: "house"
district: "74"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 74
State House district 74 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 75"
classification: state-house-district
state: "RI"
chamber: "house"
district: "75"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 75
State House district 75 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 8"
classification: state-house-district
state: "RI"
chamber: "house"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 8
State House district 8 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI House District 9"
classification: state-house-district
state: "RI"
chamber: "house"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, ri]
timestamp: "2026-07-03"
---
# RI House District 9
State House district 9 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 1"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 1
State Senate district 1 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 10"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 10
State Senate district 10 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 11"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 11
State Senate district 11 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 12"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 12
State Senate district 12 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 13"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 13
State Senate district 13 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 14"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 14
State Senate district 14 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 15"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 15
State Senate district 15 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 16"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 16
State Senate district 16 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 17"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 17
State Senate district 17 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 18"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 18
State Senate district 18 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 19"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 19
State Senate district 19 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 2"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 2
State Senate district 2 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 20"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 20
State Senate district 20 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 21"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 21
State Senate district 21 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 22"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 22
State Senate district 22 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 23"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 23
State Senate district 23 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 24"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 24
State Senate district 24 (RI).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "RI Senate District 25"
classification: state-senate-district
state: "RI"
chamber: "senate"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, ri]
timestamp: "2026-07-03"
---
# RI Senate District 25
State Senate district 25 (RI).
## Source
- boundary: Census TIGER 2024

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