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:
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 135936
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 201611
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 172134
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 146417
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 280710
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 177942
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 203500
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 170832
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -23,7 +23,7 @@ demographics:
|
||||
bachelors_plus: 130672
|
||||
sources:
|
||||
- field: demographics
|
||||
source: Census ACS 2023
|
||||
source: "Census ACS 2023"
|
||||
confidence: official
|
||||
tags: [jurisdiction, congressional-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 1"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "1"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 1
|
||||
|
||||
State House district 1 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 10"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "10"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 10
|
||||
|
||||
State House district 10 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 11"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "11"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 11
|
||||
|
||||
State House district 11 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 12"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "12"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 12
|
||||
|
||||
State House district 12 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 13"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "13"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 13
|
||||
|
||||
State House district 13 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 14"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "14"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 14
|
||||
|
||||
State House district 14 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 15"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "15"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 15
|
||||
|
||||
State House district 15 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 16"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "16"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 16
|
||||
|
||||
State House district 16 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 17"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "17"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 17
|
||||
|
||||
State House district 17 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 18"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "18"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 18
|
||||
|
||||
State House district 18 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 19"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "19"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 19
|
||||
|
||||
State House district 19 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 2"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "2"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 2
|
||||
|
||||
State House district 2 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 20"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "20"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 20
|
||||
|
||||
State House district 20 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 21"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "21"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 21
|
||||
|
||||
State House district 21 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 22"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "22"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 22
|
||||
|
||||
State House district 22 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 23"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "23"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 23
|
||||
|
||||
State House district 23 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 24"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "24"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 24
|
||||
|
||||
State House district 24 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 25"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "25"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 25
|
||||
|
||||
State House district 25 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 26"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "26"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 26
|
||||
|
||||
State House district 26 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 27"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "27"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 27
|
||||
|
||||
State House district 27 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 28"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "28"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 28
|
||||
|
||||
State House district 28 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 29"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "29"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 29
|
||||
|
||||
State House district 29 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 3"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "3"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 3
|
||||
|
||||
State House district 3 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 30"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "30"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 30
|
||||
|
||||
State House district 30 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 31"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "31"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 31
|
||||
|
||||
State House district 31 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 32"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "32"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 32
|
||||
|
||||
State House district 32 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 33"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "33"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 33
|
||||
|
||||
State House district 33 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 34"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "34"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 34
|
||||
|
||||
State House district 34 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 35"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "35"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 35
|
||||
|
||||
State House district 35 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 36"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "36"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 36
|
||||
|
||||
State House district 36 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 37"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "37"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 37
|
||||
|
||||
State House district 37 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 38"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "38"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 38
|
||||
|
||||
State House district 38 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 39"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "39"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 39
|
||||
|
||||
State House district 39 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 4"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "4"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 4
|
||||
|
||||
State House district 4 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 40"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "40"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 40
|
||||
|
||||
State House district 40 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 41"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "41"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 41
|
||||
|
||||
State House district 41 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 42"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "42"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 42
|
||||
|
||||
State House district 42 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 43"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "43"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 43
|
||||
|
||||
State House district 43 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 44"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "44"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 44
|
||||
|
||||
State House district 44 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 45"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "45"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 45
|
||||
|
||||
State House district 45 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 46"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "46"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 46
|
||||
|
||||
State House district 46 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 47"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "47"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 47
|
||||
|
||||
State House district 47 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 48"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "48"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 48
|
||||
|
||||
State House district 48 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 49"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "49"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 49
|
||||
|
||||
State House district 49 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 5"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "5"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 5
|
||||
|
||||
State House district 5 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 50"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "50"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 50
|
||||
|
||||
State House district 50 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 51"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "51"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 51
|
||||
|
||||
State House district 51 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 52"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "52"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 52
|
||||
|
||||
State House district 52 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 53"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "53"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 53
|
||||
|
||||
State House district 53 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 54"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "54"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 54
|
||||
|
||||
State House district 54 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 55"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "55"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 55
|
||||
|
||||
State House district 55 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 56"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "56"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 56
|
||||
|
||||
State House district 56 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 57"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "57"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 57
|
||||
|
||||
State House district 57 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 58"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "58"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 58
|
||||
|
||||
State House district 58 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 59"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "59"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 59
|
||||
|
||||
State House district 59 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 6"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "6"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 6
|
||||
|
||||
State House district 6 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 60"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "60"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 60
|
||||
|
||||
State House district 60 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 61"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "61"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 61
|
||||
|
||||
State House district 61 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 62"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "62"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 62
|
||||
|
||||
State House district 62 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 63"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "63"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 63
|
||||
|
||||
State House district 63 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 64"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "64"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 64
|
||||
|
||||
State House district 64 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 65"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "65"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 65
|
||||
|
||||
State House district 65 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 66"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "66"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 66
|
||||
|
||||
State House district 66 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 67"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "67"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 67
|
||||
|
||||
State House district 67 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 68"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "68"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 68
|
||||
|
||||
State House district 68 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 69"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "69"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 69
|
||||
|
||||
State House district 69 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 7"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "7"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 7
|
||||
|
||||
State House district 7 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 70"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "70"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 70
|
||||
|
||||
State House district 70 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 71"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "71"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 71
|
||||
|
||||
State House district 71 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 72"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "72"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 72
|
||||
|
||||
State House district 72 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 73"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "73"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 73
|
||||
|
||||
State House district 73 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 74"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "74"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 74
|
||||
|
||||
State House district 74 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 75"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "75"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 75
|
||||
|
||||
State House district 75 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 76"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "76"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 76
|
||||
|
||||
State House district 76 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 77"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "77"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 77
|
||||
|
||||
State House district 77 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 78"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "78"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 78
|
||||
|
||||
State House district 78 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 79"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "79"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 79
|
||||
|
||||
State House district 79 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 8"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "8"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 8
|
||||
|
||||
State House district 8 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 80"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "80"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 80
|
||||
|
||||
State House district 80 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 81"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "81"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 81
|
||||
|
||||
State House district 81 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 82"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "82"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 82
|
||||
|
||||
State House district 82 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 83"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "83"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 83
|
||||
|
||||
State House district 83 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 84"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "84"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 84
|
||||
|
||||
State House district 84 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 85"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "85"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 85
|
||||
|
||||
State House district 85 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 86"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "86"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 86
|
||||
|
||||
State House district 86 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 87"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "87"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 87
|
||||
|
||||
State House district 87 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 88"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "88"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 88
|
||||
|
||||
State House district 88 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 89"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "89"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 89
|
||||
|
||||
State House district 89 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 9"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "9"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 9
|
||||
|
||||
State House district 9 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 90"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "90"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 90
|
||||
|
||||
State House district 90 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
type: Jurisdiction
|
||||
title: "TN House District 91"
|
||||
classification: state-house-district
|
||||
state: "TN"
|
||||
chamber: "house"
|
||||
district: "91"
|
||||
sources:
|
||||
- field: boundary
|
||||
source: "Census TIGER 2024"
|
||||
confidence: official
|
||||
tags: [jurisdiction, state-house-district, tn]
|
||||
timestamp: "2026-07-03"
|
||||
---
|
||||
|
||||
# TN House District 91
|
||||
|
||||
State House district 91 (TN).
|
||||
|
||||
## Source
|
||||
|
||||
- boundary: Census TIGER 2024
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user