Skip to content

Instantly share code, notes, and snippets.

@enjalot
Created August 27, 2015 00:28
Show Gist options
  • Save enjalot/bd8b668e718e6f21e64c to your computer and use it in GitHub Desktop.
Save enjalot/bd8b668e718e6f21e64c to your computer and use it in GitHub Desktop.
fork: OHIO Census Tract Map
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3: Setting path fills</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<style type="text/css">
/* No style rules here yet */
</style>
</head>
<body>
<script type="text/javascript">
// Declare Width and height of SVG element
var w = 800;
var h = 900;
//declare bounding box - outer limits of shape
var latTop = 41.96920686;
var longLeft = -84.81945098;
var longRight = -80.518693;
//set scale so difference of longitude and latitude is exactly the width of the image
// anything greater than 1000 will expand image; less than 1000 will shrink it
//scale here thus is equal to 66953; we need to zoom the map in significantly to get it to show
var scale = 360*w/(longRight - longLeft);
//Define map projection
var projection = d3.geo.mercator()
.scale(scale) //references the correct zoom of the image
.translate([0,0]); //translate the origin of map to 0, 0 to start - this is where lat/lon 0, 0 will show up
//update 'translate' to fit svg
var trans = projection([longLeft, latTop]); //check where the top left part of the map projects to; lon lat inputs and returns their pixel locations
console.log(trans); //to check the values of the variable (-15775, -8616)
//repositions map to fit the image
projection.translate([-1*trans[0], -1*trans[1]]);
//Define path generator using the 'projection' we've built with the proper 'scale' and 'translate'
var path = d3.geo.path()
.projection(projection);
//Create SVG element
var svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
//Load in GeoJSON data
d3.json("us-states.json", function(err, json) {
console.log(err, json);
//Bind data and create one path element per GeoJSON feature
svg.selectAll("path")
.data(json.features)
.enter()
.append("path") //one path element per feature
.attr("d", path) //passes the data to our 'path' function
.style("fill", "steelblue");
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type":"FeatureCollection","bbox":[-84.82015899999999,38.403202,-80.518693,41.977523],
"features":[
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.626338,41.540578],[-81.626449,41.54015],[-81.626452,41.539708],[-81.62321899999999,41.541322],[-81.62102999999999,41.542417],[-81.620998,41.542089999999995],[-81.620933,41.540775],[-81.62086599999999,41.538754],[-81.620778,41.536398],[-81.621008,41.53629],[-81.621284,41.536151],[-81.62171099999999,41.53597],[-81.627264,41.533425],[-81.627584,41.533297],[-81.62847,41.532907],[-81.62647199999999,41.528406000000004],[-81.627769,41.528745],[-81.62794699999999,41.528074],[-81.62823800000001,41.528379],[-81.628261,41.528411999999996],[-81.630234,41.532768],[-81.629984,41.53675],[-81.631023,41.537451999999995],[-81.632284,41.540776],[-81.631017,41.540907],[-81.62866199999999,41.539592999999996],[-81.626338,41.540578]]]},"properties":{"GEO_ID":"1400000US39035111401","STATE":"39","COUNTY":"035","TRACT":"111401","NAME":"1114.01","LSAD":"Tract","CENSUSAREA":"0.257000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.641865,41.521389],[-81.64425,41.520388],[-81.644234,41.518719],[-81.645844,41.518546],[-81.648882,41.51824],[-81.648913,41.521345000000004],[-81.65024400000001,41.523039],[-81.648049,41.524017],[-81.646996,41.524507],[-81.645382,41.52527],[-81.645321,41.525286],[-81.643428,41.523139],[-81.642179,41.521741999999996],[-81.641865,41.521389]]]},"properties":{"GEO_ID":"1400000US39035111500","STATE":"39","COUNTY":"035","TRACT":"111500","NAME":"1115","LSAD":"Tract","CENSUSAREA":"0.124000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.639619,41.519194999999996],[-81.639865,41.519158],[-81.64268299999999,41.518876],[-81.64361699999999,41.518766],[-81.644234,41.518719],[-81.64425,41.520388],[-81.641865,41.521389],[-81.642179,41.521741999999996],[-81.643428,41.523139],[-81.645321,41.525286],[-81.644515,41.525632],[-81.643401,41.526132],[-81.64323999999999,41.526196000000006],[-81.642319,41.526602],[-81.642106,41.526714000000005],[-81.64182199999999,41.526832],[-81.64041399999999,41.527491],[-81.639719,41.527805],[-81.639659,41.523435],[-81.63965,41.52305],[-81.63965,41.521888],[-81.639619,41.519194999999996]]]},"properties":{"GEO_ID":"1400000US39035111600","STATE":"39","COUNTY":"035","TRACT":"111600","NAME":"1116","LSAD":"Tract","CENSUSAREA":"0.127000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.63717799999999,41.519452],[-81.639619,41.519194999999996],[-81.63965,41.521888],[-81.63965,41.52305],[-81.639659,41.523435],[-81.639719,41.527805],[-81.638849,41.528197],[-81.638423,41.528357],[-81.637784,41.528664000000006],[-81.637243,41.528897],[-81.63696499999999,41.529030999999996],[-81.636146,41.529399],[-81.63548999999999,41.529682],[-81.63360600000001,41.530564999999996],[-81.63360600000001,41.527842],[-81.63360600000001,41.52633],[-81.63360600000001,41.525695],[-81.63359,41.52338],[-81.63359,41.52296],[-81.634637,41.522982],[-81.63542799999999,41.522982],[-81.63611999999999,41.522971999999996],[-81.637222,41.522963],[-81.63717199999999,41.520866000000005],[-81.63717799999999,41.519452]]]},"properties":{"GEO_ID":"1400000US39035111700","STATE":"39","COUNTY":"035","TRACT":"111700","NAME":"1117","LSAD":"Tract","CENSUSAREA":"0.153000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.64215899999999,41.506143],[-81.642135,41.504228999999995],[-81.648106,41.504503],[-81.651495,41.504329999999996],[-81.651825,41.504283],[-81.65182899999999,41.506132],[-81.65185,41.508432000000006],[-81.651864,41.512904],[-81.651864,41.513984],[-81.645747,41.514018],[-81.64574999999999,41.512951],[-81.64573299999999,41.512319999999995],[-81.64571699999999,41.511016],[-81.644477,41.511024],[-81.644458,41.509788],[-81.64444499999999,41.508466],[-81.644432,41.50681],[-81.64215899999999,41.506143]]]},"properties":{"GEO_ID":"1400000US39035112301","STATE":"39","COUNTY":"035","TRACT":"112301","NAME":"1123.01","LSAD":"Tract","CENSUSAREA":"0.260000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.627303,41.490071],[-81.627346,41.49342],[-81.627755,41.493418999999996],[-81.628511,41.49341],[-81.628529,41.496351],[-81.62854399999999,41.499891],[-81.627794,41.499880999999995],[-81.623137,41.499649],[-81.623085,41.494879999999995],[-81.623144,41.49343],[-81.621635,41.493432999999996],[-81.621611,41.490742],[-81.624477,41.490001],[-81.624477,41.490079],[-81.627303,41.490071]]]},"properties":{"GEO_ID":"1400000US39035113500","STATE":"39","COUNTY":"035","TRACT":"113500","NAME":"1135","LSAD":"Tract","CENSUSAREA":"0.190000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.65165999999999,41.491654],[-81.65166099999999,41.493406],[-81.65171,41.496238999999996],[-81.64275599999999,41.496263],[-81.64080000000001,41.494437],[-81.639573,41.493373],[-81.63940699999999,41.493372],[-81.63932600000001,41.488126],[-81.63641799999999,41.488147],[-81.63641,41.48589],[-81.651507,41.48187],[-81.651602,41.487975],[-81.651622,41.488921999999995],[-81.65165999999999,41.491654]]]},"properties":{"GEO_ID":"1400000US39035113801","STATE":"39","COUNTY":"035","TRACT":"113801","NAME":"1138.01","LSAD":"Tract","CENSUSAREA":"0.572000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.63745,41.477494],[-81.637744,41.47486],[-81.63963100000001,41.473461],[-81.640104,41.473607],[-81.64116299999999,41.474275999999996],[-81.64179299999999,41.474951],[-81.642366,41.476095],[-81.642888,41.476258],[-81.642624,41.479016],[-81.645387,41.482195999999995],[-81.65147499999999,41.480533],[-81.651507,41.48187],[-81.63641,41.48589],[-81.63641,41.485493],[-81.63628,41.479932],[-81.636359,41.478716999999996],[-81.637018,41.479048999999996],[-81.63744299999999,41.478521],[-81.63745,41.477494]]]},"properties":{"GEO_ID":"1400000US39035114700","STATE":"39","COUNTY":"035","TRACT":"114700","NAME":"1147","LSAD":"Tract","CENSUSAREA":"0.271000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.638795,41.445746],[-81.638791,41.445482000000005],[-81.638775,41.444148],[-81.638772,41.444078999999995],[-81.638776,41.44356],[-81.63896299999999,41.442654],[-81.639836,41.439665],[-81.64455,41.439164999999996],[-81.64455699999999,41.441122],[-81.65085400000001,41.44106],[-81.650849,41.443652],[-81.650894,41.446562],[-81.65100000000001,41.448105],[-81.650928,41.448350999999995],[-81.647834,41.448420999999996],[-81.64541299999999,41.447835],[-81.64533999999999,41.447815999999996],[-81.644834,41.447697999999995],[-81.643159,41.447935],[-81.641341,41.448589999999996],[-81.63882699999999,41.448645000000006],[-81.638795,41.445746]]]},"properties":{"GEO_ID":"1400000US39035115700","STATE":"39","COUNTY":"035","TRACT":"115700","NAME":"1157","LSAD":"Tract","CENSUSAREA":"0.340000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.601235,41.545291999999996],[-81.601226,41.54495],[-81.601021,41.541345],[-81.60286599999999,41.541353],[-81.603746,41.541283],[-81.60596699999999,41.540943],[-81.608899,41.54049200000001],[-81.608846,41.545756999999995],[-81.606237,41.548443],[-81.602103,41.550014],[-81.601505,41.548997],[-81.601376,41.547917],[-81.601253,41.545767],[-81.601235,41.545291999999996]]]},"properties":{"GEO_ID":"1400000US39035116300","STATE":"39","COUNTY":"035","TRACT":"116300","NAME":"1163","LSAD":"Tract","CENSUSAREA":"0.210000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.600721,41.53767500000001],[-81.600743,41.537695],[-81.601021,41.541345],[-81.598811,41.541336],[-81.59875799999999,41.54134],[-81.597445,41.541323999999996],[-81.59566799999999,41.542348],[-81.594905,41.542798],[-81.594523,41.54304700000001],[-81.592715,41.544112],[-81.592021,41.544539],[-81.591658,41.540591],[-81.591866,41.537347],[-81.591839,41.534712],[-81.591827,41.530648],[-81.59263299999999,41.530552],[-81.594751,41.530512],[-81.594943,41.530668999999996],[-81.596805,41.532351],[-81.598972,41.534299000000004],[-81.59932599999999,41.534697],[-81.600433,41.537098],[-81.600721,41.53767500000001]]]},"properties":{"GEO_ID":"1400000US39035116800","STATE":"39","COUNTY":"035","TRACT":"116800","NAME":"1168","LSAD":"Tract","CENSUSAREA":"0.317000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.579212,41.552361999999995],[-81.580959,41.551939],[-81.58190499999999,41.551421],[-81.582781,41.550959999999996],[-81.58354,41.550551999999996],[-81.584036,41.550166],[-81.585268,41.549195999999995],[-81.585633,41.548859],[-81.586432,41.548243],[-81.586658,41.548032],[-81.58721100000001,41.547633999999995],[-81.589366,41.545926],[-81.590823,41.545151],[-81.591051,41.545116],[-81.591109,41.552600000000005],[-81.590653,41.556151],[-81.589916,41.556717],[-81.585202,41.558778],[-81.57555400000001,41.562999],[-81.575538,41.562593],[-81.57552,41.560953999999995],[-81.57548799999999,41.56025],[-81.57549,41.559632],[-81.57544,41.553275],[-81.579212,41.552361999999995]]]},"properties":{"GEO_ID":"1400000US39035117300","STATE":"39","COUNTY":"035","TRACT":"117300","NAME":"1173","LSAD":"Tract","CENSUSAREA":"0.538000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.559933,41.556591999999995],[-81.561407,41.558233],[-81.56381300000001,41.559691],[-81.564253,41.561924],[-81.562598,41.563179999999996],[-81.56453499999999,41.566494999999996],[-81.55703199999999,41.569981],[-81.548878,41.574782],[-81.544415,41.577101000000006],[-81.541275,41.578114],[-81.541549,41.576158],[-81.53805899999999,41.575418],[-81.536017,41.57285400000001],[-81.538485,41.571314],[-81.540921,41.569753999999996],[-81.552776,41.56221],[-81.55365499999999,41.561668999999995],[-81.557135,41.559371999999996],[-81.559933,41.556591999999995]]]},"properties":{"GEO_ID":"1400000US39035117800","STATE":"39","COUNTY":"035","TRACT":"117800","NAME":"1178","LSAD":"Tract","CENSUSAREA":"0.880000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.59821099999999,41.529973999999996],[-81.598143,41.525678],[-81.598097,41.523049],[-81.60090000000001,41.523049],[-81.60285499999999,41.523029],[-81.60484,41.522828],[-81.60560000000001,41.522746999999995],[-81.60560000000001,41.52803],[-81.605857,41.528331],[-81.605953,41.528451],[-81.60612499999999,41.528644],[-81.606448,41.530037],[-81.601869,41.529956],[-81.59821099999999,41.529973999999996]]]},"properties":{"GEO_ID":"1400000US39035118400","STATE":"39","COUNTY":"035","TRACT":"118400","NAME":"1184","LSAD":"Tract","CENSUSAREA":"0.190000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.630853,41.505303],[-81.630692,41.505381],[-81.63036100000001,41.50581],[-81.62707999999999,41.509384],[-81.626469,41.509477],[-81.625018,41.509751],[-81.621895,41.510321999999995],[-81.62182,41.510338],[-81.619182,41.510811],[-81.615813,41.511004],[-81.615535,41.511226],[-81.615386,41.511282],[-81.615337,41.506856],[-81.615258,41.503662999999996],[-81.61676899999999,41.503613],[-81.61711,41.503591],[-81.622829,41.503426],[-81.622939,41.503426],[-81.624544,41.503389],[-81.628834,41.503574],[-81.629586,41.503606],[-81.630725,41.503662],[-81.630765,41.503931],[-81.630853,41.505303]]]},"properties":{"GEO_ID":"1400000US39035118900","STATE":"39","COUNTY":"035","TRACT":"118900","NAME":"1189","LSAD":"Tract","CENSUSAREA":"0.338000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.60288,41.478038],[-81.602881,41.47882],[-81.60290499999999,41.481004],[-81.60290499999999,41.484241999999995],[-81.598304,41.484209],[-81.598304,41.483419999999995],[-81.597753,41.483376],[-81.597708,41.483174000000005],[-81.59690599999999,41.483169],[-81.59513299999999,41.483169],[-81.595084,41.480167],[-81.594914,41.480149],[-81.594865,41.478001],[-81.59627499999999,41.478018999999996],[-81.59719799999999,41.478018999999996],[-81.598095,41.478018999999996],[-81.60288,41.478038]]]},"properties":{"GEO_ID":"1400000US39035119402","STATE":"39","COUNTY":"035","TRACT":"119402","NAME":"1194.02","LSAD":"Tract","CENSUSAREA":"0.163000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.60289,41.474436999999995],[-81.60289,41.47526],[-81.60289,41.475500000000004],[-81.602881,41.476181],[-81.602881,41.477055],[-81.60288,41.478038],[-81.598095,41.478018999999996],[-81.59719799999999,41.478018999999996],[-81.59627499999999,41.478018999999996],[-81.594865,41.478001],[-81.59343299999999,41.478001],[-81.591951,41.478001],[-81.591928,41.475221999999995],[-81.591898,41.474396],[-81.591869,41.472825],[-81.59704400000001,41.472814],[-81.599367,41.472798999999995],[-81.60055,41.472795999999995],[-81.60289,41.472789999999996],[-81.60289,41.474436999999995]]]},"properties":{"GEO_ID":"1400000US39035119702","STATE":"39","COUNTY":"035","TRACT":"119702","NAME":"1197.02","LSAD":"Tract","CENSUSAREA":"0.204000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.608418,41.463612],[-81.608418,41.466886],[-81.607967,41.467439],[-81.60745399999999,41.46724],[-81.605457,41.467255],[-81.60499399999999,41.467265],[-81.60500499999999,41.468508],[-81.602857,41.468064999999996],[-81.60176299999999,41.467839000000005],[-81.599481,41.467357],[-81.59928699999999,41.463698],[-81.59928599999999,41.461605999999996],[-81.59928599999999,41.460659],[-81.59928599999999,41.459713],[-81.59928599999999,41.457747],[-81.59928599999999,41.456818999999996],[-81.60286099999999,41.456804999999996],[-81.60767799999999,41.457609999999995],[-81.60822499999999,41.458211999999996],[-81.60856799999999,41.459156],[-81.60856600000001,41.461489],[-81.60856600000001,41.462359],[-81.60842799999999,41.463066999999995],[-81.608418,41.463612]]]},"properties":{"GEO_ID":"1400000US39035120600","STATE":"39","COUNTY":"035","TRACT":"120600","NAME":"1206","LSAD":"Tract","CENSUSAREA":"0.352000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.57862999999999,41.460947999999995],[-81.578582,41.457524],[-81.57853999999999,41.453012],[-81.58010399999999,41.453004],[-81.584604,41.452974999999995],[-81.584634,41.454355],[-81.584634,41.455301999999996],[-81.584634,41.456559],[-81.584643,41.457496],[-81.584642,41.458388],[-81.584643,41.460859],[-81.58466299999999,41.464354],[-81.581353,41.464372000000004],[-81.580964,41.464372000000004],[-81.57877599999999,41.464372000000004],[-81.57865699999999,41.464369],[-81.57862999999999,41.460947999999995]]]},"properties":{"GEO_ID":"1400000US39035120802","STATE":"39","COUNTY":"035","TRACT":"120802","NAME":"1208.02","LSAD":"Tract","CENSUSAREA":"0.246000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.584002,41.44534],[-81.581814,41.444756999999996],[-81.580722,41.444447],[-81.579774,41.4442],[-81.579769,41.443000999999995],[-81.5911,41.445386],[-81.596713,41.446588],[-81.602831,41.44788],[-81.602853,41.448828999999996],[-81.602852,41.450658],[-81.596749,41.450671],[-81.59112999999999,41.45073],[-81.59113099999999,41.449867],[-81.59112499999999,41.449009],[-81.58750599999999,41.449064],[-81.584026,41.449092],[-81.584002,41.44534]]]},"properties":{"GEO_ID":"1400000US39035121401","STATE":"39","COUNTY":"035","TRACT":"121401","NAME":"1214.01","LSAD":"Tract","CENSUSAREA":"0.302000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.56479399999999,41.440135],[-81.56600999999999,41.440452],[-81.56954999999999,41.441427999999995],[-81.57542099999999,41.443006],[-81.57527999999999,41.445032],[-81.573252,41.445555],[-81.573045,41.449752],[-81.57204,41.449760999999995],[-81.56891,41.449774],[-81.568486,41.449771000000005],[-81.564841,41.44979],[-81.56482,41.445993],[-81.56480499999999,41.443881000000005],[-81.564791,41.443424],[-81.56479399999999,41.440135]]]},"properties":{"GEO_ID":"1400000US39035121900","STATE":"39","COUNTY":"035","TRACT":"121900","NAME":"1219","LSAD":"Tract","CENSUSAREA":"0.277000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.777318,41.459165999999996],[-81.77756099999999,41.459083],[-81.778229,41.458878],[-81.779231,41.458574999999996],[-81.779493,41.458484],[-81.783024,41.457347],[-81.783343,41.457237],[-81.79025399999999,41.45503],[-81.790105,41.459700999999995],[-81.78996599999999,41.461576],[-81.79001799999999,41.462334999999996],[-81.78996500000001,41.463732],[-81.784824,41.464693],[-81.782759,41.465365],[-81.782489,41.466125],[-81.78120299999999,41.46872],[-81.780453,41.469314],[-81.779445,41.469703],[-81.7688,41.474001],[-81.76881499999999,41.470379],[-81.76885,41.466592999999996],[-81.76885,41.466246999999996],[-81.768894,41.463592000000006],[-81.768924,41.461863],[-81.771824,41.460927999999996],[-81.77372299999999,41.460329],[-81.77467399999999,41.460027],[-81.776347,41.4595],[-81.77660999999999,41.459401],[-81.777318,41.459165999999996]]]},"properties":{"GEO_ID":"1400000US39035123501","STATE":"39","COUNTY":"035","TRACT":"123501","NAME":"1235.01","LSAD":"Tract","CENSUSAREA":"0.780000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.82602,41.428486],[-81.825155,41.429829999999995],[-81.824336,41.431172],[-81.822841,41.433493999999996],[-81.822551,41.434025],[-81.819941,41.43398],[-81.811903,41.433841],[-81.811731,41.433841],[-81.821074,41.422594],[-81.82327800000002,41.419886],[-81.824237,41.418682],[-81.824462,41.418676],[-81.825661,41.418684],[-81.827854,41.418394],[-81.830856,41.418389],[-81.83082499999999,41.418636],[-81.830557,41.421349000000006],[-81.827249,41.426528],[-81.827052,41.426804],[-81.826672,41.427423999999995],[-81.826126,41.428298999999996],[-81.82602,41.428486]]]},"properties":{"GEO_ID":"1400000US39035123800","STATE":"39","COUNTY":"035","TRACT":"123800","NAME":"1238","LSAD":"Tract","CENSUSAREA":"0.512000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.96813028729012,41.5064221331362],[-81.964912,41.505446],[-81.96266399999999,41.501341],[-81.958463,41.498642000000004],[-81.9540779841534,41.49710966035239],[-81.954078,41.497108999999995],[-81.95429,41.495036],[-81.95452,41.489475999999996],[-81.949889,41.489624],[-81.95002099999999,41.485268],[-81.950098,41.483844999999995],[-81.950212,41.481192],[-81.95035899999999,41.477802000000004],[-81.961365,41.477937],[-81.969465,41.47801700000001],[-81.969177,41.492684],[-81.96846099999999,41.504163999999996],[-81.96828699999999,41.505189],[-81.96813028729012,41.5064221331362]]]},"properties":{"GEO_ID":"1400000US39035130103","STATE":"39","COUNTY":"035","TRACT":"130103","NAME":"1301.03","LSAD":"Tract","CENSUSAREA":"1.400000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.497787,41.492360000000005],[-81.49780299999999,41.491895],[-81.497802,41.491686],[-81.497798,41.488102999999995],[-81.497756,41.486245],[-81.497762,41.4793],[-81.507347,41.479273],[-81.507357,41.486276],[-81.50812499999999,41.486276],[-81.51264499999999,41.48632],[-81.517048,41.486349],[-81.51704,41.486979],[-81.517067,41.490857999999996],[-81.51704199999999,41.491232],[-81.517046,41.492261],[-81.51704699999999,41.495438],[-81.517003,41.496767],[-81.517003,41.497608],[-81.51702100000001,41.498008999999996],[-81.516837,41.501357999999996],[-81.512785,41.501357999999996],[-81.507966,41.501357999999996],[-81.497787,41.501266],[-81.497777,41.497879],[-81.497782,41.496406],[-81.497787,41.492360000000005]]]},"properties":{"GEO_ID":"1400000US39035131103","STATE":"39","COUNTY":"035","TRACT":"131103","NAME":"1311.03","LSAD":"Tract","CENSUSAREA":"1.274000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.517282,41.40132],[-81.51762699999999,41.401782],[-81.51773399999999,41.408542],[-81.51773399999999,41.409487],[-81.52731899999999,41.409465],[-81.52733500000001,41.411280999999995],[-81.527366,41.416928999999996],[-81.527366,41.418533],[-81.527366,41.419334],[-81.527366,41.420949],[-81.52735,41.424015],[-81.524372,41.423871999999996],[-81.52164499999999,41.424368],[-81.520544,41.424368],[-81.520117,41.424285999999995],[-81.51961399999999,41.424239],[-81.51911199999999,41.424239],[-81.509699,41.424234],[-81.508344,41.424234],[-81.508347,41.419430999999996],[-81.508214,41.418074999999995],[-81.50705599999999,41.413368999999996],[-81.506156,41.409525],[-81.506042,41.407554999999995],[-81.50713999999999,41.402165],[-81.512755,41.402162],[-81.517282,41.40132]]]},"properties":{"GEO_ID":"1400000US39035133103","STATE":"39","COUNTY":"035","TRACT":"133103","NAME":"1331.03","LSAD":"Tract","CENSUSAREA":"1.337000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.87557199999999,41.364616999999996],[-81.874479,41.364601],[-81.870826,41.364576],[-81.870933,41.361407],[-81.869925,41.361388999999996],[-81.870024,41.358159],[-81.870526,41.358174999999996],[-81.87078799999999,41.357782],[-81.870897,41.356390999999995],[-81.864311,41.356936999999995],[-81.864324,41.356708999999995],[-81.864389,41.35552],[-81.86443400000002,41.354306],[-81.864674,41.350647],[-81.86498499999999,41.350111],[-81.866247,41.350666],[-81.867953,41.350666],[-81.87696,41.350685],[-81.876958,41.35465],[-81.88098800000002,41.355394],[-81.887259,41.35655],[-81.887452,41.361292999999996],[-81.88346100000001,41.361393],[-81.878717,41.363388],[-81.876725,41.363403999999996],[-81.876764,41.364607],[-81.876707,41.364601],[-81.87557199999999,41.364616999999996]]]},"properties":{"GEO_ID":"1400000US39035134205","STATE":"39","COUNTY":"035","TRACT":"134205","NAME":"1342.05","LSAD":"Tract","CENSUSAREA":"0.705000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.70367499999999,41.350910999999996],[-81.70232000000001,41.350913999999996],[-81.684585,41.350966],[-81.684604,41.345431999999995],[-81.684605,41.343706999999995],[-81.682913,41.342119],[-81.67648899999999,41.336385],[-81.672781,41.328967],[-81.67148,41.326581999999995],[-81.672045,41.324328],[-81.675812,41.324217],[-81.677392,41.325376],[-81.679153,41.323516],[-81.681399,41.322838999999995],[-81.681355,41.321082],[-81.684681,41.319752],[-81.684681,41.321405],[-81.689787,41.321427],[-81.69458,41.321433999999996],[-81.70502499999999,41.321411],[-81.704939,41.326477],[-81.70490000000001,41.328714],[-81.704886,41.329544999999996],[-81.704872,41.329936],[-81.70461499999999,41.337633],[-81.704472,41.343005],[-81.70504299999999,41.349444],[-81.705055,41.350925],[-81.70367499999999,41.350910999999996]]]},"properties":{"GEO_ID":"1400000US39035136101","STATE":"39","COUNTY":"035","TRACT":"136101","NAME":"1361.01","LSAD":"Tract","CENSUSAREA":"2.762000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.818057,41.40265],[-81.817757,41.40165],[-81.816857,41.399049999999995],[-81.816701,41.398696],[-81.815384,41.395719],[-81.815778,41.388703],[-81.82374,41.388881],[-81.82652399999999,41.388914],[-81.835049,41.389156],[-81.84286000000002,41.389337999999995],[-81.842855,41.389430999999995],[-81.84245899999999,41.395407999999996],[-81.834802,41.395019],[-81.823664,41.402885],[-81.81865599999999,41.406414],[-81.818057,41.40265]]]},"properties":{"GEO_ID":"1400000US39035138106","STATE":"39","COUNTY":"035","TRACT":"138106","NAME":"1381.06","LSAD":"Tract","CENSUSAREA":"0.975000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.815715,41.403116],[-81.813501,41.403549999999996],[-81.808605,41.403918999999995],[-81.804087,41.403827],[-81.804254,41.401275],[-81.804254,41.400476999999995],[-81.80435899999999,41.398441999999996],[-81.804463,41.395671],[-81.804757,41.38955000000001],[-81.804755,41.388422999999996],[-81.80615399999999,41.38847],[-81.81454699999999,41.388670999999995],[-81.815778,41.388703],[-81.815384,41.395719],[-81.816701,41.398696],[-81.816857,41.399049999999995],[-81.815715,41.403116]]]},"properties":{"GEO_ID":"1400000US39035138108","STATE":"39","COUNTY":"035","TRACT":"138108","NAME":"1381.08","LSAD":"Tract","CENSUSAREA":"0.622000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.556266,41.530131],[-81.556341,41.536128999999995],[-81.556939,41.536864],[-81.55645799999999,41.537555],[-81.55636100000001,41.537526],[-81.556091,41.537413],[-81.554919,41.536921],[-81.554845,41.536896000000006],[-81.553432,41.536314999999995],[-81.549742,41.534791],[-81.549697,41.532608],[-81.549628,41.530167],[-81.549565,41.526927],[-81.54957,41.526534999999996],[-81.54964,41.526334],[-81.55001299999999,41.525383],[-81.550051,41.52521],[-81.55001399999999,41.520512],[-81.555784,41.520388],[-81.55584300000001,41.522779],[-81.555984,41.523393999999996],[-81.556477,41.524104],[-81.557131,41.525054999999995],[-81.557765,41.525918999999995],[-81.557862,41.526033999999996],[-81.556631,41.527142999999995],[-81.55632299999999,41.527532],[-81.555804,41.528209],[-81.55628399999999,41.528987],[-81.556266,41.530131]]]},"properties":{"GEO_ID":"1400000US39035140302","STATE":"39","COUNTY":"035","TRACT":"140302","NAME":"1403.02","LSAD":"Tract","CENSUSAREA":"0.371000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.548223,41.520555],[-81.55001399999999,41.520512],[-81.550051,41.52521],[-81.55001299999999,41.525383],[-81.54964,41.526334],[-81.54957,41.526534999999996],[-81.549565,41.526927],[-81.549628,41.530167],[-81.549697,41.532608],[-81.549742,41.534791],[-81.548568,41.534302],[-81.546297,41.533567999999995],[-81.54210599999999,41.53116],[-81.54108,41.529123],[-81.540576,41.528048],[-81.539402,41.525368],[-81.53886100000001,41.524223],[-81.53649899999999,41.5208],[-81.53645499999999,41.520691],[-81.544508,41.520657],[-81.54572,41.520657],[-81.548223,41.520555]]]},"properties":{"GEO_ID":"1400000US39035140400","STATE":"39","COUNTY":"035","TRACT":"140400","NAME":"1404","LSAD":"Tract","CENSUSAREA":"0.446000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.54633799999999,41.536927999999996],[-81.54634899999999,41.53796],[-81.542949,41.537914],[-81.538431,41.537886],[-81.534041,41.537876],[-81.53329599999999,41.537366999999996],[-81.532202,41.536454],[-81.53135999999999,41.535768999999995],[-81.52965499999999,41.534013],[-81.53036500000002,41.533592999999996],[-81.531424,41.533034],[-81.535262,41.530952],[-81.534432,41.529387],[-81.534385,41.527494999999995],[-81.53429899999999,41.524884],[-81.53434299999999,41.523191],[-81.536469,41.523219999999995],[-81.53649899999999,41.5208],[-81.53886100000001,41.524223],[-81.539402,41.525368],[-81.540576,41.528048],[-81.54108,41.529123],[-81.54210599999999,41.53116],[-81.546297,41.533567999999995],[-81.546317,41.535197],[-81.54633799999999,41.536927999999996]]]},"properties":{"GEO_ID":"1400000US39035140500","STATE":"39","COUNTY":"035","TRACT":"140500","NAME":"1405","LSAD":"Tract","CENSUSAREA":"0.496000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.55582199999999,41.508406],[-81.55972799999999,41.508417],[-81.55972799999999,41.509051],[-81.560844,41.509051],[-81.56573399999999,41.509023],[-81.566418,41.510433],[-81.567695,41.512999],[-81.569109,41.515808],[-81.564818,41.517404],[-81.557265,41.520253],[-81.555784,41.520388],[-81.55572699999999,41.513560999999996],[-81.55579800000001,41.51331],[-81.55582799999999,41.512451],[-81.55582299999999,41.511632999999996],[-81.55582799999999,41.511497999999996],[-81.55582799999999,41.510649],[-81.555815,41.510002],[-81.55582199999999,41.508406]]]},"properties":{"GEO_ID":"1400000US39035140701","STATE":"39","COUNTY":"035","TRACT":"140701","NAME":"1407.01","LSAD":"Tract","CENSUSAREA":"0.409000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.583237,41.507642],[-81.57994699999999,41.508151],[-81.579166,41.508437],[-81.57862399999999,41.508437],[-81.576013,41.508452999999996],[-81.57394699999999,41.508451],[-81.573925,41.508103999999996],[-81.57013700000002,41.507822999999995],[-81.57013700000002,41.506878],[-81.570129,41.506053],[-81.570078,41.502193000000005],[-81.570078,41.501205],[-81.57489699999999,41.501179],[-81.57655299999999,41.501183999999995],[-81.577901,41.501163999999996],[-81.578037,41.501166],[-81.57996399999999,41.501156],[-81.58127999999999,41.501148],[-81.581865,41.501138999999995],[-81.585223,41.501112],[-81.59249700000001,41.501056],[-81.595801,41.501028999999996],[-81.59731699999999,41.50107],[-81.59777299999999,41.50136],[-81.59598199999999,41.50255],[-81.594731,41.503054999999996],[-81.594212,41.503198999999995],[-81.593549,41.503343],[-81.590362,41.504673],[-81.58807399999999,41.506301],[-81.587356,41.50664],[-81.583237,41.507642]]]},"properties":{"GEO_ID":"1400000US39035141200","STATE":"39","COUNTY":"035","TRACT":"141200","NAME":"1412","LSAD":"Tract","CENSUSAREA":"0.520000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.565182,41.496974],[-81.56526,41.49793],[-81.565286,41.498702],[-81.56536299999999,41.499573999999996],[-81.565467,41.501244],[-81.56056600000001,41.501276999999995],[-81.559454,41.501293],[-81.556005,41.501328],[-81.55609199999999,41.498591999999995],[-81.55609199999999,41.497699],[-81.55609199999999,41.495177],[-81.56510399999999,41.49517],[-81.565182,41.496974]]]},"properties":{"GEO_ID":"1400000US39035141602","STATE":"39","COUNTY":"035","TRACT":"141602","NAME":"1416.02","LSAD":"Tract","CENSUSAREA":"0.201000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.574488,41.541593999999996],[-81.57532499999999,41.542389],[-81.575632,41.542646],[-81.576455,41.543417999999996],[-81.578378,41.545186],[-81.578205,41.545186],[-81.575343,41.54521],[-81.571107,41.545058999999995],[-81.568209,41.548051],[-81.56564,41.546229],[-81.565343,41.545165],[-81.56372700000001,41.543755999999995],[-81.56572100000001,41.541900000000005],[-81.56792399999999,41.539412],[-81.570088,41.537168],[-81.57167299999999,41.53832500000001],[-81.572867,41.538962999999995],[-81.572073,41.539792],[-81.573038,41.540251],[-81.574488,41.541593999999996]]]},"properties":{"GEO_ID":"1400000US39035151100","STATE":"39","COUNTY":"035","TRACT":"151100","NAME":"1511","LSAD":"Tract","CENSUSAREA":"0.245000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.590187,41.517261999999995],[-81.58910399999999,41.518477999999995],[-81.58623899999999,41.521771],[-81.584734,41.523244],[-81.578531,41.52277000000001],[-81.575813,41.523447],[-81.575803,41.517271],[-81.575802,41.51566700000001],[-81.576911,41.515719],[-81.578122,41.515706],[-81.579347,41.515651],[-81.580882,41.515602],[-81.584711,41.516155999999995],[-81.591216,41.516127],[-81.590682,41.516658],[-81.59072599999999,41.516684999999995],[-81.590187,41.517261999999995]]]},"properties":{"GEO_ID":"1400000US39035151600","STATE":"39","COUNTY":"035","TRACT":"151600","NAME":"1516","LSAD":"Tract","CENSUSAREA":"0.319000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.517995,41.614751000000005],[-81.517018,41.615141],[-81.516583,41.615255999999995],[-81.515746,41.615612],[-81.51441299999999,41.61609],[-81.51291599999999,41.616626],[-81.51173399999999,41.617087],[-81.509587,41.61791100000001],[-81.509253,41.618016],[-81.509176,41.612752],[-81.509176,41.612700000000004],[-81.509171,41.60881200000001],[-81.509183,41.607431999999996],[-81.509147,41.607028],[-81.509171,41.605388],[-81.509171,41.601997999999995],[-81.509151,41.598492],[-81.509215,41.598237],[-81.513932,41.595242999999996],[-81.51726699999999,41.598884],[-81.519307,41.601115],[-81.52002499999999,41.601876999999995],[-81.521412,41.603406],[-81.52158899999999,41.60356],[-81.522459,41.604521],[-81.52681500000001,41.609199],[-81.527,41.609513],[-81.519776,41.614056999999995],[-81.518901,41.614394],[-81.517995,41.614751000000005]]]},"properties":{"GEO_ID":"1400000US39035152202","STATE":"39","COUNTY":"035","TRACT":"152202","NAME":"1522.02","LSAD":"Tract","CENSUSAREA":"0.853000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.544995,41.595859],[-81.540263,41.595904999999995],[-81.54025299999999,41.595604],[-81.540221,41.592622],[-81.540216,41.592318999999996],[-81.540223,41.591834999999996],[-81.54019,41.588983],[-81.549883,41.588947],[-81.54990699999999,41.591611],[-81.549943,41.594943],[-81.54993999999999,41.595134],[-81.54880899999999,41.595845],[-81.544995,41.595859]]]},"properties":{"GEO_ID":"1400000US39035152400","STATE":"39","COUNTY":"035","TRACT":"152400","NAME":"1524","LSAD":"Tract","CENSUSAREA":"0.237000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.54074399999999,41.563969],[-81.54145299999999,41.563396],[-81.54488400000001,41.560809],[-81.546908,41.559225999999995],[-81.547793,41.558552999999996],[-81.55209599999999,41.561448999999996],[-81.55365499999999,41.561668999999995],[-81.552776,41.56221],[-81.540921,41.569753999999996],[-81.538485,41.571314],[-81.536017,41.57285400000001],[-81.533754,41.569541],[-81.535167,41.568985999999995],[-81.536118,41.568096],[-81.537014,41.567277999999995],[-81.54074399999999,41.563969]]]},"properties":{"GEO_ID":"1400000US39035152701","STATE":"39","COUNTY":"035","TRACT":"152701","NAME":"1527.01","LSAD":"Tract","CENSUSAREA":"0.334000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.861013,41.442755],[-81.86395999999999,41.441753],[-81.867036,41.440523999999996],[-81.86726,41.44043],[-81.87155299999999,41.438589],[-81.87194699999999,41.438431],[-81.875115,41.437089],[-81.874614,41.443878999999995],[-81.874454,41.446253],[-81.874667,41.448107],[-81.874574,41.449439999999996],[-81.87449199999999,41.449943999999995],[-81.865293,41.44981200000001],[-81.86408899999999,41.449833],[-81.862319,41.449788],[-81.862471,41.44929],[-81.86085899999999,41.449290999999995],[-81.852963,41.449211],[-81.853025,41.446452],[-81.858918,41.443504],[-81.861013,41.442755]]]},"properties":{"GEO_ID":"1400000US39035153104","STATE":"39","COUNTY":"035","TRACT":"153104","NAME":"1531.04","LSAD":"Tract","CENSUSAREA":"0.613000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.62033799999999,41.428784],[-81.620372,41.42529100000001],[-81.621387,41.423525],[-81.62350099999999,41.423524],[-81.62346699999999,41.421848999999995],[-81.623446,41.417927999999996],[-81.62438999999999,41.416112999999996],[-81.625187,41.415814999999995],[-81.627066,41.415123],[-81.63304699999999,41.41515400000001],[-81.634946,41.416649],[-81.63812399999999,41.417499],[-81.63568599999999,41.420997],[-81.63808,41.42511],[-81.63768400000001,41.428045],[-81.635657,41.434163],[-81.635849,41.435752],[-81.633406,41.438639],[-81.633406,41.438232],[-81.633173,41.437429],[-81.633017,41.436609],[-81.63315,41.435783],[-81.633121,41.434135999999995],[-81.630711,41.434174000000006],[-81.631857,41.432454],[-81.631074,41.432078],[-81.627506,41.430355999999996],[-81.62645700000002,41.42984],[-81.625804,41.429544],[-81.62477299999999,41.42926],[-81.621421,41.428886999999996],[-81.62033799999999,41.428784]]]},"properties":{"GEO_ID":"1400000US39035154400","STATE":"39","COUNTY":"035","TRACT":"154400","NAME":"1544","LSAD":"Tract","CENSUSAREA":"0.867000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.48783499999999,41.569047],[-81.487842,41.570051],[-81.478157,41.570053],[-81.45768699999999,41.56995200000001],[-81.45768,41.569950999999996],[-81.447279,41.569964],[-81.44817800000001,41.552406000000005],[-81.449118,41.538928999999996],[-81.463219,41.538987999999996],[-81.47342499999999,41.538989],[-81.475616,41.538987999999996],[-81.478494,41.538987999999996],[-81.478353,41.552574],[-81.48787899999999,41.552696],[-81.48783499999999,41.569047]]]},"properties":{"GEO_ID":"1400000US39035155101","STATE":"39","COUNTY":"035","TRACT":"155101","NAME":"1551.01","LSAD":"Tract","CENSUSAREA":"3.950000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.83605899999999,41.4896135602174],[-81.81103999999999,41.4955807413138],[-81.811104,41.493015],[-81.811721,41.492973],[-81.811739,41.491628],[-81.81549799999999,41.491445999999996],[-81.81672999999999,41.491389],[-81.816795,41.489148],[-81.816836,41.487640999999996],[-81.82033299999999,41.487680000000005],[-81.821118,41.487666999999995],[-81.822105,41.487544],[-81.822644,41.487407],[-81.830705,41.485121],[-81.831096,41.485],[-81.831575,41.484868],[-81.832306,41.486416],[-81.83505799999999,41.488847],[-81.83605899999999,41.489346999999995],[-81.83605899999999,41.4896135602174]]]},"properties":{"GEO_ID":"1400000US39035160100","STATE":"39","COUNTY":"035","TRACT":"160100","NAME":"1601","LSAD":"Tract","CENSUSAREA":"0.422000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.794429,41.496151999999995],[-81.7944488471141,41.496630419907596],[-81.794157,41.496648],[-81.782258,41.49605],[-81.782654,41.496041999999996],[-81.782718,41.493426],[-81.782734,41.492156],[-81.78278,41.490846],[-81.782881,41.487559999999995],[-81.782881,41.487038],[-81.782923,41.484935],[-81.78737,41.48533],[-81.78763699999999,41.485361],[-81.78833399999999,41.485392],[-81.789481,41.48553],[-81.79077199999999,41.485561],[-81.792062,41.485515],[-81.792801,41.485472],[-81.79459299999999,41.485394],[-81.79556699999999,41.485361],[-81.795537,41.48724500000001],[-81.795424,41.491669],[-81.796919,41.491776],[-81.79447100000002,41.492947],[-81.794429,41.496151999999995]]]},"properties":{"GEO_ID":"1400000US39035160500","STATE":"39","COUNTY":"035","TRACT":"160500","NAME":"1605","LSAD":"Tract","CENSUSAREA":"0.459000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.816773,41.479904999999995],[-81.816642,41.485402],[-81.813741,41.485324999999996],[-81.812918,41.485310999999996],[-81.81188900000001,41.485268],[-81.811515,41.485254000000005],[-81.811717,41.477424],[-81.812283,41.477469],[-81.813964,41.477515],[-81.81679,41.477534999999996],[-81.816847,41.477537],[-81.81682599999999,41.478361],[-81.816773,41.479904999999995]]]},"properties":{"GEO_ID":"1400000US39035161000","STATE":"39","COUNTY":"035","TRACT":"161000","NAME":"1610","LSAD":"Tract","CENSUSAREA":"0.144000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.779049,41.473895],[-81.779049,41.472068],[-81.77950899999999,41.471087000000004],[-81.780673,41.470262999999996],[-81.78141099999999,41.469684],[-81.783059,41.470486],[-81.783408,41.470486],[-81.788561,41.470451],[-81.788477,41.473988],[-81.78843599999999,41.477073],[-81.78763699999999,41.477058],[-81.787494,41.48114],[-81.78737,41.48533],[-81.782923,41.484935],[-81.781632,41.484797],[-81.781652,41.480743],[-81.781677,41.477002],[-81.77905,41.476966],[-81.779049,41.473895]]]},"properties":{"GEO_ID":"1400000US39035161500","STATE":"39","COUNTY":"035","TRACT":"161500","NAME":"1615","LSAD":"Tract","CENSUSAREA":"0.391000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.77507399999999,41.48419],[-81.773995,41.484096],[-81.77256299999999,41.483971],[-81.768751,41.483616999999995],[-81.768772,41.479593],[-81.768804,41.476904999999995],[-81.775092,41.47693400000001],[-81.775072,41.480174],[-81.77507399999999,41.48419]]]},"properties":{"GEO_ID":"1400000US39035161700","STATE":"39","COUNTY":"035","TRACT":"161700","NAME":"1617","LSAD":"Tract","CENSUSAREA":"0.158000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.584671,41.399421],[-81.584623,41.402155],[-81.57521799999999,41.402167],[-81.56762100000002,41.402183],[-81.56568999999999,41.402183],[-81.557329,41.402181999999996],[-81.55603699999999,41.402181999999996],[-81.556011,41.394903],[-81.56562199999999,41.394912],[-81.566203,41.395467],[-81.575092,41.395433],[-81.575108,41.395973999999995],[-81.584571,41.39599],[-81.584699,41.398351999999996],[-81.584667,41.399105999999996],[-81.584671,41.399421]]]},"properties":{"GEO_ID":"1400000US39035171205","STATE":"39","COUNTY":"035","TRACT":"171205","NAME":"1712.05","LSAD":"Tract","CENSUSAREA":"0.691000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.43235,41.527229999999996],[-81.43233599999999,41.52012],[-81.43866899999999,41.520097],[-81.442137,41.520084],[-81.44483699999999,41.520089999999996],[-81.44445000000002,41.523689],[-81.444681,41.525148],[-81.447003,41.530417],[-81.44814,41.533152],[-81.438788,41.533010999999995],[-81.43207199999999,41.532998],[-81.43235,41.527229999999996]]]},"properties":{"GEO_ID":"1400000US39035172103","STATE":"39","COUNTY":"035","TRACT":"172103","NAME":"1721.03","LSAD":"Tract","CENSUSAREA":"0.622000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.791176,41.350746],[-81.79820199999999,41.35073],[-81.800904,41.350746],[-81.801326,41.351679999999995],[-81.801262,41.354658],[-81.79946799999999,41.357667],[-81.798054,41.359378],[-81.79619699999999,41.359156],[-81.795965,41.36188],[-81.795839,41.362387000000005],[-81.795796,41.36367],[-81.793729,41.36345],[-81.78492,41.363755],[-81.784987,41.358205999999996],[-81.785057,41.350697],[-81.791176,41.350746]]]},"properties":{"GEO_ID":"1400000US39035173105","STATE":"39","COUNTY":"035","TRACT":"173105","NAME":"1731.05","LSAD":"Tract","CENSUSAREA":"0.645000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.922873,41.430133999999995],[-81.92292499999999,41.429103999999995],[-81.92331399999999,41.417721],[-81.928315,41.418593],[-81.928473,41.418935999999995],[-81.931784,41.418896],[-81.932101,41.418777],[-81.93794799999999,41.41892300000001],[-81.937828,41.423871999999996],[-81.941031,41.423919],[-81.94090899999999,41.42633300000001],[-81.939027,41.426533],[-81.935968,41.428869],[-81.93292799999999,41.428968999999995],[-81.932734,41.430648999999995],[-81.932598,41.43409],[-81.92276,41.433946],[-81.922873,41.430133999999995]]]},"properties":{"GEO_ID":"1400000US39035174104","STATE":"39","COUNTY":"035","TRACT":"174104","NAME":"1741.04","LSAD":"Tract","CENSUSAREA":"0.751000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.943579,41.399153999999996],[-81.943364,41.407182],[-81.939195,41.40882],[-81.93902,41.408902999999995],[-81.93410800000001,41.410827999999995],[-81.93222399999999,41.411553999999995],[-81.92885,41.412838],[-81.92333099999999,41.415879],[-81.92349399999999,41.411553999999995],[-81.92077599999999,41.410906],[-81.920979,41.405296],[-81.92116299999999,41.399609999999996],[-81.930663,41.399611],[-81.930764,41.396389],[-81.931159,41.392243],[-81.934263,41.392374],[-81.94036,41.392348],[-81.943287,41.392097],[-81.94412799999999,41.392075],[-81.944047,41.396080999999995],[-81.943928,41.396958999999995],[-81.943596,41.398409],[-81.943579,41.399153999999996]]]},"properties":{"GEO_ID":"1400000US39035174204","STATE":"39","COUNTY":"035","TRACT":"174204","NAME":"1742.04","LSAD":"Tract","CENSUSAREA":"1.275000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.75695,41.325753],[-81.757357,41.329473],[-81.75812499999999,41.336037999999995],[-81.759299,41.346668],[-81.759726,41.350739],[-81.753963,41.350381999999996],[-81.744553,41.350851999999996],[-81.73590399999999,41.350839],[-81.735951,41.346665],[-81.735951,41.345585],[-81.73602400000001,41.33603],[-81.736023,41.334894999999996],[-81.736053,41.333839],[-81.73611600000001,41.325891],[-81.736133,41.324295],[-81.736164,41.321616999999996],[-81.736164,41.321404],[-81.73576800000001,41.316708999999996],[-81.734725,41.313694999999996],[-81.73738,41.313694999999996],[-81.73908999999999,41.313738],[-81.743809,41.312692999999996],[-81.747264,41.312733],[-81.755479,41.312794],[-81.75634,41.320285],[-81.75695,41.325753]]]},"properties":{"GEO_ID":"1400000US39035175104","STATE":"39","COUNTY":"035","TRACT":"175104","NAME":"1751.04","LSAD":"Tract","CENSUSAREA":"2.933000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.76909599999999,41.39552700000001],[-81.770066,41.39552700000001],[-81.77009199999999,41.395309],[-81.77009199999999,41.394873],[-81.77490399999999,41.394892],[-81.77829,41.394912],[-81.784426,41.39494],[-81.784398,41.396642],[-81.784294,41.40141],[-81.78417999999999,41.405134],[-81.784044,41.410965],[-81.783137,41.418434],[-81.78098399999999,41.41845],[-81.769655,41.418406000000004],[-81.76872499999999,41.418406000000004],[-81.757808,41.418495],[-81.755138,41.418498],[-81.75430899999999,41.417398],[-81.75466899999999,41.41406],[-81.75353299999999,41.411434],[-81.754987,41.40889],[-81.75705599999999,41.407792],[-81.756964,41.404938],[-81.75790099999999,41.404936],[-81.76898299999999,41.405035],[-81.76905099999999,41.399381999999996],[-81.76906799999999,41.399066999999995],[-81.76909599999999,41.39552700000001]]]},"properties":{"GEO_ID":"1400000US39035177101","STATE":"39","COUNTY":"035","TRACT":"177101","NAME":"1771.01","LSAD":"Tract","CENSUSAREA":"1.930000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.685194,41.405313],[-81.685125,41.402494999999995],[-81.685076,41.399134],[-81.685056,41.39828],[-81.68497099999999,41.392005999999995],[-81.68601,41.391998],[-81.69362199999999,41.391842],[-81.69759900000001,41.391751],[-81.698706,41.390769999999996],[-81.70028599999999,41.39273],[-81.69909,41.394493],[-81.700092,41.396404],[-81.702023,41.397754],[-81.700171,41.401818],[-81.698217,41.402592000000006],[-81.698956,41.405052],[-81.690859,41.405248],[-81.685194,41.405313]]]},"properties":{"GEO_ID":"1400000US39035177302","STATE":"39","COUNTY":"035","TRACT":"177302","NAME":"1773.02","LSAD":"Tract","CENSUSAREA":"0.720000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.743898,41.38453],[-81.74462299999999,41.384539],[-81.74446499999999,41.387218],[-81.74475199999999,41.392282],[-81.74393599999999,41.392278],[-81.743935,41.393150999999996],[-81.743926,41.394389],[-81.74401499999999,41.394757999999996],[-81.738833,41.394737],[-81.73782,41.395517],[-81.735952,41.395512],[-81.73456499999999,41.395514999999996],[-81.73461999999999,41.39369],[-81.734619,41.392663],[-81.734619,41.391373],[-81.734619,41.389579],[-81.73464899999999,41.387218999999995],[-81.734674,41.384524000000006],[-81.743898,41.38453]]]},"properties":{"GEO_ID":"1400000US39035177404","STATE":"39","COUNTY":"035","TRACT":"177404","NAME":"1774.04","LSAD":"Tract","CENSUSAREA":"0.364000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.709957,41.363792],[-81.709135,41.363565],[-81.70562699999999,41.362105],[-81.70406,41.361594],[-81.696575,41.36145],[-81.69186599999999,41.361471],[-81.689223,41.361492],[-81.68459,41.3615],[-81.684575,41.355292],[-81.684585,41.350966],[-81.70232000000001,41.350913999999996],[-81.70367499999999,41.350910999999996],[-81.705055,41.350925],[-81.722021,41.350901],[-81.72038900000001,41.353016],[-81.719906,41.354699],[-81.717247,41.363977],[-81.711382,41.363955999999995],[-81.709957,41.363792]]]},"properties":{"GEO_ID":"1400000US39035177505","STATE":"39","COUNTY":"035","TRACT":"177505","NAME":"1775.05","LSAD":"Tract","CENSUSAREA":"1.417000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.747074,41.363883],[-81.74573199999999,41.363887999999996],[-81.74395299999999,41.363887999999996],[-81.734205,41.36391],[-81.73365799999999,41.361629],[-81.735886,41.357822999999996],[-81.734839,41.355061],[-81.73524599999999,41.352790999999996],[-81.735739,41.351394],[-81.73590399999999,41.350839],[-81.744553,41.350851999999996],[-81.753963,41.350381999999996],[-81.759726,41.350739],[-81.75975299999999,41.354003999999996],[-81.75975299999999,41.356611],[-81.75977999999999,41.357309],[-81.75977999999999,41.358582],[-81.759779,41.359547],[-81.75975299999999,41.361087000000005],[-81.75975299999999,41.363879],[-81.747074,41.363883]]]},"properties":{"GEO_ID":"1400000US39035177607","STATE":"39","COUNTY":"035","TRACT":"177607","NAME":"1776.07","LSAD":"Tract","CENSUSAREA":"1.170000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.586279,39.023613],[-83.55678999999999,39.028673],[-83.51548,39.035523],[-83.502043,39.037771],[-83.49832099999999,39.038213],[-83.484371,39.040377],[-83.483577,39.040499],[-83.476261,39.041622],[-83.474897,39.041785],[-83.44338599999999,39.04648900000001],[-83.441754,39.046769],[-83.440698,39.045609999999996],[-83.443485,39.044627000000006],[-83.441402,39.042636],[-83.44368999999999,39.040600000000005],[-83.44202299999999,39.037361],[-83.439126,39.034797999999995],[-83.43509499999999,39.034607],[-83.436239,39.029894],[-83.434861,39.029277],[-83.43144,39.024932],[-83.432653,39.023762],[-83.434968,39.023646],[-83.438057,39.020379],[-83.436532,39.018159],[-83.432046,39.01546],[-83.427442,39.013767],[-83.42386499999999,39.009443],[-83.425214,39.007383999999995],[-83.425332,39.004456],[-83.421521,39.001709999999996],[-83.421469,38.999559],[-83.41988599999999,38.995487],[-83.421939,38.989722],[-83.424753,38.986703000000006],[-83.425691,38.984598],[-83.42847599999999,38.985216],[-83.430205,38.990615],[-83.431935,38.99201],[-83.43395699999999,38.991392999999995],[-83.43424999999999,38.990386],[-83.43257899999999,38.987206],[-83.43342899999999,38.986154],[-83.435833,38.985467],[-83.437416,38.98581],[-83.441197,38.984415],[-83.44108,38.983408],[-83.43864599999999,38.982287],[-83.433488,38.982493],[-83.430674,38.981829999999995],[-83.429943,38.980091],[-83.432518,38.976934],[-83.427992,38.973631],[-83.42334799999999,38.972061000000004],[-83.423729,38.97062],[-83.42817699999999,38.966577],[-83.432226,38.965016],[-83.43882599999999,38.965202999999995],[-83.439904,38.963710999999996],[-83.44040199999999,38.962134],[-83.4426,38.962704],[-83.450043,38.962016999999996],[-83.451274,38.961422],[-83.453851,38.958836999999995],[-83.45642800000002,38.953782],[-83.45795100000001,38.951837],[-83.45777500000001,38.950303999999996],[-83.45472699999999,38.948634999999996],[-83.45012799999999,38.949116],[-83.446817,38.948682],[-83.44702099999999,38.947195],[-83.448691,38.945752999999996],[-83.451914,38.944472],[-83.458417,38.94399],[-83.462459,38.944447],[-83.465036,38.942433],[-83.468373,38.938061999999995],[-83.46851900000001,38.936873],[-83.468079,38.936205],[-83.468054,38.936063],[-83.47218,38.934765],[-83.482097,38.933296999999996],[-83.487466,38.932387],[-83.495209,38.929308999999996],[-83.505771,38.927895],[-83.511791,38.926035999999996],[-83.51370399999999,38.92606],[-83.52579399999999,38.928016],[-83.546038,38.931322],[-83.54939399999999,38.931627999999996],[-83.561903,38.932058999999995],[-83.571792,38.932401],[-83.582056,38.932749],[-83.585613,38.932871999999996],[-83.59641500000001,38.933246],[-83.604931,38.933532],[-83.642667,38.934812],[-83.65396799999999,38.935198],[-83.66343400000001,38.935604],[-83.664716,38.935911],[-83.666868,38.936921],[-83.671093,38.940542],[-83.67501399999999,38.943951999999996],[-83.678376,38.946646],[-83.679628,38.947441999999995],[-83.679427,38.949675],[-83.677647,38.969609999999996],[-83.675159,38.999217],[-83.674824,39.000522],[-83.673018,39.02043],[-83.658964,39.020033999999995],[-83.611592,39.01889],[-83.596947,39.021707],[-83.586279,39.023613]]]},"properties":{"GEO_ID":"1400000US39001770200","STATE":"39","COUNTY":"001","TRACT":"770200","NAME":"7702","LSAD":"Tract","CENSUSAREA":"85.978000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.880315,40.889094],[-83.880307,40.884547],[-83.880301,40.881537],[-83.880284,40.877936000000005],[-83.880259,40.864107],[-83.897019,40.863130999999996],[-83.89961,40.863233],[-83.918757,40.862893],[-83.918848,40.870964],[-83.91887,40.872887],[-83.919113,40.892613999999995],[-83.919198,40.899277],[-83.91928,40.905401],[-83.91868,40.906245],[-83.918652,40.920286999999995],[-83.880423,40.920429],[-83.880408,40.907751999999995],[-83.88040199999999,40.905907],[-83.880395,40.901953999999996],[-83.880387,40.899663],[-83.880366,40.895745999999995],[-83.880336,40.892421999999996],[-83.880315,40.889094]]]},"properties":{"GEO_ID":"1400000US39003010100","STATE":"39","COUNTY":"003","TRACT":"010100","NAME":"101","LSAD":"Tract","CENSUSAREA":"7.865000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.08852499999999,40.802997999999995],[-84.088223,40.803017],[-84.070514,40.803594],[-84.070503,40.789079],[-84.070583,40.774549],[-84.070589,40.77091],[-84.07472399999999,40.767142],[-84.075533,40.764682],[-84.07598,40.759344],[-84.07812799999999,40.756385],[-84.07994599999999,40.755500000000005],[-84.08259799999999,40.754436999999996],[-84.08852499999999,40.753507000000006],[-84.08924999999999,40.753402],[-84.094248,40.752697],[-84.094313,40.75947],[-84.094315,40.759481],[-84.09981499999999,40.759361],[-84.096069,40.773989],[-84.096127,40.773990999999995],[-84.09635399999999,40.773951],[-84.096409,40.773914000000005],[-84.096841,40.77236],[-84.097093,40.771781999999995],[-84.097422,40.771226],[-84.098209,40.770272999999996],[-84.098925,40.76969],[-84.099572,40.769265],[-84.100011,40.769121999999996],[-84.100096,40.769110999999995],[-84.104147,40.76907],[-84.10861,40.769068999999995],[-84.10869,40.769068999999995],[-84.10871,40.770137],[-84.108774,40.784642],[-84.108855,40.788274],[-84.108856,40.796018],[-84.108847,40.797616],[-84.10549,40.799699],[-84.103341,40.802848999999995],[-84.08852499999999,40.802997999999995]]]},"properties":{"GEO_ID":"1400000US39003011200","STATE":"39","COUNTY":"003","TRACT":"011200","NAME":"112","LSAD":"Tract","CENSUSAREA":"5.697000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.13466799999999,40.657548],[-84.141272,40.657408],[-84.144712,40.657441],[-84.145926,40.65743],[-84.14612,40.657422],[-84.15087799999999,40.657312],[-84.150908,40.664581999999996],[-84.150927,40.667445],[-84.15109199999999,40.679793],[-84.151152,40.686447],[-84.165506,40.686356],[-84.16551899999999,40.687107],[-84.16084599999999,40.689868],[-84.152534,40.69484500000001],[-84.151325,40.695571],[-84.151465,40.705762],[-84.14578499999999,40.706129],[-84.139909,40.708644],[-84.138443,40.708470999999996],[-84.127667,40.708663],[-84.122811,40.708600000000004],[-84.1185,40.708548],[-84.11825400000001,40.708577999999996],[-84.116612,40.708546999999996],[-84.11306599999999,40.708504],[-84.108285,40.708525],[-84.10822499999999,40.70222],[-84.108218,40.698836],[-84.10819699999999,40.695077],[-84.107961,40.665734],[-84.107908,40.657938],[-84.13122299999999,40.657644999999995],[-84.13146499999999,40.657644],[-84.13405399999999,40.657533],[-84.13466799999999,40.657548]]]},"properties":{"GEO_ID":"1400000US39003011900","STATE":"39","COUNTY":"003","TRACT":"011900","NAME":"119","LSAD":"Tract","CENSUSAREA":"8.067000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.089483,40.735012999999995],[-84.08949299999999,40.736728],[-84.089766,40.736943],[-84.090971,40.737705999999996],[-84.094021,40.739553],[-84.094596,40.739898],[-84.09518,40.740117999999995],[-84.09242600000002,40.741354],[-84.093492,40.745481],[-84.08929499999999,40.745759],[-84.08594599999999,40.74585],[-84.079742,40.746238999999996],[-84.075653,40.74653],[-84.07565,40.746383],[-84.075626,40.745221],[-84.07553399999999,40.741234999999996],[-84.07559499999999,40.738032],[-84.075502,40.733245],[-84.07556199999999,40.730610999999996],[-84.078305,40.730579],[-84.078963,40.730588999999995],[-84.079132,40.730582],[-84.079809,40.730577],[-84.07989099999999,40.730576],[-84.086094,40.730547],[-84.089483,40.735012999999995]]]},"properties":{"GEO_ID":"1400000US39003012600","STATE":"39","COUNTY":"003","TRACT":"012600","NAME":"126","LSAD":"Tract","CENSUSAREA":"0.801000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.13403699999999,40.730429],[-84.137118,40.73044],[-84.13713899999999,40.731584999999995],[-84.13718700000001,40.73381],[-84.137169,40.734916999999996],[-84.1372,40.736021],[-84.137211,40.737136],[-84.137259,40.739363],[-84.137243,40.74012],[-84.12927499999999,40.740079],[-84.127661,40.740074],[-84.124524,40.74007700000001],[-84.12450299999999,40.737248],[-84.1245,40.733922],[-84.127546,40.733878],[-84.127533,40.730382999999996],[-84.13403699999999,40.730429]]]},"properties":{"GEO_ID":"1400000US39003013200","STATE":"39","COUNTY":"003","TRACT":"013200","NAME":"132","LSAD":"Tract","CENSUSAREA":"0.403000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.336919,40.859133],[-84.333975,40.859198],[-84.329623,40.859294999999996],[-84.314011,40.859414],[-84.29550499999999,40.859634],[-84.290061,40.859694],[-84.286828,40.859637],[-84.26816099999999,40.859696],[-84.25273899999999,40.859755],[-84.224863,40.860112],[-84.22484999999999,40.859307],[-84.224167,40.816578],[-84.22407,40.801247],[-84.22400700000001,40.79579100000001],[-84.26938299999999,40.816368],[-84.281792,40.821984],[-84.322693,40.840523],[-84.32355199999999,40.841201],[-84.323757,40.841657999999995],[-84.323893,40.842273999999996],[-84.323855,40.844857],[-84.32383,40.846562999999996],[-84.327513,40.8465],[-84.328662,40.84607],[-84.32944499999999,40.845805],[-84.33149200000001,40.845068],[-84.340381,40.845043],[-84.340443,40.847124],[-84.340415,40.849137999999996],[-84.340531,40.859099],[-84.336919,40.859133]]]},"properties":{"GEO_ID":"1400000US39003014000","STATE":"39","COUNTY":"003","TRACT":"014000","NAME":"140","LSAD":"Tract","CENSUSAREA":"15.521000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.307865,40.858357999999996],[-82.307876,40.857546],[-82.309773,40.857549],[-82.31015800000002,40.858207],[-82.310227,40.858356],[-82.310369,40.858672],[-82.31062899999999,40.85917500000001],[-82.315646,40.859255],[-82.319182,40.859307],[-82.31917899999999,40.862398],[-82.319142,40.864191999999996],[-82.319143,40.865331],[-82.320008,40.865381],[-82.31779,40.868719999999996],[-82.31790699999999,40.869003],[-82.31789599999999,40.869329],[-82.31796,40.869996],[-82.318156,40.871136],[-82.312933,40.871085],[-82.307661,40.871023],[-82.307676,40.869626],[-82.307724,40.868057],[-82.302995,40.866931],[-82.305464,40.8663],[-82.305497,40.863727],[-82.30550099999999,40.862327],[-82.30555199999999,40.858314],[-82.307865,40.858357999999996]]]},"properties":{"GEO_ID":"1400000US39005970500","STATE":"39","COUNTY":"005","TRACT":"970500","NAME":"9705","LSAD":"Tract","CENSUSAREA":"0.570000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.5802274271058,41.958212043656296],[-80.5794392081088,41.9584988501479],[-80.5767349732993,41.9594828306169],[-80.57659142587319,41.959535062717094],[-80.5755001907273,41.95993212663579],[-80.5754903987907,41.9599356895936],[-80.5738314930219,41.9605393098378],[-80.5720275103555,41.961195718705795],[-80.56683760776919,41.963084150421295],[-80.5633266938567,41.9643616543961],[-80.5606711928494,41.965327902266694],[-80.5558983282977,41.9670645878101],[-80.55383599999999,41.967815],[-80.5529819514318,41.9680559434047],[-80.5492677928731,41.969103778436796],[-80.5489023999166,41.9692068627651],[-80.54819499999999,41.96604],[-80.54537599999999,41.965205999999995],[-80.541023,41.964382],[-80.542372,41.962689],[-80.542373,41.958594],[-80.54157699999999,41.956146000000004],[-80.543245,41.953317999999996],[-80.547034,41.952327],[-80.546933,41.951138],[-80.551507,41.950579999999995],[-80.553404,41.950545999999996],[-80.555647,41.950089999999996],[-80.559784,41.949521999999995],[-80.563834,41.949016],[-80.563836,41.948895],[-80.563816,41.945563],[-80.57255300000001,41.945555],[-80.57521,41.944337999999995],[-80.57789,41.949974],[-80.581498,41.956544],[-80.579708,41.95709600000001],[-80.5802274271058,41.958212043656296]]]},"properties":{"GEO_ID":"1400000US39007000102","STATE":"39","COUNTY":"007","TRACT":"000102","NAME":"1.02","LSAD":"Tract","CENSUSAREA":"2.053000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.796824,41.863352],[-80.80039,41.861698000000004],[-80.808233,41.858312999999995],[-80.80859199999999,41.858171],[-80.809658,41.857782],[-80.810946,41.85731],[-80.81438399999999,41.856003],[-80.822018,41.85172],[-80.824907,41.850049],[-80.834051,41.845651],[-80.83751099999999,41.844156999999996],[-80.837508,41.855481],[-80.827069,41.860127999999996],[-80.809648,41.867903999999996],[-80.79931100000002,41.872462999999996],[-80.798754,41.872703],[-80.79654599999999,41.873748],[-80.79556699999999,41.874297],[-80.79409,41.875184],[-80.79339499999999,41.875602],[-80.791473,41.87694700000001],[-80.791311,41.877094],[-80.789796,41.878139999999995],[-80.78658999999999,41.875492],[-80.78384899999999,41.872665999999995],[-80.780082,41.87374],[-80.779448,41.871998999999995],[-80.78661699999999,41.868736],[-80.789309,41.867042],[-80.790061,41.866626],[-80.793645,41.865055],[-80.796824,41.863352]]]},"properties":{"GEO_ID":"1400000US39007000701","STATE":"39","COUNTY":"007","TRACT":"000701","NAME":"7.01","LSAD":"Tract","CENSUSAREA":"1.978000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.71322099999999,41.56297],[-80.713252,41.535725000000006],[-80.713163,41.499762],[-80.71346899999999,41.499765],[-80.79102,41.50041600000001],[-80.798581,41.500637999999995],[-80.810394,41.500609],[-80.884725,41.501201],[-80.89649000000001,41.50089],[-80.904237,41.500958999999995],[-80.904405,41.50096],[-81.003125,41.501684999999995],[-81.003047,41.535207],[-81.002802,41.564339],[-81.002836,41.571342],[-81.00292,41.607146],[-80.993077,41.605742],[-80.95684100000001,41.605725],[-80.95332499999999,41.605367],[-80.952286,41.605731999999996],[-80.904389,41.605678],[-80.895703,41.605405],[-80.865054,41.605401],[-80.82593,41.605596999999996],[-80.818653,41.605637],[-80.813321,41.605683],[-80.809789,41.605684],[-80.80640199999999,41.605644999999996],[-80.796162,41.605531],[-80.729738,41.604805],[-80.715257,41.606812],[-80.713561,41.606865000000006],[-80.71325399999999,41.606864],[-80.71321999999999,41.571258],[-80.71322099999999,41.56297]]]},"properties":{"GEO_ID":"1400000US39007001400","STATE":"39","COUNTY":"007","TRACT":"001400","NAME":"14","LSAD":"Tract","CENSUSAREA":"108.406000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.09504199999999,39.329588],[-82.091746,39.32938],[-82.08868600000001,39.329205],[-82.09176500000001,39.321428],[-82.09564,39.318342],[-82.098072,39.317814],[-82.105085,39.320566],[-82.104575,39.322181],[-82.104158,39.324312],[-82.10301299999999,39.32649],[-82.102818,39.326681],[-82.102625,39.326701],[-82.101401,39.326631],[-82.101314,39.327518999999995],[-82.099933,39.327456],[-82.098829,39.327380999999995],[-82.09725399999999,39.327355],[-82.096868,39.327363],[-82.095266,39.327297],[-82.09504199999999,39.329588]]]},"properties":{"GEO_ID":"1400000US39009973901","STATE":"39","COUNTY":"009","TRACT":"973901","NAME":"9739.01","LSAD":"Tract","CENSUSAREA":"0.451000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.091746,39.32938],[-82.09504199999999,39.329588],[-82.095266,39.327297],[-82.096868,39.327363],[-82.09725399999999,39.327355],[-82.098829,39.327380999999995],[-82.099933,39.327456],[-82.101314,39.327518999999995],[-82.101173,39.329187999999995],[-82.10103,39.330586],[-82.10321499999999,39.331209],[-82.103076,39.332468],[-82.10230399999999,39.332335],[-82.098125,39.33208200000001],[-82.09709,39.333583],[-82.094332,39.333429],[-82.092036,39.333287999999996],[-82.08993799999999,39.333163],[-82.08825499999999,39.335198],[-82.084718,39.335055],[-82.08454499999999,39.337449],[-82.08395999999999,39.337414],[-82.082296,39.337393],[-82.081909,39.337382999999996],[-82.08167399999999,39.337399],[-82.082201,39.333331],[-82.082258,39.333019],[-82.086208,39.332268],[-82.08643099999999,39.332164999999996],[-82.087659,39.331188999999995],[-82.08778199999999,39.33097],[-82.087858,39.330836],[-82.088117,39.330284],[-82.088576,39.329459],[-82.08868600000001,39.329205],[-82.091746,39.32938]]]},"properties":{"GEO_ID":"1400000US39009973902","STATE":"39","COUNTY":"009","TRACT":"973902","NAME":"9739.02","LSAD":"Tract","CENSUSAREA":"0.315000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.183769,40.591733999999995],[-84.17940999999999,40.591792999999996],[-84.18346199999999,40.584624],[-84.188009,40.576563],[-84.191463,40.570516999999995],[-84.196113,40.570622],[-84.196266,40.567941],[-84.19632399999999,40.566883999999995],[-84.196562,40.562771999999995],[-84.196647,40.561744999999995],[-84.198566,40.555842],[-84.198622,40.55564],[-84.198703,40.555383],[-84.198765,40.555187],[-84.221634,40.554941],[-84.22165299999999,40.55732],[-84.221621,40.561763],[-84.22161899999999,40.56201300000001],[-84.22165199999999,40.564899],[-84.22173,40.577459999999995],[-84.22173099999999,40.577960000000004],[-84.221717,40.579031],[-84.22167999999999,40.579944],[-84.22182,40.584005],[-84.221845,40.584658],[-84.22204599999999,40.591328],[-84.20816599999999,40.591491999999995],[-84.202883,40.591552],[-84.19943099999999,40.59159],[-84.19711099999999,40.591601999999995],[-84.19371199999999,40.591625],[-84.183769,40.591733999999995]]]},"properties":{"GEO_ID":"1400000US39011040400","STATE":"39","COUNTY":"011","TRACT":"040400","NAME":"404","LSAD":"Tract","CENSUSAREA":"4.160000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.42898799999999,40.509887],[-84.43351799999999,40.509554],[-84.43450899999999,40.508856],[-84.434524,40.505826],[-84.455101,40.505773],[-84.455141,40.516338],[-84.455174,40.519856999999995],[-84.455198,40.522363999999996],[-84.45561699999999,40.553249],[-84.442194,40.553171999999996],[-84.439585,40.553377999999995],[-84.439576,40.552261],[-84.424393,40.545882],[-84.41591199999999,40.543223],[-84.415774,40.543231999999996],[-84.415714,40.54325],[-84.41571499999999,40.543137],[-84.415703,40.542953000000004],[-84.415697,40.542379],[-84.41225000000001,40.541046],[-84.410071,40.53998],[-84.405521,40.538454],[-84.401232,40.538250999999995],[-84.399609,40.538256],[-84.391273,40.538277],[-84.39164099999999,40.537124999999996],[-84.391678,40.531624],[-84.39166999999999,40.525833],[-84.39164099999999,40.509735],[-84.42807599999999,40.509583],[-84.42898799999999,40.509887]]]},"properties":{"GEO_ID":"1400000US39011041201","STATE":"39","COUNTY":"011","TRACT":"041201","NAME":"412.01","LSAD":"Tract","CENSUSAREA":"8.567000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.73950614419869,39.9770927410039],[-80.74012599999999,39.970793],[-80.743166,39.969113],[-80.74627,39.966232999999995],[-80.7530290001941,39.9626708963444],[-80.755135,39.961560999999996],[-80.758527,39.959241],[-80.7594117938739,39.958195782484395],[-80.761584,39.961165],[-80.765507,39.963311],[-80.769694,39.963280999999995],[-80.771706,39.961134],[-80.771455,39.959385],[-80.769931,39.958743999999996],[-80.77166199999999,39.956441],[-80.77415599999999,39.954629],[-80.77829899999999,39.954678],[-80.780059,39.955305],[-80.774846,39.957003],[-80.77643599999999,39.958067],[-80.77796599999999,39.957775],[-80.780428,39.959377],[-80.78202600000002,39.962294],[-80.78228899999999,39.966280999999995],[-80.78436599999999,39.973811999999995],[-80.78549,39.975151],[-80.785483,39.977384],[-80.787584,39.978466],[-80.787275,39.97941],[-80.786901,39.979619],[-80.75936500000002,39.978538],[-80.756141,39.97830700000001],[-80.752927,39.978176999999995],[-80.751267,39.978100000000005],[-80.746059,39.97788],[-80.74278699999999,39.97781],[-80.74113899999999,39.977748999999996],[-80.74027099999999,39.977782],[-80.73969199999999,39.977754999999995],[-80.73944338887469,39.977730538193],[-80.73950614419869,39.9770927410039]]]},"properties":{"GEO_ID":"1400000US39013011300","STATE":"39","COUNTY":"013","TRACT":"011300","NAME":"113","LSAD":"Tract","CENSUSAREA":"2.627000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.73106410556701,40.0498706424742],[-80.730904,40.049172],[-80.730904,40.04667200000001],[-80.731504,40.037472],[-80.73330399999999,40.033272],[-80.7363,40.029928999999996],[-80.737389,40.027592999999996],[-80.737341,40.022968999999996],[-80.7375536443048,40.021957106411904],[-80.737805,40.020761],[-80.7383154158568,40.019716006589],[-80.739903,40.020482],[-80.740731,40.020613999999995],[-80.74350799999999,40.021952],[-80.74466799999999,40.022011],[-80.746685,40.023247999999995],[-80.74685699999999,40.023488],[-80.749138,40.02513],[-80.749442,40.025940999999996],[-80.745181,40.024654999999996],[-80.743157,40.029643],[-80.739662,40.032474],[-80.736947,40.03924],[-80.73544,40.038722],[-80.73525099999999,40.038653],[-80.73500899999999,40.038627999999996],[-80.734892,40.038627999999996],[-80.73477299999999,40.038644999999995],[-80.734545,40.039424],[-80.734284,40.039381999999996],[-80.732722,40.044624999999996],[-80.732647,40.049529],[-80.73106410556701,40.0498706424742]]]},"properties":{"GEO_ID":"1400000US39013011700","STATE":"39","COUNTY":"013","TRACT":"011700","NAME":"117","LSAD":"Tract","CENSUSAREA":"0.499000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.541986,39.358216],[-84.542031,39.357988],[-84.54215099999999,39.357251],[-84.54218999999999,39.35675],[-84.543684,39.356941],[-84.543889,39.353197],[-84.54529099999999,39.353128999999996],[-84.551423,39.353545],[-84.551496,39.352105],[-84.55879499999999,39.352665],[-84.55879399999999,39.352883999999996],[-84.558722,39.353746],[-84.55932399999999,39.353797],[-84.559404,39.354065999999996],[-84.559845,39.354081],[-84.559846,39.354355999999996],[-84.562654,39.354405],[-84.563152,39.352678999999995],[-84.56410199999999,39.352678999999995],[-84.564061,39.35309300000001],[-84.564258,39.353103],[-84.564042,39.355156],[-84.566631,39.355181],[-84.566611,39.355463],[-84.566634,39.357043],[-84.56230599999999,39.359601999999995],[-84.56235199999999,39.362902999999996],[-84.562705,39.364259],[-84.557912,39.364033],[-84.552893,39.363792],[-84.552775,39.365345999999995],[-84.549598,39.36513],[-84.54849899999999,39.365058999999995],[-84.54822999999999,39.365094],[-84.54800399999999,39.365089],[-84.54726099999999,39.364024],[-84.54670899999999,39.363358999999996],[-84.545059,39.361669],[-84.541867,39.35911600000001],[-84.541934,39.358483],[-84.541986,39.358216]]]},"properties":{"GEO_ID":"1400000US39017000100","STATE":"39","COUNTY":"017","TRACT":"000100","NAME":"1","LSAD":"Tract","CENSUSAREA":"0.823000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.58934599999999,39.350756],[-84.591446,39.350856],[-84.592246,39.350856],[-84.59054599999999,39.353856],[-84.58655499999999,39.35621400000001],[-84.578946,39.360456],[-84.57746499999999,39.361934000000005],[-84.575425,39.366115],[-84.57355,39.367872999999996],[-84.57076599999999,39.372333000000005],[-84.56374,39.372265],[-84.564246,39.373636999999995],[-84.557289,39.373348],[-84.557281,39.373478],[-84.55704000000001,39.377707],[-84.555543,39.38225200000001],[-84.555751,39.384725],[-84.555464,39.384509],[-84.555296,39.384143],[-84.552252,39.375703],[-84.55127700000001,39.373081],[-84.549615,39.368397],[-84.549255,39.367508],[-84.54827999999999,39.365522],[-84.54800399999999,39.365089],[-84.54822999999999,39.365094],[-84.54849899999999,39.365058999999995],[-84.549598,39.36513],[-84.552775,39.365345999999995],[-84.552893,39.363792],[-84.557912,39.364033],[-84.562705,39.364259],[-84.56235199999999,39.362902999999996],[-84.563774,39.364469],[-84.564255,39.362922999999995],[-84.568162,39.36289],[-84.56828999999999,39.361011999999995],[-84.569504,39.361022999999996],[-84.569948,39.358421],[-84.573194,39.358605],[-84.573769,39.357405],[-84.575738,39.356623],[-84.57559499999999,39.358793],[-84.576679,39.359359999999995],[-84.57940599999999,39.355837],[-84.57584899999999,39.355629],[-84.576048,39.351637],[-84.580547,39.351744],[-84.580647,39.350347],[-84.58934599999999,39.350756]]]},"properties":{"GEO_ID":"1400000US39017000200","STATE":"39","COUNTY":"017","TRACT":"000200","NAME":"2","LSAD":"Tract","CENSUSAREA":"1.375000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.579188,39.391756],[-84.582625,39.391757],[-84.597284,39.39168],[-84.599676,39.391782],[-84.601817,39.391737],[-84.601809,39.391646],[-84.60363799999999,39.391624],[-84.605691,39.391633],[-84.605909,39.39172],[-84.60612900000001,39.391559],[-84.60868699999999,39.391532999999995],[-84.60877,39.397399],[-84.608829,39.402076],[-84.608893,39.40609],[-84.59895,39.406109],[-84.59584699999999,39.406126],[-84.593699,39.406155],[-84.591842,39.406371],[-84.58713399999999,39.406969],[-84.586739,39.405192],[-84.582236,39.405175],[-84.576555,39.401348],[-84.57699199999999,39.400909999999996],[-84.57450100000001,39.399125999999995],[-84.57397499999999,39.399589999999996],[-84.572923,39.398877999999996],[-84.576409,39.395784],[-84.574967,39.395447],[-84.573039,39.394835],[-84.572741,39.394757],[-84.571474,39.394529999999996],[-84.57176,39.393426999999996],[-84.571782,39.391718],[-84.572451,39.391712999999996],[-84.573077,39.391709],[-84.573143,39.391709999999996],[-84.576352,39.391725],[-84.57673799999999,39.391728],[-84.579188,39.391756]]]},"properties":{"GEO_ID":"1400000US39017001300","STATE":"39","COUNTY":"017","TRACT":"001300","NAME":"13","LSAD":"Tract","CENSUSAREA":"1.733000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.766769,39.508159],[-84.764093,39.50807],[-84.763121,39.508061999999995],[-84.751088,39.507909999999995],[-84.75022100000001,39.507706999999996],[-84.74968299999999,39.507491],[-84.74936699999999,39.507467],[-84.749427,39.504936],[-84.749499,39.500654],[-84.747483,39.500641],[-84.742655,39.500586],[-84.741978,39.500575999999995],[-84.739452,39.500537],[-84.736336,39.500491],[-84.73055300000001,39.500401],[-84.728152,39.497195999999995],[-84.723385,39.497496000000005],[-84.720404,39.496682],[-84.718452,39.497752999999996],[-84.716552,39.496052999999996],[-84.714201,39.496276],[-84.713667,39.496292],[-84.712552,39.495753],[-84.70741799999999,39.492868],[-84.70722599999999,39.492729],[-84.706651,39.491853],[-84.708849,39.491592],[-84.71168999999999,39.488876],[-84.714159,39.488229],[-84.718853,39.486609],[-84.717764,39.48542],[-84.71143599999999,39.47853],[-84.737932,39.478609999999996],[-84.738768,39.474188000000005],[-84.738232,39.471123],[-84.750784,39.476065],[-84.757829,39.478972],[-84.759261,39.479357],[-84.76566299999999,39.479974999999996],[-84.770996,39.480852999999996],[-84.777791,39.483163],[-84.788381,39.485748],[-84.790556,39.486484],[-84.790336,39.497054999999996],[-84.790137,39.508331],[-84.78964599999999,39.508325000000006],[-84.78072300000001,39.508255],[-84.777937,39.508236],[-84.775534,39.508213],[-84.772393,39.508179],[-84.771073,39.508168999999995],[-84.767843,39.508162],[-84.767371,39.508161],[-84.766769,39.508159]]]},"properties":{"GEO_ID":"1400000US39017010103","STATE":"39","COUNTY":"017","TRACT":"010103","NAME":"101.03","LSAD":"Tract","CENSUSAREA":"7.005000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.735387,39.510393],[-84.73472699999999,39.510385],[-84.734572,39.515045],[-84.73217,39.517148],[-84.730758,39.514987],[-84.730632,39.510335999999995],[-84.730672,39.507746999999995],[-84.73068099999999,39.507218],[-84.73078199999999,39.501325],[-84.73055300000001,39.500401],[-84.736336,39.500491],[-84.739452,39.500537],[-84.739404,39.502523000000004],[-84.73929,39.507307999999995],[-84.739273,39.508356],[-84.73924,39.510448],[-84.735387,39.510393]]]},"properties":{"GEO_ID":"1400000US39017010104","STATE":"39","COUNTY":"017","TRACT":"010104","NAME":"101.04","LSAD":"Tract","CENSUSAREA":"0.399000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.795744,39.30565],[-84.81945097647029,39.305153022471096],[-84.819352,39.309453999999995],[-84.8184477995099,39.348640306549896],[-84.81799866091801,39.3681051074838],[-84.817453,39.391753],[-84.8174518798663,39.39180943456459],[-84.761246,39.39131],[-84.739637,39.391188],[-84.70331499999999,39.391151],[-84.70329799999999,39.367286],[-84.70331999999999,39.360396],[-84.70324099999999,39.349267999999995],[-84.70367499999999,39.347879],[-84.703127,39.345212000000004],[-84.703271,39.327600000000004],[-84.70325799999999,39.318548],[-84.70327999999999,39.304748000000004],[-84.706717,39.304657999999996],[-84.72720199999999,39.304746],[-84.746139,39.304769],[-84.746209,39.304767999999996],[-84.74971,39.304925999999995],[-84.761117,39.304970999999995],[-84.76327599999999,39.30491800000001],[-84.795744,39.30565]]]},"properties":{"GEO_ID":"1400000US39017010203","STATE":"39","COUNTY":"017","TRACT":"010203","NAME":"102.03","LSAD":"Tract","CENSUSAREA":"36.779000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.539969,39.334517],[-84.540745,39.325455999999996],[-84.54078,39.325038],[-84.54112099999999,39.320806],[-84.54162699999999,39.31483800000001],[-84.542391,39.306256],[-84.542777,39.306278999999996],[-84.54449699999999,39.306425],[-84.550786,39.307013999999995],[-84.554565,39.307358],[-84.562347,39.308079],[-84.562118,39.310680999999995],[-84.56203,39.311864],[-84.56177699999999,39.314977],[-84.561618,39.317001],[-84.561611,39.317098],[-84.561227,39.322837],[-84.56120200000001,39.326944],[-84.559086,39.331479],[-84.55967199999999,39.335466],[-84.560124,39.337733],[-84.55933700000001,39.337700999999996],[-84.554046,39.337337999999995],[-84.55309799999999,39.337239],[-84.55225899999999,39.337201],[-84.55179500000001,39.337261],[-84.551311,39.337418],[-84.55010899999999,39.337869],[-84.549585,39.337931999999995],[-84.546672,39.337036],[-84.542779,39.33669],[-84.53970699999999,39.337137999999996],[-84.539969,39.334517]]]},"properties":{"GEO_ID":"1400000US39017010903","STATE":"39","COUNTY":"017","TRACT":"010903","NAME":"109.03","LSAD":"Tract","CENSUSAREA":"2.228000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.495953,39.390291],[-84.49252899999999,39.390105],[-84.47761899999999,39.389339],[-84.478115,39.382705],[-84.47813099999999,39.382481],[-84.478634,39.374704],[-84.479948,39.361973],[-84.485556,39.362977],[-84.489813,39.362669],[-84.491519,39.362514],[-84.496633,39.362024],[-84.500998,39.361913],[-84.50339799999999,39.362584000000005],[-84.504001,39.362792999999996],[-84.505155,39.368395],[-84.505594,39.370571],[-84.505866,39.371913],[-84.506507,39.375426],[-84.50674599999999,39.378703],[-84.499658,39.378339],[-84.497165,39.37822200000001],[-84.49649,39.385087999999996],[-84.495953,39.390291]]]},"properties":{"GEO_ID":"1400000US39017011003","STATE":"39","COUNTY":"017","TRACT":"011003","NAME":"110.03","LSAD":"Tract","CENSUSAREA":"2.348000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.478634,39.374704],[-84.459032,39.373871],[-84.455033,39.373704],[-84.45068599999999,39.373504],[-84.443851,39.373157],[-84.440868,39.373021],[-84.434044,39.372693999999996],[-84.424976,39.372299],[-84.42095499999999,39.357682],[-84.423384,39.357673999999996],[-84.43597799999999,39.359721],[-84.438305,39.360092],[-84.440815,39.360495],[-84.44183199999999,39.360642],[-84.44231099999999,39.360699],[-84.46036,39.362680999999995],[-84.460625,39.362687],[-84.460943,39.36262500000001],[-84.47264299999999,39.360969],[-84.47395399999999,39.360866],[-84.479948,39.361973],[-84.478634,39.374704]]]},"properties":{"GEO_ID":"1400000US39017011112","STATE":"39","COUNTY":"017","TRACT":"011112","NAME":"111.12","LSAD":"Tract","CENSUSAREA":"2.642000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.36407600000001,39.383713],[-84.363192,39.391174],[-84.362157,39.395077],[-84.36055499999999,39.398818999999996],[-84.352053,39.413021],[-84.341405,39.412423],[-84.343054,39.397814],[-84.34384999999999,39.390269],[-84.344667,39.382709],[-84.345996,39.371611],[-84.34633099999999,39.368446],[-84.34652,39.366487],[-84.356875,39.367079],[-84.36218099999999,39.368887],[-84.364527,39.369156],[-84.365628,39.369209999999995],[-84.36407600000001,39.383713]]]},"properties":{"GEO_ID":"1400000US39017011118","STATE":"39","COUNTY":"017","TRACT":"011118","NAME":"111.18","LSAD":"Tract","CENSUSAREA":"2.961000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.366177,39.369237],[-84.365628,39.369209999999995],[-84.367457,39.362953],[-84.36970000000002,39.358785999999995],[-84.37310599999999,39.354431],[-84.376136,39.351431],[-84.378462,39.349635],[-84.38582,39.345166],[-84.391611,39.342825],[-84.39151199999999,39.343258],[-84.39135499999999,39.343624],[-84.390565,39.348062],[-84.390956,39.350556999999995],[-84.393908,39.357347],[-84.39997199999999,39.37096],[-84.385043,39.370176],[-84.366177,39.369237]]]},"properties":{"GEO_ID":"1400000US39017011125","STATE":"39","COUNTY":"017","TRACT":"011125","NAME":"111.25","LSAD":"Tract","CENSUSAREA":"2.061000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.404542,39.474657],[-84.40274199999999,39.476363],[-84.396801,39.473580000000005],[-84.393626,39.473839],[-84.393461,39.465004],[-84.393418,39.457829],[-84.394736,39.453349],[-84.395018,39.452531],[-84.397569,39.445167],[-84.397628,39.444997],[-84.402801,39.430696999999995],[-84.435683,39.432213],[-84.437936,39.432412],[-84.441152,39.432612],[-84.441508,39.432634],[-84.441615,39.432566],[-84.46294400000001,39.433557],[-84.464344,39.433657],[-84.452868,39.437318000000005],[-84.447818,39.443405999999996],[-84.44537299999999,39.444494999999996],[-84.443626,39.444897999999995],[-84.440376,39.444725999999996],[-84.43682799999999,39.443843],[-84.435543,39.444357],[-84.430531,39.457156999999995],[-84.42960000000001,39.462458999999996],[-84.42613999999999,39.467673999999995],[-84.425523,39.473228],[-84.42520999999999,39.473231],[-84.422201,39.473169999999996],[-84.421617,39.476727],[-84.416063,39.479811],[-84.414028,39.479681],[-84.41372,39.479613],[-84.409342,39.478057],[-84.404542,39.474657]]]},"properties":{"GEO_ID":"1400000US39017011300","STATE":"39","COUNTY":"017","TRACT":"011300","NAME":"113","LSAD":"Tract","CENSUSAREA":"6.490000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.334741,39.518068],[-84.334741,39.517758],[-84.33479299999999,39.517396999999995],[-84.33503999999999,39.514157999999995],[-84.335133,39.513566999999995],[-84.335426,39.511353],[-84.335534,39.510227],[-84.335948,39.506026999999996],[-84.33623999999999,39.502458],[-84.336539,39.498432],[-84.33675099999999,39.496637],[-84.341447,39.499224],[-84.34209299999999,39.499474],[-84.342804,39.499694999999996],[-84.34270099999999,39.499931],[-84.346086,39.501807],[-84.35103500000001,39.50331],[-84.3512,39.503281],[-84.353113,39.503406999999996],[-84.353391,39.503465999999996],[-84.355217,39.503564],[-84.354621,39.510636999999996],[-84.354438,39.512011],[-84.35401499999999,39.517432],[-84.35312499999999,39.520942999999995],[-84.35159,39.523886999999995],[-84.351181,39.525611999999995],[-84.346651,39.525413],[-84.34388,39.525293],[-84.33424,39.524865999999996],[-84.334741,39.518068]]]},"properties":{"GEO_ID":"1400000US39017012500","STATE":"39","COUNTY":"017","TRACT":"012500","NAME":"125","LSAD":"Tract","CENSUSAREA":"1.678000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.381819,39.512201999999995],[-84.381154,39.512163],[-84.377569,39.511949],[-84.37513799999999,39.5118],[-84.37447200000001,39.511753999999996],[-84.372466,39.511655999999995],[-84.37174300000001,39.511627],[-84.37105,39.511587],[-84.35626599999999,39.510886],[-84.354788,39.510678999999996],[-84.354621,39.510636999999996],[-84.355217,39.503564],[-84.35536599999999,39.503568],[-84.36830499999999,39.504129],[-84.370753,39.504225999999996],[-84.37456,39.504376],[-84.381441,39.504799],[-84.381175,39.507605999999996],[-84.38247,39.507689],[-84.381819,39.512201999999995]]]},"properties":{"GEO_ID":"1400000US39017013300","STATE":"39","COUNTY":"017","TRACT":"013300","NAME":"133","LSAD":"Tract","CENSUSAREA":"0.728000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.390608,39.520143999999995],[-84.386136,39.519824],[-84.385688,39.518913],[-84.388677,39.517246],[-84.390667,39.515436],[-84.39055599999999,39.515412],[-84.390529,39.515406999999996],[-84.388877,39.515207],[-84.389075,39.512639],[-84.390288,39.512654],[-84.39237399999999,39.512761],[-84.397204,39.513034999999995],[-84.397291,39.511586],[-84.40141299999999,39.511769],[-84.402833,39.511832],[-84.403098,39.513413],[-84.40505999999999,39.513521999999995],[-84.40704699999999,39.514567],[-84.40818,39.515159],[-84.403751,39.520596999999995],[-84.39887,39.521606999999996],[-84.396283,39.520573],[-84.390608,39.520143999999995]]]},"properties":{"GEO_ID":"1400000US39017014400","STATE":"39","COUNTY":"017","TRACT":"014400","NAME":"144","LSAD":"Tract","CENSUSAREA":"0.526000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.147348,40.632207],[-81.145577,40.624976],[-81.146453,40.621401999999996],[-81.156703,40.623047],[-81.158152,40.6237],[-81.163956,40.623523999999996],[-81.166488,40.623729],[-81.172624,40.625324],[-81.180902,40.628104],[-81.18755999999999,40.633083],[-81.193646,40.633226],[-81.2042,40.632284999999996],[-81.208738,40.632117],[-81.213656,40.634361999999996],[-81.214557,40.634986999999995],[-81.215306,40.635414],[-81.221114,40.638895999999995],[-81.227474,40.641836],[-81.231735,40.647377],[-81.236577,40.650442],[-81.24125,40.650534],[-81.241224,40.652614],[-81.240561,40.662861],[-81.239673,40.67877],[-81.23851499999999,40.699988],[-81.237725,40.715188999999995],[-81.237723,40.715208],[-81.237721,40.715287],[-81.23722699999999,40.723541999999995],[-81.225106,40.723136],[-81.19909,40.722207999999995],[-81.198599,40.729172],[-81.188245,40.729067],[-81.175883,40.728868999999996],[-81.152389,40.728519999999996],[-81.153565,40.727564],[-81.154842,40.71945300000001],[-81.154899,40.714528],[-81.153786,40.709776],[-81.15317,40.703371],[-81.152238,40.701366],[-81.150262,40.699695],[-81.15015,40.699604],[-81.14902099999999,40.698709],[-81.15033100000001,40.697787],[-81.150432,40.690601],[-81.149709,40.688247],[-81.15162099999999,40.687875],[-81.148234,40.684214],[-81.145634,40.679638],[-81.141995,40.671045],[-81.140311,40.668971],[-81.13708,40.667207000000005],[-81.13248999999999,40.664957],[-81.131405,40.664111],[-81.121145,40.650895],[-81.119317,40.647712],[-81.115703,40.640737],[-81.129108,40.637434999999996],[-81.134142,40.636658],[-81.140191,40.636148999999996],[-81.143886,40.636224999999996],[-81.145462,40.633941],[-81.147348,40.632207]]]},"properties":{"GEO_ID":"1400000US39019720300","STATE":"39","COUNTY":"019","TRACT":"720300","NAME":"7203","LSAD":"Tract","CENSUSAREA":"32.538000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.67905999999999,40.135075],[-83.679003,40.135400000000004],[-83.67891499999999,40.13591900000001],[-83.678444,40.139378],[-83.676073,40.155468],[-83.671874,40.18483],[-83.66591799999999,40.226199],[-83.664745,40.234522999999996],[-83.664309,40.237293],[-83.630254,40.2349],[-83.601367,40.232946],[-83.579426,40.231372],[-83.58435899999999,40.184418],[-83.58531900000001,40.179341],[-83.587555,40.156752999999995],[-83.59052199999999,40.130596],[-83.628408,40.132565],[-83.632291,40.132562],[-83.67704499999999,40.135002],[-83.67905999999999,40.135075]]]},"properties":{"GEO_ID":"1400000US39021010100","STATE":"39","COUNTY":"021","TRACT":"010100","NAME":"101","LSAD":"Tract","CENSUSAREA":"32.397000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.591456,40.014154],[-83.6041,40.014779999999995],[-83.60220699999999,40.030743],[-83.599083,40.057184],[-83.596678,40.078401],[-83.59537,40.089555],[-83.59325799999999,40.089833999999996],[-83.588365,40.091961999999995],[-83.584199,40.094971],[-83.57970399999999,40.09692],[-83.570195,40.10028],[-83.54530299999999,40.100536999999996],[-83.54336599999999,40.101037999999996],[-83.531503,40.106282],[-83.51973699999999,40.113496],[-83.516786,40.114885],[-83.51084600000002,40.116845],[-83.503084,40.120205999999996],[-83.503714,40.111467999999995],[-83.51078,40.053424],[-83.51132299999999,40.0474],[-83.511337,40.047244],[-83.514876,40.019588],[-83.516155,40.010188],[-83.53214299999999,40.011547],[-83.591456,40.014154]]]},"properties":{"GEO_ID":"1400000US39021011505","STATE":"39","COUNTY":"021","TRACT":"011505","NAME":"115.05","LSAD":"Tract","CENSUSAREA":"29.590000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.824781,39.913036999999996],[-83.824311,39.913979999999995],[-83.821595,39.919446],[-83.816577,39.919152],[-83.814837,39.919049],[-83.810705,39.918806],[-83.809176,39.918710999999995],[-83.80883200000001,39.918813],[-83.80976,39.911792],[-83.81101799999999,39.911967],[-83.815553,39.912251999999995],[-83.81607199999999,39.912361],[-83.81929199999999,39.912574],[-83.824781,39.913036999999996]]]},"properties":{"GEO_ID":"1400000US39023000200","STATE":"39","COUNTY":"023","TRACT":"000200","NAME":"2","LSAD":"Tract","CENSUSAREA":"0.346000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.806088,39.93251],[-83.806236,39.931698999999995],[-83.806472,39.93112500000001],[-83.809741,39.931329999999996],[-83.80988599999999,39.92967],[-83.814532,39.929953999999995],[-83.816893,39.932474],[-83.816456,39.939205],[-83.809007,39.938750999999996],[-83.80552,39.938544],[-83.805767,39.935190999999996],[-83.806044,39.932739],[-83.806069,39.932627],[-83.806088,39.93251]]]},"properties":{"GEO_ID":"1400000US39023000700","STATE":"39","COUNTY":"023","TRACT":"000700","NAME":"7","LSAD":"Tract","CENSUSAREA":"0.332000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.833643,39.894527],[-83.84473899999999,39.895443],[-83.846225,39.899108999999996],[-83.84648,39.90315],[-83.848963,39.904584],[-83.843676,39.908158],[-83.83829200000001,39.912107999999996],[-83.83833,39.91034],[-83.826655,39.909251],[-83.828994,39.904385],[-83.829985,39.902301],[-83.830985,39.900118],[-83.831197,39.899648],[-83.832724,39.896257],[-83.833643,39.894527]]]},"properties":{"GEO_ID":"1400000US39023001000","STATE":"39","COUNTY":"023","TRACT":"001000","NAME":"10","LSAD":"Tract","CENSUSAREA":"0.871000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.791292,39.938694],[-83.79275500000001,39.940411],[-83.796458,39.943498],[-83.800213,39.947745999999995],[-83.80130799999999,39.953128],[-83.796656,39.95285],[-83.788268,39.952134],[-83.786613,39.952228],[-83.78493499999999,39.952242],[-83.780963,39.951925],[-83.776923,39.95161900000001],[-83.77662699999999,39.9516],[-83.776321,39.951583],[-83.77540499999999,39.951527],[-83.774746,39.951485],[-83.765185,39.950893],[-83.75769799999999,39.950381],[-83.756395,39.950292],[-83.761037,39.94316],[-83.761056,39.94305],[-83.76072099999999,39.942653],[-83.761118,39.941472],[-83.76883699999999,39.938182],[-83.769858,39.937843],[-83.77475799999999,39.938944],[-83.777942,39.938901],[-83.782364,39.939247],[-83.786109,39.937649],[-83.79028799999999,39.937241],[-83.791292,39.938694]]]},"properties":{"GEO_ID":"1400000US39023001700","STATE":"39","COUNTY":"023","TRACT":"001700","NAME":"17","LSAD":"Tract","CENSUSAREA":"1.816000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.6041,40.014779999999995],[-83.591456,40.014154],[-83.53214299999999,40.011547],[-83.516155,40.010188],[-83.50993299999999,40.009910999999995],[-83.51270199999999,40.001002],[-83.520934,39.977564],[-83.534594,39.934346],[-83.537168,39.934492999999996],[-83.55358799999999,39.939536],[-83.554226,39.939927999999995],[-83.569825,39.938038],[-83.57658699999999,39.938313],[-83.59192399999999,39.939803999999995],[-83.611482,39.941102],[-83.65683299999999,39.944590999999996],[-83.65825099999999,39.944688000000006],[-83.663642,39.945057],[-83.668703,39.945403999999996],[-83.66877,39.945454999999995],[-83.670827,39.945549],[-83.68167500000001,39.946465],[-83.67696699999999,39.979676999999995],[-83.6774,39.984415999999996],[-83.675105,40.009167],[-83.67289699999999,40.019096],[-83.632361,40.016256999999996],[-83.6041,40.014779999999995]]]},"properties":{"GEO_ID":"1400000US39023002301","STATE":"39","COUNTY":"023","TRACT":"002301","NAME":"23.01","LSAD":"Tract","CENSUSAREA":"41.948000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.783153,39.98467],[-83.78266400000001,39.988707],[-83.78218299999999,39.992853],[-83.78183899999999,39.996051],[-83.776698,39.995705],[-83.77591799999999,40.002911999999995],[-83.774536,40.00261100000001],[-83.773399,40.005500000000005],[-83.773011,40.010394],[-83.761269,40.009702],[-83.76273499999999,39.994887999999996],[-83.752944,39.994330999999995],[-83.75518799999999,39.979853],[-83.75542399999999,39.976873],[-83.764912,39.977405999999995],[-83.775469,39.978044],[-83.779005,39.978499],[-83.783416,39.979206999999995],[-83.783757,39.979262],[-83.78352799999999,39.981162999999995],[-83.783509,39.981322999999996],[-83.783153,39.98467]]]},"properties":{"GEO_ID":"1400000US39023002606","STATE":"39","COUNTY":"023","TRACT":"002606","NAME":"26.06","LSAD":"Tract","CENSUSAREA":"2.531000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.048503,39.879664999999996],[-84.051039,39.879807],[-84.05035199999999,39.887071999999996],[-84.04929,39.897849],[-84.04928199999999,39.897894],[-84.048452,39.908184],[-84.048456,39.908260999999996],[-84.046296,39.908286],[-84.03921299999999,39.908611],[-84.032243,39.908919],[-84.01914099999999,39.910105],[-84.019924,39.902842],[-84.020691,39.895686999999995],[-84.020758,39.895073],[-84.020974,39.893102],[-84.02324399999999,39.893264],[-84.024997,39.893322999999995],[-84.02592,39.89309],[-84.027755,39.893239],[-84.02819,39.893249999999995],[-84.031103,39.893414],[-84.031273,39.891521],[-84.032564,39.888093999999995],[-84.03056199999999,39.887989999999995],[-84.031016,39.882290999999995],[-84.03117999999999,39.880294],[-84.031308,39.878685],[-84.043419,39.879356],[-84.048503,39.879664999999996]]]},"properties":{"GEO_ID":"1400000US39023002901","STATE":"39","COUNTY":"023","TRACT":"002901","NAME":"29.01","LSAD":"Tract","CENSUSAREA":"2.654000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.938008,39.862629],[-83.937654,39.866431999999996],[-83.937148,39.872012999999995],[-83.937331,39.873819],[-83.937161,39.875657],[-83.938797,39.877466999999996],[-83.93687299999999,39.878468999999996],[-83.936655,39.880579],[-83.936318,39.883469],[-83.936145,39.885117],[-83.936082,39.885704],[-83.93571899999999,39.889483999999996],[-83.923556,39.896183],[-83.915036,39.900535999999995],[-83.915829,39.894479],[-83.915983,39.89362],[-83.917993,39.876523],[-83.918984,39.865046],[-83.919361,39.862266999999996],[-83.92419799999999,39.861943],[-83.931806,39.862288],[-83.93215099999999,39.862306],[-83.938008,39.862629]]]},"properties":{"GEO_ID":"1400000US39023003102","STATE":"39","COUNTY":"023","TRACT":"003102","NAME":"31.02","LSAD":"Tract","CENSUSAREA":"2.290000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.24945799999999,39.201662],[-84.24874299999999,39.205346999999996],[-84.248612,39.205407],[-84.248466,39.205458],[-84.245522,39.206384],[-84.244484,39.211855],[-84.240532,39.214788],[-84.23713699999999,39.211757],[-84.233132,39.209612],[-84.228302,39.206975],[-84.226402,39.206033999999995],[-84.22554,39.205675],[-84.22332,39.204771],[-84.22101599999999,39.202883],[-84.22229,39.202084],[-84.22558599999999,39.200046],[-84.225762,39.199923999999996],[-84.226242,39.199629],[-84.22921,39.197793999999995],[-84.23684999999999,39.194587999999996],[-84.24007399999999,39.193908],[-84.243568,39.193234],[-84.248817,39.192228],[-84.248047,39.198809],[-84.24945799999999,39.201662]]]},"properties":{"GEO_ID":"1400000US39025040403","STATE":"39","COUNTY":"025","TRACT":"040403","NAME":"404.03","LSAD":"Tract","CENSUSAREA":"1.303000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.217255,39.186788],[-84.217827,39.187810999999996],[-84.217956,39.189386],[-84.22015200000001,39.192237],[-84.226242,39.199629],[-84.225762,39.199923999999996],[-84.22558599999999,39.200046],[-84.22229,39.202084],[-84.22101599999999,39.202883],[-84.21225299999999,39.208312],[-84.21176899999999,39.208616],[-84.208114,39.20529],[-84.206932,39.202225999999996],[-84.205345,39.20012],[-84.20120299999999,39.197696],[-84.19432800000001,39.192499],[-84.191277,39.188854000000006],[-84.185784,39.185991],[-84.17753599999999,39.180327999999996],[-84.17298,39.177523],[-84.176851,39.175885],[-84.17709099999999,39.175731999999996],[-84.183838,39.175742],[-84.191284,39.17716],[-84.20272899999999,39.176682],[-84.207321,39.176321],[-84.210297,39.176077],[-84.213646,39.175909],[-84.213188,39.181124],[-84.21456099999999,39.182319],[-84.21541599999999,39.183456],[-84.215668,39.183872],[-84.216133,39.184788999999995],[-84.216492,39.185423],[-84.216751,39.18590700000001],[-84.217255,39.186788]]]},"properties":{"GEO_ID":"1400000US39025040702","STATE":"39","COUNTY":"025","TRACT":"040702","NAME":"407.02","LSAD":"Tract","CENSUSAREA":"2.921000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.1177,39.1819],[-84.11376399999999,39.179296],[-84.113749,39.179239],[-84.113162,39.178582],[-84.112984,39.178259],[-84.10416099999999,39.173373999999995],[-84.093688,39.164744],[-84.093205,39.163636],[-84.092642,39.162994],[-84.08981,39.15576],[-84.091301,39.147276999999995],[-84.090149,39.146947999999995],[-84.089832,39.14619],[-84.095866,39.130637],[-84.098199,39.124553999999996],[-84.10467899999999,39.108937999999995],[-84.10245599999999,39.101666],[-84.120098,39.105779],[-84.12192399999999,39.105973999999996],[-84.132483,39.106103],[-84.135958,39.106482],[-84.146472,39.106384999999996],[-84.147655,39.106393],[-84.14769,39.113433],[-84.15388,39.109825],[-84.15590999999999,39.109362999999995],[-84.155755,39.10826],[-84.170693,39.108557999999995],[-84.17377599999999,39.107524999999995],[-84.181167,39.105062],[-84.182614,39.105311],[-84.188889,39.109328999999995],[-84.195984,39.110794999999996],[-84.19869299999999,39.109449999999995],[-84.201223,39.110406],[-84.20222199999999,39.11239],[-84.205398,39.113309],[-84.20782799999999,39.116054999999996],[-84.208818,39.118828],[-84.20835799999999,39.121808],[-84.209349,39.122242],[-84.215537,39.124984],[-84.219144,39.128144999999996],[-84.219166,39.130643],[-84.22370200000002,39.131248],[-84.223534,39.131403],[-84.223085,39.132042],[-84.222454,39.132802999999996],[-84.221558,39.133887],[-84.21918199999999,39.135771999999996],[-84.203831,39.151123],[-84.20091400000001,39.15405],[-84.199193,39.155454999999996],[-84.193664,39.160867],[-84.180914,39.173818],[-84.17709099999999,39.175731999999996],[-84.176851,39.175885],[-84.17298,39.177523],[-84.171463,39.176611],[-84.16918199999999,39.175062],[-84.163269,39.179702],[-84.14518699999999,39.191407999999996],[-84.143479,39.191889],[-84.138583,39.194599],[-84.134213,39.191983],[-84.132134,39.190728],[-84.131457,39.190232],[-84.127726,39.187359],[-84.1177,39.1819]]]},"properties":{"GEO_ID":"1400000US39025040800","STATE":"39","COUNTY":"025","TRACT":"040800","NAME":"408","LSAD":"Tract","CENSUSAREA":"29.479000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.178968,39.085507],[-84.17666899999999,39.086563999999996],[-84.176254,39.086338999999995],[-84.17571199999999,39.086382],[-84.175147,39.086023],[-84.174585,39.086079],[-84.172871,39.086197999999996],[-84.168556,39.08635],[-84.163101,39.086028],[-84.156768,39.084955],[-84.15026900000001,39.083296],[-84.157181,39.079603999999996],[-84.157288,39.07785],[-84.154617,39.07815],[-84.14272299999999,39.075449],[-84.137245,39.07349],[-84.13821399999999,39.071311],[-84.141823,39.066905],[-84.139932,39.064721999999996],[-84.141365,39.060753999999996],[-84.143783,39.058164],[-84.148254,39.058008],[-84.149727,39.055368],[-84.150683,39.055247],[-84.155342,39.056871],[-84.159508,39.059827999999996],[-84.15995,39.061659],[-84.159188,39.066586],[-84.16076699999999,39.068251],[-84.16283399999999,39.068633999999996],[-84.16819799999999,39.068791999999995],[-84.174736,39.067319999999995],[-84.17791,39.067298],[-84.18203,39.068231],[-84.183712,39.069398],[-84.184258,39.074186999999995],[-84.18444199999999,39.074830999999996],[-84.184463,39.074911],[-84.184471,39.074965],[-84.184483,39.075007],[-84.183385,39.077425000000005],[-84.181389,39.080211],[-84.18820199999999,39.08247],[-84.189385,39.083521],[-84.193388,39.084101],[-84.186364,39.084447999999995],[-84.185507,39.084564],[-84.179238,39.085467],[-84.178968,39.085507]]]},"properties":{"GEO_ID":"1400000US39025041101","STATE":"39","COUNTY":"025","TRACT":"041101","NAME":"411.01","LSAD":"Tract","CENSUSAREA":"3.138000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.270859,39.069129],[-84.272194,39.068898999999995],[-84.277428,39.06912],[-84.279106,39.068065],[-84.279304,39.064529],[-84.280159,39.064648],[-84.282562,39.064834999999995],[-84.285286,39.065059999999995],[-84.28832299999999,39.065221],[-84.294212,39.065388999999996],[-84.29567,39.065581],[-84.29630999999999,39.065866],[-84.29692899999999,39.066244999999995],[-84.29930100000001,39.068481],[-84.297416,39.070077],[-84.29414400000002,39.073996],[-84.291488,39.078119],[-84.289917,39.084998999999996],[-84.274559,39.083837],[-84.26860099999999,39.083431999999995],[-84.267533,39.083177],[-84.266457,39.082772999999996],[-84.26606,39.082611],[-84.261001,39.08049700000001],[-84.257683,39.075193],[-84.25999399999999,39.073509],[-84.264336,39.071863],[-84.268295,39.069618],[-84.270859,39.069129]]]},"properties":{"GEO_ID":"1400000US39025041305","STATE":"39","COUNTY":"025","TRACT":"041305","NAME":"413.05","LSAD":"Tract","CENSUSAREA":"1.988000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.31481099999999,39.060863999999995],[-84.314775,39.061533],[-84.31409,39.066018],[-84.31320800000002,39.071821],[-84.31228899999999,39.078074],[-84.31102,39.086614999999995],[-84.309739,39.086825999999995],[-84.309198,39.086771],[-84.301666,39.086256],[-84.30037,39.085794],[-84.289917,39.084998999999996],[-84.291488,39.078119],[-84.29414400000002,39.073996],[-84.297416,39.070077],[-84.29930100000001,39.068481],[-84.30336,39.065939],[-84.31481099999999,39.060863999999995]]]},"properties":{"GEO_ID":"1400000US39025041404","STATE":"39","COUNTY":"025","TRACT":"041404","NAME":"414.04","LSAD":"Tract","CENSUSAREA":"1.488000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.678584,39.550786],[-83.67019599999999,39.550253999999995],[-83.624921,39.547626],[-83.62426800000001,39.547717],[-83.610778,39.54681],[-83.602975,39.546284],[-83.576286,39.544547],[-83.580032,39.504399],[-83.580782,39.498869],[-83.583455,39.466629999999995],[-83.584054,39.459482],[-83.58469,39.451782],[-83.585004,39.447953],[-83.585198,39.445705],[-83.58679300000001,39.426477999999996],[-83.58776999999999,39.414665],[-83.59087799999999,39.378735999999996],[-83.593868,39.377081],[-83.594923,39.389514],[-83.59627499999999,39.392905],[-83.600522,39.401212],[-83.609771,39.410408],[-83.644746,39.447871],[-83.64937499999999,39.452118999999996],[-83.662381,39.464054999999995],[-83.672587,39.475657999999996],[-83.673872,39.477567],[-83.677813,39.48544],[-83.67930299999999,39.488383999999996],[-83.681344,39.492501],[-83.68609300000001,39.503205],[-83.687643,39.508263],[-83.688992,39.510791],[-83.701601,39.530277999999996],[-83.716725,39.553131],[-83.678584,39.550786]]]},"properties":{"GEO_ID":"1400000US39027964300","STATE":"39","COUNTY":"027","TRACT":"964300","NAME":"9643","LSAD":"Tract","CENSUSAREA":"44.677000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.82104400000001,39.450036999999995],[-83.821345,39.446191],[-83.819255,39.446095],[-83.819267,39.445975],[-83.819476,39.443155],[-83.82298999999999,39.443327],[-83.823251,39.439755999999996],[-83.825874,39.439903],[-83.829093,39.440084999999996],[-83.828907,39.441987999999995],[-83.82979800000001,39.442036],[-83.830473,39.44181],[-83.830244,39.444278],[-83.835965,39.444559],[-83.835989,39.445547999999995],[-83.83893599999999,39.445507000000006],[-83.844663,39.445409],[-83.848238,39.447562],[-83.838917,39.447109000000005],[-83.837215,39.447019999999995],[-83.83680799999999,39.449988],[-83.834285,39.449936],[-83.832689,39.449844],[-83.83252399999999,39.451820999999995],[-83.83247,39.452400000000004],[-83.831057,39.452332999999996],[-83.82814599999999,39.452181],[-83.82803,39.453638],[-83.82637299999999,39.453793],[-83.82501099999999,39.453963],[-83.820536,39.454512],[-83.820886,39.452712],[-83.82094,39.452297],[-83.82058599999999,39.45034],[-83.820617,39.45032],[-83.82104400000001,39.450036999999995]]]},"properties":{"GEO_ID":"1400000US39027964600","STATE":"39","COUNTY":"027","TRACT":"964600","NAME":"9646","LSAD":"Tract","CENSUSAREA":"0.667000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.70273399999999,40.884716999999995],[-80.70209,40.885087],[-80.698317,40.887465000000006],[-80.69678499999999,40.888391999999996],[-80.69678499999999,40.888490999999995],[-80.69596399999999,40.888689],[-80.69363299999999,40.888656999999995],[-80.69347400000001,40.892302],[-80.693631,40.892859],[-80.69755099999999,40.900096],[-80.679361,40.899927999999996],[-80.650877,40.89984],[-80.650854,40.894113],[-80.650854,40.891424],[-80.650871,40.884778],[-80.65087199999999,40.884026999999996],[-80.65085599999999,40.878161999999996],[-80.65091199999999,40.868231],[-80.650888,40.863763],[-80.65090099999999,40.862781999999996],[-80.650938,40.856556],[-80.670335,40.856673],[-80.68893299999999,40.856653],[-80.707861,40.856663999999995],[-80.707742,40.871176999999996],[-80.70774999999999,40.878363],[-80.707754,40.878431],[-80.707756,40.878448999999996],[-80.707809,40.881057999999996],[-80.706358,40.882338999999995],[-80.70586399999999,40.882756],[-80.70358,40.884198999999995],[-80.70273399999999,40.884716999999995]]]},"properties":{"GEO_ID":"1400000US39029950200","STATE":"39","COUNTY":"029","TRACT":"950200","NAME":"9502","LSAD":"Tract","CENSUSAREA":"8.227000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.856709,40.907073],[-80.85672699999999,40.905124],[-80.85673899999999,40.904149],[-80.85677799999999,40.900953],[-80.856785,40.898658999999995],[-80.856816,40.895989],[-80.856878,40.895382999999995],[-80.85689099999999,40.894203],[-80.856819,40.893924],[-80.856922,40.889786],[-80.85705,40.878887000000006],[-80.863472,40.879754000000005],[-80.875237,40.885062999999995],[-80.879155,40.887139],[-80.880596,40.890060999999996],[-80.880568,40.900991999999995],[-80.89554299999999,40.901],[-80.89599,40.901046],[-80.896003,40.904821],[-80.897115,40.905349],[-80.896611,40.91682],[-80.896272,40.930186],[-80.891285,40.9302],[-80.87597799999999,40.930051999999996],[-80.85637000000001,40.929963],[-80.856476,40.924692],[-80.856487,40.922973],[-80.856669,40.910208],[-80.856709,40.907073]]]},"properties":{"GEO_ID":"1400000US39029950700","STATE":"39","COUNTY":"029","TRACT":"950700","NAME":"9507","LSAD":"Tract","CENSUSAREA":"5.772000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.6371248891581,40.613440339113],[-80.63937899999999,40.61128],[-80.6444545687516,40.604342904600195],[-80.64496299999999,40.60364800000001],[-80.651716,40.597744],[-80.653972,40.59648],[-80.655188,40.596544],[-80.6570650823556,40.595285825492695],[-80.662564,40.5916],[-80.665892,40.587728],[-80.667957,40.582496],[-80.668885,40.58248],[-80.669157,40.582527999999996],[-80.670358,40.582529],[-80.670369,40.582815],[-80.67030299999999,40.583653],[-80.668967,40.592191],[-80.66506799999999,40.59806],[-80.663281,40.599793999999996],[-80.662937,40.600032],[-80.661035,40.601217999999996],[-80.65968699999999,40.601988999999996],[-80.65699,40.603411],[-80.652919,40.605309999999996],[-80.646348,40.610099],[-80.641953,40.614329999999995],[-80.6371248891581,40.613440339113]]]},"properties":{"GEO_ID":"1400000US39029951800","STATE":"39","COUNTY":"029","TRACT":"951800","NAME":"9518","LSAD":"Tract","CENSUSAREA":"0.809000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.518991,40.638801],[-80.521917,40.636992],[-80.52566,40.636068],[-80.530093,40.636255],[-80.532737,40.63559],[-80.53954100000001,40.632121999999995],[-80.545892,40.629701999999995],[-80.5481483893611,40.6293334075461],[-80.551126,40.628847],[-80.56072,40.62368],[-80.56784,40.617551999999996],[-80.571936,40.615455999999995],[-80.5751550315233,40.614629781909],[-80.575317,40.615021999999996],[-80.57588299999999,40.615249999999996],[-80.5753,40.615269],[-80.575197,40.615494],[-80.575088,40.615517],[-80.575485,40.61607],[-80.575676,40.616051],[-80.576745,40.616057],[-80.57683399999999,40.616369],[-80.577088,40.617239999999995],[-80.57492599999999,40.618863],[-80.57458199999999,40.616341],[-80.570399,40.617554999999996],[-80.55702699999999,40.630053],[-80.556777,40.630334999999995],[-80.55551799999999,40.632863],[-80.555318,40.633216],[-80.555146,40.633596999999995],[-80.553389,40.633956999999995],[-80.549622,40.635313],[-80.548271,40.635757],[-80.544431,40.636832],[-80.543542,40.637108],[-80.54095099999999,40.637833],[-80.53260999999999,40.640713999999996],[-80.524172,40.641604],[-80.52081299999999,40.642947],[-80.51998999999999,40.64286],[-80.51899285181359,40.6430435050571],[-80.518991,40.638801]]]},"properties":{"GEO_ID":"1400000US39029952200","STATE":"39","COUNTY":"029","TRACT":"952200","NAME":"9522","LSAD":"Tract","CENSUSAREA":"0.829000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.85094099999999,40.270388],[-81.851039,40.270055],[-81.85132,40.269472],[-81.851784,40.26815],[-81.85221399999999,40.266106],[-81.85974399999999,40.266324],[-81.859637,40.268211],[-81.86236000000001,40.26831],[-81.86167499999999,40.272110999999995],[-81.861519,40.274885],[-81.861449,40.276195],[-81.856257,40.276004],[-81.85625999999999,40.277136999999996],[-81.84952799999999,40.277155],[-81.849342,40.276030999999996],[-81.849335,40.276030999999996],[-81.848387,40.276104],[-81.84919099999999,40.274910999999996],[-81.8493,40.274764999999995],[-81.84967,40.274201],[-81.850653,40.271684],[-81.85089099999999,40.270799],[-81.85094099999999,40.270388]]]},"properties":{"GEO_ID":"1400000US39031961500","STATE":"39","COUNTY":"031","TRACT":"961500","NAME":"9615","LSAD":"Tract","CENSUSAREA":"0.410000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.977522,40.797394],[-82.976115,40.797421],[-82.973986,40.797487],[-82.974001,40.792201999999996],[-82.977727,40.792178],[-82.97833299999999,40.790154],[-82.97907099999999,40.787714],[-82.979511,40.786341],[-82.980289,40.7837],[-82.98043799999999,40.783369],[-82.980607,40.782747],[-82.98115299999999,40.780967],[-82.98279699999999,40.775666],[-83.028948,40.775515999999996],[-83.02646399999999,40.77869],[-83.026597,40.794706],[-83.02296,40.797444999999996],[-83.026748,40.797572],[-83.027253,40.819514],[-83.020119,40.81953300000001],[-83.016526,40.819199],[-82.99803299999999,40.813764],[-82.993669,40.812506],[-82.988813,40.811098],[-82.98749600000001,40.810752],[-82.98480400000001,40.809866],[-82.984545,40.809785],[-82.984021,40.809658999999996],[-82.978563,40.808636],[-82.978563,40.807559],[-82.983612,40.806456],[-82.983532,40.802575999999995],[-82.983425,40.80051400000001],[-82.98143999999999,40.800508],[-82.98309499999999,40.797368],[-82.978565,40.797393],[-82.977522,40.797394]]]},"properties":{"GEO_ID":"1400000US39033974300","STATE":"39","COUNTY":"033","TRACT":"974300","NAME":"9743","LSAD":"Tract","CENSUSAREA":"6.671000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.736576,40.787748],[-82.737287,40.787898],[-82.74083,40.788962],[-82.750283,40.792485],[-82.757896,40.795221999999995],[-82.76485799999999,40.799918999999996],[-82.77380000000001,40.806056],[-82.775764,40.806667000000004],[-82.787447,40.806784],[-82.787317,40.809673],[-82.789744,40.814136999999995],[-82.791783,40.822224],[-82.783773,40.843211],[-82.781049,40.850311999999995],[-82.738781,40.849816],[-82.735136,40.848974999999996],[-82.731365,40.846388999999995],[-82.726199,40.843700999999996],[-82.724955,40.843284],[-82.725689,40.814498],[-82.726145,40.795077],[-82.72621199999999,40.787395],[-82.734004,40.787653],[-82.734105,40.787649],[-82.734972,40.787704999999995],[-82.736576,40.787748]]]},"properties":{"GEO_ID":"1400000US39033974800","STATE":"39","COUNTY":"033","TRACT":"974800","NAME":"9748","LSAD":"Tract","CENSUSAREA":"11.871000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.78961199999999,40.725995],[-82.783611,40.72557],[-82.783525,40.729229],[-82.78335799999999,40.733765],[-82.778218,40.733674],[-82.775053,40.733578],[-82.774114,40.733624],[-82.77188,40.733554999999996],[-82.768795,40.735433],[-82.764997,40.736578],[-82.764836,40.736616999999995],[-82.76253299999999,40.737342],[-82.762558,40.738931],[-82.756084,40.740887],[-82.751217,40.743139],[-82.75129799999999,40.743215],[-82.751755,40.743939999999995],[-82.7466,40.744394],[-82.74480199999999,40.744896],[-82.74019,40.746072],[-82.738564,40.746441999999995],[-82.737956,40.74658],[-82.734792,40.747296],[-82.731546,40.748036],[-82.726751,40.749524],[-82.72694899999999,40.738592],[-82.727164,40.711203],[-82.764995,40.711853999999995],[-82.788105,40.712129],[-82.78951599999999,40.71214],[-82.790849,40.712151999999996],[-82.792136,40.712154999999996],[-82.79254399999999,40.712154999999996],[-82.792592,40.712157],[-82.793007,40.712896],[-82.793035,40.716941999999996],[-82.79307,40.726043],[-82.78961199999999,40.725995]]]},"properties":{"GEO_ID":"1400000US39033975300","STATE":"39","COUNTY":"033","TRACT":"975300","NAME":"9753","LSAD":"Tract","CENSUSAREA":"6.448000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.75970000000001,41.478947999999995],[-81.76485699999999,41.477084],[-81.76881399999999,41.475553],[-81.768804,41.476904999999995],[-81.768772,41.479593],[-81.768751,41.483616999999995],[-81.76874,41.485172],[-81.76455,41.483878],[-81.762327,41.483177],[-81.754748,41.480861999999995],[-81.75598,41.480373],[-81.756968,41.479971],[-81.75970000000001,41.478947999999995]]]},"properties":{"GEO_ID":"1400000US39035101300","STATE":"39","COUNTY":"035","TRACT":"101300","NAME":"1013","LSAD":"Tract","CENSUSAREA":"0.242000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.73018499999999,41.475623999999996],[-81.730155,41.47464],[-81.730142,41.471851],[-81.735749,41.470968],[-81.735227,41.472449],[-81.734877,41.473085],[-81.734847,41.474094],[-81.734828,41.475097999999996],[-81.734802,41.477194],[-81.73580799999999,41.477194],[-81.73579,41.478835],[-81.73577,41.480457],[-81.73575,41.481549],[-81.73026999999999,41.482982],[-81.73026399999999,41.480613],[-81.73024199999999,41.478911],[-81.73024199999999,41.478854999999996],[-81.73018499999999,41.475623999999996]]]},"properties":{"GEO_ID":"1400000US39035101901","STATE":"39","COUNTY":"035","TRACT":"101901","NAME":"1019.01","LSAD":"Tract","CENSUSAREA":"0.200000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.753328,41.462137999999996],[-81.753287,41.466446],[-81.75420199999999,41.466693],[-81.751035,41.467728],[-81.749038,41.468388],[-81.748835,41.468464],[-81.748859,41.465362999999996],[-81.748694,41.465316],[-81.748694,41.462195],[-81.749646,41.462208],[-81.749663,41.458711],[-81.749664,41.458437],[-81.749732,41.455802999999996],[-81.7534,41.455816999999996],[-81.75338699999999,41.456993],[-81.753379,41.457874000000004],[-81.753343,41.460364],[-81.753328,41.462137999999996]]]},"properties":{"GEO_ID":"1400000US39035102300","STATE":"39","COUNTY":"035","TRACT":"102300","NAME":"1023","LSAD":"Tract","CENSUSAREA":"0.176000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.713289,41.466941999999996],[-81.71327,41.466057],[-81.713222,41.462489999999995],[-81.716433,41.4625],[-81.716433,41.462424999999996],[-81.718341,41.462419],[-81.719428,41.462406],[-81.720049,41.462406],[-81.720021,41.464118],[-81.72000899999999,41.464853],[-81.72000899999999,41.467518999999996],[-81.720001,41.46965],[-81.716494,41.469664],[-81.71333,41.469703],[-81.713289,41.466941999999996]]]},"properties":{"GEO_ID":"1400000US39035102800","STATE":"39","COUNTY":"035","TRACT":"102800","NAME":"1028","LSAD":"Tract","CENSUSAREA":"0.174000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.70392799999999,41.471050999999996],[-81.70389,41.469857],[-81.710284,41.469753],[-81.71333,41.469703],[-81.716494,41.469664],[-81.716539,41.471925999999996],[-81.716471,41.47497],[-81.71648499999999,41.475966],[-81.71648700000001,41.479265999999996],[-81.713478,41.480343],[-81.71184800000002,41.480920999999995],[-81.711354,41.481088],[-81.71105899999999,41.4812],[-81.709058,41.478058],[-81.70858799999999,41.477292],[-81.707748,41.475182],[-81.707601,41.472559],[-81.70394499999999,41.472097],[-81.70392799999999,41.471050999999996]]]},"properties":{"GEO_ID":"1400000US39035103800","STATE":"39","COUNTY":"035","TRACT":"103800","NAME":"1038","LSAD":"Tract","CENSUSAREA":"0.335000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.69131600000001,41.477385999999996],[-81.69133599999999,41.478528],[-81.691352,41.479651],[-81.689312,41.479667],[-81.687512,41.479675],[-81.686754,41.481651],[-81.687647,41.482513999999995],[-81.687698,41.483866000000006],[-81.683538,41.484365],[-81.683787,41.483346],[-81.68162199999999,41.481173999999996],[-81.67998999999999,41.47958],[-81.681196,41.477529],[-81.689267,41.477412],[-81.689174,41.476065999999996],[-81.691289,41.47606700000001],[-81.69131600000001,41.477385999999996]]]},"properties":{"GEO_ID":"1400000US39035104300","STATE":"39","COUNTY":"035","TRACT":"104300","NAME":"1043","LSAD":"Tract","CENSUSAREA":"0.185000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.71291599999999,41.458172],[-81.71315299999999,41.457851],[-81.71338999999999,41.457460999999995],[-81.713579,41.457186],[-81.71449500000001,41.455667999999996],[-81.715443,41.454094],[-81.715739,41.453564],[-81.716076,41.452898999999995],[-81.716267,41.452949],[-81.71652,41.453047],[-81.717514,41.453378],[-81.717952,41.453505],[-81.719458,41.453875],[-81.720525,41.454145],[-81.721592,41.454423],[-81.720422,41.457232999999995],[-81.72151500000001,41.457482999999996],[-81.72071299999999,41.45947400000001],[-81.720511,41.459436],[-81.720534,41.460854999999995],[-81.720316,41.462406],[-81.720049,41.462406],[-81.719428,41.462406],[-81.718341,41.462419],[-81.716433,41.462424999999996],[-81.716433,41.4625],[-81.713222,41.462489999999995],[-81.710213,41.462509000000004],[-81.710715,41.461701],[-81.710765,41.461635],[-81.711555,41.460356999999995],[-81.711844,41.459914999999995],[-81.71188099999999,41.459868],[-81.712379,41.459019],[-81.71291599999999,41.458172]]]},"properties":{"GEO_ID":"1400000US39035105300","STATE":"39","COUNTY":"035","TRACT":"105300","NAME":"1053","LSAD":"Tract","CENSUSAREA":"0.249000000000000"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.70691,41.437019],[-81.70693299999999,41.439029],[-81.706845,41.43911],[-81.706555,41.43947],[-81.705443,41.44077],[-81.70490099999999,41.441629999999996],[-81.699297,41.437985],[-81.698438,41.436732],[-81.698332,41.436552],[-81.69778,41.435781999999996],[-81.69771,41.435652],[-81.697131,41.434847999999995],[-81.69712000000001,41.434091],[-81.69717399999999,41.433288999999995],[-81.697239,41.432598],[-81.706847,41.432487],[-81.70685,41.432880999999995],[-81.706848,41.433178000000005],[-81.706879,41.434760999999995],[-81.70688899999999,41.435158],[-81.70691,41.436310999999996],[-81.70691,41.437019]]]}}
],"properties":{"GEO_ID":"1400000US39035106800","STATE":"39","COUNTY":"035","TRACT":"106800","NAME":"1068","LSAD":"Tract","CENSUSAREA":"0.231000000000000"}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment