Skip to content

Instantly share code, notes, and snippets.

@jeremycflin
Created October 12, 2015 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremycflin/12845648804ce1b04276 to your computer and use it in GitHub Desktop.
Save jeremycflin/12845648804ce1b04276 to your computer and use it in GitHub Desktop.
ACA Enrollment in Texas

Take a look at the Texas ZIP codes with ACA plans data, as well as federal data to compare health insurance enrollment and median household income. Data viz produced by Jeremy C.F. Lin. A more detailed piece can be read on the Texas Tribune. Built with blockbuilder.org Built with blockbuilder.org

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Obama Care Enrollment in Texas</title>
<!-- Bootstrap -->
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB-z__K2Tz1ZKAxvmiZ1mB7rxi9LY4_0JE">
</script>
<style>
.map{
min-height: 600px;
}
.my-legend .legend-title {
text-align: left;
margin-bottom: 8px;
font-weight: bold;
font-size: 90%;
}
.my-legend .legend-scale ul {
margin: 0;
padding: 0;
float: left;
list-style: none;
}
.my-legend .legend-scale ul li {
display: block;
float: left;
width: 50px;
margin-bottom: 6px;
text-align: center;
font-size: 80%;
list-style: none;
}
.my-legend ul.legend-labels li span {
display: block;
float: left;
height: 15px;
width: 50px;
}
.my-legend .legend-source {
font-size: 70%;
color: #999;
clear: both;
}
.my-legend a {
color: #777;
}
.income{
clear:left;
}
.empty{
border: dashed grey 1px;
}
.my-legend{
font-family: "helvetica neue";
margin-bottom: 50px;
margin-top: 30px;
}
.title{
font-family:Helvetica,"avenir next", Arial, sans-serif;
font-size:40px;
color:rgb(33, 113, 181);
line-height: 1.1em;
font-weight: 600;
}
.byline{
font-family: 'helvetica neue', sans-serif;
font-size:16px;
text-align: center;
font-weight: 200;
line-height: 1.1em;
margin-top: 20px;
color:#616161;
margin-bottom: 30px;
}
.text{
font-family: 'helvetica neue', sans-serif;
font-size:17px;
line-height: 1.5em;
/* font-weight: 200;*/
margin-bottom: 10px;
margin-top:10px;
}
</style>
<script type="text/javascript">
////////////////////////////////////////////////
////////////////////////////////////////////////
// Global variables
////////////////////////////////////////////////
////////////////////////////////////////////////
var styles = [
{
featureType: "administrative",
stylers: [
{ gamma: 0 },
{ visibility: "simplified" }
]
},{
featureType: "road.arterial",
// elementType: "labels.text.stroke",
stylers: [
{ gamma: -30 },
{ visibility: "off" },
{ strokeWeight: 3},
{ strokeColor: "black"}
]
},
{
featureType: "landscape.man_made ",
stylers: [
{ visibility: "simplified" },
]
},
{
featureType: "transit",
stylers: [
{ visibility: "off" },
]
}
];
// var styles = [
// {
// featureType: "administrative",
// stylers: [
// { visibility: "off" }
// ]
// },{
// featureType: "poi.park",
// stylers: [
// { visibility: "off" }
// ]
// },
// {
// elementType: "all ",
// stylers: [
// { invert_lightness: "true" }
// ]
// }
// ];
////////////////////////////////////////////////
////////////////////////////////////////////////
// Austin Map 1/////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
function drawMap(){
var map;
function initialize() {
// Create a base map.
map = new google.maps.Map(document.getElementById('texas'), {
zoom: 5,
center: {lat: 31.0000, lng: -100.0000},
disableDefaultUI: true,
// // mapTypeId: google.maps.MapTypeId.ROADMAP
zoomControl:true
});
map.setOptions({styles: styles});
// Load a GeoJSON from a local file
map.data.loadGeoJson('test2.json');
// Set and apply styling to the stateLayer
map.data.setStyle(function(feature) {
return {
fillColor: getColor(feature.getProperty('Sheet1_percent')),
fillOpacity: 0.8,
strokeColor: 'white',
strokeWeight: 0,
};
});
function getColor(Sheet1_percent) {
return Sheet1_percent > 6 ? '#034e7b' :
Sheet1_percent > 5 ? '#0570b0':
Sheet1_percent > 4 ? '#3690c0' :
Sheet1_percent > 3 ? '#74a9cf' :
Sheet1_percent > 2 ? '#a6bddb' :
Sheet1_percent > 1 ? '#d0d1e6' :
Sheet1_percent > 0 ? '#f1eef6' :
'white';
}
}
google.maps.event.addDomListener(window, 'load', initialize);
}
////////////////////////////////////////////////
////////////////////////////////////////////////
// Austin Map 1/////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
function drawMap2(){
var map;
function initialize() {
// Create a base map.
map = new google.maps.Map(document.getElementById('texas2'), {
zoom: 5,
center: {lat: 31.0000, lng: -100.0000},
disableDefaultUI: true,
// mapTypeId: google.maps.MapTypeId.ROADMAP
scrollwheel: false,
zoomControl:true
});
map.setOptions({styles: styles});
// Load a GeoJSON from a local file
map.data.loadGeoJson('test2.json');
// Set and apply styling to the stateLayer
map.data.setStyle(function(feature) {
return {
fillColor: getColor(feature.getProperty('Sheet1_income')),
fillOpacity: 0.8,
strokeColor: 'white',
strokeWeight: 0,
};
});
function getColor(Sheet1_income) {
return Sheet1_income > 173000 ? '#005a32':
Sheet1_income > 66000 ? '#238443' :
Sheet1_income > 54000 ? '#41ab5d':
Sheet1_income > 46000 ? '#78c679' :
Sheet1_income > 41000 ? '#addd8e' :
Sheet1_income > 34000 ? '#d9f0a3' :
Sheet1_income > 0 ? '#ffffcc' :
'white';
}
}
google.maps.event.addDomListener(window, 'load', initialize);
}
////////////////////////////////////////////////
////////////////////////////////////////////////
// Austin Map 1/////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
function drawAustinPercent(){
var map;
function initialize() {
// Create a base map.
map = new google.maps.Map(document.getElementById('austinPercent'), {
zoom: 9,
center: {lat: 30.2500, lng: -97.7500},
disableDefaultUI: true,
// mapTypeId: google.maps.MapTypeId.ROADMAP
scrollwheel: false
});
map.setOptions({styles: styles});
// Load a GeoJSON from a local file
map.data.loadGeoJson('test2.json');
// Set and apply styling to the stateLayer
map.data.setStyle(function(feature) {
return {
fillColor: getColor(feature.getProperty('Sheet1_percent')),
fillOpacity: 0.8,
strokeColor: 'white',
strokeWeight: 0,
};
});
function getColor(Sheet1_percent) {
return Sheet1_percent > 6 ? '#034e7b' :
Sheet1_percent > 5 ? '#0570b0':
Sheet1_percent > 4 ? '#3690c0' :
Sheet1_percent > 3 ? '#74a9cf' :
Sheet1_percent > 2 ? '#a6bddb' :
Sheet1_percent > 1 ? '#d0d1e6' :
Sheet1_percent > 0 ? '#f1eef6' :
'white';
}
}
google.maps.event.addDomListener(window, 'load', initialize);
}
drawMap();
drawMap2();
</script>
</head>
<body>
<div class="container">
<h1 class=" text-center title">Obama Care Enrollment in Texas</h1>
<!-- <h3 class="byline textcenter">Data visualizations produced by <a href="https://twitter.com/Jeremy_CF_Lin" target="_blank">Jeremy C.F. Lin</a></h3> -->
</div>
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<p class="text text-center">Take a look at the Texas ZIP codes with ACA plans data, as well as federal data to compare health insurance enrollment and median household income. Data viz produced by <a href="https://twitter.com/Jeremy_CF_Lin" target="_blank">Jeremy C.F. Lin</a>. </br>A more detailed piece can be read on the <a href="texastribune.org" target="_blank">Texas Tribune</a>.</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class='my-legend'>
<div class='legend-title'>Percentage of enrollment</div>
<div class='legend-scale'>
<ul class='legend-labels'>
<li><span class ="empty" style='background:#ffffff;'></span>N/A</li>
<li><span style='background:#f1eef6;'></span>0 - 1%</li>
<li><span style='background:#d0d1e6;'></span>1 - 2%</li>
<li><span style='background:#a6bddb;'></span>2 - 3%</li>
<li><span style='background:#74a9cf;'></span>3 - 4%</li>
<li><span style='background:#3690c0;'></span>4 - 5%</li>
<li><span style='background:#0570b0;'></span>5 - 6%</li>
<li><span style='background:#034e7b;'></span>< 6%</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div id="texas" class="map"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class='my-legend income'>
<div class='legend-title'>Median household income</div>
<div class='legend-scale'>
<ul class='legend-labels'>
<li><span class ="empty" style='background:#ffffff;'></span>N/A</li>
<li><span style='background:#ffffcc;'></span>0 - 34</li>
<li><span style='background:#d9f0a3;'></span>34 - 41</li>
<li><span style='background:#addd8e;'></span>41 - 46</li>
<li><span style='background:#78c679;'></span>46 - 54</li>
<li><span style='background:#41ab5d;'></span>54 - 66</li>
<li><span style='background:#238443;'></span>66 - 173</li>
<li><span style='background:#005a32;'></span>< 173</li>
<li><span style='background:#ffffff;'></span> (Thousands)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div id="texas2" class="map"></div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "name": "PADRE ISLAND NTL SEASHOR", "zip": "00188", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.250640477535768, 27.579666620726162 ], [ -97.221748456380951, 27.577188420903109 ], [ -97.371986966386004, 27.170763649923007 ], [ -97.302646115614436, 26.563604693275899 ], [ -97.389322179078903, 27.2054584474457 ], [ -97.250640477535768, 27.579666620726162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ADDISON", "zip": "75001", "state": "TX", "Sheet1_value": 823, "Sheet1_populaiton": 13214, "Sheet1_income": 57633, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.954882036920345 ], [ -96.828816968675397, 32.947447437451196 ], [ -96.857708989830229, 32.932578238512896 ], [ -96.857708989830229, 32.952403837097293 ], [ -96.84037377713733, 32.987098634619983 ], [ -96.828816968675397, 32.987098634619983 ], [ -96.823038564444431, 32.954882036920345 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALLEN", "zip": "75002", "state": "TX", "Sheet1_value": 3423, "Sheet1_populaiton": 65900, "Sheet1_income": 91632, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 33.034184431257927 ], [ -96.684356862901311, 33.081270227895864 ], [ -96.66124324597746, 33.130834224356853 ], [ -96.53989675712721, 33.128356024533801 ], [ -96.534118352896243, 33.096139426834156 ], [ -96.591902395205892, 33.031706231434875 ], [ -96.638129629053594, 33.034184431257927 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARROLLTON", "zip": "75006", "state": "TX", "Sheet1_value": 2946, "Sheet1_populaiton": 47590, "Sheet1_income": 56985, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.932828244832749, 32.937534638158994 ], [ -96.944385053294681, 32.989576834443035 ], [ -96.938606649063715, 32.989576834443035 ], [ -96.857708989830229, 32.987098634619983 ], [ -96.84037377713733, 32.987098634619983 ], [ -96.857708989830229, 32.952403837097293 ], [ -96.938606649063715, 32.912752639928499 ], [ -96.932828244832749, 32.937534638158994 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARROLLTON", "zip": "75007", "state": "TX", "Sheet1_value": 3753, "Sheet1_populaiton": 51405, "Sheet1_income": 78934, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.938606649063715, 32.989576834443035 ], [ -96.950163457525647, 32.994533234089133 ], [ -96.938606649063715, 33.004446033381328 ], [ -96.846152181368296, 33.026749831788777 ], [ -96.846152181368296, 33.016837032496582 ], [ -96.857708989830229, 32.987098634619983 ], [ -96.938606649063715, 32.989576834443035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CELINA", "zip": "75009", "state": "- ", "Sheet1_value": 426, "Sheet1_populaiton": 8975, "Sheet1_income": 87581, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.863487394061195, 33.262178814978469 ], [ -96.892379415215999, 33.291917212855061 ], [ -96.805703351751546, 33.405914404715332 ], [ -96.655464841746493, 33.400958005069242 ], [ -96.649686437515527, 33.396001605423137 ], [ -96.609237607898777, 33.306786411793361 ], [ -96.730584096749013, 33.262178814978469 ], [ -96.863487394061195, 33.262178814978469 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARROLLTON", "zip": "75010", "state": "TX", "Sheet1_value": 2099, "Sheet1_populaiton": 24035, "Sheet1_income": 75696, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.938606649063715, 33.004446033381328 ], [ -96.944385053294681, 33.029228031611822 ], [ -96.84037377713733, 33.054010029842317 ], [ -96.846152181368296, 33.026749831788777 ], [ -96.938606649063715, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALLEN", "zip": "75013", "state": "TX", "Sheet1_value": 1841, "Sheet1_populaiton": 31388, "Sheet1_income": 131878, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.684356862901311, 33.076313828249766 ], [ -96.730584096749013, 33.125877824710756 ], [ -96.655464841746493, 33.153138022764296 ], [ -96.66124324597746, 33.130834224356853 ], [ -96.684356862901311, 33.081270227895864 ], [ -96.684356862901311, 33.076313828249766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COPPELL", "zip": "75019", "state": "TX", "Sheet1_value": 1993, "Sheet1_populaiton": 39551, "Sheet1_income": 110445, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.932828244832749, 32.937534638158994 ], [ -97.019504308297215, 32.944969237628143 ], [ -97.031061116759133, 32.954882036920345 ], [ -97.013725904066249, 32.984620434796938 ], [ -96.944385053294681, 32.989576834443035 ], [ -96.932828244832749, 32.937534638158994 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENISON", "zip": "75020", "state": "TX", "Sheet1_value": 696, "Sheet1_populaiton": 22343, "Sheet1_income": 40999, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.574567182512993, 33.700820183658216 ], [ -96.603459203667811, 33.708254783127366 ], [ -96.649686437515527, 33.750384180119205 ], [ -96.597680799436844, 33.874294171271679 ], [ -96.574567182512993, 33.819773775164592 ], [ -96.534118352896243, 33.822251974987637 ], [ -96.574567182512993, 33.700820183658216 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENISON", "zip": "75021", "state": "TX", "Sheet1_value": 263, "Sheet1_populaiton": 8306, "Sheet1_income": 40000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.470555906355642, 33.685950984719923 ], [ -96.574567182512993, 33.700820183658216 ], [ -96.534118352896243, 33.822251974987637 ], [ -96.447442289431791, 33.780122577995797 ], [ -96.378101438660224, 33.725602181888711 ], [ -96.378101438660224, 33.693385584189073 ], [ -96.470555906355642, 33.685950984719923 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLOWER MOUND", "zip": "75022", "state": "TX", "Sheet1_value": 812, "Sheet1_populaiton": 22884, "Sheet1_income": 145938, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.106180371761667, 32.984620434796938 ], [ -97.123515584454566, 32.987098634619983 ], [ -97.204413243688052, 33.054010029842317 ], [ -97.129293988685532, 33.063922829134519 ], [ -97.111958775992633, 33.054010029842317 ], [ -97.042617925221066, 32.984620434796938 ], [ -97.106180371761667, 32.984620434796938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75023", "state": "TX", "Sheet1_value": 3159, "Sheet1_populaiton": 46733, "Sheet1_income": 74777, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.690135267132263, 33.066401028957564 ], [ -96.701692075594195, 33.036662631080972 ], [ -96.771032926365763, 33.041619030727077 ], [ -96.771032926365763, 33.056488229665369 ], [ -96.771032926365763, 33.071357428603662 ], [ -96.690135267132263, 33.066401028957564 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75024", "state": "TX", "Sheet1_value": 2259, "Sheet1_populaiton": 38889, "Sheet1_income": 88707, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.84037377713733, 33.054010029842317 ], [ -96.84037377713733, 33.086226627541961 ], [ -96.788368139058662, 33.103574026303306 ], [ -96.765254522134796, 33.111008625772456 ], [ -96.771032926365763, 33.071357428603662 ], [ -96.771032926365763, 33.056488229665369 ], [ -96.84037377713733, 33.054010029842317 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75025", "state": "TX", "Sheet1_value": 3040, "Sheet1_populaiton": 51924, "Sheet1_income": 104168, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.765254522134796, 33.111008625772456 ], [ -96.730584096749013, 33.125877824710756 ], [ -96.684356862901311, 33.076313828249766 ], [ -96.690135267132263, 33.066401028957564 ], [ -96.771032926365763, 33.071357428603662 ], [ -96.765254522134796, 33.111008625772456 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLOWER MOUND", "zip": "75028", "state": "TX", "Sheet1_value": 1804, "Sheet1_populaiton": 43753, "Sheet1_income": 111391, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 33.054010029842317 ], [ -97.042617925221066, 33.049053630196219 ], [ -97.031061116759133, 32.989576834443035 ], [ -97.042617925221066, 32.984620434796938 ], [ -97.111958775992633, 33.054010029842317 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKWALL", "zip": "75032", "state": "TX", "Sheet1_value": 1321, "Sheet1_populaiton": 29965, "Sheet1_income": 93308, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.516783140203358, 32.813624647006527 ], [ -96.516783140203358, 32.833450245590925 ], [ -96.516783140203358, 32.868145043113614 ], [ -96.511004735972392, 32.880536042228862 ], [ -96.41855026827696, 32.920187239397649 ], [ -96.314538992119623, 32.813624647006527 ], [ -96.378101438660224, 32.813624647006527 ], [ -96.516783140203358, 32.813624647006527 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRISCO", "zip": "75034", "state": "TX", "Sheet1_value": 2371, "Sheet1_populaiton": 75490, "Sheet1_income": 111318, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.967498670218532, 33.096139426834156 ], [ -96.967498670218532, 33.101095826480261 ], [ -96.973277074449499, 33.118443225241606 ], [ -96.875044202523114, 33.22004941798663 ], [ -96.765254522134796, 33.22004941798663 ], [ -96.788368139058662, 33.103574026303306 ], [ -96.84037377713733, 33.086226627541961 ], [ -96.967498670218532, 33.096139426834156 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRISCO", "zip": "75035", "state": "TX", "Sheet1_value": 2865, "Sheet1_populaiton": 51444, "Sheet1_income": 102913, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.788368139058662, 33.103574026303306 ], [ -96.765254522134796, 33.22004941798663 ], [ -96.747919309441912, 33.202702019225285 ], [ -96.730584096749013, 33.125877824710756 ], [ -96.765254522134796, 33.111008625772456 ], [ -96.788368139058662, 33.103574026303306 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75038", "state": "TX", "Sheet1_value": 2129, "Sheet1_populaiton": 28161, "Sheet1_income": 48130, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 32.855754043998367 ], [ -96.990612287142397, 32.887970641698011 ], [ -96.973277074449499, 32.895405241167154 ], [ -96.944385053294681, 32.868145043113614 ], [ -97.019504308297215, 32.855754043998367 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75039", "state": "TX", "Sheet1_value": 737, "Sheet1_populaiton": 12197, "Sheet1_income": 73503, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.927049840601796, 32.895405241167154 ], [ -96.915493032139864, 32.855754043998367 ], [ -96.944385053294681, 32.868145043113614 ], [ -96.973277074449499, 32.895405241167154 ], [ -96.938606649063715, 32.912752639928499 ], [ -96.927049840601796, 32.895405241167154 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARLAND", "zip": "75040", "state": "TX", "Sheet1_value": 4292, "Sheet1_populaiton": 59792, "Sheet1_income": 54664, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.603459203667811, 32.892927041344109 ], [ -96.649686437515527, 32.895405241167154 ], [ -96.649686437515527, 32.930100038689851 ], [ -96.609237607898777, 32.969751235858638 ], [ -96.591902395205892, 32.947447437451196 ], [ -96.591902395205892, 32.910274440105454 ], [ -96.591902395205892, 32.892927041344109 ], [ -96.603459203667811, 32.892927041344109 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARLAND", "zip": "75041", "state": "TX", "Sheet1_value": 1581, "Sheet1_populaiton": 30684, "Sheet1_income": 40136, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.667021650208412, 32.868145043113614 ], [ -96.672800054439378, 32.870623242936659 ], [ -96.690135267132263, 32.895405241167154 ], [ -96.649686437515527, 32.895405241167154 ], [ -96.603459203667811, 32.892927041344109 ], [ -96.649686437515527, 32.855754043998367 ], [ -96.667021650208412, 32.868145043113614 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARLAND", "zip": "75042", "state": "TX", "Sheet1_value": 2926, "Sheet1_populaiton": 40185, "Sheet1_income": 39811, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.690135267132263, 32.895405241167154 ], [ -96.695913671363229, 32.902839840636304 ], [ -96.707470479825162, 32.930100038689851 ], [ -96.684356862901311, 32.930100038689851 ], [ -96.649686437515527, 32.930100038689851 ], [ -96.649686437515527, 32.895405241167154 ], [ -96.690135267132263, 32.895405241167154 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARLAND", "zip": "75043", "state": "TX", "Sheet1_value": 3486, "Sheet1_populaiton": 58120, "Sheet1_income": 55149, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.597680799436844, 32.833450245590925 ], [ -96.632351224822628, 32.84336304488312 ], [ -96.649686437515527, 32.855754043998367 ], [ -96.603459203667811, 32.892927041344109 ], [ -96.591902395205892, 32.892927041344109 ], [ -96.516783140203358, 32.868145043113614 ], [ -96.516783140203358, 32.833450245590925 ], [ -96.597680799436844, 32.833450245590925 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARLAND", "zip": "75044", "state": "TX", "Sheet1_value": 3636, "Sheet1_populaiton": 41578, "Sheet1_income": 64302, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.649686437515527, 32.930100038689851 ], [ -96.684356862901311, 32.930100038689851 ], [ -96.684356862901311, 32.97222943568169 ], [ -96.615016012129743, 32.984620434796938 ], [ -96.609237607898777, 32.969751235858638 ], [ -96.649686437515527, 32.930100038689851 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SACHSE", "zip": "75048", "state": "TX", "Sheet1_value": 1427, "Sheet1_populaiton": 20930, "Sheet1_income": 87171, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.609237607898777, 32.969751235858638 ], [ -96.615016012129743, 32.984620434796938 ], [ -96.597680799436844, 32.994533234089133 ], [ -96.551453565589142, 32.944969237628143 ], [ -96.591902395205892, 32.947447437451196 ], [ -96.609237607898777, 32.969751235858638 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAND PRAIRIE", "zip": "75050", "state": "TX", "Sheet1_value": 2049, "Sheet1_populaiton": 40652, "Sheet1_income": 44548, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.048396329452032, 32.739278652315043 ], [ -97.059953137913965, 32.764060650545538 ], [ -97.059953137913965, 32.81610284682958 ], [ -97.0368395209901, 32.81610284682958 ], [ -96.996390691373364, 32.81610284682958 ], [ -96.927049840601796, 32.781408049306883 ], [ -96.915493032139864, 32.76653885036859 ], [ -96.927049840601796, 32.746713251784193 ], [ -97.048396329452032, 32.736800452491991 ], [ -97.048396329452032, 32.739278652315043 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAND PRAIRIE", "zip": "75051", "state": "TX", "Sheet1_value": 1872, "Sheet1_populaiton": 41345, "Sheet1_income": 40107, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.048396329452032, 32.707062054615399 ], [ -97.048396329452032, 32.736800452491991 ], [ -96.927049840601796, 32.746713251784193 ], [ -96.955941861756614, 32.707062054615399 ], [ -97.048396329452032, 32.707062054615399 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAND PRAIRIE", "zip": "75052", "state": "TX", "Sheet1_value": 5456, "Sheet1_populaiton": 89743, "Sheet1_income": 66744, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.979055478680465, 32.657498058154417 ], [ -97.0368395209901, 32.617846860985622 ], [ -97.065731542144931, 32.615368661162577 ], [ -97.059953137913965, 32.647585258862215 ], [ -97.07728835060685, 32.677323656738807 ], [ -97.065731542144931, 32.707062054615399 ], [ -97.048396329452032, 32.707062054615399 ], [ -96.955941861756614, 32.707062054615399 ], [ -96.979055478680465, 32.657498058154417 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THE COLONY", "zip": "75056", "state": "TX", "Sheet1_value": 2724, "Sheet1_populaiton": 49514, "Sheet1_income": 79251, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 33.029228031611822 ], [ -96.967498670218532, 33.096139426834156 ], [ -96.84037377713733, 33.086226627541961 ], [ -96.84037377713733, 33.054010029842317 ], [ -96.944385053294681, 33.029228031611822 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEWISVILLE", "zip": "75057", "state": "TX", "Sheet1_value": 649, "Sheet1_populaiton": 13749, "Sheet1_income": 50338, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.938606649063715, 33.004446033381328 ], [ -96.950163457525647, 32.994533234089133 ], [ -97.007947499835282, 33.049053630196219 ], [ -97.025282712528181, 33.101095826480261 ], [ -96.967498670218532, 33.101095826480261 ], [ -96.967498670218532, 33.096139426834156 ], [ -96.944385053294681, 33.029228031611822 ], [ -96.938606649063715, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GUNTER", "zip": "75058", "state": "TX", "Sheet1_value": 92, "Sheet1_populaiton": 3238, "Sheet1_income": 79250, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.643908033284561, 33.465391200468524 ], [ -96.655464841746493, 33.400958005069242 ], [ -96.805703351751546, 33.405914404715332 ], [ -96.84037377713733, 33.438131002414977 ], [ -96.776811330596729, 33.482738599229869 ], [ -96.643908033284561, 33.465391200468524 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75060", "state": "TX", "Sheet1_value": 2321, "Sheet1_populaiton": 46409, "Sheet1_income": 45775, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.898157819446965, 32.798755448068228 ], [ -96.927049840601796, 32.781408049306883 ], [ -96.996390691373364, 32.81610284682958 ], [ -96.903936223677931, 32.813624647006527 ], [ -96.898157819446965, 32.798755448068228 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75061", "state": "TX", "Sheet1_value": 2735, "Sheet1_populaiton": 53233, "Sheet1_income": 40084, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.892379415215999, 32.830972045767872 ], [ -96.903936223677931, 32.813624647006527 ], [ -96.996390691373364, 32.81610284682958 ], [ -97.0368395209901, 32.81610284682958 ], [ -97.031061116759133, 32.83592844541397 ], [ -96.892379415215999, 32.830972045767872 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75062", "state": "TX", "Sheet1_value": 3046, "Sheet1_populaiton": 46200, "Sheet1_income": 45872, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.031061116759133, 32.83592844541397 ], [ -97.065731542144931, 32.838406645237022 ], [ -97.019504308297215, 32.855754043998367 ], [ -96.944385053294681, 32.868145043113614 ], [ -96.915493032139864, 32.855754043998367 ], [ -96.892379415215999, 32.830972045767872 ], [ -97.031061116759133, 32.83592844541397 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRVING", "zip": "75063", "state": "TX", "Sheet1_value": 2324, "Sheet1_populaiton": 36425, "Sheet1_income": 69114, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.990612287142397, 32.887970641698011 ], [ -97.019504308297215, 32.944969237628143 ], [ -96.932828244832749, 32.937534638158994 ], [ -96.938606649063715, 32.912752639928499 ], [ -96.973277074449499, 32.895405241167154 ], [ -96.990612287142397, 32.887970641698011 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAKE DALLAS", "zip": "75065", "state": "TX", "Sheet1_value": 532, "Sheet1_populaiton": 11033, "Sheet1_income": 72342, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.025282712528181, 33.101095826480261 ], [ -97.048396329452032, 33.138268823825996 ], [ -97.002169095604316, 33.143225223472101 ], [ -96.973277074449499, 33.118443225241606 ], [ -96.967498670218532, 33.101095826480261 ], [ -97.025282712528181, 33.101095826480261 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEWISVILLE", "zip": "75067", "state": "TX", "Sheet1_value": 3381, "Sheet1_populaiton": 61816, "Sheet1_income": 56555, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 32.989576834443035 ], [ -97.013725904066249, 32.984620434796938 ], [ -97.031061116759133, 32.989576834443035 ], [ -97.042617925221066, 33.049053630196219 ], [ -97.007947499835282, 33.049053630196219 ], [ -96.950163457525647, 32.994533234089133 ], [ -96.938606649063715, 32.989576834443035 ], [ -96.944385053294681, 32.989576834443035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LITTLE ELM", "zip": "75068", "state": "TX", "Sheet1_value": 2125, "Sheet1_populaiton": 38950, "Sheet1_income": 85446, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.973277074449499, 33.118443225241606 ], [ -97.002169095604316, 33.143225223472101 ], [ -97.025282712528181, 33.22004941798663 ], [ -96.875044202523114, 33.229962217278825 ], [ -96.875044202523114, 33.22004941798663 ], [ -96.973277074449499, 33.118443225241606 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC KINNEY", "zip": "75069", "state": "TX", "Sheet1_value": 1596, "Sheet1_populaiton": 34471, "Sheet1_income": 45907, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.545675161358176, 33.190311020110038 ], [ -96.53989675712721, 33.128356024533801 ], [ -96.66124324597746, 33.130834224356853 ], [ -96.655464841746493, 33.153138022764296 ], [ -96.632351224822628, 33.229962217278825 ], [ -96.545675161358176, 33.190311020110038 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC KINNEY", "zip": "75070", "state": "TX", "Sheet1_value": 4186, "Sheet1_populaiton": 78837, "Sheet1_income": 98524, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.730584096749013, 33.125877824710756 ], [ -96.747919309441912, 33.202702019225285 ], [ -96.632351224822628, 33.229962217278825 ], [ -96.655464841746493, 33.153138022764296 ], [ -96.730584096749013, 33.125877824710756 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC KINNEY", "zip": "75071", "state": "TX", "Sheet1_value": 2028, "Sheet1_populaiton": 38811, "Sheet1_income": 80291, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.747919309441912, 33.202702019225285 ], [ -96.765254522134796, 33.22004941798663 ], [ -96.730584096749013, 33.262178814978469 ], [ -96.609237607898777, 33.306786411793361 ], [ -96.597680799436844, 33.284482613385919 ], [ -96.493669523279493, 33.269613414447619 ], [ -96.476334310586608, 33.247309616040177 ], [ -96.545675161358176, 33.190311020110038 ], [ -96.632351224822628, 33.229962217278825 ], [ -96.747919309441912, 33.202702019225285 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75074", "state": "TX", "Sheet1_value": 2904, "Sheet1_populaiton": 46606, "Sheet1_income": 54518, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 33.034184431257927 ], [ -96.638129629053594, 33.009402433027432 ], [ -96.707470479825162, 33.001967833558282 ], [ -96.701692075594195, 33.036662631080972 ], [ -96.690135267132263, 33.066401028957564 ], [ -96.684356862901311, 33.076313828249766 ], [ -96.684356862901311, 33.081270227895864 ], [ -96.638129629053594, 33.034184431257927 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75075", "state": "TX", "Sheet1_value": 1940, "Sheet1_populaiton": 33884, "Sheet1_income": 72852, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.707470479825162, 33.001967833558282 ], [ -96.707470479825162, 32.997011433912185 ], [ -96.753697713672878, 32.997011433912185 ], [ -96.765254522134796, 33.00692423320438 ], [ -96.771032926365763, 33.041619030727077 ], [ -96.701692075594195, 33.036662631080972 ], [ -96.707470479825162, 33.001967833558282 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POTTSBORO", "zip": "75076", "state": "TX", "Sheet1_value": 317, "Sheet1_populaiton": 7541, "Sheet1_income": 52543, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.649686437515527, 33.750384180119205 ], [ -96.742140905210945, 33.713211182773463 ], [ -96.805703351751546, 33.824730174810689 ], [ -96.788368139058662, 33.864381371979476 ], [ -96.597680799436844, 33.874294171271679 ], [ -96.649686437515527, 33.750384180119205 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEWISVILLE", "zip": "75077", "state": "TX", "Sheet1_value": 1597, "Sheet1_populaiton": 36560, "Sheet1_income": 99629, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 33.054010029842317 ], [ -97.129293988685532, 33.063922829134519 ], [ -97.059953137913965, 33.101095826480261 ], [ -97.025282712528181, 33.101095826480261 ], [ -97.007947499835282, 33.049053630196219 ], [ -97.042617925221066, 33.049053630196219 ], [ -97.111958775992633, 33.054010029842317 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PROSPER", "zip": "75078", "state": "TX", "Sheet1_value": 545, "Sheet1_populaiton": 11683, "Sheet1_income": 119529, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.875044202523114, 33.22004941798663 ], [ -96.875044202523114, 33.229962217278825 ], [ -96.863487394061195, 33.262178814978469 ], [ -96.730584096749013, 33.262178814978469 ], [ -96.765254522134796, 33.22004941798663 ], [ -96.875044202523114, 33.22004941798663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHARDSON", "zip": "75080", "state": "TX", "Sheet1_value": 2206, "Sheet1_populaiton": 45616, "Sheet1_income": 60440, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.747919309441912, 32.937534638158994 ], [ -96.771032926365763, 32.940012837982046 ], [ -96.771032926365763, 32.949925637274248 ], [ -96.765254522134796, 32.984620434796938 ], [ -96.753697713672878, 32.997011433912185 ], [ -96.707470479825162, 32.997011433912185 ], [ -96.713248884056128, 32.974707635504743 ], [ -96.747919309441912, 32.937534638158994 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHARDSON", "zip": "75081", "state": "TX", "Sheet1_value": 3164, "Sheet1_populaiton": 34286, "Sheet1_income": 63470, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.707470479825162, 32.930100038689851 ], [ -96.747919309441912, 32.937534638158994 ], [ -96.713248884056128, 32.974707635504743 ], [ -96.684356862901311, 32.97222943568169 ], [ -96.684356862901311, 32.930100038689851 ], [ -96.707470479825162, 32.930100038689851 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHARDSON", "zip": "75082", "state": "TX", "Sheet1_value": 1464, "Sheet1_populaiton": 21670, "Sheet1_income": 111726, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.707470479825162, 32.997011433912185 ], [ -96.707470479825162, 33.001967833558282 ], [ -96.638129629053594, 33.009402433027432 ], [ -96.615016012129743, 32.984620434796938 ], [ -96.684356862901311, 32.97222943568169 ], [ -96.713248884056128, 32.974707635504743 ], [ -96.707470479825162, 32.997011433912185 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKWALL", "zip": "75087", "state": "TX", "Sheet1_value": 1281, "Sheet1_populaiton": 29630, "Sheet1_income": 86094, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.424328672507926, 32.994533234089133 ], [ -96.41855026827696, 32.920187239397649 ], [ -96.511004735972392, 32.880536042228862 ], [ -96.505226331741426, 32.920187239397649 ], [ -96.516783140203358, 32.952403837097293 ], [ -96.487891119048527, 32.982142234973885 ], [ -96.435885480969858, 32.99948963373523 ], [ -96.424328672507926, 32.994533234089133 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROWLETT", "zip": "75088", "state": "TX", "Sheet1_value": 1221, "Sheet1_populaiton": 26237, "Sheet1_income": 81425, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.516783140203358, 32.868145043113614 ], [ -96.591902395205892, 32.892927041344109 ], [ -96.591902395205892, 32.910274440105454 ], [ -96.505226331741426, 32.920187239397649 ], [ -96.511004735972392, 32.880536042228862 ], [ -96.516783140203358, 32.868145043113614 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROWLETT", "zip": "75089", "state": "TX", "Sheet1_value": 1844, "Sheet1_populaiton": 29640, "Sheet1_income": 86134, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.591902395205892, 32.947447437451196 ], [ -96.551453565589142, 32.944969237628143 ], [ -96.516783140203358, 32.952403837097293 ], [ -96.505226331741426, 32.920187239397649 ], [ -96.591902395205892, 32.910274440105454 ], [ -96.591902395205892, 32.947447437451196 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHERMAN", "zip": "75090", "state": "TX", "Sheet1_value": 816, "Sheet1_populaiton": 23833, "Sheet1_income": 38216, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.487891119048527, 33.574431992682698 ], [ -96.516783140203358, 33.490173198699019 ], [ -96.53989675712721, 33.477782199583771 ], [ -96.643908033284561, 33.566997393213548 ], [ -96.603459203667811, 33.708254783127366 ], [ -96.574567182512993, 33.700820183658216 ], [ -96.470555906355642, 33.685950984719923 ], [ -96.487891119048527, 33.574431992682698 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHERMAN", "zip": "75092", "state": "TX", "Sheet1_value": 765, "Sheet1_populaiton": 22382, "Sheet1_income": 50771, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.701692075594195, 33.616561389674537 ], [ -96.75947611790383, 33.708254783127366 ], [ -96.742140905210945, 33.713211182773463 ], [ -96.649686437515527, 33.750384180119205 ], [ -96.603459203667811, 33.708254783127366 ], [ -96.643908033284561, 33.566997393213548 ], [ -96.747919309441912, 33.559562793744405 ], [ -96.701692075594195, 33.616561389674537 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75093", "state": "TX", "Sheet1_value": 2539, "Sheet1_populaiton": 46990, "Sheet1_income": 99225, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.817260160213479, 33.01435883267353 ], [ -96.846152181368296, 33.016837032496582 ], [ -96.846152181368296, 33.026749831788777 ], [ -96.84037377713733, 33.054010029842317 ], [ -96.771032926365763, 33.056488229665369 ], [ -96.771032926365763, 33.041619030727077 ], [ -96.765254522134796, 33.00692423320438 ], [ -96.817260160213479, 33.01435883267353 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANO", "zip": "75094", "state": "TX", "Sheet1_value": 1596, "Sheet1_populaiton": 20536, "Sheet1_income": 116344, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.615016012129743, 32.984620434796938 ], [ -96.638129629053594, 33.009402433027432 ], [ -96.638129629053594, 33.034184431257927 ], [ -96.591902395205892, 33.031706231434875 ], [ -96.597680799436844, 32.994533234089133 ], [ -96.615016012129743, 32.984620434796938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WYLIE", "zip": "75098", "state": "TX", "Sheet1_value": 2855, "Sheet1_populaiton": 48611, "Sheet1_income": 81413, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.516783140203358, 32.952403837097293 ], [ -96.551453565589142, 32.944969237628143 ], [ -96.597680799436844, 32.994533234089133 ], [ -96.591902395205892, 33.031706231434875 ], [ -96.534118352896243, 33.096139426834156 ], [ -96.482112714817575, 33.044097230550122 ], [ -96.487891119048527, 32.982142234973885 ], [ -96.516783140203358, 32.952403837097293 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BARRY", "zip": "75102", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40455, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.603459203667811, 32.03299170274596 ], [ -96.667021650208412, 32.171770892836726 ], [ -96.557231969820094, 32.112294097083542 ], [ -96.603459203667811, 32.03299170274596 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CANTON", "zip": "75103", "state": "TX", "Sheet1_value": 563, "Sheet1_populaiton": 13103, "Sheet1_income": 50286, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.077624418650103, 32.357635879565436 ], [ -96.077624418650103, 32.528631667355846 ], [ -96.077624418650103, 32.563326464878536 ], [ -95.933164312876002, 32.662454457800514 ], [ -95.829153036718651, 32.617846860985622 ], [ -95.8060394197948, 32.602977662047323 ], [ -95.754033781716117, 32.570761064347685 ], [ -95.76559059017805, 32.488980470187052 ], [ -95.823374632487685, 32.384896077618976 ], [ -95.811817824025752, 32.357635879565436 ], [ -95.892715483259252, 32.357635879565436 ], [ -96.077624418650103, 32.357635879565436 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CEDAR HILL", "zip": "75104", "state": "TX", "Sheet1_value": 2423, "Sheet1_populaiton": 45935, "Sheet1_income": 67691, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.0368395209901, 32.548457265940236 ], [ -97.0368395209901, 32.617846860985622 ], [ -96.979055478680465, 32.657498058154417 ], [ -96.944385053294681, 32.625281460454772 ], [ -96.909714627908897, 32.617846860985622 ], [ -96.909714627908897, 32.560848265055483 ], [ -96.909714627908897, 32.545979066117191 ], [ -97.0368395209901, 32.548457265940236 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHATFIELD", "zip": "75105", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.285646970964791, 32.256029686820405 ], [ -96.464777502124676, 32.275855285404802 ], [ -96.38387984289119, 32.327897481688844 ], [ -96.285646970964791, 32.256029686820405 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORSICANA", "zip": "75109", "state": "TX", "Sheet1_value": 176, "Sheet1_populaiton": 4191, "Sheet1_income": 58317, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.198970907500339, 31.973514906992776 ], [ -96.354987821736358, 31.936341909647034 ], [ -96.453220693662757, 32.062730100622552 ], [ -96.372323034429257, 32.109815897260489 ], [ -96.314538992119623, 32.102381297791347 ], [ -96.198970907500339, 31.973514906992776 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORSICANA", "zip": "75110", "state": "TX", "Sheet1_value": 922, "Sheet1_populaiton": 27901, "Sheet1_income": 40235, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.476334310586608, 31.968558507346675 ], [ -96.591902395205892, 32.010687904338518 ], [ -96.603459203667811, 32.03299170274596 ], [ -96.557231969820094, 32.112294097083542 ], [ -96.667021650208412, 32.171770892836726 ], [ -96.690135267132263, 32.174249092659778 ], [ -96.597680799436844, 32.221334889297715 ], [ -96.389658247122156, 32.134597895490984 ], [ -96.372323034429257, 32.109815897260489 ], [ -96.453220693662757, 32.062730100622552 ], [ -96.354987821736358, 31.936341909647034 ], [ -96.476334310586608, 31.968558507346675 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CRANDALL", "zip": "75114", "state": "TX", "Sheet1_value": 229, "Sheet1_populaiton": 4548, "Sheet1_income": 68287, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.476334310586608, 32.533588067001944 ], [ -96.482112714817575, 32.63767245957002 ], [ -96.41855026827696, 32.682280056384911 ], [ -96.366544630198291, 32.605455861870375 ], [ -96.453220693662757, 32.541022666471093 ], [ -96.476334310586608, 32.533588067001944 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DESOTO", "zip": "75115", "state": "TX", "Sheet1_value": 2528, "Sheet1_populaiton": 49839, "Sheet1_income": 61729, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.602977662047323 ], [ -96.823038564444431, 32.560848265055483 ], [ -96.909714627908897, 32.560848265055483 ], [ -96.909714627908897, 32.617846860985622 ], [ -96.886601010985046, 32.647585258862215 ], [ -96.857708989830229, 32.632716059923922 ], [ -96.823038564444431, 32.632716059923922 ], [ -96.823038564444431, 32.602977662047323 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DUNCANVILLE", "zip": "75116", "state": "TX", "Sheet1_value": 862, "Sheet1_populaiton": 20135, "Sheet1_income": 53706, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 32.647585258862215 ], [ -96.944385053294681, 32.662454457800514 ], [ -96.892379415215999, 32.677323656738807 ], [ -96.892379415215999, 32.647585258862215 ], [ -96.944385053294681, 32.647585258862215 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDGEWOOD", "zip": "75117", "state": "TX", "Sheet1_value": 155, "Sheet1_populaiton": 3307, "Sheet1_income": 41348, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.76559059017805, 32.759104250899441 ], [ -95.829153036718651, 32.617846860985622 ], [ -95.933164312876002, 32.662454457800514 ], [ -95.881158674797319, 32.788842648776033 ], [ -95.800261015563834, 32.77397344983774 ], [ -95.76559059017805, 32.759104250899441 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ENNIS", "zip": "75119", "state": "TX", "Sheet1_value": 963, "Sheet1_populaiton": 25867, "Sheet1_income": 44808, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.690135267132263, 32.174249092659778 ], [ -96.701692075594195, 32.171770892836726 ], [ -96.719027288287094, 32.374983278326781 ], [ -96.603459203667811, 32.484024070540954 ], [ -96.505226331741426, 32.474111271248759 ], [ -96.435885480969858, 32.412156275672523 ], [ -96.38387984289119, 32.327897481688844 ], [ -96.464777502124676, 32.275855285404802 ], [ -96.597680799436844, 32.221334889297715 ], [ -96.690135267132263, 32.174249092659778 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EUSTACE", "zip": "75124", "state": "TX", "Sheet1_value": 188, "Sheet1_populaiton": 4052, "Sheet1_income": 47500, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.031397184802387, 32.251073287174307 ], [ -96.077624418650103, 32.357635879565436 ], [ -95.892715483259252, 32.357635879565436 ], [ -95.944721121337935, 32.270898885758704 ], [ -95.956277929799853, 32.251073287174307 ], [ -96.031397184802387, 32.251073287174307 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FERRIS", "zip": "75125", "state": "TX", "Sheet1_value": 302, "Sheet1_populaiton": 6959, "Sheet1_income": 45375, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.49944792751046, 32.496415069656202 ], [ -96.505226331741426, 32.474111271248759 ], [ -96.603459203667811, 32.484024070540954 ], [ -96.713248884056128, 32.484024070540954 ], [ -96.719027288287094, 32.541022666471093 ], [ -96.667021650208412, 32.560848265055483 ], [ -96.643908033284561, 32.607934061693427 ], [ -96.620794416360695, 32.617846860985622 ], [ -96.49944792751046, 32.496415069656202 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORNEY", "zip": "75126", "state": "TX", "Sheet1_value": 1629, "Sheet1_populaiton": 33914, "Sheet1_income": 85677, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.378101438660224, 32.813624647006527 ], [ -96.41855026827696, 32.682280056384911 ], [ -96.482112714817575, 32.63767245957002 ], [ -96.522561544434325, 32.702105654969301 ], [ -96.516783140203358, 32.754147851253343 ], [ -96.516783140203358, 32.813624647006527 ], [ -96.378101438660224, 32.813624647006527 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRUITVALE", "zip": "75127", "state": "TX", "Sheet1_value": 82, "Sheet1_populaiton": 1459, "Sheet1_income": 45848, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690471335175516, 32.729365853022848 ], [ -95.8060394197948, 32.602977662047323 ], [ -95.829153036718651, 32.617846860985622 ], [ -95.76559059017805, 32.759104250899441 ], [ -95.690471335175516, 32.729365853022848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LANCASTER", "zip": "75134", "state": "TX", "Sheet1_value": 953, "Sheet1_populaiton": 19910, "Sheet1_income": 46971, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.736362500979979, 32.617846860985622 ], [ -96.701692075594195, 32.602977662047323 ], [ -96.823038564444431, 32.602977662047323 ], [ -96.823038564444431, 32.632716059923922 ], [ -96.823038564444431, 32.642628859216117 ], [ -96.736362500979979, 32.617846860985622 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CADDO MILLS", "zip": "75135", "state": "TX", "Sheet1_value": 281, "Sheet1_populaiton": 5223, "Sheet1_income": 62800, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.204749311731305, 33.115965025418554 ], [ -96.152743673652623, 32.99948963373523 ], [ -96.210527715962272, 32.989576834443035 ], [ -96.297203779426724, 33.063922829134519 ], [ -96.297203779426724, 33.078792028072812 ], [ -96.297203779426724, 33.153138022764296 ], [ -96.204749311731305, 33.115965025418554 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DUNCANVILLE", "zip": "75137", "state": "TX", "Sheet1_value": 927, "Sheet1_populaiton": 18865, "Sheet1_income": 58895, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.909714627908897, 32.617846860985622 ], [ -96.944385053294681, 32.625281460454772 ], [ -96.944385053294681, 32.647585258862215 ], [ -96.892379415215999, 32.647585258862215 ], [ -96.886601010985046, 32.647585258862215 ], [ -96.909714627908897, 32.617846860985622 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAND SALINE", "zip": "75140", "state": "TX", "Sheet1_value": 272, "Sheet1_populaiton": 6889, "Sheet1_income": 41111, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690471335175516, 32.729365853022848 ], [ -95.638465697096848, 32.724409453376751 ], [ -95.592238463249132, 32.687236456031002 ], [ -95.592238463249132, 32.655019858331364 ], [ -95.754033781716117, 32.570761064347685 ], [ -95.8060394197948, 32.602977662047323 ], [ -95.690471335175516, 32.729365853022848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUTCHINS", "zip": "75141", "state": "TX", "Sheet1_value": 204, "Sheet1_populaiton": 5347, "Sheet1_income": 34786, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.643908033284561, 32.607934061693427 ], [ -96.695913671363229, 32.605455861870375 ], [ -96.701692075594195, 32.602977662047323 ], [ -96.736362500979979, 32.617846860985622 ], [ -96.684356862901311, 32.650063458685267 ], [ -96.643908033284561, 32.635194259746967 ], [ -96.620794416360695, 32.617846860985622 ], [ -96.643908033284561, 32.607934061693427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KAUFMAN", "zip": "75142", "state": "TX", "Sheet1_value": 797, "Sheet1_populaiton": 18690, "Sheet1_income": 53809, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.077624418650103, 32.528631667355846 ], [ -96.112294844035887, 32.503849669125351 ], [ -96.279868566733839, 32.449329273018265 ], [ -96.453220693662757, 32.541022666471093 ], [ -96.366544630198291, 32.605455861870375 ], [ -96.26253335404094, 32.669889057269657 ], [ -96.106516439804921, 32.617846860985622 ], [ -96.077624418650103, 32.563326464878536 ], [ -96.077624418650103, 32.528631667355846 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KEMP", "zip": "75143", "state": "TX", "Sheet1_value": 685, "Sheet1_populaiton": 15932, "Sheet1_income": 40135, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.112294844035887, 32.503849669125351 ], [ -96.141186865190704, 32.23868228805906 ], [ -96.152743673652623, 32.213900289828565 ], [ -96.26253335404094, 32.248595087351262 ], [ -96.285646970964791, 32.256029686820405 ], [ -96.38387984289119, 32.327897481688844 ], [ -96.435885480969858, 32.412156275672523 ], [ -96.279868566733839, 32.449329273018265 ], [ -96.112294844035887, 32.503849669125351 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KERENS", "zip": "75144", "state": "TX", "Sheet1_value": 110, "Sheet1_populaiton": 3482, "Sheet1_income": 32289, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.054510801726252, 32.013166104161563 ], [ -96.135408460959738, 31.973514906992776 ], [ -96.198970907500339, 31.973514906992776 ], [ -96.314538992119623, 32.102381297791347 ], [ -96.34343101327444, 32.159379893721479 ], [ -96.26253335404094, 32.248595087351262 ], [ -96.152743673652623, 32.213900289828565 ], [ -96.066067610188171, 32.065208300445605 ], [ -96.054510801726252, 32.013166104161563 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LANCASTER", "zip": "75146", "state": "TX", "Sheet1_value": 925, "Sheet1_populaiton": 18567, "Sheet1_income": 59244, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.695913671363229, 32.605455861870375 ], [ -96.667021650208412, 32.560848265055483 ], [ -96.719027288287094, 32.541022666471093 ], [ -96.823038564444431, 32.560848265055483 ], [ -96.823038564444431, 32.602977662047323 ], [ -96.701692075594195, 32.602977662047323 ], [ -96.695913671363229, 32.605455861870375 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MABANK", "zip": "75147", "state": "TX", "Sheet1_value": 239, "Sheet1_populaiton": 8475, "Sheet1_income": 45227, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.112294844035887, 32.503849669125351 ], [ -96.077624418650103, 32.528631667355846 ], [ -96.077624418650103, 32.357635879565436 ], [ -96.031397184802387, 32.251073287174307 ], [ -96.066067610188171, 32.179205492305876 ], [ -96.141186865190704, 32.23868228805906 ], [ -96.112294844035887, 32.503849669125351 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MALAKOFF", "zip": "75148", "state": "TX", "Sheet1_value": 230, "Sheet1_populaiton": 6436, "Sheet1_income": 34252, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.066067610188171, 32.065208300445605 ], [ -96.066067610188171, 32.179205492305876 ], [ -96.031397184802387, 32.251073287174307 ], [ -95.956277929799853, 32.251073287174307 ], [ -95.967834738261786, 32.015644303984615 ], [ -96.054510801726252, 32.00573150469242 ], [ -96.054510801726252, 32.013166104161563 ], [ -96.066067610188171, 32.065208300445605 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MESQUITE", "zip": "75149", "state": "TX", "Sheet1_value": 2678, "Sheet1_populaiton": 58427, "Sheet1_income": 47739, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 32.749191451607246 ], [ -96.684356862901311, 32.791320848599085 ], [ -96.672800054439378, 32.798755448068228 ], [ -96.597680799436844, 32.791320848599085 ], [ -96.574567182512993, 32.764060650545538 ], [ -96.597680799436844, 32.744235051961141 ], [ -96.638129629053594, 32.749191451607246 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MESQUITE", "zip": "75150", "state": "TX", "Sheet1_value": 3050, "Sheet1_populaiton": 58143, "Sheet1_income": 45999, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.597680799436844, 32.833450245590925 ], [ -96.597680799436844, 32.791320848599085 ], [ -96.672800054439378, 32.798755448068228 ], [ -96.632351224822628, 32.84336304488312 ], [ -96.597680799436844, 32.833450245590925 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PALMER", "zip": "75152", "state": "TX", "Sheet1_value": 203, "Sheet1_populaiton": 5908, "Sheet1_income": 54659, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.719027288287094, 32.374983278326781 ], [ -96.765254522134796, 32.476589471071804 ], [ -96.713248884056128, 32.484024070540954 ], [ -96.603459203667811, 32.484024070540954 ], [ -96.719027288287094, 32.374983278326781 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POWELL", "zip": "75153", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38692, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.314538992119623, 32.102381297791347 ], [ -96.372323034429257, 32.109815897260489 ], [ -96.389658247122156, 32.134597895490984 ], [ -96.34343101327444, 32.159379893721479 ], [ -96.314538992119623, 32.102381297791347 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RED OAK", "zip": "75154", "state": "TX", "Sheet1_value": 1623, "Sheet1_populaiton": 36411, "Sheet1_income": 66162, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.713248884056128, 32.484024070540954 ], [ -96.765254522134796, 32.476589471071804 ], [ -96.823038564444431, 32.493936869833149 ], [ -96.875044202523114, 32.498893269479254 ], [ -96.909714627908897, 32.545979066117191 ], [ -96.909714627908897, 32.560848265055483 ], [ -96.823038564444431, 32.560848265055483 ], [ -96.719027288287094, 32.541022666471093 ], [ -96.713248884056128, 32.484024070540954 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICE", "zip": "75155", "state": "TX", "Sheet1_value": 101, "Sheet1_populaiton": 2670, "Sheet1_income": 37375, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.34343101327444, 32.159379893721479 ], [ -96.389658247122156, 32.134597895490984 ], [ -96.597680799436844, 32.221334889297715 ], [ -96.464777502124676, 32.275855285404802 ], [ -96.285646970964791, 32.256029686820405 ], [ -96.26253335404094, 32.248595087351262 ], [ -96.34343101327444, 32.159379893721479 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SCURRY", "zip": "75158", "state": "TX", "Sheet1_value": 175, "Sheet1_populaiton": 4291, "Sheet1_income": 58466, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.279868566733839, 32.449329273018265 ], [ -96.435885480969858, 32.412156275672523 ], [ -96.505226331741426, 32.474111271248759 ], [ -96.49944792751046, 32.496415069656202 ], [ -96.476334310586608, 32.533588067001944 ], [ -96.453220693662757, 32.541022666471093 ], [ -96.279868566733839, 32.449329273018265 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEAGOVILLE", "zip": "75159", "state": "TX", "Sheet1_value": 826, "Sheet1_populaiton": 18379, "Sheet1_income": 45479, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.476334310586608, 32.533588067001944 ], [ -96.49944792751046, 32.496415069656202 ], [ -96.620794416360695, 32.617846860985622 ], [ -96.643908033284561, 32.635194259746967 ], [ -96.557231969820094, 32.687236456031002 ], [ -96.522561544434325, 32.702105654969301 ], [ -96.482112714817575, 32.63767245957002 ], [ -96.476334310586608, 32.533588067001944 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TERRELL", "zip": "75160", "state": "TX", "Sheet1_value": 1004, "Sheet1_populaiton": 23068, "Sheet1_income": 44594, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.170078886345522, 32.83592844541397 ], [ -96.26253335404094, 32.669889057269657 ], [ -96.366544630198291, 32.605455861870375 ], [ -96.41855026827696, 32.682280056384911 ], [ -96.378101438660224, 32.813624647006527 ], [ -96.314538992119623, 32.813624647006527 ], [ -96.227862928655156, 32.887970641698011 ], [ -96.170078886345522, 32.83592844541397 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TERRELL", "zip": "75161", "state": "TX", "Sheet1_value": 279, "Sheet1_populaiton": 6610, "Sheet1_income": 56148, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.077624418650103, 32.838406645237022 ], [ -96.106516439804921, 32.617846860985622 ], [ -96.26253335404094, 32.669889057269657 ], [ -96.170078886345522, 32.83592844541397 ], [ -96.077624418650103, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TRINIDAD", "zip": "75163", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 1643, "Sheet1_income": 51800, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.066067610188171, 32.065208300445605 ], [ -96.152743673652623, 32.213900289828565 ], [ -96.141186865190704, 32.23868228805906 ], [ -96.066067610188171, 32.179205492305876 ], [ -96.066067610188171, 32.065208300445605 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WAXAHACHIE", "zip": "75165", "state": "TX", "Sheet1_value": 1579, "Sheet1_populaiton": 38526, "Sheet1_income": 59385, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.701692075594195, 32.171770892836726 ], [ -96.747919309441912, 32.146988894606231 ], [ -96.811481755982513, 32.226291288943813 ], [ -96.875044202523114, 32.258507886643457 ], [ -96.823038564444431, 32.493936869833149 ], [ -96.765254522134796, 32.476589471071804 ], [ -96.719027288287094, 32.374983278326781 ], [ -96.701692075594195, 32.171770892836726 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAVON", "zip": "75166", "state": "TX", "Sheet1_value": 191, "Sheet1_populaiton": 3723, "Sheet1_income": 75804, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.435885480969858, 32.99948963373523 ], [ -96.41855026827696, 33.02179343214268 ], [ -96.424328672507926, 32.994533234089133 ], [ -96.435885480969858, 32.99948963373523 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WAXAHACHIE", "zip": "75167", "state": "TX", "Sheet1_value": 365, "Sheet1_populaiton": 9891, "Sheet1_income": 76207, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.875044202523114, 32.258507886643457 ], [ -96.92127143637083, 32.24611688752821 ], [ -96.961720265987566, 32.270898885758704 ], [ -97.0368395209901, 32.345244880450188 ], [ -97.025282712528181, 32.350201280096286 ], [ -96.875044202523114, 32.498893269479254 ], [ -96.823038564444431, 32.493936869833149 ], [ -96.875044202523114, 32.258507886643457 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILLS POINT", "zip": "75169", "state": "TX", "Sheet1_value": 719, "Sheet1_populaiton": 14334, "Sheet1_income": 43316, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.077624418650103, 32.838406645237022 ], [ -95.933164312876002, 32.838406645237022 ], [ -95.881158674797319, 32.788842648776033 ], [ -95.933164312876002, 32.662454457800514 ], [ -96.077624418650103, 32.563326464878536 ], [ -96.106516439804921, 32.617846860985622 ], [ -96.077624418650103, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILMER", "zip": "75172", "state": "TX", "Sheet1_value": 194, "Sheet1_populaiton": 4015, "Sheet1_income": 39246, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.667021650208412, 32.560848265055483 ], [ -96.695913671363229, 32.605455861870375 ], [ -96.643908033284561, 32.607934061693427 ], [ -96.667021650208412, 32.560848265055483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEVADA", "zip": "75173", "state": "TX", "Sheet1_value": 236, "Sheet1_populaiton": 4601, "Sheet1_income": 67327, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.435885480969858, 32.99948963373523 ], [ -96.487891119048527, 32.982142234973885 ], [ -96.482112714817575, 33.044097230550122 ], [ -96.464777502124676, 33.088704827365014 ], [ -96.297203779426724, 33.078792028072812 ], [ -96.297203779426724, 33.063922829134519 ], [ -96.41855026827696, 33.02179343214268 ], [ -96.435885480969858, 32.99948963373523 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MESQUITE", "zip": "75180", "state": "TX", "Sheet1_value": 1095, "Sheet1_populaiton": 23360, "Sheet1_income": 37787, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 32.694671055500152 ], [ -96.638129629053594, 32.749191451607246 ], [ -96.597680799436844, 32.744235051961141 ], [ -96.586123990974926, 32.712018454261496 ], [ -96.638129629053594, 32.694671055500152 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MESQUITE", "zip": "75181", "state": "TX", "Sheet1_value": 1429, "Sheet1_populaiton": 26200, "Sheet1_income": 73879, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.522561544434325, 32.702105654969301 ], [ -96.557231969820094, 32.687236456031002 ], [ -96.586123990974926, 32.712018454261496 ], [ -96.597680799436844, 32.744235051961141 ], [ -96.574567182512993, 32.764060650545538 ], [ -96.516783140203358, 32.754147851253343 ], [ -96.522561544434325, 32.702105654969301 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUNNYVALE", "zip": "75182", "state": "TX", "Sheet1_value": 276, "Sheet1_populaiton": 5292, "Sheet1_income": 90366, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.597680799436844, 32.791320848599085 ], [ -96.597680799436844, 32.833450245590925 ], [ -96.516783140203358, 32.833450245590925 ], [ -96.516783140203358, 32.813624647006527 ], [ -96.516783140203358, 32.754147851253343 ], [ -96.574567182512993, 32.764060650545538 ], [ -96.597680799436844, 32.791320848599085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROYSE CITY", "zip": "75189", "state": "TX", "Sheet1_value": 1176, "Sheet1_populaiton": 22192, "Sheet1_income": 73146, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.210527715962272, 32.989576834443035 ], [ -96.227862928655156, 32.887970641698011 ], [ -96.314538992119623, 32.813624647006527 ], [ -96.41855026827696, 32.920187239397649 ], [ -96.424328672507926, 32.994533234089133 ], [ -96.41855026827696, 33.02179343214268 ], [ -96.297203779426724, 33.063922829134519 ], [ -96.210527715962272, 32.989576834443035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75201", "state": "TX", "Sheet1_value": 447, "Sheet1_populaiton": 10213, "Sheet1_income": 67979, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.788368139058662, 32.783886249129935 ], [ -96.782589734827695, 32.776451649660785 ], [ -96.794146543289628, 32.77397344983774 ], [ -96.811481755982513, 32.79379904842213 ], [ -96.817260160213479, 32.798755448068228 ], [ -96.805703351751546, 32.80123364789128 ], [ -96.788368139058662, 32.783886249129935 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75202", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 2133, "Sheet1_income": 79681, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.794146543289628, 32.77397344983774 ], [ -96.79992494752058, 32.771495250014688 ], [ -96.811481755982513, 32.79379904842213 ], [ -96.794146543289628, 32.77397344983774 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75203", "state": "TX", "Sheet1_value": 597, "Sheet1_populaiton": 15514, "Sheet1_income": 28602, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.79992494752058, 32.751669651430291 ], [ -96.771032926365763, 32.724409453376751 ], [ -96.823038564444431, 32.731844052845894 ], [ -96.823038564444431, 32.769017050191636 ], [ -96.79992494752058, 32.751669651430291 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75204", "state": "TX", "Sheet1_value": 1215, "Sheet1_populaiton": 26586, "Sheet1_income": 63551, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.798755448068228 ], [ -96.782589734827695, 32.788842648776033 ], [ -96.788368139058662, 32.783886249129935 ], [ -96.805703351751546, 32.80123364789128 ], [ -96.79992494752058, 32.818581046652625 ], [ -96.788368139058662, 32.81610284682958 ], [ -96.771032926365763, 32.80123364789128 ], [ -96.771032926365763, 32.798755448068228 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75205", "state": "TX", "Sheet1_value": 738, "Sheet1_populaiton": 23384, "Sheet1_income": 108913, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.850797644352269 ], [ -96.788368139058662, 32.81610284682958 ], [ -96.79992494752058, 32.818581046652625 ], [ -96.817260160213479, 32.826015646121775 ], [ -96.811481755982513, 32.850797644352269 ], [ -96.771032926365763, 32.850797644352269 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75206", "state": "TX", "Sheet1_value": 1827, "Sheet1_populaiton": 37198, "Sheet1_income": 52192, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.753697713672878, 32.858232243821419 ], [ -96.771032926365763, 32.80123364789128 ], [ -96.788368139058662, 32.81610284682958 ], [ -96.771032926365763, 32.850797644352269 ], [ -96.771032926365763, 32.865666843290562 ], [ -96.753697713672878, 32.858232243821419 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75207", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 9561, "Sheet1_income": 74792, "Sheet1_percent": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.769017050191636 ], [ -96.823038564444431, 32.776451649660785 ], [ -96.857708989830229, 32.798755448068228 ], [ -96.851930585599263, 32.811146447183475 ], [ -96.828816968675397, 32.806190047537378 ], [ -96.817260160213479, 32.798755448068228 ], [ -96.811481755982513, 32.79379904842213 ], [ -96.79992494752058, 32.771495250014688 ], [ -96.79992494752058, 32.751669651430291 ], [ -96.823038564444431, 32.769017050191636 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75208", "state": "TX", "Sheet1_value": 1536, "Sheet1_populaiton": 31299, "Sheet1_income": 45170, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.731844052845894 ], [ -96.857708989830229, 32.724409453376751 ], [ -96.857708989830229, 32.76653885036859 ], [ -96.823038564444431, 32.776451649660785 ], [ -96.823038564444431, 32.769017050191636 ], [ -96.823038564444431, 32.731844052845894 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75209", "state": "TX", "Sheet1_value": 630, "Sheet1_populaiton": 15312, "Sheet1_income": 79408, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.817260160213479, 32.823537446298722 ], [ -96.851930585599263, 32.860710443644464 ], [ -96.811481755982513, 32.865666843290562 ], [ -96.811481755982513, 32.850797644352269 ], [ -96.817260160213479, 32.826015646121775 ], [ -96.817260160213479, 32.823537446298722 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75210", "state": "TX", "Sheet1_value": 328, "Sheet1_populaiton": 6125, "Sheet1_income": 15258, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.730584096749013, 32.76653885036859 ], [ -96.736362500979979, 32.754147851253343 ], [ -96.771032926365763, 32.778929849483831 ], [ -96.765254522134796, 32.783886249129935 ], [ -96.736362500979979, 32.778929849483831 ], [ -96.730584096749013, 32.76653885036859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75211", "state": "TX", "Sheet1_value": 3255, "Sheet1_populaiton": 73530, "Sheet1_income": 36704, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.857708989830229, 32.724409453376751 ], [ -96.892379415215999, 32.712018454261496 ], [ -96.955941861756614, 32.707062054615399 ], [ -96.927049840601796, 32.746713251784193 ], [ -96.915493032139864, 32.76653885036859 ], [ -96.857708989830229, 32.76653885036859 ], [ -96.857708989830229, 32.724409453376751 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75212", "state": "TX", "Sheet1_value": 1116, "Sheet1_populaiton": 25756, "Sheet1_income": 28802, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.857708989830229, 32.76653885036859 ], [ -96.915493032139864, 32.76653885036859 ], [ -96.927049840601796, 32.781408049306883 ], [ -96.898157819446965, 32.798755448068228 ], [ -96.857708989830229, 32.798755448068228 ], [ -96.823038564444431, 32.776451649660785 ], [ -96.857708989830229, 32.76653885036859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75214", "state": "TX", "Sheet1_value": 1533, "Sheet1_populaiton": 33460, "Sheet1_income": 69168, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.765254522134796, 32.79379904842213 ], [ -96.771032926365763, 32.798755448068228 ], [ -96.771032926365763, 32.80123364789128 ], [ -96.753697713672878, 32.858232243821419 ], [ -96.730584096749013, 32.855754043998367 ], [ -96.724805692518061, 32.858232243821419 ], [ -96.724805692518061, 32.803711847714325 ], [ -96.75947611790383, 32.79379904842213 ], [ -96.765254522134796, 32.79379904842213 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75215", "state": "TX", "Sheet1_value": 750, "Sheet1_populaiton": 14118, "Sheet1_income": 23433, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.736362500979979, 32.754147851253343 ], [ -96.736362500979979, 32.724409453376751 ], [ -96.771032926365763, 32.724409453376751 ], [ -96.79992494752058, 32.751669651430291 ], [ -96.79992494752058, 32.771495250014688 ], [ -96.794146543289628, 32.77397344983774 ], [ -96.782589734827695, 32.776451649660785 ], [ -96.771032926365763, 32.778929849483831 ], [ -96.736362500979979, 32.754147851253343 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75216", "state": "TX", "Sheet1_value": 2178, "Sheet1_populaiton": 49342, "Sheet1_income": 23294, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.687236456031002 ], [ -96.823038564444431, 32.731844052845894 ], [ -96.771032926365763, 32.724409453376751 ], [ -96.736362500979979, 32.724409453376751 ], [ -96.736362500979979, 32.707062054615399 ], [ -96.823038564444431, 32.687236456031002 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75217", "state": "TX", "Sheet1_value": 3894, "Sheet1_populaiton": 82664, "Sheet1_income": 34480, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 32.694671055500152 ], [ -96.684356862901311, 32.650063458685267 ], [ -96.736362500979979, 32.707062054615399 ], [ -96.736362500979979, 32.724409453376751 ], [ -96.736362500979979, 32.754147851253343 ], [ -96.730584096749013, 32.76653885036859 ], [ -96.638129629053594, 32.749191451607246 ], [ -96.638129629053594, 32.694671055500152 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75218", "state": "TX", "Sheet1_value": 1330, "Sheet1_populaiton": 22743, "Sheet1_income": 65567, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.667021650208412, 32.868145043113614 ], [ -96.724805692518061, 32.803711847714325 ], [ -96.724805692518061, 32.858232243821419 ], [ -96.672800054439378, 32.870623242936659 ], [ -96.667021650208412, 32.868145043113614 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75219", "state": "TX", "Sheet1_value": 1261, "Sheet1_populaiton": 21700, "Sheet1_income": 59650, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.805703351751546, 32.80123364789128 ], [ -96.817260160213479, 32.798755448068228 ], [ -96.828816968675397, 32.806190047537378 ], [ -96.817260160213479, 32.823537446298722 ], [ -96.817260160213479, 32.826015646121775 ], [ -96.79992494752058, 32.818581046652625 ], [ -96.805703351751546, 32.80123364789128 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75220", "state": "TX", "Sheet1_value": 1438, "Sheet1_populaiton": 43762, "Sheet1_income": 35827, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.851930585599263, 32.860710443644464 ], [ -96.875044202523114, 32.840884845060074 ], [ -96.892379415215999, 32.830972045767872 ], [ -96.915493032139864, 32.855754043998367 ], [ -96.927049840601796, 32.895405241167154 ], [ -96.92127143637083, 32.895405241167154 ], [ -96.811481755982513, 32.880536042228862 ], [ -96.811481755982513, 32.865666843290562 ], [ -96.851930585599263, 32.860710443644464 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75223", "state": "TX", "Sheet1_value": 744, "Sheet1_populaiton": 12583, "Sheet1_income": 35949, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.730584096749013, 32.791320848599085 ], [ -96.736362500979979, 32.778929849483831 ], [ -96.765254522134796, 32.783886249129935 ], [ -96.75947611790383, 32.79379904842213 ], [ -96.724805692518061, 32.803711847714325 ], [ -96.730584096749013, 32.791320848599085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75224", "state": "TX", "Sheet1_value": 1507, "Sheet1_populaiton": 34640, "Sheet1_income": 33830, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.687236456031002 ], [ -96.857708989830229, 32.692192855677106 ], [ -96.857708989830229, 32.724409453376751 ], [ -96.823038564444431, 32.731844052845894 ], [ -96.823038564444431, 32.687236456031002 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75225", "state": "TX", "Sheet1_value": 482, "Sheet1_populaiton": 20770, "Sheet1_income": 147153, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.811481755982513, 32.865666843290562 ], [ -96.811481755982513, 32.880536042228862 ], [ -96.771032926365763, 32.880536042228862 ], [ -96.771032926365763, 32.865666843290562 ], [ -96.771032926365763, 32.850797644352269 ], [ -96.811481755982513, 32.850797644352269 ], [ -96.811481755982513, 32.865666843290562 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75226", "state": "TX", "Sheet1_value": 193, "Sheet1_populaiton": 3265, "Sheet1_income": 42768, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.778929849483831 ], [ -96.782589734827695, 32.776451649660785 ], [ -96.788368139058662, 32.783886249129935 ], [ -96.782589734827695, 32.788842648776033 ], [ -96.765254522134796, 32.79379904842213 ], [ -96.75947611790383, 32.79379904842213 ], [ -96.765254522134796, 32.783886249129935 ], [ -96.771032926365763, 32.778929849483831 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75227", "state": "TX", "Sheet1_value": 2620, "Sheet1_populaiton": 56594, "Sheet1_income": 37720, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 32.749191451607246 ], [ -96.730584096749013, 32.76653885036859 ], [ -96.736362500979979, 32.778929849483831 ], [ -96.730584096749013, 32.791320848599085 ], [ -96.684356862901311, 32.791320848599085 ], [ -96.638129629053594, 32.749191451607246 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75228", "state": "TX", "Sheet1_value": 3451, "Sheet1_populaiton": 70699, "Sheet1_income": 36274, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.684356862901311, 32.791320848599085 ], [ -96.730584096749013, 32.791320848599085 ], [ -96.724805692518061, 32.803711847714325 ], [ -96.667021650208412, 32.868145043113614 ], [ -96.649686437515527, 32.855754043998367 ], [ -96.632351224822628, 32.84336304488312 ], [ -96.672800054439378, 32.798755448068228 ], [ -96.684356862901311, 32.791320848599085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75229", "state": "TX", "Sheet1_value": 1506, "Sheet1_populaiton": 33371, "Sheet1_income": 70625, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.817260160213479, 32.910274440105454 ], [ -96.811481755982513, 32.880536042228862 ], [ -96.92127143637083, 32.895405241167154 ], [ -96.857708989830229, 32.910274440105454 ], [ -96.817260160213479, 32.910274440105454 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75230", "state": "TX", "Sheet1_value": 1291, "Sheet1_populaiton": 27027, "Sheet1_income": 68863, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.817260160213479, 32.910274440105454 ], [ -96.823038564444431, 32.925143639043753 ], [ -96.788368139058662, 32.925143639043753 ], [ -96.771032926365763, 32.910274440105454 ], [ -96.771032926365763, 32.897883440990206 ], [ -96.771032926365763, 32.880536042228862 ], [ -96.811481755982513, 32.880536042228862 ], [ -96.817260160213479, 32.910274440105454 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75231", "state": "TX", "Sheet1_value": 1953, "Sheet1_populaiton": 34227, "Sheet1_income": 33546, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.865666843290562 ], [ -96.771032926365763, 32.880536042228862 ], [ -96.771032926365763, 32.897883440990206 ], [ -96.719027288287094, 32.895405241167154 ], [ -96.730584096749013, 32.855754043998367 ], [ -96.753697713672878, 32.858232243821419 ], [ -96.771032926365763, 32.865666843290562 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75232", "state": "TX", "Sheet1_value": 1418, "Sheet1_populaiton": 27317, "Sheet1_income": 36265, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.632716059923922 ], [ -96.857708989830229, 32.632716059923922 ], [ -96.857708989830229, 32.692192855677106 ], [ -96.823038564444431, 32.687236456031002 ], [ -96.823038564444431, 32.642628859216117 ], [ -96.823038564444431, 32.632716059923922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75233", "state": "TX", "Sheet1_value": 647, "Sheet1_populaiton": 14431, "Sheet1_income": 40151, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.857708989830229, 32.692192855677106 ], [ -96.892379415215999, 32.692192855677106 ], [ -96.892379415215999, 32.712018454261496 ], [ -96.857708989830229, 32.724409453376751 ], [ -96.857708989830229, 32.692192855677106 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75234", "state": "TX", "Sheet1_value": 1883, "Sheet1_populaiton": 29180, "Sheet1_income": 53305, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.938606649063715, 32.912752639928499 ], [ -96.857708989830229, 32.952403837097293 ], [ -96.857708989830229, 32.932578238512896 ], [ -96.857708989830229, 32.910274440105454 ], [ -96.92127143637083, 32.895405241167154 ], [ -96.927049840601796, 32.895405241167154 ], [ -96.938606649063715, 32.912752639928499 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75235", "state": "TX", "Sheet1_value": 780, "Sheet1_populaiton": 18864, "Sheet1_income": 37530, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.828816968675397, 32.806190047537378 ], [ -96.851930585599263, 32.811146447183475 ], [ -96.875044202523114, 32.840884845060074 ], [ -96.851930585599263, 32.860710443644464 ], [ -96.817260160213479, 32.823537446298722 ], [ -96.828816968675397, 32.806190047537378 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75236", "state": "TX", "Sheet1_value": 819, "Sheet1_populaiton": 15264, "Sheet1_income": 37645, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 32.662454457800514 ], [ -96.979055478680465, 32.657498058154417 ], [ -96.955941861756614, 32.707062054615399 ], [ -96.892379415215999, 32.712018454261496 ], [ -96.892379415215999, 32.692192855677106 ], [ -96.892379415215999, 32.677323656738807 ], [ -96.944385053294681, 32.662454457800514 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75237", "state": "TX", "Sheet1_value": 840, "Sheet1_populaiton": 17203, "Sheet1_income": 29787, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.892379415215999, 32.677323656738807 ], [ -96.892379415215999, 32.692192855677106 ], [ -96.857708989830229, 32.692192855677106 ], [ -96.857708989830229, 32.632716059923922 ], [ -96.886601010985046, 32.647585258862215 ], [ -96.892379415215999, 32.647585258862215 ], [ -96.892379415215999, 32.677323656738807 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75238", "state": "TX", "Sheet1_value": 1296, "Sheet1_populaiton": 30594, "Sheet1_income": 52779, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.724805692518061, 32.858232243821419 ], [ -96.730584096749013, 32.855754043998367 ], [ -96.719027288287094, 32.895405241167154 ], [ -96.695913671363229, 32.902839840636304 ], [ -96.690135267132263, 32.895405241167154 ], [ -96.672800054439378, 32.870623242936659 ], [ -96.724805692518061, 32.858232243821419 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75240", "state": "TX", "Sheet1_value": 1097, "Sheet1_populaiton": 27050, "Sheet1_income": 37095, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 32.925143639043753 ], [ -96.823038564444431, 32.940012837982046 ], [ -96.771032926365763, 32.940012837982046 ], [ -96.747919309441912, 32.937534638158994 ], [ -96.771032926365763, 32.925143639043753 ], [ -96.788368139058662, 32.925143639043753 ], [ -96.823038564444431, 32.925143639043753 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75241", "state": "TX", "Sheet1_value": 1312, "Sheet1_populaiton": 29586, "Sheet1_income": 30870, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.736362500979979, 32.617846860985622 ], [ -96.823038564444431, 32.642628859216117 ], [ -96.823038564444431, 32.687236456031002 ], [ -96.736362500979979, 32.707062054615399 ], [ -96.684356862901311, 32.650063458685267 ], [ -96.736362500979979, 32.617846860985622 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75243", "state": "TX", "Sheet1_value": 4541, "Sheet1_populaiton": 56910, "Sheet1_income": 35944, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.910274440105454 ], [ -96.771032926365763, 32.925143639043753 ], [ -96.747919309441912, 32.937534638158994 ], [ -96.707470479825162, 32.930100038689851 ], [ -96.695913671363229, 32.902839840636304 ], [ -96.719027288287094, 32.895405241167154 ], [ -96.771032926365763, 32.897883440990206 ], [ -96.771032926365763, 32.910274440105454 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75244", "state": "TX", "Sheet1_value": 596, "Sheet1_populaiton": 13170, "Sheet1_income": 72735, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.857708989830229, 32.932578238512896 ], [ -96.828816968675397, 32.947447437451196 ], [ -96.823038564444431, 32.940012837982046 ], [ -96.823038564444431, 32.925143639043753 ], [ -96.817260160213479, 32.910274440105454 ], [ -96.857708989830229, 32.910274440105454 ], [ -96.857708989830229, 32.932578238512896 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75246", "state": "TX", "Sheet1_value": 135, "Sheet1_populaiton": 2604, "Sheet1_income": 32254, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.782589734827695, 32.788842648776033 ], [ -96.771032926365763, 32.798755448068228 ], [ -96.765254522134796, 32.79379904842213 ], [ -96.782589734827695, 32.788842648776033 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75247", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 546, "Sheet1_income": 23793, "Sheet1_percent": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.903936223677931, 32.813624647006527 ], [ -96.892379415215999, 32.830972045767872 ], [ -96.875044202523114, 32.840884845060074 ], [ -96.851930585599263, 32.811146447183475 ], [ -96.857708989830229, 32.798755448068228 ], [ -96.898157819446965, 32.798755448068228 ], [ -96.903936223677931, 32.813624647006527 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75248", "state": "TX", "Sheet1_value": 1801, "Sheet1_populaiton": 34902, "Sheet1_income": 72111, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.949925637274248 ], [ -96.823038564444431, 32.954882036920345 ], [ -96.828816968675397, 32.987098634619983 ], [ -96.811481755982513, 32.987098634619983 ], [ -96.765254522134796, 32.984620434796938 ], [ -96.771032926365763, 32.949925637274248 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75249", "state": "TX", "Sheet1_value": 773, "Sheet1_populaiton": 14172, "Sheet1_income": 57247, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 32.625281460454772 ], [ -96.979055478680465, 32.657498058154417 ], [ -96.944385053294681, 32.662454457800514 ], [ -96.944385053294681, 32.647585258862215 ], [ -96.944385053294681, 32.625281460454772 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75251", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 2945, "Sheet1_income": 56788, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.788368139058662, 32.925143639043753 ], [ -96.771032926365763, 32.925143639043753 ], [ -96.771032926365763, 32.910274440105454 ], [ -96.788368139058662, 32.925143639043753 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75252", "state": "TX", "Sheet1_value": 1611, "Sheet1_populaiton": 24898, "Sheet1_income": 54650, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.765254522134796, 32.984620434796938 ], [ -96.811481755982513, 32.987098634619983 ], [ -96.817260160213479, 33.01435883267353 ], [ -96.765254522134796, 33.00692423320438 ], [ -96.753697713672878, 32.997011433912185 ], [ -96.765254522134796, 32.984620434796938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75253", "state": "TX", "Sheet1_value": 741, "Sheet1_populaiton": 18370, "Sheet1_income": 33283, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.643908033284561, 32.635194259746967 ], [ -96.684356862901311, 32.650063458685267 ], [ -96.638129629053594, 32.694671055500152 ], [ -96.586123990974926, 32.712018454261496 ], [ -96.557231969820094, 32.687236456031002 ], [ -96.643908033284561, 32.635194259746967 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75254", "state": "TX", "Sheet1_value": 1306, "Sheet1_populaiton": 24138, "Sheet1_income": 44283, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.828816968675397, 32.947447437451196 ], [ -96.823038564444431, 32.954882036920345 ], [ -96.771032926365763, 32.949925637274248 ], [ -96.771032926365763, 32.940012837982046 ], [ -96.823038564444431, 32.940012837982046 ], [ -96.828816968675397, 32.947447437451196 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75261", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065731542144931, 32.838406645237022 ], [ -97.071509946375883, 32.880536042228862 ], [ -97.031061116759133, 32.954882036920345 ], [ -97.019504308297215, 32.944969237628143 ], [ -96.990612287142397, 32.887970641698011 ], [ -97.019504308297215, 32.855754043998367 ], [ -97.065731542144931, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALLAS", "zip": "75287", "state": "TX", "Sheet1_value": 3188, "Sheet1_populaiton": 50416, "Sheet1_income": 46828, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.857708989830229, 32.987098634619983 ], [ -96.846152181368296, 33.016837032496582 ], [ -96.817260160213479, 33.01435883267353 ], [ -96.811481755982513, 32.987098634619983 ], [ -96.828816968675397, 32.987098634619983 ], [ -96.84037377713733, 32.987098634619983 ], [ -96.857708989830229, 32.987098634619983 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GREENVILLE", "zip": "75401", "state": "TX", "Sheet1_value": 639, "Sheet1_populaiton": 18566, "Sheet1_income": 31274, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.979391546723718, 33.210136618694435 ], [ -95.996726759416603, 33.130834224356853 ], [ -96.204749311731305, 33.115965025418554 ], [ -96.297203779426724, 33.153138022764296 ], [ -96.216306120193224, 33.187832820286985 ], [ -96.094959631342988, 33.286960813208964 ], [ -96.031397184802387, 33.252266015686274 ], [ -95.979391546723718, 33.210136618694435 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GREENVILLE", "zip": "75402", "state": "TX", "Sheet1_value": 582, "Sheet1_populaiton": 16029, "Sheet1_income": 57594, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.204749311731305, 33.115965025418554 ], [ -95.996726759416603, 33.130834224356853 ], [ -95.973613142492752, 33.076313828249766 ], [ -96.002505163647569, 33.001967833558282 ], [ -96.152743673652623, 32.99948963373523 ], [ -96.204749311731305, 33.115965025418554 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PRINCETON", "zip": "75407", "state": "TX", "Sheet1_value": 784, "Sheet1_populaiton": 14871, "Sheet1_income": 52330, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.41855026827696, 33.242353216394079 ], [ -96.464777502124676, 33.088704827365014 ], [ -96.482112714817575, 33.044097230550122 ], [ -96.534118352896243, 33.096139426834156 ], [ -96.53989675712721, 33.128356024533801 ], [ -96.545675161358176, 33.190311020110038 ], [ -96.476334310586608, 33.247309616040177 ], [ -96.41855026827696, 33.242353216394079 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANNA", "zip": "75409", "state": "TX", "Sheet1_value": 599, "Sheet1_populaiton": 11488, "Sheet1_income": 61997, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.401215055584075, 33.39847980524619 ], [ -96.487891119048527, 33.286960813208964 ], [ -96.597680799436844, 33.284482613385919 ], [ -96.609237607898777, 33.306786411793361 ], [ -96.649686437515527, 33.396001605423137 ], [ -96.424328672507926, 33.39847980524619 ], [ -96.401215055584075, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALBA", "zip": "75410", "state": "TX", "Sheet1_value": 222, "Sheet1_populaiton": 4259, "Sheet1_income": 40492, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.638465697096848, 32.724409453376751 ], [ -95.748255377485151, 32.81610284682958 ], [ -95.655800909789733, 32.905318040459356 ], [ -95.574903250556247, 32.82849384594482 ], [ -95.465113570167929, 32.761582450722486 ], [ -95.592238463249132, 32.687236456031002 ], [ -95.638465697096848, 32.724409453376751 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARTHUR CITY", "zip": "75411", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 61641, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 33.864381371979476 ], [ -95.418886336320213, 33.822251974987637 ], [ -95.551789633632382, 33.854468572687281 ], [ -95.522897612477564, 33.889163370209971 ], [ -95.332210272855761, 33.879250570917776 ], [ -95.30909665593191, 33.879250570917776 ], [ -95.30909665593191, 33.864381371979476 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAGWELL", "zip": "75412", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45508, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.921943572457323, 33.792513577111045 ], [ -95.158858145926843, 33.715689382596516 ], [ -95.30909665593191, 33.780122577995797 ], [ -95.30909665593191, 33.864381371979476 ], [ -95.30909665593191, 33.879250570917776 ], [ -95.153079741695876, 33.936249166847915 ], [ -94.968170806305039, 33.859424972333379 ], [ -94.921943572457323, 33.792513577111045 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BELLS", "zip": "75414", "state": "TX", "Sheet1_value": 83, "Sheet1_populaiton": 3424, "Sheet1_income": 51815, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.378101438660224, 33.693385584189073 ], [ -96.38387984289119, 33.5694755930366 ], [ -96.487891119048527, 33.574431992682698 ], [ -96.470555906355642, 33.685950984719923 ], [ -96.378101438660224, 33.693385584189073 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEN FRANKLIN", "zip": "75415", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 18529, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.748255377485151, 33.465391200468524 ], [ -95.834931440949617, 33.460434800822426 ], [ -95.7251417605613, 33.485216799052921 ], [ -95.748255377485151, 33.465391200468524 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLOSSOM", "zip": "75416", "state": "TX", "Sheet1_value": 93, "Sheet1_populaiton": 2762, "Sheet1_income": 40685, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40732952785828, 33.58930119162099 ], [ -95.470891974398896, 33.728080381711763 ], [ -95.418886336320213, 33.822251974987637 ], [ -95.30909665593191, 33.864381371979476 ], [ -95.30909665593191, 33.780122577995797 ], [ -95.30909665593191, 33.609126790205387 ], [ -95.30909665593191, 33.59673579109014 ], [ -95.378437506703477, 33.581866592151847 ], [ -95.40732952785828, 33.58930119162099 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOGATA", "zip": "75417", "state": "TX", "Sheet1_value": 71, "Sheet1_populaiton": 2400, "Sheet1_income": 33056, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.829489104761905, 33.38361060630789 ], [ -95.124187720541059, 33.388567005953988 ], [ -95.30909665593191, 33.378654206661793 ], [ -95.30909665593191, 33.381132406484845 ], [ -95.30909665593191, 33.59673579109014 ], [ -95.30909665593191, 33.609126790205387 ], [ -95.216642188236477, 33.571953792859645 ], [ -94.933500380919241, 33.453000201353277 ], [ -94.829489104761905, 33.38361060630789 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BONHAM", "zip": "75418", "state": "TX", "Sheet1_value": 360, "Sheet1_populaiton": 13672, "Sheet1_income": 41466, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.100738035573954, 33.643821587728084 ], [ -96.129630056728772, 33.517433396752558 ], [ -96.30298218365769, 33.475303999760719 ], [ -96.274090162502873, 33.56204099356745 ], [ -96.250976545579022, 33.621517789320635 ], [ -96.210527715962272, 33.653734387020279 ], [ -96.123851652497805, 33.651256187197227 ], [ -96.100738035573954, 33.643821587728084 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROOKSTON", "zip": "75421", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54808, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.632687292865882, 33.656212586843324 ], [ -95.696249739406483, 33.57691019250575 ], [ -95.719363356330334, 33.619039589497589 ], [ -95.707806547868415, 33.641343387905032 ], [ -95.632687292865882, 33.656212586843324 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CAMPBELL", "zip": "75422", "state": "TX", "Sheet1_value": 94, "Sheet1_populaiton": 2659, "Sheet1_income": 52056, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.996726759416603, 33.130834224356853 ], [ -95.979391546723718, 33.210136618694435 ], [ -95.863823462104435, 33.22004941798663 ], [ -95.863823462104435, 33.088704827365014 ], [ -95.973613142492752, 33.076313828249766 ], [ -95.996726759416603, 33.130834224356853 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CELESTE", "zip": "75423", "state": "TX", "Sheet1_value": 117, "Sheet1_populaiton": 3135, "Sheet1_income": 47162, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.216306120193224, 33.187832820286985 ], [ -96.297203779426724, 33.269613414447619 ], [ -96.297203779426724, 33.284482613385919 ], [ -96.158522077883589, 33.371219607192643 ], [ -96.094959631342988, 33.286960813208964 ], [ -96.216306120193224, 33.187832820286985 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLUE RIDGE", "zip": "75424", "state": "TX", "Sheet1_value": 155, "Sheet1_populaiton": 3548, "Sheet1_income": 48948, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.493669523279493, 33.269613414447619 ], [ -96.487891119048527, 33.286960813208964 ], [ -96.401215055584075, 33.39847980524619 ], [ -96.38387984289119, 33.39847980524619 ], [ -96.331874204812507, 33.346437608962148 ], [ -96.297203779426724, 33.284482613385919 ], [ -96.297203779426724, 33.269613414447619 ], [ -96.41855026827696, 33.242353216394079 ], [ -96.476334310586608, 33.247309616040177 ], [ -96.493669523279493, 33.269613414447619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLARKSVILLE", "zip": "75426", "state": "TX", "Sheet1_value": 212, "Sheet1_populaiton": 4802, "Sheet1_income": 24102, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.216642188236477, 33.571953792859645 ], [ -95.158858145926843, 33.715689382596516 ], [ -94.921943572457323, 33.792513577111045 ], [ -94.748591445528405, 33.703298383481268 ], [ -94.748591445528405, 33.621517789320635 ], [ -94.858381125916722, 33.628952388789784 ], [ -94.962392402074073, 33.616561389674537 ], [ -94.933500380919241, 33.453000201353277 ], [ -95.216642188236477, 33.571953792859645 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COMMERCE", "zip": "75428", "state": "TX", "Sheet1_value": 316, "Sheet1_populaiton": 10233, "Sheet1_income": 27662, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.031397184802387, 33.252266015686274 ], [ -95.950499525568887, 33.341481209316051 ], [ -95.858045057873468, 33.334046609846908 ], [ -95.863823462104435, 33.22004941798663 ], [ -95.979391546723718, 33.210136618694435 ], [ -96.031397184802387, 33.252266015686274 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COMO", "zip": "75431", "state": "TX", "Sheet1_value": 73, "Sheet1_populaiton": 1761, "Sheet1_income": 42639, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 33.024271631965725 ], [ -95.30909665593191, 32.962316636389488 ], [ -95.395772719396362, 32.962316636389488 ], [ -95.441999953244078, 33.091183027188059 ], [ -95.441999953244078, 33.160572622233445 ], [ -95.378437506703477, 33.22004941798663 ], [ -95.30909665593191, 33.165529021879543 ], [ -95.30909665593191, 33.024271631965725 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COOPER", "zip": "75432", "state": "TX", "Sheet1_value": 90, "Sheet1_populaiton": 3503, "Sheet1_income": 39500, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 33.376176006838747 ], [ -95.413107932089247, 33.371219607192643 ], [ -95.696249739406483, 33.306786411793361 ], [ -95.759812185947084, 33.361306807900448 ], [ -95.748255377485151, 33.465391200468524 ], [ -95.7251417605613, 33.485216799052921 ], [ -95.644244101327814, 33.485216799052921 ], [ -95.638465697096848, 33.482738599229869 ], [ -95.586460059018165, 33.470347600114621 ], [ -95.355323889779612, 33.39104520577704 ], [ -95.30909665593191, 33.381132406484845 ], [ -95.30909665593191, 33.378654206661793 ], [ -95.30909665593191, 33.376176006838747 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CUMBY", "zip": "75433", "state": "TX", "Sheet1_value": 91, "Sheet1_populaiton": 2908, "Sheet1_income": 47662, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719363356330334, 32.979664035150833 ], [ -95.800261015563834, 32.979664035150833 ], [ -95.863823462104435, 32.979664035150833 ], [ -95.863823462104435, 33.088704827365014 ], [ -95.863823462104435, 33.22004941798663 ], [ -95.707806547868415, 33.301830012147263 ], [ -95.719363356330334, 33.158094422410393 ], [ -95.707806547868415, 33.083748427718916 ], [ -95.719363356330334, 32.979664035150833 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEPORT", "zip": "75435", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44043, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355323889779612, 33.39104520577704 ], [ -95.453556761705997, 33.619039589497589 ], [ -95.413107932089247, 33.591779391444042 ], [ -95.378437506703477, 33.581866592151847 ], [ -95.30909665593191, 33.59673579109014 ], [ -95.30909665593191, 33.381132406484845 ], [ -95.355323889779612, 33.39104520577704 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DETROIT", "zip": "75436", "state": "TX", "Sheet1_value": 74, "Sheet1_populaiton": 2076, "Sheet1_income": 42798, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.216642188236477, 33.571953792859645 ], [ -95.30909665593191, 33.609126790205387 ], [ -95.30909665593191, 33.780122577995797 ], [ -95.158858145926843, 33.715689382596516 ], [ -95.216642188236477, 33.571953792859645 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DIKE", "zip": "75437", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53977, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441999953244078, 33.160572622233445 ], [ -95.505562399784679, 33.215093018340532 ], [ -95.366880698241545, 33.22748401745578 ], [ -95.378437506703477, 33.22004941798663 ], [ -95.441999953244078, 33.160572622233445 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DODD CITY", "zip": "75438", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 51438, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.950499525568887, 33.453000201353277 ], [ -96.060289205957204, 33.443087402061082 ], [ -96.129630056728772, 33.517433396752558 ], [ -96.100738035573954, 33.643821587728084 ], [ -95.990948355185637, 33.678516385250774 ], [ -95.985169950954685, 33.58930119162099 ], [ -95.950499525568887, 33.549649994452203 ], [ -95.950499525568887, 33.453000201353277 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ECTOR", "zip": "75439", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46125, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.274090162502873, 33.56204099356745 ], [ -96.256754949809988, 33.628952388789784 ], [ -96.250976545579022, 33.621517789320635 ], [ -96.274090162502873, 33.56204099356745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EMORY", "zip": "75440", "state": "TX", "Sheet1_value": 270, "Sheet1_populaiton": 6721, "Sheet1_income": 44340, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.76559059017805, 32.759104250899441 ], [ -95.800261015563834, 32.77397344983774 ], [ -95.800261015563834, 32.979664035150833 ], [ -95.719363356330334, 32.979664035150833 ], [ -95.667357718251665, 32.959838436566443 ], [ -95.655800909789733, 32.905318040459356 ], [ -95.748255377485151, 32.81610284682958 ], [ -95.638465697096848, 32.724409453376751 ], [ -95.690471335175516, 32.729365853022848 ], [ -95.76559059017805, 32.759104250899441 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FARMERSVILLE", "zip": "75442", "state": "TX", "Sheet1_value": 405, "Sheet1_populaiton": 9078, "Sheet1_income": 52080, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.41855026827696, 33.242353216394079 ], [ -96.297203779426724, 33.269613414447619 ], [ -96.216306120193224, 33.187832820286985 ], [ -96.297203779426724, 33.153138022764296 ], [ -96.297203779426724, 33.078792028072812 ], [ -96.464777502124676, 33.088704827365014 ], [ -96.41855026827696, 33.242353216394079 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HONEY GROVE", "zip": "75446", "state": "TX", "Sheet1_value": 87, "Sheet1_populaiton": 3488, "Sheet1_income": 43542, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.858045057873468, 33.58930119162099 ], [ -95.858045057873468, 33.462913000645472 ], [ -95.950499525568887, 33.453000201353277 ], [ -95.950499525568887, 33.549649994452203 ], [ -95.985169950954685, 33.58930119162099 ], [ -95.990948355185637, 33.678516385250774 ], [ -95.962056334030819, 33.742949580650055 ], [ -95.852266653642502, 33.824730174810689 ], [ -95.858045057873468, 33.63143058861283 ], [ -95.858045057873468, 33.58930119162099 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KLONDIKE", "zip": "75448", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56705, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.696249739406483, 33.306786411793361 ], [ -95.707806547868415, 33.301830012147263 ], [ -95.863823462104435, 33.22004941798663 ], [ -95.858045057873468, 33.334046609846908 ], [ -95.858045057873468, 33.341481209316051 ], [ -95.759812185947084, 33.361306807900448 ], [ -95.696249739406483, 33.306786411793361 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LADONIA", "zip": "75449", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35368, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.950499525568887, 33.341481209316051 ], [ -96.066067610188171, 33.381132406484845 ], [ -96.060289205957204, 33.443087402061082 ], [ -95.950499525568887, 33.453000201353277 ], [ -95.858045057873468, 33.462913000645472 ], [ -95.858045057873468, 33.460434800822426 ], [ -95.858045057873468, 33.341481209316051 ], [ -95.858045057873468, 33.334046609846908 ], [ -95.950499525568887, 33.341481209316051 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEESBURG", "zip": "75451", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 804, "Sheet1_income": 43472, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.095295699386241, 33.039140830904024 ], [ -95.043290061307559, 32.902839840636304 ], [ -95.153079741695876, 32.902839840636304 ], [ -95.153079741695876, 32.952403837097293 ], [ -95.124187720541059, 33.034184431257927 ], [ -95.095295699386241, 33.039140830904024 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEONARD", "zip": "75452", "state": "TX", "Sheet1_value": 149, "Sheet1_populaiton": 4671, "Sheet1_income": 56000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.331874204812507, 33.346437608962148 ], [ -96.30298218365769, 33.475303999760719 ], [ -96.129630056728772, 33.517433396752558 ], [ -96.060289205957204, 33.443087402061082 ], [ -96.066067610188171, 33.381132406484845 ], [ -96.158522077883589, 33.371219607192643 ], [ -96.297203779426724, 33.284482613385919 ], [ -96.331874204812507, 33.346437608962148 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONE OAK", "zip": "75453", "state": "TX", "Sheet1_value": 141, "Sheet1_populaiton": 3040, "Sheet1_income": 41525, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.967834738261786, 32.907796240282408 ], [ -96.002505163647569, 33.001967833558282 ], [ -95.973613142492752, 33.076313828249766 ], [ -95.863823462104435, 33.088704827365014 ], [ -95.863823462104435, 32.979664035150833 ], [ -95.967834738261786, 32.907796240282408 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MELISSA", "zip": "75454", "state": "TX", "Sheet1_value": 372, "Sheet1_populaiton": 5800, "Sheet1_income": 87125, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.597680799436844, 33.284482613385919 ], [ -96.487891119048527, 33.286960813208964 ], [ -96.493669523279493, 33.269613414447619 ], [ -96.597680799436844, 33.284482613385919 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOUNT PLEASANT", "zip": "75455", "state": "TX", "Sheet1_value": 672, "Sheet1_populaiton": 28492, "Sheet1_income": 43701, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.008619635921775, 33.076313828249766 ], [ -95.049068465538525, 33.259700615155424 ], [ -94.812153892069006, 33.282004413562866 ], [ -94.812153892069006, 33.279526213739814 ], [ -94.939278785150208, 33.143225223472101 ], [ -95.008619635921775, 33.076313828249766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOUNT VERNON", "zip": "75457", "state": "TX", "Sheet1_value": 285, "Sheet1_populaiton": 6116, "Sheet1_income": 39909, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.124187720541059, 33.257222415332372 ], [ -95.124187720541059, 33.051531830019272 ], [ -95.30909665593191, 33.024271631965725 ], [ -95.30909665593191, 33.165529021879543 ], [ -95.30909665593191, 33.254744215509319 ], [ -95.30909665593191, 33.282004413562866 ], [ -95.30909665593191, 33.376176006838747 ], [ -95.30909665593191, 33.378654206661793 ], [ -95.124187720541059, 33.388567005953988 ], [ -95.124187720541059, 33.257222415332372 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOWE", "zip": "75459", "state": "TX", "Sheet1_value": 116, "Sheet1_populaiton": 4541, "Sheet1_income": 64792, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.53989675712721, 33.477782199583771 ], [ -96.643908033284561, 33.465391200468524 ], [ -96.776811330596729, 33.482738599229869 ], [ -96.794146543289628, 33.487694998875966 ], [ -96.851930585599263, 33.574431992682698 ], [ -96.701692075594195, 33.616561389674537 ], [ -96.747919309441912, 33.559562793744405 ], [ -96.643908033284561, 33.566997393213548 ], [ -96.53989675712721, 33.477782199583771 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PARIS", "zip": "75460", "state": "TX", "Sheet1_value": 617, "Sheet1_populaiton": 22753, "Sheet1_income": 29717, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644244101327814, 33.485216799052921 ], [ -95.696249739406483, 33.57691019250575 ], [ -95.632687292865882, 33.656212586843324 ], [ -95.603795271711064, 33.710732982950418 ], [ -95.546011229401415, 33.73303678135786 ], [ -95.453556761705997, 33.619039589497589 ], [ -95.355323889779612, 33.39104520577704 ], [ -95.586460059018165, 33.470347600114621 ], [ -95.638465697096848, 33.482738599229869 ], [ -95.644244101327814, 33.485216799052921 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PARIS", "zip": "75462", "state": "TX", "Sheet1_value": 431, "Sheet1_populaiton": 11650, "Sheet1_income": 60019, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40732952785828, 33.58930119162099 ], [ -95.413107932089247, 33.591779391444042 ], [ -95.453556761705997, 33.619039589497589 ], [ -95.546011229401415, 33.73303678135786 ], [ -95.470891974398896, 33.728080381711763 ], [ -95.40732952785828, 33.58930119162099 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PATTONVILLE", "zip": "75468", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34405, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.413107932089247, 33.591779391444042 ], [ -95.378437506703477, 33.581866592151847 ], [ -95.40732952785828, 33.58930119162099 ], [ -95.413107932089247, 33.591779391444042 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PECAN GAP", "zip": "75469", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 28750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.858045057873468, 33.341481209316051 ], [ -95.858045057873468, 33.460434800822426 ], [ -95.834931440949617, 33.460434800822426 ], [ -95.748255377485151, 33.465391200468524 ], [ -95.759812185947084, 33.361306807900448 ], [ -95.858045057873468, 33.341481209316051 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PETTY", "zip": "75470", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 28611, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.858045057873468, 33.63143058861283 ], [ -95.707806547868415, 33.641343387905032 ], [ -95.719363356330334, 33.619039589497589 ], [ -95.858045057873468, 33.58930119162099 ], [ -95.858045057873468, 33.63143058861283 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PICKTON", "zip": "75471", "state": "TX", "Sheet1_value": 69, "Sheet1_populaiton": 1204, "Sheet1_income": 42321, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.511340804015646, 32.962316636389488 ], [ -95.517119208246598, 33.101095826480261 ], [ -95.441999953244078, 33.091183027188059 ], [ -95.395772719396362, 32.962316636389488 ], [ -95.511340804015646, 32.962316636389488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POINT", "zip": "75472", "state": "TX", "Sheet1_value": 151, "Sheet1_populaiton": 3652, "Sheet1_income": 45179, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.933164312876002, 32.838406645237022 ], [ -95.967834738261786, 32.907796240282408 ], [ -95.863823462104435, 32.979664035150833 ], [ -95.800261015563834, 32.979664035150833 ], [ -95.800261015563834, 32.77397344983774 ], [ -95.881158674797319, 32.788842648776033 ], [ -95.933164312876002, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POWDERLY", "zip": "75473", "state": "TX", "Sheet1_value": 114, "Sheet1_populaiton": 4350, "Sheet1_income": 49651, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.603795271711064, 33.710732982950418 ], [ -95.551789633632382, 33.854468572687281 ], [ -95.418886336320213, 33.822251974987637 ], [ -95.470891974398896, 33.728080381711763 ], [ -95.546011229401415, 33.73303678135786 ], [ -95.603795271711064, 33.710732982950418 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUINLAN", "zip": "75474", "state": "TX", "Sheet1_value": 593, "Sheet1_populaiton": 14631, "Sheet1_income": 44976, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.077624418650103, 32.838406645237022 ], [ -96.170078886345522, 32.83592844541397 ], [ -96.227862928655156, 32.887970641698011 ], [ -96.210527715962272, 32.989576834443035 ], [ -96.152743673652623, 32.99948963373523 ], [ -96.002505163647569, 33.001967833558282 ], [ -95.967834738261786, 32.907796240282408 ], [ -95.933164312876002, 32.838406645237022 ], [ -96.077624418650103, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RAVENNA", "zip": "75476", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 57857, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.256754949809988, 33.628952388789784 ], [ -96.308760587888656, 33.715689382596516 ], [ -96.187414099038421, 33.755340579765303 ], [ -95.962056334030819, 33.742949580650055 ], [ -95.990948355185637, 33.678516385250774 ], [ -96.100738035573954, 33.643821587728084 ], [ -96.123851652497805, 33.651256187197227 ], [ -96.210527715962272, 33.653734387020279 ], [ -96.250976545579022, 33.621517789320635 ], [ -96.256754949809988, 33.628952388789784 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROXTON", "zip": "75477", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30563, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.858045057873468, 33.462913000645472 ], [ -95.858045057873468, 33.58930119162099 ], [ -95.719363356330334, 33.619039589497589 ], [ -95.696249739406483, 33.57691019250575 ], [ -95.644244101327814, 33.485216799052921 ], [ -95.7251417605613, 33.485216799052921 ], [ -95.834931440949617, 33.460434800822426 ], [ -95.858045057873468, 33.460434800822426 ], [ -95.858045057873468, 33.462913000645472 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SALTILLO", "zip": "75478", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47083, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 33.165529021879543 ], [ -95.378437506703477, 33.22004941798663 ], [ -95.366880698241545, 33.22748401745578 ], [ -95.30909665593191, 33.254744215509319 ], [ -95.30909665593191, 33.165529021879543 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAVOY", "zip": "75479", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 1743, "Sheet1_income": 42695, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.38387984289119, 33.522389796398656 ], [ -96.38387984289119, 33.5694755930366 ], [ -96.378101438660224, 33.693385584189073 ], [ -96.378101438660224, 33.725602181888711 ], [ -96.308760587888656, 33.715689382596516 ], [ -96.256754949809988, 33.628952388789784 ], [ -96.274090162502873, 33.56204099356745 ], [ -96.30298218365769, 33.475303999760719 ], [ -96.38387984289119, 33.522389796398656 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SCROGGINS", "zip": "75480", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 2001, "Sheet1_income": 60658, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 32.952403837097293 ], [ -95.30909665593191, 32.962316636389488 ], [ -95.30909665593191, 33.024271631965725 ], [ -95.124187720541059, 33.051531830019272 ], [ -95.124187720541059, 33.034184431257927 ], [ -95.153079741695876, 32.952403837097293 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SULPHUR BLUFF", "zip": "75481", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34409, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 33.282004413562866 ], [ -95.413107932089247, 33.371219607192643 ], [ -95.30909665593191, 33.376176006838747 ], [ -95.30909665593191, 33.282004413562866 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SULPHUR SPRINGS", "zip": "75482", "state": "TX", "Sheet1_value": 846, "Sheet1_populaiton": 25000, "Sheet1_income": 42494, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.707806547868415, 33.301830012147263 ], [ -95.696249739406483, 33.306786411793361 ], [ -95.413107932089247, 33.371219607192643 ], [ -95.30909665593191, 33.282004413562866 ], [ -95.30909665593191, 33.254744215509319 ], [ -95.366880698241545, 33.22748401745578 ], [ -95.505562399784679, 33.215093018340532 ], [ -95.441999953244078, 33.160572622233445 ], [ -95.441999953244078, 33.091183027188059 ], [ -95.517119208246598, 33.101095826480261 ], [ -95.511340804015646, 32.962316636389488 ], [ -95.667357718251665, 32.959838436566443 ], [ -95.719363356330334, 32.979664035150833 ], [ -95.707806547868415, 33.083748427718916 ], [ -95.719363356330334, 33.158094422410393 ], [ -95.707806547868415, 33.301830012147263 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUMNER", "zip": "75486", "state": "TX", "Sheet1_value": 75, "Sheet1_populaiton": 2260, "Sheet1_income": 55089, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.707806547868415, 33.641343387905032 ], [ -95.858045057873468, 33.63143058861283 ], [ -95.852266653642502, 33.824730174810689 ], [ -95.84648824941155, 33.839599373748982 ], [ -95.759812185947084, 33.871815971448626 ], [ -95.598016867480098, 33.941205566494013 ], [ -95.522897612477564, 33.889163370209971 ], [ -95.551789633632382, 33.854468572687281 ], [ -95.603795271711064, 33.710732982950418 ], [ -95.632687292865882, 33.656212586843324 ], [ -95.707806547868415, 33.641343387905032 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TALCO", "zip": "75487", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 1221, "Sheet1_income": 43750, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.124187720541059, 33.388567005953988 ], [ -94.829489104761905, 33.38361060630789 ], [ -94.829489104761905, 33.381132406484845 ], [ -94.806375487838039, 33.363785007723493 ], [ -94.812153892069006, 33.282004413562866 ], [ -95.049068465538525, 33.259700615155424 ], [ -95.124187720541059, 33.257222415332372 ], [ -95.124187720541059, 33.388567005953988 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TELEPHONE", "zip": "75488", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 32042, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.962056334030819, 33.742949580650055 ], [ -96.187414099038421, 33.755340579765303 ], [ -96.146965269421671, 33.822251974987637 ], [ -95.84648824941155, 33.839599373748982 ], [ -95.852266653642502, 33.824730174810689 ], [ -95.962056334030819, 33.742949580650055 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TRENTON", "zip": "75490", "state": "TX", "Sheet1_value": 110, "Sheet1_populaiton": 2332, "Sheet1_income": 57375, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.331874204812507, 33.346437608962148 ], [ -96.38387984289119, 33.39847980524619 ], [ -96.38387984289119, 33.522389796398656 ], [ -96.30298218365769, 33.475303999760719 ], [ -96.331874204812507, 33.346437608962148 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITEWRIGHT", "zip": "75491", "state": "TX", "Sheet1_value": 149, "Sheet1_populaiton": 5214, "Sheet1_income": 50158, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.38387984289119, 33.39847980524619 ], [ -96.401215055584075, 33.39847980524619 ], [ -96.424328672507926, 33.39847980524619 ], [ -96.516783140203358, 33.490173198699019 ], [ -96.487891119048527, 33.574431992682698 ], [ -96.38387984289119, 33.5694755930366 ], [ -96.38387984289119, 33.522389796398656 ], [ -96.38387984289119, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINFIELD", "zip": "75493", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31607, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.008619635921775, 33.076313828249766 ], [ -95.095295699386241, 33.039140830904024 ], [ -95.124187720541059, 33.034184431257927 ], [ -95.124187720541059, 33.051531830019272 ], [ -95.124187720541059, 33.257222415332372 ], [ -95.049068465538525, 33.259700615155424 ], [ -95.008619635921775, 33.076313828249766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINNSBORO", "zip": "75494", "state": "TX", "Sheet1_value": 469, "Sheet1_populaiton": 10010, "Sheet1_income": 40427, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 32.902839840636304 ], [ -95.153079741695876, 32.778929849483831 ], [ -95.153079741695876, 32.759104250899441 ], [ -95.280204634777078, 32.783886249129935 ], [ -95.389994315165396, 32.910274440105454 ], [ -95.395772719396362, 32.962316636389488 ], [ -95.30909665593191, 32.962316636389488 ], [ -95.153079741695876, 32.952403837097293 ], [ -95.153079741695876, 32.902839840636304 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VAN ALSTYNE", "zip": "75495", "state": "TX", "Sheet1_value": 246, "Sheet1_populaiton": 6737, "Sheet1_income": 65158, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.424328672507926, 33.39847980524619 ], [ -96.649686437515527, 33.396001605423137 ], [ -96.655464841746493, 33.400958005069242 ], [ -96.643908033284561, 33.465391200468524 ], [ -96.53989675712721, 33.477782199583771 ], [ -96.516783140203358, 33.490173198699019 ], [ -96.424328672507926, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOLFE CITY", "zip": "75496", "state": "TX", "Sheet1_value": 121, "Sheet1_populaiton": 3460, "Sheet1_income": 39175, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.094959631342988, 33.286960813208964 ], [ -96.158522077883589, 33.371219607192643 ], [ -96.066067610188171, 33.381132406484845 ], [ -95.950499525568887, 33.341481209316051 ], [ -96.031397184802387, 33.252266015686274 ], [ -96.094959631342988, 33.286960813208964 ] ] ] } },
{ "type": "Feature", "properties": { "name": "YANTIS", "zip": "75497", "state": "TX", "Sheet1_value": 152, "Sheet1_populaiton": 3406, "Sheet1_income": 48722, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.667357718251665, 32.959838436566443 ], [ -95.511340804015646, 32.962316636389488 ], [ -95.395772719396362, 32.962316636389488 ], [ -95.389994315165396, 32.910274440105454 ], [ -95.574903250556247, 32.82849384594482 ], [ -95.655800909789733, 32.905318040459356 ], [ -95.667357718251665, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEXARKANA", "zip": "75501", "state": "TX", "Sheet1_value": 1042, "Sheet1_populaiton": 36752, "Sheet1_income": 34355, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.043626129350812, 33.440609202238029 ], [ -94.043626129350812, 33.343959409139103 ], [ -94.043626129350812, 33.272091614270664 ], [ -94.240091873203582, 33.274569814093717 ], [ -94.401887191670568, 33.269613414447619 ], [ -94.4134440001325, 33.284482613385919 ], [ -94.425000808594433, 33.321655610731653 ], [ -94.263205490127433, 33.373697807015695 ], [ -94.199643043586832, 33.467869400291576 ], [ -94.159194213970096, 33.457956600999374 ], [ -94.107188575891414, 33.443087402061082 ], [ -94.043626129350812, 33.440609202238029 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEXARKANA", "zip": "75503", "state": "TX", "Sheet1_value": 736, "Sheet1_populaiton": 24633, "Sheet1_income": 57752, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.199643043586832, 33.57691019250575 ], [ -94.066739746274664, 33.5694755930366 ], [ -94.043626129350812, 33.552128194275255 ], [ -94.043626129350812, 33.440609202238029 ], [ -94.107188575891414, 33.443087402061082 ], [ -94.159194213970096, 33.457956600999374 ], [ -94.199643043586832, 33.467869400291576 ], [ -94.199643043586832, 33.57691019250575 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANNONA", "zip": "75550", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.858381125916722, 33.628952388789784 ], [ -94.829489104761905, 33.381132406484845 ], [ -94.829489104761905, 33.38361060630789 ], [ -94.933500380919241, 33.453000201353277 ], [ -94.962392402074073, 33.616561389674537 ], [ -94.858381125916722, 33.628952388789784 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ATLANTA", "zip": "75551", "state": "TX", "Sheet1_value": 308, "Sheet1_populaiton": 10547, "Sheet1_income": 38043, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.251648681665515, 33.031706231434875 ], [ -94.274762298589366, 33.118443225241606 ], [ -94.251648681665515, 33.187832820286985 ], [ -94.11296698012238, 33.135790624002951 ], [ -94.043626129350812, 33.078792028072812 ], [ -94.043626129350812, 33.019315232319627 ], [ -94.043626129350812, 33.00692423320438 ], [ -94.251648681665515, 33.031706231434875 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AVERY", "zip": "75554", "state": "TX", "Sheet1_value": 66, "Sheet1_populaiton": 1727, "Sheet1_income": 45536, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.748591445528405, 33.621517789320635 ], [ -94.748591445528405, 33.329090210200803 ], [ -94.806375487838039, 33.363785007723493 ], [ -94.829489104761905, 33.381132406484845 ], [ -94.858381125916722, 33.628952388789784 ], [ -94.748591445528405, 33.621517789320635 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BIVINS", "zip": "75555", "state": "TX", "Sheet1_value": 53, "Sheet1_populaiton": 1560, "Sheet1_income": 48375, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.222756660510697, 32.880536042228862 ], [ -94.251648681665515, 33.031706231434875 ], [ -94.043626129350812, 33.00692423320438 ], [ -94.043626129350812, 32.937534638158994 ], [ -94.043626129350812, 32.880536042228862 ], [ -94.222756660510697, 32.880536042228862 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLOOMBURG", "zip": "75556", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 33092, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.11296698012238, 33.135790624002951 ], [ -94.043626129350812, 33.187832820286985 ], [ -94.043626129350812, 33.078792028072812 ], [ -94.11296698012238, 33.135790624002951 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COOKVILLE", "zip": "75558", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 62929, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817932296299972, 33.093661227011111 ], [ -94.939278785150208, 33.143225223472101 ], [ -94.812153892069006, 33.279526213739814 ], [ -94.817932296299972, 33.093661227011111 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DE KALB", "zip": "75559", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 5922, "Sheet1_income": 40640, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.731256232835506, 33.309264611616413 ], [ -94.748591445528405, 33.329090210200803 ], [ -94.748591445528405, 33.621517789320635 ], [ -94.748591445528405, 33.703298383481268 ], [ -94.696585807449736, 33.685950984719923 ], [ -94.488563255135034, 33.638865188081979 ], [ -94.4134440001325, 33.5694755930366 ], [ -94.511676872058885, 33.552128194275255 ], [ -94.633023360909135, 33.482738599229869 ], [ -94.546347297444669, 33.428218203122782 ], [ -94.52901208475177, 33.400958005069242 ], [ -94.425000808594433, 33.321655610731653 ], [ -94.4134440001325, 33.284482613385919 ], [ -94.65035857360202, 33.269613414447619 ], [ -94.731256232835506, 33.309264611616413 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DOUGLASSVILLE", "zip": "75560", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31970, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.274762298589366, 33.118443225241606 ], [ -94.425000808594433, 33.125877824710756 ], [ -94.401887191670568, 33.269613414447619 ], [ -94.240091873203582, 33.274569814093717 ], [ -94.251648681665515, 33.187832820286985 ], [ -94.274762298589366, 33.118443225241606 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOOKS", "zip": "75561", "state": "TX", "Sheet1_value": 114, "Sheet1_populaiton": 5337, "Sheet1_income": 40650, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.263205490127433, 33.373697807015695 ], [ -94.401887191670568, 33.405914404715332 ], [ -94.349881553591899, 33.552128194275255 ], [ -94.326767936668034, 33.552128194275255 ], [ -94.199643043586832, 33.57691019250575 ], [ -94.199643043586832, 33.467869400291576 ], [ -94.263205490127433, 33.373697807015695 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LINDEN", "zip": "75563", "state": "TX", "Sheet1_value": 146, "Sheet1_populaiton": 4511, "Sheet1_income": 32292, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.222756660510697, 32.880536042228862 ], [ -94.430779212825399, 32.880536042228862 ], [ -94.488563255135034, 32.925143639043753 ], [ -94.552125701675635, 33.096139426834156 ], [ -94.425000808594433, 33.125877824710756 ], [ -94.274762298589366, 33.118443225241606 ], [ -94.251648681665515, 33.031706231434875 ], [ -94.222756660510697, 32.880536042228862 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARIETTA", "zip": "75566", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 22969, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.425000808594433, 33.125877824710756 ], [ -94.552125701675635, 33.096139426834156 ], [ -94.65035857360202, 33.153138022764296 ], [ -94.65035857360202, 33.269613414447619 ], [ -94.4134440001325, 33.284482613385919 ], [ -94.401887191670568, 33.269613414447619 ], [ -94.425000808594433, 33.125877824710756 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAUD", "zip": "75567", "state": "TX", "Sheet1_value": 111, "Sheet1_populaiton": 4321, "Sheet1_income": 50386, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.52901208475177, 33.400958005069242 ], [ -94.401887191670568, 33.405914404715332 ], [ -94.263205490127433, 33.373697807015695 ], [ -94.425000808594433, 33.321655610731653 ], [ -94.52901208475177, 33.400958005069242 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NAPLES", "zip": "75568", "state": "TX", "Sheet1_value": 90, "Sheet1_populaiton": 2634, "Sheet1_income": 29725, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713921020142621, 33.111008625772456 ], [ -94.731256232835506, 33.17048542152564 ], [ -94.731256232835506, 33.309264611616413 ], [ -94.65035857360202, 33.269613414447619 ], [ -94.65035857360202, 33.153138022764296 ], [ -94.713921020142621, 33.111008625772456 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW BOSTON", "zip": "75570", "state": "TX", "Sheet1_value": 226, "Sheet1_populaiton": 10583, "Sheet1_income": 47068, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.401887191670568, 33.405914404715332 ], [ -94.52901208475177, 33.400958005069242 ], [ -94.546347297444669, 33.428218203122782 ], [ -94.511676872058885, 33.552128194275255 ], [ -94.4134440001325, 33.5694755930366 ], [ -94.349881553591899, 33.552128194275255 ], [ -94.401887191670568, 33.405914404715332 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OMAHA", "zip": "75571", "state": "TX", "Sheet1_value": 93, "Sheet1_populaiton": 2869, "Sheet1_income": 38688, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.731256232835506, 33.17048542152564 ], [ -94.817932296299972, 33.093661227011111 ], [ -94.812153892069006, 33.279526213739814 ], [ -94.812153892069006, 33.282004413562866 ], [ -94.806375487838039, 33.363785007723493 ], [ -94.748591445528405, 33.329090210200803 ], [ -94.731256232835506, 33.309264611616413 ], [ -94.731256232835506, 33.17048542152564 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUEEN CITY", "zip": "75572", "state": "TX", "Sheet1_value": 120, "Sheet1_populaiton": 3980, "Sheet1_income": 36026, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.11296698012238, 33.135790624002951 ], [ -94.251648681665515, 33.187832820286985 ], [ -94.240091873203582, 33.274569814093717 ], [ -94.043626129350812, 33.272091614270664 ], [ -94.043626129350812, 33.187832820286985 ], [ -94.11296698012238, 33.135790624002951 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SIMMS", "zip": "75574", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42061, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.511676872058885, 33.552128194275255 ], [ -94.546347297444669, 33.428218203122782 ], [ -94.633023360909135, 33.482738599229869 ], [ -94.511676872058885, 33.552128194275255 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONGVIEW", "zip": "75601", "state": "TX", "Sheet1_value": 541, "Sheet1_populaiton": 16078, "Sheet1_income": 42284, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.754369849759371, 32.479067670894857 ], [ -94.760148253990337, 32.526153467532794 ], [ -94.667693786294905, 32.503849669125351 ], [ -94.754369849759371, 32.479067670894857 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONGVIEW", "zip": "75602", "state": "TX", "Sheet1_value": 791, "Sheet1_populaiton": 22367, "Sheet1_income": 31977, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.60990974398527, 32.511284268594494 ], [ -94.56946091436852, 32.399765276557275 ], [ -94.581017722830452, 32.394808876911178 ], [ -94.760148253990337, 32.479067670894857 ], [ -94.754369849759371, 32.479067670894857 ], [ -94.667693786294905, 32.503849669125351 ], [ -94.60990974398527, 32.511284268594494 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONGVIEW", "zip": "75603", "state": "TX", "Sheet1_value": 236, "Sheet1_populaiton": 5842, "Sheet1_income": 47646, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.581017722830452, 32.394808876911178 ], [ -94.598352935523337, 32.362592279211533 ], [ -94.679250594756837, 32.370026878680683 ], [ -94.777483466683222, 32.464198471956557 ], [ -94.760148253990337, 32.479067670894857 ], [ -94.581017722830452, 32.394808876911178 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONGVIEW", "zip": "75604", "state": "TX", "Sheet1_value": 1095, "Sheet1_populaiton": 31332, "Sheet1_income": 49043, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.91038676399539, 32.466676671779609 ], [ -94.904608359764438, 32.528631667355846 ], [ -94.829489104761905, 32.503849669125351 ], [ -94.875716338609607, 32.570761064347685 ], [ -94.817932296299972, 32.590586662932083 ], [ -94.760148253990337, 32.526153467532794 ], [ -94.754369849759371, 32.479067670894857 ], [ -94.760148253990337, 32.479067670894857 ], [ -94.777483466683222, 32.464198471956557 ], [ -94.91038676399539, 32.466676671779609 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONGVIEW", "zip": "75605", "state": "TX", "Sheet1_value": 966, "Sheet1_populaiton": 28650, "Sheet1_income": 54707, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.638801765140087, 32.640150659393065 ], [ -94.60990974398527, 32.511284268594494 ], [ -94.667693786294905, 32.503849669125351 ], [ -94.760148253990337, 32.526153467532794 ], [ -94.817932296299972, 32.590586662932083 ], [ -94.841045913223823, 32.63023786010087 ], [ -94.737034637066472, 32.657498058154417 ], [ -94.638801765140087, 32.640150659393065 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AVINGER", "zip": "75630", "state": "TX", "Sheet1_value": 89, "Sheet1_populaiton": 2566, "Sheet1_income": 29233, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.679250594756837, 32.830972045767872 ], [ -94.708142615911655, 32.878057842405809 ], [ -94.656136977832986, 32.967273036035593 ], [ -94.488563255135034, 32.925143639043753 ], [ -94.430779212825399, 32.880536042228862 ], [ -94.534790488982736, 32.880536042228862 ], [ -94.52901208475177, 32.76653885036859 ], [ -94.679250594756837, 32.830972045767872 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BECKVILLE", "zip": "75631", "state": "TX", "Sheet1_value": 73, "Sheet1_populaiton": 2627, "Sheet1_income": 51023, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.349881553591899, 32.330375681511889 ], [ -94.309432723975149, 32.228769488766865 ], [ -94.557904105906601, 32.149467094429284 ], [ -94.557904105906601, 32.248595087351262 ], [ -94.494341659366, 32.394808876911178 ], [ -94.459671233980202, 32.370026878680683 ], [ -94.349881553591899, 32.330375681511889 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARTHAGE", "zip": "75633", "state": "TX", "Sheet1_value": 418, "Sheet1_populaiton": 15253, "Sheet1_income": 53715, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.07251815050563, 32.000775105046316 ], [ -94.216978256279731, 32.080077499383897 ], [ -94.390330383208649, 31.975993106815825 ], [ -94.430779212825399, 31.975993106815825 ], [ -94.482784850904068, 32.094946698322197 ], [ -94.598352935523337, 32.085033899029995 ], [ -94.581017722830452, 32.149467094429284 ], [ -94.557904105906601, 32.149467094429284 ], [ -94.309432723975149, 32.228769488766865 ], [ -94.043626129350812, 32.166814493190628 ], [ -94.043626129350812, 32.137076095314036 ], [ -94.043626129350812, 32.008209704515465 ], [ -94.07251815050563, 32.000775105046316 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DAINGERFIELD", "zip": "75638", "state": "TX", "Sheet1_value": 172, "Sheet1_populaiton": 6176, "Sheet1_income": 41013, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713921020142621, 33.111008625772456 ], [ -94.656136977832986, 32.982142234973885 ], [ -94.817932296299972, 33.026749831788777 ], [ -94.817932296299972, 33.093661227011111 ], [ -94.731256232835506, 33.17048542152564 ], [ -94.713921020142621, 33.111008625772456 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DE BERRY", "zip": "75639", "state": "TX", "Sheet1_value": 73, "Sheet1_populaiton": 2707, "Sheet1_income": 50086, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.043626129350812, 32.392330677088125 ], [ -94.043626129350812, 32.372505078503728 ], [ -94.043626129350812, 32.347723080273234 ], [ -94.043626129350812, 32.226291288943813 ], [ -94.043626129350812, 32.166814493190628 ], [ -94.309432723975149, 32.228769488766865 ], [ -94.349881553591899, 32.330375681511889 ], [ -94.170751022432015, 32.367548678857631 ], [ -94.043626129350812, 32.392330677088125 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DIANA", "zip": "75640", "state": "TX", "Sheet1_value": 153, "Sheet1_populaiton": 4052, "Sheet1_income": 54423, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.575239318599486, 32.729365853022848 ], [ -94.586796127061419, 32.635194259746967 ], [ -94.638801765140087, 32.640150659393065 ], [ -94.737034637066472, 32.657498058154417 ], [ -94.812153892069006, 32.699627455146256 ], [ -94.702364211680703, 32.689714655854054 ], [ -94.702364211680703, 32.79379904842213 ], [ -94.575239318599486, 32.729365853022848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARY", "zip": "75643", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.326767936668034, 31.975993106815825 ], [ -94.390330383208649, 31.975993106815825 ], [ -94.216978256279731, 32.080077499383897 ], [ -94.07251815050563, 32.000775105046316 ], [ -94.03206932088888, 31.978471306638873 ], [ -94.182307830893947, 31.978471306638873 ], [ -94.326767936668034, 31.975993106815825 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GILMER", "zip": "75644", "state": "TX", "Sheet1_value": 409, "Sheet1_populaiton": 11485, "Sheet1_income": 41090, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.916165168226357, 32.769017050191636 ], [ -94.881494742840573, 32.664932657623559 ], [ -94.979727614766958, 32.63767245957002 ], [ -95.153079741695876, 32.729365853022848 ], [ -95.153079741695876, 32.759104250899441 ], [ -95.153079741695876, 32.778929849483831 ], [ -94.916165168226357, 32.769017050191636 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GILMER", "zip": "75645", "state": "TX", "Sheet1_value": 335, "Sheet1_populaiton": 10136, "Sheet1_income": 56098, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.841045913223823, 32.63023786010087 ], [ -94.881494742840573, 32.664932657623559 ], [ -94.916165168226357, 32.769017050191636 ], [ -94.812153892069006, 32.699627455146256 ], [ -94.737034637066472, 32.657498058154417 ], [ -94.841045913223823, 32.63023786010087 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GLADEWATER", "zip": "75647", "state": "TX", "Sheet1_value": 427, "Sheet1_populaiton": 13431, "Sheet1_income": 45826, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.91038676399539, 32.466676671779609 ], [ -94.99128442322889, 32.40967807584947 ], [ -95.077960486693343, 32.538544466648041 ], [ -94.979727614766958, 32.63767245957002 ], [ -94.881494742840573, 32.664932657623559 ], [ -94.841045913223823, 32.63023786010087 ], [ -94.817932296299972, 32.590586662932083 ], [ -94.875716338609607, 32.570761064347685 ], [ -94.904608359764438, 32.528631667355846 ], [ -94.91038676399539, 32.466676671779609 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HALLSVILLE", "zip": "75650", "state": "TX", "Sheet1_value": 251, "Sheet1_populaiton": 7972, "Sheet1_income": 59274, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.60990974398527, 32.511284268594494 ], [ -94.638801765140087, 32.640150659393065 ], [ -94.586796127061419, 32.635194259746967 ], [ -94.517455276289851, 32.62280326063172 ], [ -94.500120063596967, 32.397287076734223 ], [ -94.56946091436852, 32.399765276557275 ], [ -94.60990974398527, 32.511284268594494 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARLETON", "zip": "75651", "state": "TX", "Sheet1_value": 62, "Sheet1_populaiton": 2905, "Sheet1_income": 43364, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.390330383208649, 32.694671055500152 ], [ -94.517455276289851, 32.62280326063172 ], [ -94.586796127061419, 32.635194259746967 ], [ -94.575239318599486, 32.729365853022848 ], [ -94.390330383208649, 32.694671055500152 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HENDERSON", "zip": "75652", "state": "TX", "Sheet1_value": 379, "Sheet1_populaiton": 16185, "Sheet1_income": 42778, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.581017722830452, 32.149467094429284 ], [ -94.887273147071539, 32.146988894606231 ], [ -94.921943572457323, 32.144510694783186 ], [ -94.916165168226357, 32.179205492305876 ], [ -94.817932296299972, 32.280811685050899 ], [ -94.679250594756837, 32.370026878680683 ], [ -94.598352935523337, 32.362592279211533 ], [ -94.557904105906601, 32.248595087351262 ], [ -94.557904105906601, 32.149467094429284 ], [ -94.581017722830452, 32.149467094429284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HENDERSON", "zip": "75654", "state": "TX", "Sheet1_value": 357, "Sheet1_populaiton": 12300, "Sheet1_income": 49798, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.598352935523337, 32.085033899029995 ], [ -94.598352935523337, 32.028035303099863 ], [ -94.702364211680703, 31.966080307523626 ], [ -94.916165168226357, 32.055295501153402 ], [ -94.887273147071539, 32.146988894606231 ], [ -94.581017722830452, 32.149467094429284 ], [ -94.598352935523337, 32.085033899029995 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUGHES SPRINGS", "zip": "75656", "state": "TX", "Sheet1_value": 146, "Sheet1_populaiton": 4933, "Sheet1_income": 40054, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.656136977832986, 32.967273036035593 ], [ -94.656136977832986, 32.982142234973885 ], [ -94.713921020142621, 33.111008625772456 ], [ -94.65035857360202, 33.153138022764296 ], [ -94.552125701675635, 33.096139426834156 ], [ -94.488563255135034, 32.925143639043753 ], [ -94.656136977832986, 32.967273036035593 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JEFFERSON", "zip": "75657", "state": "TX", "Sheet1_value": 330, "Sheet1_populaiton": 7960, "Sheet1_income": 33108, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.043626129350812, 32.880536042228862 ], [ -94.043626129350812, 32.756626051076388 ], [ -94.043626129350812, 32.692192855677106 ], [ -94.286319107051298, 32.746713251784193 ], [ -94.292097511282265, 32.672367257092709 ], [ -94.309432723975149, 32.669889057269657 ], [ -94.390330383208649, 32.694671055500152 ], [ -94.575239318599486, 32.729365853022848 ], [ -94.702364211680703, 32.79379904842213 ], [ -94.679250594756837, 32.830972045767872 ], [ -94.52901208475177, 32.76653885036859 ], [ -94.534790488982736, 32.880536042228862 ], [ -94.430779212825399, 32.880536042228862 ], [ -94.222756660510697, 32.880536042228862 ], [ -94.043626129350812, 32.880536042228862 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KARNACK", "zip": "75661", "state": "TX", "Sheet1_value": 96, "Sheet1_populaiton": 2601, "Sheet1_income": 37357, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.043626129350812, 32.692192855677106 ], [ -94.043626129350812, 32.516240668240599 ], [ -94.234313468972616, 32.541022666471093 ], [ -94.292097511282265, 32.672367257092709 ], [ -94.286319107051298, 32.746713251784193 ], [ -94.043626129350812, 32.692192855677106 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILGORE", "zip": "75662", "state": "TX", "Sheet1_value": 759, "Sheet1_populaiton": 24768, "Sheet1_income": 46462, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.014398040152741, 32.362592279211533 ], [ -95.03173325284564, 32.38241787779593 ], [ -94.99128442322889, 32.40967807584947 ], [ -94.91038676399539, 32.466676671779609 ], [ -94.777483466683222, 32.464198471956557 ], [ -94.679250594756837, 32.370026878680683 ], [ -94.817932296299972, 32.280811685050899 ], [ -95.014398040152741, 32.362592279211533 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LANEVILLE", "zip": "75667", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.939278785150208, 31.844648516194205 ], [ -94.985506018997924, 31.847126716017254 ], [ -94.985506018997924, 31.928907310177884 ], [ -94.985506018997924, 32.003253304869368 ], [ -94.916165168226357, 32.055295501153402 ], [ -94.702364211680703, 31.966080307523626 ], [ -94.771705062452256, 31.844648516194205 ], [ -94.939278785150208, 31.844648516194205 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONE STAR", "zip": "75668", "state": "TX", "Sheet1_value": 57, "Sheet1_populaiton": 1974, "Sheet1_income": 26541, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.708142615911655, 32.878057842405809 ], [ -94.719699424373587, 32.905318040459356 ], [ -94.817932296299972, 33.026749831788777 ], [ -94.656136977832986, 32.982142234973885 ], [ -94.656136977832986, 32.967273036035593 ], [ -94.708142615911655, 32.878057842405809 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONG BRANCH", "zip": "75669", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.430779212825399, 31.975993106815825 ], [ -94.511676872058885, 31.973514906992776 ], [ -94.598352935523337, 32.028035303099863 ], [ -94.598352935523337, 32.085033899029995 ], [ -94.482784850904068, 32.094946698322197 ], [ -94.430779212825399, 31.975993106815825 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARSHALL", "zip": "75670", "state": "TX", "Sheet1_value": 614, "Sheet1_populaiton": 18448, "Sheet1_income": 30005, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.494341659366, 32.394808876911178 ], [ -94.500120063596967, 32.397287076734223 ], [ -94.517455276289851, 32.62280326063172 ], [ -94.390330383208649, 32.694671055500152 ], [ -94.309432723975149, 32.669889057269657 ], [ -94.459671233980202, 32.370026878680683 ], [ -94.494341659366, 32.394808876911178 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARSHALL", "zip": "75672", "state": "TX", "Sheet1_value": 515, "Sheet1_populaiton": 17080, "Sheet1_income": 49598, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.234313468972616, 32.541022666471093 ], [ -94.170751022432015, 32.367548678857631 ], [ -94.349881553591899, 32.330375681511889 ], [ -94.459671233980202, 32.370026878680683 ], [ -94.309432723975149, 32.669889057269657 ], [ -94.292097511282265, 32.672367257092709 ], [ -94.234313468972616, 32.541022666471093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOUNT ENTERPRISE", "zip": "75681", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 2539, "Sheet1_income": 37442, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.604131339754304, 31.844648516194205 ], [ -94.679250594756837, 31.844648516194205 ], [ -94.771705062452256, 31.844648516194205 ], [ -94.702364211680703, 31.966080307523626 ], [ -94.598352935523337, 32.028035303099863 ], [ -94.511676872058885, 31.973514906992776 ], [ -94.482784850904068, 31.894212512655194 ], [ -94.604131339754304, 31.844648516194205 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ORE CITY", "zip": "75683", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 3993, "Sheet1_income": 43816, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.916165168226357, 32.769017050191636 ], [ -94.719699424373587, 32.905318040459356 ], [ -94.708142615911655, 32.878057842405809 ], [ -94.679250594756837, 32.830972045767872 ], [ -94.702364211680703, 32.79379904842213 ], [ -94.702364211680703, 32.689714655854054 ], [ -94.812153892069006, 32.699627455146256 ], [ -94.916165168226357, 32.769017050191636 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OVERTON", "zip": "75684", "state": "TX", "Sheet1_value": 159, "Sheet1_populaiton": 8114, "Sheet1_income": 40988, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985506018997924, 32.196552891067221 ], [ -95.025954848614674, 32.218856689474663 ], [ -95.002841231690809, 32.298159083812251 ], [ -95.014398040152741, 32.362592279211533 ], [ -94.817932296299972, 32.280811685050899 ], [ -94.916165168226357, 32.179205492305876 ], [ -94.985506018997924, 32.196552891067221 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PITTSBURG", "zip": "75686", "state": "TX", "Sheet1_value": 423, "Sheet1_populaiton": 12977, "Sheet1_income": 36278, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 32.902839840636304 ], [ -95.043290061307559, 32.902839840636304 ], [ -95.095295699386241, 33.039140830904024 ], [ -95.008619635921775, 33.076313828249766 ], [ -94.939278785150208, 33.143225223472101 ], [ -94.817932296299972, 33.093661227011111 ], [ -94.817932296299972, 33.026749831788777 ], [ -94.719699424373587, 32.905318040459356 ], [ -94.916165168226357, 32.769017050191636 ], [ -95.153079741695876, 32.778929849483831 ], [ -95.153079741695876, 32.902839840636304 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PRICE", "zip": "75687", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985506018997924, 32.003253304869368 ], [ -94.985506018997924, 32.146988894606231 ], [ -94.921943572457323, 32.144510694783186 ], [ -94.887273147071539, 32.146988894606231 ], [ -94.916165168226357, 32.055295501153402 ], [ -94.985506018997924, 32.003253304869368 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SELMAN CITY", "zip": "75689", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.921943572457323, 32.144510694783186 ], [ -94.985506018997924, 32.146988894606231 ], [ -94.985506018997924, 32.196552891067221 ], [ -94.916165168226357, 32.179205492305876 ], [ -94.921943572457323, 32.144510694783186 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TATUM", "zip": "75691", "state": "TX", "Sheet1_value": 120, "Sheet1_populaiton": 3554, "Sheet1_income": 57664, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.581017722830452, 32.394808876911178 ], [ -94.56946091436852, 32.399765276557275 ], [ -94.500120063596967, 32.397287076734223 ], [ -94.494341659366, 32.394808876911178 ], [ -94.557904105906601, 32.248595087351262 ], [ -94.598352935523337, 32.362592279211533 ], [ -94.581017722830452, 32.394808876911178 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WASKOM", "zip": "75692", "state": "TX", "Sheet1_value": 127, "Sheet1_populaiton": 4682, "Sheet1_income": 50285, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.170751022432015, 32.367548678857631 ], [ -94.234313468972616, 32.541022666471093 ], [ -94.043626129350812, 32.516240668240599 ], [ -94.043626129350812, 32.471633071425707 ], [ -94.043626129350812, 32.392330677088125 ], [ -94.170751022432015, 32.367548678857631 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITE OAK", "zip": "75693", "state": "TX", "Sheet1_value": 190, "Sheet1_populaiton": 6743, "Sheet1_income": 57618, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.904608359764438, 32.528631667355846 ], [ -94.875716338609607, 32.570761064347685 ], [ -94.829489104761905, 32.503849669125351 ], [ -94.904608359764438, 32.528631667355846 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75701", "state": "TX", "Sheet1_value": 1406, "Sheet1_populaiton": 35348, "Sheet1_income": 42627, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.274426230546112, 32.310550082927492 ], [ -95.337988677086713, 32.305593683281394 ], [ -95.343767081317679, 32.342766680627136 ], [ -95.262869422084194, 32.342766680627136 ], [ -95.245534209391295, 32.313028282750544 ], [ -95.257091017853227, 32.313028282750544 ], [ -95.274426230546112, 32.310550082927492 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75702", "state": "TX", "Sheet1_value": 1123, "Sheet1_populaiton": 26684, "Sheet1_income": 32457, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 32.342766680627136 ], [ -95.361102294010578, 32.342766680627136 ], [ -95.349545485548646, 32.392330677088125 ], [ -95.291761443239011, 32.372505078503728 ], [ -95.262869422084194, 32.350201280096286 ], [ -95.262869422084194, 32.347723080273234 ], [ -95.262869422084194, 32.342766680627136 ], [ -95.343767081317679, 32.342766680627136 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75703", "state": "TX", "Sheet1_value": 1625, "Sheet1_populaiton": 36801, "Sheet1_income": 52011, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332210272855761, 32.184161891951973 ], [ -95.413107932089247, 32.310550082927492 ], [ -95.337988677086713, 32.305593683281394 ], [ -95.274426230546112, 32.310550082927492 ], [ -95.274426230546112, 32.265942486112607 ], [ -95.251312613622261, 32.151945294252329 ], [ -95.332210272855761, 32.184161891951973 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75704", "state": "TX", "Sheet1_value": 385, "Sheet1_populaiton": 8714, "Sheet1_income": 39527, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.361102294010578, 32.342766680627136 ], [ -95.453556761705997, 32.325419281865791 ], [ -95.44777835747503, 32.355157679742383 ], [ -95.557568037863348, 32.454285672664362 ], [ -95.44777835747503, 32.454285672664362 ], [ -95.349545485548646, 32.392330677088125 ], [ -95.361102294010578, 32.342766680627136 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75705", "state": "TX", "Sheet1_value": 99, "Sheet1_populaiton": 2111, "Sheet1_income": 32083, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072182082462376, 32.327897481688844 ], [ -95.262869422084194, 32.347723080273234 ], [ -95.262869422084194, 32.350201280096286 ], [ -95.135744529002977, 32.414634475495568 ], [ -95.03173325284564, 32.38241787779593 ], [ -95.014398040152741, 32.362592279211533 ], [ -95.002841231690809, 32.298159083812251 ], [ -95.072182082462376, 32.327897481688844 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75706", "state": "TX", "Sheet1_value": 357, "Sheet1_populaiton": 9500, "Sheet1_income": 39697, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.222420592467444, 32.471633071425707 ], [ -95.291761443239011, 32.372505078503728 ], [ -95.349545485548646, 32.392330677088125 ], [ -95.44777835747503, 32.454285672664362 ], [ -95.193528571312626, 32.533588067001944 ], [ -95.222420592467444, 32.471633071425707 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75707", "state": "TX", "Sheet1_value": 514, "Sheet1_populaiton": 14906, "Sheet1_income": 56559, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072182082462376, 32.327897481688844 ], [ -95.118409316310093, 32.231247688589917 ], [ -95.176193358619742, 32.21142209000552 ], [ -95.274426230546112, 32.265942486112607 ], [ -95.274426230546112, 32.310550082927492 ], [ -95.257091017853227, 32.313028282750544 ], [ -95.245534209391295, 32.313028282750544 ], [ -95.262869422084194, 32.342766680627136 ], [ -95.262869422084194, 32.347723080273234 ], [ -95.072182082462376, 32.327897481688844 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75708", "state": "TX", "Sheet1_value": 299, "Sheet1_populaiton": 6463, "Sheet1_income": 35500, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.262869422084194, 32.350201280096286 ], [ -95.291761443239011, 32.372505078503728 ], [ -95.222420592467444, 32.471633071425707 ], [ -95.135744529002977, 32.414634475495568 ], [ -95.262869422084194, 32.350201280096286 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYLER", "zip": "75709", "state": "TX", "Sheet1_value": 248, "Sheet1_populaiton": 5392, "Sheet1_income": 53598, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.453556761705997, 32.308071883104446 ], [ -95.453556761705997, 32.325419281865791 ], [ -95.361102294010578, 32.342766680627136 ], [ -95.343767081317679, 32.342766680627136 ], [ -95.337988677086713, 32.305593683281394 ], [ -95.413107932089247, 32.310550082927492 ], [ -95.453556761705997, 32.308071883104446 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARP", "zip": "75750", "state": "TX", "Sheet1_value": 109, "Sheet1_populaiton": 3594, "Sheet1_income": 57964, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.025954848614674, 32.218856689474663 ], [ -95.118409316310093, 32.231247688589917 ], [ -95.072182082462376, 32.327897481688844 ], [ -95.002841231690809, 32.298159083812251 ], [ -95.025954848614674, 32.218856689474663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ATHENS", "zip": "75751", "state": "TX", "Sheet1_value": 563, "Sheet1_populaiton": 17235, "Sheet1_income": 40682, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.863823462104435, 32.028035303099863 ], [ -95.967834738261786, 32.015644303984615 ], [ -95.956277929799853, 32.251073287174307 ], [ -95.944721121337935, 32.270898885758704 ], [ -95.794482611332867, 32.223813089120767 ], [ -95.788704207101901, 32.037948102392058 ], [ -95.863823462104435, 32.028035303099863 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ATHENS", "zip": "75752", "state": "TX", "Sheet1_value": 264, "Sheet1_populaiton": 6647, "Sheet1_income": 44940, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.68469293094455, 32.226291288943813 ], [ -95.759812185947084, 32.04042630221511 ], [ -95.788704207101901, 32.037948102392058 ], [ -95.794482611332867, 32.223813089120767 ], [ -95.944721121337935, 32.270898885758704 ], [ -95.892715483259252, 32.357635879565436 ], [ -95.811817824025752, 32.357635879565436 ], [ -95.690471335175516, 32.233725888412962 ], [ -95.68469293094455, 32.226291288943813 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEN WHEELER", "zip": "75754", "state": "TX", "Sheet1_value": 252, "Sheet1_populaiton": 5784, "Sheet1_income": 42759, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52867601670853, 32.355157679742383 ], [ -95.626908888634915, 32.355157679742383 ], [ -95.823374632487685, 32.384896077618976 ], [ -95.76559059017805, 32.488980470187052 ], [ -95.574903250556247, 32.461720272133512 ], [ -95.557568037863348, 32.454285672664362 ], [ -95.44777835747503, 32.355157679742383 ], [ -95.52867601670853, 32.355157679742383 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BIG SANDY", "zip": "75755", "state": "TX", "Sheet1_value": 216, "Sheet1_populaiton": 5896, "Sheet1_income": 42467, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.077960486693343, 32.538544466648041 ], [ -95.153079741695876, 32.570761064347685 ], [ -95.153079741695876, 32.729365853022848 ], [ -94.979727614766958, 32.63767245957002 ], [ -95.077960486693343, 32.538544466648041 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNSBORO", "zip": "75756", "state": "TX", "Sheet1_value": 165, "Sheet1_populaiton": 3752, "Sheet1_income": 44535, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644244101327814, 32.233725888412962 ], [ -95.626908888634915, 32.355157679742383 ], [ -95.52867601670853, 32.355157679742383 ], [ -95.644244101327814, 32.233725888412962 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BULLARD", "zip": "75757", "state": "TX", "Sheet1_value": 447, "Sheet1_populaiton": 10662, "Sheet1_income": 54451, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.424664740551179, 32.04786090168426 ], [ -95.459335165936963, 32.134597895490984 ], [ -95.332210272855761, 32.184161891951973 ], [ -95.251312613622261, 32.151945294252329 ], [ -95.22819899669841, 32.137076095314036 ], [ -95.314875060162862, 32.137076095314036 ], [ -95.285983039008045, 32.03299170274596 ], [ -95.424664740551179, 32.04786090168426 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHANDLER", "zip": "75758", "state": "TX", "Sheet1_value": 320, "Sheet1_populaiton": 8613, "Sheet1_income": 45177, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.517119208246598, 32.176727292482823 ], [ -95.68469293094455, 32.226291288943813 ], [ -95.690471335175516, 32.233725888412962 ], [ -95.644244101327814, 32.233725888412962 ], [ -95.52867601670853, 32.355157679742383 ], [ -95.44777835747503, 32.355157679742383 ], [ -95.453556761705997, 32.325419281865791 ], [ -95.453556761705997, 32.308071883104446 ], [ -95.482448782860814, 32.151945294252329 ], [ -95.517119208246598, 32.176727292482823 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CUSHING", "zip": "75760", "state": "TX", "Sheet1_value": 73, "Sheet1_populaiton": 2255, "Sheet1_income": 49559, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.771705062452256, 31.844648516194205 ], [ -94.754369849759371, 31.688521927342091 ], [ -94.956613997843107, 31.728173124510882 ], [ -94.962392402074073, 31.752955122741376 ], [ -94.939278785150208, 31.844648516194205 ], [ -94.771705062452256, 31.844648516194205 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLINT", "zip": "75762", "state": "TX", "Sheet1_value": 519, "Sheet1_populaiton": 12900, "Sheet1_income": 65819, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459335165936963, 32.134597895490984 ], [ -95.482448782860814, 32.151945294252329 ], [ -95.453556761705997, 32.308071883104446 ], [ -95.413107932089247, 32.310550082927492 ], [ -95.332210272855761, 32.184161891951973 ], [ -95.459335165936963, 32.134597895490984 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRANKSTON", "zip": "75763", "state": "TX", "Sheet1_value": 242, "Sheet1_populaiton": 6499, "Sheet1_income": 46813, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.655800909789733, 31.8694305144247 ], [ -95.678914526713584, 32.050339101507305 ], [ -95.517119208246598, 32.176727292482823 ], [ -95.482448782860814, 32.151945294252329 ], [ -95.459335165936963, 32.134597895490984 ], [ -95.424664740551179, 32.04786090168426 ], [ -95.441999953244078, 31.946254708939229 ], [ -95.580681654787213, 31.859517715132501 ], [ -95.655800909789733, 31.8694305144247 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HAWKINS", "zip": "75765", "state": "TX", "Sheet1_value": 236, "Sheet1_populaiton": 8101, "Sheet1_income": 50276, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 32.570761064347685 ], [ -95.18775016708166, 32.541022666471093 ], [ -95.343767081317679, 32.607934061693427 ], [ -95.372659102472511, 32.677323656738807 ], [ -95.280204634777078, 32.783886249129935 ], [ -95.153079741695876, 32.759104250899441 ], [ -95.153079741695876, 32.729365853022848 ], [ -95.153079741695876, 32.570761064347685 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JACKSONVILLE", "zip": "75766", "state": "TX", "Sheet1_value": 774, "Sheet1_populaiton": 25952, "Sheet1_income": 33053, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430443144782146, 31.884299713362996 ], [ -95.441999953244078, 31.946254708939229 ], [ -95.424664740551179, 32.04786090168426 ], [ -95.285983039008045, 32.03299170274596 ], [ -95.118409316310093, 31.916516311062637 ], [ -95.430443144782146, 31.884299713362996 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LARUE", "zip": "75770", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 3327, "Sheet1_income": 46188, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.678914526713584, 32.050339101507305 ], [ -95.759812185947084, 32.04042630221511 ], [ -95.68469293094455, 32.226291288943813 ], [ -95.517119208246598, 32.176727292482823 ], [ -95.678914526713584, 32.050339101507305 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LINDALE", "zip": "75771", "state": "TX", "Sheet1_value": 663, "Sheet1_populaiton": 18912, "Sheet1_income": 55283, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.574903250556247, 32.461720272133512 ], [ -95.592238463249132, 32.565804664701588 ], [ -95.343767081317679, 32.607934061693427 ], [ -95.18775016708166, 32.541022666471093 ], [ -95.193528571312626, 32.533588067001944 ], [ -95.44777835747503, 32.454285672664362 ], [ -95.557568037863348, 32.454285672664362 ], [ -95.574903250556247, 32.461720272133512 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MINEOLA", "zip": "75773", "state": "TX", "Sheet1_value": 449, "Sheet1_populaiton": 12343, "Sheet1_income": 42726, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 32.607934061693427 ], [ -95.592238463249132, 32.565804664701588 ], [ -95.592238463249132, 32.655019858331364 ], [ -95.592238463249132, 32.687236456031002 ], [ -95.465113570167929, 32.761582450722486 ], [ -95.372659102472511, 32.677323656738807 ], [ -95.343767081317679, 32.607934061693427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MURCHISON", "zip": "75778", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 3534, "Sheet1_income": 41288, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690471335175516, 32.233725888412962 ], [ -95.811817824025752, 32.357635879565436 ], [ -95.823374632487685, 32.384896077618976 ], [ -95.626908888634915, 32.355157679742383 ], [ -95.644244101327814, 32.233725888412962 ], [ -95.690471335175516, 32.233725888412962 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUITMAN", "zip": "75783", "state": "TX", "Sheet1_value": 282, "Sheet1_populaiton": 7486, "Sheet1_income": 40322, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372659102472511, 32.677323656738807 ], [ -95.465113570167929, 32.761582450722486 ], [ -95.574903250556247, 32.82849384594482 ], [ -95.389994315165396, 32.910274440105454 ], [ -95.280204634777078, 32.783886249129935 ], [ -95.372659102472511, 32.677323656738807 ] ] ] } },
{ "type": "Feature", "properties": { "name": "REKLAW", "zip": "75784", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39038, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985506018997924, 31.847126716017254 ], [ -95.049068465538525, 31.886777913186044 ], [ -94.985506018997924, 31.928907310177884 ], [ -94.985506018997924, 31.847126716017254 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RUSK", "zip": "75785", "state": "TX", "Sheet1_value": 181, "Sheet1_populaiton": 11457, "Sheet1_income": 43043, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 31.718260325218687 ], [ -95.430443144782146, 31.884299713362996 ], [ -95.118409316310093, 31.916516311062637 ], [ -95.049068465538525, 31.886777913186044 ], [ -94.985506018997924, 31.847126716017254 ], [ -94.939278785150208, 31.844648516194205 ], [ -94.962392402074073, 31.752955122741376 ], [ -95.285983039008045, 31.629045131588907 ], [ -95.343767081317679, 31.718260325218687 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TROUP", "zip": "75789", "state": "TX", "Sheet1_value": 292, "Sheet1_populaiton": 6998, "Sheet1_income": 59081, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985506018997924, 31.928907310177884 ], [ -95.049068465538525, 31.886777913186044 ], [ -95.118409316310093, 31.916516311062637 ], [ -95.285983039008045, 32.03299170274596 ], [ -95.314875060162862, 32.137076095314036 ], [ -95.22819899669841, 32.137076095314036 ], [ -95.176193358619742, 32.21142209000552 ], [ -95.118409316310093, 32.231247688589917 ], [ -95.025954848614674, 32.218856689474663 ], [ -94.985506018997924, 32.196552891067221 ], [ -94.985506018997924, 32.146988894606231 ], [ -94.985506018997924, 32.003253304869368 ], [ -94.985506018997924, 31.928907310177884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VAN", "zip": "75790", "state": "TX", "Sheet1_value": 144, "Sheet1_populaiton": 4109, "Sheet1_income": 39861, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.574903250556247, 32.461720272133512 ], [ -95.76559059017805, 32.488980470187052 ], [ -95.754033781716117, 32.570761064347685 ], [ -95.592238463249132, 32.655019858331364 ], [ -95.592238463249132, 32.565804664701588 ], [ -95.574903250556247, 32.461720272133512 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITEHOUSE", "zip": "75791", "state": "TX", "Sheet1_value": 436, "Sheet1_populaiton": 13459, "Sheet1_income": 68630, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251312613622261, 32.151945294252329 ], [ -95.274426230546112, 32.265942486112607 ], [ -95.176193358619742, 32.21142209000552 ], [ -95.22819899669841, 32.137076095314036 ], [ -95.251312613622261, 32.151945294252329 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINONA", "zip": "75792", "state": "TX", "Sheet1_value": 147, "Sheet1_populaiton": 3346, "Sheet1_income": 38750, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.99128442322889, 32.40967807584947 ], [ -95.03173325284564, 32.38241787779593 ], [ -95.135744529002977, 32.414634475495568 ], [ -95.222420592467444, 32.471633071425707 ], [ -95.193528571312626, 32.533588067001944 ], [ -95.18775016708166, 32.541022666471093 ], [ -95.153079741695876, 32.570761064347685 ], [ -95.077960486693343, 32.538544466648041 ], [ -94.99128442322889, 32.40967807584947 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PALESTINE", "zip": "75801", "state": "TX", "Sheet1_value": 486, "Sheet1_populaiton": 16186, "Sheet1_income": 39854, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.794482611332867, 31.733129524156979 ], [ -95.580681654787213, 31.859517715132501 ], [ -95.441999953244078, 31.946254708939229 ], [ -95.430443144782146, 31.884299713362996 ], [ -95.343767081317679, 31.718260325218687 ], [ -95.7251417605613, 31.636479731058053 ], [ -95.869601866335401, 31.73808592380308 ], [ -95.794482611332867, 31.733129524156979 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PALESTINE", "zip": "75803", "state": "TX", "Sheet1_value": 358, "Sheet1_populaiton": 24714, "Sheet1_income": 41067, "Sheet1_percent": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.794482611332867, 31.733129524156979 ], [ -95.76559059017805, 31.809953718671512 ], [ -95.655800909789733, 31.8694305144247 ], [ -95.580681654787213, 31.859517715132501 ], [ -95.794482611332867, 31.733129524156979 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BUFFALO", "zip": "75831", "state": "TX", "Sheet1_value": 135, "Sheet1_populaiton": 5920, "Sheet1_income": 50575, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.898493887490218, 31.398572548045308 ], [ -96.054510801726252, 31.321748353530779 ], [ -96.193192503269373, 31.433267345568002 ], [ -96.245198141348055, 31.542308137782175 ], [ -96.060289205957204, 31.601784933535363 ], [ -95.898493887490218, 31.398572548045308 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CENTERVILLE", "zip": "75833", "state": "TX", "Sheet1_value": 98, "Sheet1_populaiton": 3392, "Sheet1_income": 45114, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.008283567878536, 31.18296916344001 ], [ -96.083402822881055, 31.244924159016247 ], [ -96.100738035573954, 31.282097156361989 ], [ -96.054510801726252, 31.321748353530779 ], [ -95.898493887490218, 31.398572548045308 ], [ -95.696249739406483, 31.386181548930061 ], [ -95.678914526713584, 31.368834150168716 ], [ -95.777147398639983, 31.121014167863777 ], [ -96.008283567878536, 31.18296916344001 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROCKETT", "zip": "75835", "state": "TX", "Sheet1_value": 317, "Sheet1_populaiton": 11514, "Sheet1_income": 29086, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.76559059017805, 31.09375396981023 ], [ -95.777147398639983, 31.121014167863777 ], [ -95.678914526713584, 31.368834150168716 ], [ -95.251312613622261, 31.420876346452754 ], [ -95.22819899669841, 31.197838362378306 ], [ -95.245534209391295, 31.185447363263059 ], [ -95.563346442094314, 31.244924159016247 ], [ -95.650022505558766, 31.068971971579739 ], [ -95.76559059017805, 31.09375396981023 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DONIE", "zip": "75838", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48359, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.193192503269373, 31.433267345568002 ], [ -96.297203779426724, 31.507613340259486 ], [ -96.245198141348055, 31.542308137782175 ], [ -96.193192503269373, 31.433267345568002 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELKHART", "zip": "75839", "state": "TX", "Sheet1_value": 151, "Sheet1_populaiton": 5204, "Sheet1_income": 42569, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.285983039008045, 31.629045131588907 ], [ -95.742476973254185, 31.502656940613385 ], [ -95.7251417605613, 31.636479731058053 ], [ -95.343767081317679, 31.718260325218687 ], [ -95.285983039008045, 31.629045131588907 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FAIRFIELD", "zip": "75840", "state": "TX", "Sheet1_value": 212, "Sheet1_populaiton": 7111, "Sheet1_income": 43723, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.054510801726252, 32.00573150469242 ], [ -95.956277929799853, 31.782693520617968 ], [ -95.956277929799853, 31.658783529465499 ], [ -96.071846014419137, 31.646392530350251 ], [ -96.26253335404094, 31.678609128049892 ], [ -96.250976545579022, 31.787649920264069 ], [ -96.256754949809988, 31.824822917609808 ], [ -96.135408460959738, 31.973514906992776 ], [ -96.054510801726252, 32.013166104161563 ], [ -96.054510801726252, 32.00573150469242 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAPELAND", "zip": "75844", "state": "TX", "Sheet1_value": 118, "Sheet1_populaiton": 6166, "Sheet1_income": 36631, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.696249739406483, 31.386181548930061 ], [ -95.742476973254185, 31.502656940613385 ], [ -95.285983039008045, 31.629045131588907 ], [ -95.129966124772025, 31.537351738136078 ], [ -95.112630912079126, 31.48530954185204 ], [ -95.251312613622261, 31.420876346452754 ], [ -95.678914526713584, 31.368834150168716 ], [ -95.696249739406483, 31.386181548930061 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GROVETON", "zip": "75845", "state": "TX", "Sheet1_value": 74, "Sheet1_populaiton": 4486, "Sheet1_income": 33841, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.997062827459857, 30.997104176711304 ], [ -95.112630912079126, 30.897976183789329 ], [ -95.164636550157809, 30.85336858697444 ], [ -95.233977400929376, 31.116057768217676 ], [ -95.118409316310093, 31.071450171402788 ], [ -95.054846869769491, 31.173056364147811 ], [ -94.852602721685756, 31.18296916344001 ], [ -94.841045913223823, 31.145796166094271 ], [ -94.997062827459857, 30.997104176711304 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JEWETT", "zip": "75846", "state": "TX", "Sheet1_value": 137, "Sheet1_populaiton": 2938, "Sheet1_income": 41622, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.141186865190704, 31.289531755831135 ], [ -96.314538992119623, 31.277140756715887 ], [ -96.320317396350589, 31.356443151053469 ], [ -96.378101438660224, 31.440701945037148 ], [ -96.308760587888656, 31.522482539197782 ], [ -96.297203779426724, 31.507613340259486 ], [ -96.193192503269373, 31.433267345568002 ], [ -96.054510801726252, 31.321748353530779 ], [ -96.100738035573954, 31.282097156361989 ], [ -96.141186865190704, 31.289531755831135 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KENNARD", "zip": "75847", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36968, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251312613622261, 31.420876346452754 ], [ -95.112630912079126, 31.48530954185204 ], [ -95.002841231690809, 31.425832746098855 ], [ -94.956613997843107, 31.386181548930061 ], [ -95.083738890924309, 31.301922754946382 ], [ -95.054846869769491, 31.187925563086111 ], [ -95.22819899669841, 31.197838362378306 ], [ -95.251312613622261, 31.420876346452754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEONA", "zip": "75850", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 70132, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.886937079028286, 31.09375396981023 ], [ -95.979391546723718, 31.091275769987181 ], [ -96.008283567878536, 31.18296916344001 ], [ -95.777147398639983, 31.121014167863777 ], [ -95.76559059017805, 31.09375396981023 ], [ -95.886937079028286, 31.09375396981023 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOVELADY", "zip": "75851", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38309, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586460059018165, 30.954974779719464 ], [ -95.615352080172983, 30.930192781488969 ], [ -95.650022505558766, 31.068971971579739 ], [ -95.563346442094314, 31.244924159016247 ], [ -95.245534209391295, 31.185447363263059 ], [ -95.262869422084194, 31.175534563970864 ], [ -95.586460059018165, 30.954974779719464 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDWAY", "zip": "75852", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47303, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.713584952099382, 30.910367182904576 ], [ -95.886937079028286, 31.09375396981023 ], [ -95.76559059017805, 31.09375396981023 ], [ -95.650022505558766, 31.068971971579739 ], [ -95.615352080172983, 30.930192781488969 ], [ -95.713584952099382, 30.910367182904576 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MONTALBA", "zip": "75853", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 32098, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.655800909789733, 31.8694305144247 ], [ -95.76559059017805, 31.809953718671512 ], [ -95.863823462104435, 32.028035303099863 ], [ -95.788704207101901, 32.037948102392058 ], [ -95.759812185947084, 32.04042630221511 ], [ -95.678914526713584, 32.050339101507305 ], [ -95.655800909789733, 31.8694305144247 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OAKWOOD", "zip": "75855", "state": "TX", "Sheet1_value": 69, "Sheet1_populaiton": 2308, "Sheet1_income": 38112, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.060289205957204, 31.601784933535363 ], [ -96.071846014419137, 31.646392530350251 ], [ -95.956277929799853, 31.658783529465499 ], [ -95.956277929799853, 31.782693520617968 ], [ -95.869601866335401, 31.73808592380308 ], [ -95.7251417605613, 31.636479731058053 ], [ -95.742476973254185, 31.502656940613385 ], [ -95.696249739406483, 31.386181548930061 ], [ -95.898493887490218, 31.398572548045308 ], [ -96.060289205957204, 31.601784933535363 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PENNINGTON", "zip": "75856", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 24658, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.054846869769491, 31.187925563086111 ], [ -95.054846869769491, 31.173056364147811 ], [ -95.118409316310093, 31.071450171402788 ], [ -95.233977400929376, 31.116057768217676 ], [ -95.262869422084194, 31.175534563970864 ], [ -95.245534209391295, 31.185447363263059 ], [ -95.22819899669841, 31.197838362378306 ], [ -95.054846869769491, 31.187925563086111 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STREETMAN", "zip": "75859", "state": "TX", "Sheet1_value": 68, "Sheet1_populaiton": 2140, "Sheet1_income": 58403, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.256754949809988, 31.824822917609808 ], [ -96.366544630198291, 31.859517715132501 ], [ -96.354987821736358, 31.936341909647034 ], [ -96.198970907500339, 31.973514906992776 ], [ -96.135408460959738, 31.973514906992776 ], [ -96.256754949809988, 31.824822917609808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEAGUE", "zip": "75860", "state": "TX", "Sheet1_value": 139, "Sheet1_populaiton": 6142, "Sheet1_income": 46888, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.308760587888656, 31.522482539197782 ], [ -96.38387984289119, 31.626566931765858 ], [ -96.464777502124676, 31.745520523272226 ], [ -96.250976545579022, 31.787649920264069 ], [ -96.26253335404094, 31.678609128049892 ], [ -96.071846014419137, 31.646392530350251 ], [ -96.060289205957204, 31.601784933535363 ], [ -96.245198141348055, 31.542308137782175 ], [ -96.297203779426724, 31.507613340259486 ], [ -96.308760587888656, 31.522482539197782 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TENNESSEE COLONY", "zip": "75861", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 57589, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.956277929799853, 31.782693520617968 ], [ -96.054510801726252, 32.00573150469242 ], [ -95.967834738261786, 32.015644303984615 ], [ -95.863823462104435, 32.028035303099863 ], [ -95.76559059017805, 31.809953718671512 ], [ -95.794482611332867, 31.733129524156979 ], [ -95.869601866335401, 31.73808592380308 ], [ -95.956277929799853, 31.782693520617968 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TRINITY", "zip": "75862", "state": "TX", "Sheet1_value": 264, "Sheet1_populaiton": 8552, "Sheet1_income": 35011, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.164636550157809, 30.85336858697444 ], [ -95.18775016708166, 30.836021188213092 ], [ -95.349545485548646, 31.011973375649603 ], [ -95.274426230546112, 30.910367182904576 ], [ -95.40732952785828, 30.927714581665921 ], [ -95.586460059018165, 30.954974779719464 ], [ -95.262869422084194, 31.175534563970864 ], [ -95.233977400929376, 31.116057768217676 ], [ -95.164636550157809, 30.85336858697444 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUFKIN", "zip": "75901", "state": "TX", "Sheet1_value": 802, "Sheet1_populaiton": 29847, "Sheet1_income": 41809, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.748591445528405, 31.259793357954543 ], [ -94.719699424373587, 31.410963547160556 ], [ -94.708142615911655, 31.458049343798496 ], [ -94.661915382063953, 31.460527543621545 ], [ -94.638801765140087, 31.4431801448602 ], [ -94.638801765140087, 31.438223745214103 ], [ -94.65035857360202, 31.197838362378306 ], [ -94.748591445528405, 31.259793357954543 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUFKIN", "zip": "75904", "state": "TX", "Sheet1_value": 1037, "Sheet1_populaiton": 33824, "Sheet1_income": 39265, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.864159530147688, 31.232533159900999 ], [ -94.898829955533472, 31.324226553353828 ], [ -94.719699424373587, 31.410963547160556 ], [ -94.748591445528405, 31.259793357954543 ], [ -94.864159530147688, 31.232533159900999 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALTO", "zip": "75925", "state": "TX", "Sheet1_value": 83, "Sheet1_populaiton": 4449, "Sheet1_income": 40971, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.956613997843107, 31.728173124510882 ], [ -94.893051551302506, 31.577002935304868 ], [ -95.129966124772025, 31.537351738136078 ], [ -95.285983039008045, 31.629045131588907 ], [ -94.962392402074073, 31.752955122741376 ], [ -94.956613997843107, 31.728173124510882 ] ] ] } },
{ "type": "Feature", "properties": { "name": "APPLE SPRINGS", "zip": "75926", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36100, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.864159530147688, 31.232533159900999 ], [ -94.852602721685756, 31.18296916344001 ], [ -95.054846869769491, 31.173056364147811 ], [ -95.054846869769491, 31.187925563086111 ], [ -95.083738890924309, 31.301922754946382 ], [ -94.956613997843107, 31.386181548930061 ], [ -94.898829955533472, 31.324226553353828 ], [ -94.864159530147688, 31.232533159900999 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BON WIER", "zip": "75928", "state": "TX", "Sheet1_value": 57, "Sheet1_populaiton": 1038, "Sheet1_income": 35292, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.61602421625949, 30.741849594937214 ], [ -93.725813896647793, 30.565897407500707 ], [ -93.87605240665286, 30.650156201484386 ], [ -93.870274002421894, 30.788935391575155 ], [ -93.61602421625949, 30.741849594937214 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROADDUS", "zip": "75929", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31366, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.320989532437082, 31.383703349107012 ], [ -94.095631767429495, 31.401050747868361 ], [ -94.107188575891414, 31.289531755831135 ], [ -94.11296698012238, 31.103666769102428 ], [ -94.251648681665515, 31.282097156361989 ], [ -94.320989532437082, 31.232533159900999 ], [ -94.320989532437082, 31.383703349107012 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRONSON", "zip": "75930", "state": "TX", "Sheet1_value": 55, "Sheet1_populaiton": 1833, "Sheet1_income": 22902, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.893387619345759, 31.39609434822226 ], [ -93.939614853193461, 31.287053556008086 ], [ -94.049404533581779, 31.143317966271219 ], [ -94.107188575891414, 31.289531755831135 ], [ -94.095631767429495, 31.401050747868361 ], [ -93.985842087041178, 31.467962143090695 ], [ -93.893387619345759, 31.39609434822226 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROOKELAND", "zip": "75931", "state": "TX", "Sheet1_value": 104, "Sheet1_populaiton": 2321, "Sheet1_income": 46528, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.910722832038644, 31.158187165209519 ], [ -93.887609215114793, 31.039233573703143 ], [ -94.084074958967562, 31.06649377175669 ], [ -93.99162049127213, 31.192881962732208 ], [ -93.910722832038644, 31.158187165209519 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURKEVILLE", "zip": "75932", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45231, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.604467407797557, 30.759196993698559 ], [ -93.772041130495509, 30.989669577242157 ], [ -93.731592300878759, 31.168099964501714 ], [ -93.673808258569125, 31.173056364147811 ], [ -93.569796982411773, 31.178012763793912 ], [ -93.517791344333091, 31.064015571933638 ], [ -93.558240173949841, 30.868237785912733 ], [ -93.604467407797557, 30.759196993698559 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CALL", "zip": "75933", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 1358, "Sheet1_income": 43056, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.725813896647793, 30.565897407500707 ], [ -93.708478683954908, 30.508898811570567 ], [ -93.743149109340692, 30.402336219179446 ], [ -93.760484322033577, 30.384988820418098 ], [ -93.887609215114793, 30.437031016702136 ], [ -93.910722832038644, 30.588201205908149 ], [ -93.87605240665286, 30.650156201484386 ], [ -93.725813896647793, 30.565897407500707 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CENTER", "zip": "75935", "state": "TX", "Sheet1_value": 404, "Sheet1_populaiton": 14124, "Sheet1_income": 38668, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.401887191670568, 31.653827129819398 ], [ -94.401887191670568, 31.673652728403795 ], [ -94.240091873203582, 31.896690712478243 ], [ -94.193864639355866, 31.889256113009093 ], [ -94.008955703965029, 31.857039515309452 ], [ -93.985842087041178, 31.82730111743286 ], [ -94.107188575891414, 31.760389722210526 ], [ -94.089853363198529, 31.621610532119757 ], [ -94.401887191670568, 31.653827129819398 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHESTER", "zip": "75936", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 49000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.459671233980202, 31.034277174057046 ], [ -94.240091873203582, 31.011973375649603 ], [ -94.199643043586832, 30.85336858697444 ], [ -94.222756660510697, 30.860803186443587 ], [ -94.344103149360933, 30.870715985735785 ], [ -94.419222404363467, 30.957452979542513 ], [ -94.459671233980202, 30.868237785912733 ], [ -94.621466552447203, 30.858324986620538 ], [ -94.633023360909135, 30.902932583435426 ], [ -94.563682510137568, 31.05905917228754 ], [ -94.459671233980202, 31.034277174057046 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHIRENO", "zip": "75937", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42067, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.517455276289851, 31.4431801448602 ], [ -94.523233680520818, 31.579481135127917 ], [ -94.309432723975149, 31.520004339374729 ], [ -94.315211128206116, 31.453092944152395 ], [ -94.355659957822866, 31.26474975760064 ], [ -94.517455276289851, 31.4431801448602 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLMESNEIL", "zip": "75938", "state": "TX", "Sheet1_value": 74, "Sheet1_populaiton": 2447, "Sheet1_income": 41011, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.344103149360933, 30.870715985735785 ], [ -94.459671233980202, 30.868237785912733 ], [ -94.419222404363467, 30.957452979542513 ], [ -94.344103149360933, 30.870715985735785 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORRIGAN", "zip": "75939", "state": "TX", "Sheet1_value": 152, "Sheet1_populaiton": 4032, "Sheet1_income": 39123, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.633023360909135, 30.902932583435426 ], [ -94.702364211680703, 30.900454383612377 ], [ -94.997062827459857, 30.997104176711304 ], [ -94.841045913223823, 31.145796166094271 ], [ -94.604131339754304, 31.078884770871937 ], [ -94.563682510137568, 31.05905917228754 ], [ -94.633023360909135, 30.902932583435426 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DIBOLL", "zip": "75941", "state": "TX", "Sheet1_value": 182, "Sheet1_populaiton": 10388, "Sheet1_income": 45979, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.852602721685756, 31.18296916344001 ], [ -94.864159530147688, 31.232533159900999 ], [ -94.748591445528405, 31.259793357954543 ], [ -94.65035857360202, 31.197838362378306 ], [ -94.604131339754304, 31.078884770871937 ], [ -94.841045913223823, 31.145796166094271 ], [ -94.852602721685756, 31.18296916344001 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DOUGLASS", "zip": "75943", "state": "TX", "Sheet1_value": 56, "Sheet1_populaiton": 1305, "Sheet1_income": 56563, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.956613997843107, 31.728173124510882 ], [ -94.754369849759371, 31.688521927342091 ], [ -94.893051551302506, 31.577002935304868 ], [ -94.956613997843107, 31.728173124510882 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARRISON", "zip": "75946", "state": "TX", "Sheet1_value": 119, "Sheet1_populaiton": 3474, "Sheet1_income": 43875, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.482784850904068, 31.894212512655194 ], [ -94.407665595901534, 31.676130928226844 ], [ -94.517455276289851, 31.745520523272226 ], [ -94.604131339754304, 31.720738525041735 ], [ -94.604131339754304, 31.844648516194205 ], [ -94.482784850904068, 31.894212512655194 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEMPHILL", "zip": "75948", "state": "TX", "Sheet1_value": 179, "Sheet1_populaiton": 6188, "Sheet1_income": 34651, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.731592300878759, 31.168099964501714 ], [ -93.910722832038644, 31.158187165209519 ], [ -93.939614853193461, 31.287053556008086 ], [ -93.893387619345759, 31.39609434822226 ], [ -93.829825172805144, 31.386181548930061 ], [ -93.691143471262023, 31.401050747868361 ], [ -93.800933151650327, 31.294488155477232 ], [ -93.673808258569125, 31.173056364147811 ], [ -93.731592300878759, 31.168099964501714 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUNTINGTON", "zip": "75949", "state": "TX", "Sheet1_value": 224, "Sheet1_populaiton": 7130, "Sheet1_income": 38165, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.604131339754304, 31.078884770871937 ], [ -94.65035857360202, 31.197838362378306 ], [ -94.638801765140087, 31.438223745214103 ], [ -94.37299517051575, 31.232533159900999 ], [ -94.523233680520818, 31.212707561316606 ], [ -94.459671233980202, 31.034277174057046 ], [ -94.563682510137568, 31.05905917228754 ], [ -94.604131339754304, 31.078884770871937 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JASPER", "zip": "75951", "state": "TX", "Sheet1_value": 842, "Sheet1_populaiton": 16139, "Sheet1_income": 33700, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.870274002421894, 30.964887579011663 ], [ -93.870274002421894, 30.828586588743946 ], [ -94.141859001277197, 30.779022592282956 ], [ -94.199643043586832, 30.85336858697444 ], [ -94.240091873203582, 31.011973375649603 ], [ -94.459671233980202, 31.034277174057046 ], [ -94.170751022432015, 31.091275769987181 ], [ -94.084074958967562, 31.06649377175669 ], [ -93.887609215114793, 31.039233573703143 ], [ -93.870274002421894, 30.964887579011663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JOAQUIN", "zip": "75954", "state": "TX", "Sheet1_value": 88, "Sheet1_populaiton": 2977, "Sheet1_income": 40455, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.193864639355866, 31.889256113009093 ], [ -94.182307830893947, 31.978471306638873 ], [ -94.03206932088888, 31.978471306638873 ], [ -93.91650123626961, 31.852083115663355 ], [ -94.008955703965029, 31.857039515309452 ], [ -94.193864639355866, 31.889256113009093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KIRBYVILLE", "zip": "75956", "state": "TX", "Sheet1_value": 251, "Sheet1_populaiton": 7281, "Sheet1_income": 42644, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.910722832038644, 30.588201205908149 ], [ -94.078296554736596, 30.546071808916309 ], [ -94.089853363198529, 30.679894599360978 ], [ -94.141859001277197, 30.779022592282956 ], [ -93.870274002421894, 30.828586588743946 ], [ -93.870274002421894, 30.788935391575155 ], [ -93.87605240665286, 30.650156201484386 ], [ -93.910722832038644, 30.588201205908149 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILAM", "zip": "75959", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 28419, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.893387619345759, 31.39609434822226 ], [ -93.985842087041178, 31.467962143090695 ], [ -93.985842087041178, 31.569568335835719 ], [ -93.870274002421894, 31.599306733712311 ], [ -93.737370705109726, 31.423354546275803 ], [ -93.829825172805144, 31.386181548930061 ], [ -93.893387619345759, 31.39609434822226 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOSCOW", "zip": "75960", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37417, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072182082462376, 30.88062878502798 ], [ -95.112630912079126, 30.897976183789329 ], [ -94.997062827459857, 30.997104176711304 ], [ -94.702364211680703, 30.900454383612377 ], [ -95.072182082462376, 30.88062878502798 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NACOGDOCHES", "zip": "75961", "state": "TX", "Sheet1_value": 402, "Sheet1_populaiton": 15085, "Sheet1_income": 29413, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.661915382063953, 31.460527543621545 ], [ -94.656136977832986, 31.619132332296708 ], [ -94.65035857360202, 31.616654132473659 ], [ -94.638801765140087, 31.619132332296708 ], [ -94.517455276289851, 31.745520523272226 ], [ -94.407665595901534, 31.676130928226844 ], [ -94.401887191670568, 31.673652728403795 ], [ -94.401887191670568, 31.653827129819398 ], [ -94.309432723975149, 31.520004339374729 ], [ -94.523233680520818, 31.579481135127917 ], [ -94.517455276289851, 31.4431801448602 ], [ -94.638801765140087, 31.4431801448602 ], [ -94.661915382063953, 31.460527543621545 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NACOGDOCHES", "zip": "75964", "state": "TX", "Sheet1_value": 526, "Sheet1_populaiton": 19648, "Sheet1_income": 35827, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.661915382063953, 31.460527543621545 ], [ -94.708142615911655, 31.458049343798496 ], [ -94.864159530147688, 31.527438938843879 ], [ -94.893051551302506, 31.577002935304868 ], [ -94.754369849759371, 31.688521927342091 ], [ -94.771705062452256, 31.844648516194205 ], [ -94.679250594756837, 31.844648516194205 ], [ -94.656136977832986, 31.619132332296708 ], [ -94.661915382063953, 31.460527543621545 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NACOGDOCHES", "zip": "75965", "state": "TX", "Sheet1_value": 520, "Sheet1_populaiton": 18589, "Sheet1_income": 39651, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.656136977832986, 31.619132332296708 ], [ -94.679250594756837, 31.844648516194205 ], [ -94.604131339754304, 31.844648516194205 ], [ -94.604131339754304, 31.720738525041735 ], [ -94.517455276289851, 31.745520523272226 ], [ -94.638801765140087, 31.619132332296708 ], [ -94.65035857360202, 31.616654132473659 ], [ -94.656136977832986, 31.619132332296708 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEWTON", "zip": "75966", "state": "TX", "Sheet1_value": 203, "Sheet1_populaiton": 4236, "Sheet1_income": 29595, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.604467407797557, 30.759196993698559 ], [ -93.61602421625949, 30.741849594937214 ], [ -93.870274002421894, 30.788935391575155 ], [ -93.870274002421894, 30.828586588743946 ], [ -93.870274002421894, 30.964887579011663 ], [ -93.772041130495509, 30.989669577242157 ], [ -93.604467407797557, 30.759196993698559 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PINELAND", "zip": "75968", "state": "TX", "Sheet1_value": 56, "Sheet1_populaiton": 1938, "Sheet1_income": 32672, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.049404533581779, 31.143317966271219 ], [ -93.939614853193461, 31.287053556008086 ], [ -93.910722832038644, 31.158187165209519 ], [ -93.99162049127213, 31.192881962732208 ], [ -94.049404533581779, 31.143317966271219 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POLLOK", "zip": "75969", "state": "TX", "Sheet1_value": 122, "Sheet1_populaiton": 3401, "Sheet1_income": 57143, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002841231690809, 31.425832746098855 ], [ -94.864159530147688, 31.527438938843879 ], [ -94.708142615911655, 31.458049343798496 ], [ -94.719699424373587, 31.410963547160556 ], [ -94.898829955533472, 31.324226553353828 ], [ -94.956613997843107, 31.386181548930061 ], [ -95.002841231690809, 31.425832746098855 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN AUGUSTINE", "zip": "75972", "state": "TX", "Sheet1_value": 245, "Sheet1_populaiton": 6410, "Sheet1_income": 28338, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.095631767429495, 31.401050747868361 ], [ -94.320989532437082, 31.383703349107012 ], [ -94.315211128206116, 31.453092944152395 ], [ -94.309432723975149, 31.520004339374729 ], [ -94.401887191670568, 31.653827129819398 ], [ -94.089853363198529, 31.621610532119757 ], [ -93.985842087041178, 31.569568335835719 ], [ -93.985842087041178, 31.467962143090695 ], [ -94.095631767429495, 31.401050747868361 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHELBYVILLE", "zip": "75973", "state": "TX", "Sheet1_value": 87, "Sheet1_populaiton": 2565, "Sheet1_income": 42645, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.985842087041178, 31.569568335835719 ], [ -94.089853363198529, 31.621610532119757 ], [ -94.107188575891414, 31.760389722210526 ], [ -93.985842087041178, 31.82730111743286 ], [ -93.83560357703611, 31.770302521502721 ], [ -93.870274002421894, 31.599306733712311 ], [ -93.985842087041178, 31.569568335835719 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TENAHA", "zip": "75974", "state": "TX", "Sheet1_value": 89, "Sheet1_populaiton": 2898, "Sheet1_income": 30440, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.193864639355866, 31.889256113009093 ], [ -94.240091873203582, 31.896690712478243 ], [ -94.326767936668034, 31.975993106815825 ], [ -94.182307830893947, 31.978471306638873 ], [ -94.193864639355866, 31.889256113009093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TIMPSON", "zip": "75975", "state": "TX", "Sheet1_value": 145, "Sheet1_populaiton": 3678, "Sheet1_income": 35285, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.482784850904068, 31.894212512655194 ], [ -94.511676872058885, 31.973514906992776 ], [ -94.430779212825399, 31.975993106815825 ], [ -94.390330383208649, 31.975993106815825 ], [ -94.326767936668034, 31.975993106815825 ], [ -94.240091873203582, 31.896690712478243 ], [ -94.401887191670568, 31.673652728403795 ], [ -94.407665595901534, 31.676130928226844 ], [ -94.482784850904068, 31.894212512655194 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WELLS", "zip": "75976", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29464, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002841231690809, 31.425832746098855 ], [ -95.112630912079126, 31.48530954185204 ], [ -95.129966124772025, 31.537351738136078 ], [ -94.893051551302506, 31.577002935304868 ], [ -94.864159530147688, 31.527438938843879 ], [ -95.002841231690809, 31.425832746098855 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WIERGATE", "zip": "75977", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43056, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.870274002421894, 30.964887579011663 ], [ -93.887609215114793, 31.039233573703143 ], [ -93.910722832038644, 31.158187165209519 ], [ -93.731592300878759, 31.168099964501714 ], [ -93.772041130495509, 30.989669577242157 ], [ -93.870274002421894, 30.964887579011663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOODVILLE", "zip": "75979", "state": "TX", "Sheet1_value": 270, "Sheet1_populaiton": 11576, "Sheet1_income": 37194, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.598352935523337, 30.751762394229413 ], [ -94.621466552447203, 30.858324986620538 ], [ -94.459671233980202, 30.868237785912733 ], [ -94.344103149360933, 30.870715985735785 ], [ -94.222756660510697, 30.860803186443587 ], [ -94.176529426662981, 30.692285598476225 ], [ -94.303654319744183, 30.684850999007079 ], [ -94.292097511282265, 30.603070404846449 ], [ -94.37299517051575, 30.650156201484386 ], [ -94.390330383208649, 30.660069000776584 ], [ -94.598352935523337, 30.751762394229413 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ZAVALLA", "zip": "75980", "state": "TX", "Sheet1_value": 68, "Sheet1_populaiton": 2717, "Sheet1_income": 39828, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.170751022432015, 31.091275769987181 ], [ -94.459671233980202, 31.034277174057046 ], [ -94.523233680520818, 31.212707561316606 ], [ -94.37299517051575, 31.232533159900999 ], [ -94.170751022432015, 31.091275769987181 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76001", "state": "TX", "Sheet1_value": 1676, "Sheet1_populaiton": 31653, "Sheet1_income": 74587, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1177371802236, 32.610412261516473 ], [ -97.181299626764201, 32.607934061693427 ], [ -97.187078030995167, 32.647585258862215 ], [ -97.1177371802236, 32.645107059039162 ], [ -97.1177371802236, 32.610412261516473 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76002", "state": "TX", "Sheet1_value": 2177, "Sheet1_populaiton": 30925, "Sheet1_income": 79376, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1177371802236, 32.645107059039162 ], [ -97.059953137913965, 32.647585258862215 ], [ -97.065731542144931, 32.615368661162577 ], [ -97.1177371802236, 32.610412261516473 ], [ -97.1177371802236, 32.645107059039162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76006", "state": "TX", "Sheet1_value": 1431, "Sheet1_populaiton": 23472, "Sheet1_income": 44363, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.059953137913965, 32.764060650545538 ], [ -97.111958775992633, 32.776451649660785 ], [ -97.129293988685532, 32.796277248245183 ], [ -97.129293988685532, 32.803711847714325 ], [ -97.059953137913965, 32.81610284682958 ], [ -97.059953137913965, 32.764060650545538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALEDO", "zip": "76008", "state": "TX", "Sheet1_value": 519, "Sheet1_populaiton": 14320, "Sheet1_income": 102951, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.504890263698172, 32.716974853907601 ], [ -97.597344731393605, 32.714496654084549 ], [ -97.580009518700706, 32.607934061693427 ], [ -97.782253666784442, 32.714496654084549 ], [ -97.591566327162639, 32.769017050191636 ], [ -97.504890263698172, 32.731844052845894 ], [ -97.504890263698172, 32.716974853907601 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALVARADO", "zip": "76009", "state": "TX", "Sheet1_value": 988, "Sheet1_populaiton": 19560, "Sheet1_income": 51696, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.291089307152518, 32.322941082042746 ], [ -97.267975690228667, 32.464198471956557 ], [ -97.187078030995167, 32.506327868948397 ], [ -97.140850797147451, 32.528631667355846 ], [ -97.111958775992633, 32.367548678857631 ], [ -97.291089307152518, 32.322941082042746 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76010", "state": "TX", "Sheet1_value": 2845, "Sheet1_populaiton": 56512, "Sheet1_income": 31108, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.048396329452032, 32.707062054615399 ], [ -97.065731542144931, 32.707062054615399 ], [ -97.111958775992633, 32.707062054615399 ], [ -97.111958775992633, 32.726887653199796 ], [ -97.111958775992633, 32.729365853022848 ], [ -97.111958775992633, 32.736800452491991 ], [ -97.048396329452032, 32.739278652315043 ], [ -97.048396329452032, 32.736800452491991 ], [ -97.048396329452032, 32.707062054615399 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76011", "state": "TX", "Sheet1_value": 1337, "Sheet1_populaiton": 22540, "Sheet1_income": 34412, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 32.736800452491991 ], [ -97.111958775992633, 32.776451649660785 ], [ -97.059953137913965, 32.764060650545538 ], [ -97.048396329452032, 32.739278652315043 ], [ -97.111958775992633, 32.736800452491991 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76012", "state": "TX", "Sheet1_value": 1292, "Sheet1_populaiton": 25891, "Sheet1_income": 56627, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 32.736800452491991 ], [ -97.181299626764201, 32.729365853022848 ], [ -97.152407605609383, 32.776451649660785 ], [ -97.129293988685532, 32.796277248245183 ], [ -97.111958775992633, 32.776451649660785 ], [ -97.111958775992633, 32.736800452491991 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76013", "state": "TX", "Sheet1_value": 1713, "Sheet1_populaiton": 31149, "Sheet1_income": 50220, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 32.707062054615399 ], [ -97.204413243688052, 32.714496654084549 ], [ -97.210191647919018, 32.721931253553699 ], [ -97.181299626764201, 32.729365853022848 ], [ -97.111958775992633, 32.736800452491991 ], [ -97.111958775992633, 32.729365853022848 ], [ -97.111958775992633, 32.726887653199796 ], [ -97.111958775992633, 32.707062054615399 ], [ -97.15818600984035, 32.707062054615399 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76014", "state": "TX", "Sheet1_value": 2686, "Sheet1_populaiton": 35175, "Sheet1_income": 42558, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.07728835060685, 32.677323656738807 ], [ -97.1177371802236, 32.679801856561859 ], [ -97.111958775992633, 32.707062054615399 ], [ -97.065731542144931, 32.707062054615399 ], [ -97.07728835060685, 32.677323656738807 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76015", "state": "TX", "Sheet1_value": 958, "Sheet1_populaiton": 16358, "Sheet1_income": 47902, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1177371802236, 32.679801856561859 ], [ -97.152407605609383, 32.674845456915762 ], [ -97.15818600984035, 32.707062054615399 ], [ -97.111958775992633, 32.707062054615399 ], [ -97.1177371802236, 32.679801856561859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76016", "state": "TX", "Sheet1_value": 1634, "Sheet1_populaiton": 31599, "Sheet1_income": 81635, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.152407605609383, 32.674845456915762 ], [ -97.221748456380951, 32.667410857446612 ], [ -97.233305264842869, 32.667410857446612 ], [ -97.204413243688052, 32.714496654084549 ], [ -97.15818600984035, 32.707062054615399 ], [ -97.152407605609383, 32.674845456915762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76017", "state": "TX", "Sheet1_value": 2505, "Sheet1_populaiton": 42792, "Sheet1_income": 68538, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1177371802236, 32.679801856561859 ], [ -97.1177371802236, 32.645107059039162 ], [ -97.187078030995167, 32.647585258862215 ], [ -97.221748456380951, 32.667410857446612 ], [ -97.152407605609383, 32.674845456915762 ], [ -97.1177371802236, 32.679801856561859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARLINGTON", "zip": "76018", "state": "TX", "Sheet1_value": 2049, "Sheet1_populaiton": 27765, "Sheet1_income": 64403, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1177371802236, 32.679801856561859 ], [ -97.07728835060685, 32.677323656738807 ], [ -97.059953137913965, 32.647585258862215 ], [ -97.1177371802236, 32.645107059039162 ], [ -97.1177371802236, 32.679801856561859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AZLE", "zip": "76020", "state": "TX", "Sheet1_value": 1174, "Sheet1_populaiton": 26909, "Sheet1_income": 57457, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.678242390627091, 32.81610284682958 ], [ -97.591566327162639, 32.910274440105454 ], [ -97.597344731393605, 32.979664035150833 ], [ -97.528003880622038, 33.004446033381328 ], [ -97.499111859467206, 32.994533234089133 ], [ -97.493333455236254, 32.875579642582764 ], [ -97.533782284853004, 32.826015646121775 ], [ -97.597344731393605, 32.826015646121775 ], [ -97.678242390627091, 32.81610284682958 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEDFORD", "zip": "76021", "state": "TX", "Sheet1_value": 1632, "Sheet1_populaiton": 34655, "Sheet1_income": 65134, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.100401967530701, 32.838406645237022 ], [ -97.1177371802236, 32.838406645237022 ], [ -97.15818600984035, 32.838406645237022 ], [ -97.169742818302268, 32.860710443644464 ], [ -97.100401967530701, 32.868145043113614 ], [ -97.100401967530701, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEDFORD", "zip": "76022", "state": "TX", "Sheet1_value": 706, "Sheet1_populaiton": 12938, "Sheet1_income": 53793, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 32.823537446298722 ], [ -97.163964414071302, 32.838406645237022 ], [ -97.15818600984035, 32.838406645237022 ], [ -97.1177371802236, 32.838406645237022 ], [ -97.15818600984035, 32.823537446298722 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOYD", "zip": "76023", "state": "TX", "Sheet1_value": 270, "Sheet1_populaiton": 5781, "Sheet1_income": 49441, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.533782284853004, 33.029228031611822 ], [ -97.528003880622038, 33.004446033381328 ], [ -97.597344731393605, 32.979664035150833 ], [ -97.672463986396139, 33.009402433027432 ], [ -97.637793561010341, 33.118443225241606 ], [ -97.551117497545889, 33.098617626657209 ], [ -97.533782284853004, 33.029228031611822 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURLESON", "zip": "76028", "state": "TX", "Sheet1_value": 2496, "Sheet1_populaiton": 62637, "Sheet1_income": 69676, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.267975690228667, 32.464198471956557 ], [ -97.314202924076369, 32.456763872487414 ], [ -97.429771008695653, 32.516240668240599 ], [ -97.325759732538302, 32.590586662932083 ], [ -97.215970052149984, 32.575717463993783 ], [ -97.187078030995167, 32.506327868948397 ], [ -97.267975690228667, 32.464198471956557 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLEBURNE", "zip": "76031", "state": "TX", "Sheet1_value": 627, "Sheet1_populaiton": 17360, "Sheet1_income": 46714, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.37776537061697, 32.285768084696997 ], [ -97.383543774847936, 32.42454727478777 ], [ -97.314202924076369, 32.456763872487414 ], [ -97.267975690228667, 32.464198471956557 ], [ -97.291089307152518, 32.322941082042746 ], [ -97.325759732538302, 32.228769488766865 ], [ -97.37776537061697, 32.285768084696997 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLEBURNE", "zip": "76033", "state": "TX", "Sheet1_value": 855, "Sheet1_populaiton": 24258, "Sheet1_income": 53523, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.61467994408649, 32.20398749053637 ], [ -97.580009518700706, 32.293202684166147 ], [ -97.666685582165172, 32.270898885758704 ], [ -97.730248028705773, 32.317984682396641 ], [ -97.707134411781908, 32.370026878680683 ], [ -97.61467994408649, 32.362592279211533 ], [ -97.475998242543355, 32.330375681511889 ], [ -97.470219838312403, 32.419590875141672 ], [ -97.383543774847936, 32.42454727478777 ], [ -97.37776537061697, 32.285768084696997 ], [ -97.475998242543355, 32.174249092659778 ], [ -97.61467994408649, 32.20398749053637 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLLEYVILLE", "zip": "76034", "state": "TX", "Sheet1_value": 812, "Sheet1_populaiton": 23528, "Sheet1_income": 152986, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.100401967530701, 32.880536042228862 ], [ -97.100401967530701, 32.868145043113614 ], [ -97.169742818302268, 32.860710443644464 ], [ -97.187078030995167, 32.892927041344109 ], [ -97.175521222533234, 32.922665439220701 ], [ -97.123515584454566, 32.915230839751551 ], [ -97.100401967530701, 32.880536042228862 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CRESSON", "zip": "76035", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1477, "Sheet1_income": 84732, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.580009518700706, 32.553413665586341 ], [ -97.61467994408649, 32.491458670010104 ], [ -97.701356007550942, 32.555891865409386 ], [ -97.666685582165172, 32.555891865409386 ], [ -97.580009518700706, 32.553413665586341 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROWLEY", "zip": "76036", "state": "TX", "Sheet1_value": 1112, "Sheet1_populaiton": 22396, "Sheet1_income": 64852, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.504890263698172, 32.528631667355846 ], [ -97.504890263698172, 32.555891865409386 ], [ -97.447106221388538, 32.647585258862215 ], [ -97.412435796002754, 32.645107059039162 ], [ -97.412435796002754, 32.63023786010087 ], [ -97.348873349462153, 32.612890461339525 ], [ -97.331538136769268, 32.612890461339525 ], [ -97.325759732538302, 32.590586662932083 ], [ -97.429771008695653, 32.516240668240599 ], [ -97.504890263698172, 32.528631667355846 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EULESS", "zip": "76039", "state": "TX", "Sheet1_value": 2417, "Sheet1_populaiton": 32626, "Sheet1_income": 58320, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065731542144931, 32.838406645237022 ], [ -97.071509946375883, 32.838406645237022 ], [ -97.100401967530701, 32.838406645237022 ], [ -97.100401967530701, 32.868145043113614 ], [ -97.100401967530701, 32.880536042228862 ], [ -97.071509946375883, 32.880536042228862 ], [ -97.065731542144931, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EULESS", "zip": "76040", "state": "TX", "Sheet1_value": 1995, "Sheet1_populaiton": 29699, "Sheet1_income": 45748, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140850797147451, 32.803711847714325 ], [ -97.15818600984035, 32.823537446298722 ], [ -97.1177371802236, 32.838406645237022 ], [ -97.100401967530701, 32.838406645237022 ], [ -97.071509946375883, 32.838406645237022 ], [ -97.059953137913965, 32.81610284682958 ], [ -97.129293988685532, 32.803711847714325 ], [ -97.140850797147451, 32.803711847714325 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORRESTON", "zip": "76041", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 57750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.811481755982513, 32.226291288943813 ], [ -96.92127143637083, 32.24611688752821 ], [ -96.875044202523114, 32.258507886643457 ], [ -96.811481755982513, 32.226291288943813 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GLEN ROSE", "zip": "76043", "state": "TX", "Sheet1_value": 299, "Sheet1_populaiton": 7420, "Sheet1_income": 54925, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.724469624474807, 32.156901693898433 ], [ -97.805367283708307, 32.119728696552691 ], [ -97.845816113325043, 32.094946698322197 ], [ -97.863151326017942, 32.087512098853047 ], [ -97.91515696409661, 32.179205492305876 ], [ -97.897821751403725, 32.256029686820405 ], [ -97.788032071015408, 32.315506482573596 ], [ -97.73602643293674, 32.283289884873952 ], [ -97.718691220243841, 32.24611688752821 ], [ -97.632015156779389, 32.206465690359423 ], [ -97.724469624474807, 32.156901693898433 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GODLEY", "zip": "76044", "state": "TX", "Sheet1_value": 161, "Sheet1_populaiton": 3777, "Sheet1_income": 59833, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.504890263698172, 32.528631667355846 ], [ -97.470219838312403, 32.419590875141672 ], [ -97.475998242543355, 32.330375681511889 ], [ -97.61467994408649, 32.362592279211533 ], [ -97.61467994408649, 32.491458670010104 ], [ -97.580009518700706, 32.553413665586341 ], [ -97.504890263698172, 32.555891865409386 ], [ -97.504890263698172, 32.528631667355846 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRANBURY", "zip": "76048", "state": "TX", "Sheet1_value": 1121, "Sheet1_populaiton": 22835, "Sheet1_income": 48668, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.730248028705773, 32.317984682396641 ], [ -97.73602643293674, 32.283289884873952 ], [ -97.788032071015408, 32.315506482573596 ], [ -97.967162602175293, 32.506327868948397 ], [ -97.851594517556009, 32.521197067886696 ], [ -97.828480900632158, 32.533588067001944 ], [ -97.707134411781908, 32.370026878680683 ], [ -97.730248028705773, 32.317984682396641 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRANBURY", "zip": "76049", "state": "TX", "Sheet1_value": 1083, "Sheet1_populaiton": 24179, "Sheet1_income": 64254, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.61467994408649, 32.362592279211533 ], [ -97.707134411781908, 32.370026878680683 ], [ -97.828480900632158, 32.533588067001944 ], [ -97.701356007550942, 32.555891865409386 ], [ -97.61467994408649, 32.491458670010104 ], [ -97.61467994408649, 32.362592279211533 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRANDVIEW", "zip": "76050", "state": "TX", "Sheet1_value": 248, "Sheet1_populaiton": 5939, "Sheet1_income": 62723, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.221748456380951, 32.196552891067221 ], [ -97.29686771138347, 32.206465690359423 ], [ -97.360430157924085, 32.208943890182468 ], [ -97.325759732538302, 32.228769488766865 ], [ -97.291089307152518, 32.322941082042746 ], [ -97.111958775992633, 32.367548678857631 ], [ -97.088845159068782, 32.350201280096286 ], [ -97.048396329452032, 32.275855285404802 ], [ -97.071509946375883, 32.243638687705158 ], [ -97.221748456380951, 32.196552891067221 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAPEVINE", "zip": "76051", "state": "TX", "Sheet1_value": 2102, "Sheet1_populaiton": 47488, "Sheet1_income": 76216, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.123515584454566, 32.915230839751551 ], [ -97.106180371761667, 32.984620434796938 ], [ -97.042617925221066, 32.984620434796938 ], [ -97.031061116759133, 32.989576834443035 ], [ -97.013725904066249, 32.984620434796938 ], [ -97.031061116759133, 32.954882036920345 ], [ -97.071509946375883, 32.880536042228862 ], [ -97.100401967530701, 32.880536042228862 ], [ -97.123515584454566, 32.915230839751551 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HASLET", "zip": "76052", "state": "TX", "Sheet1_value": 624, "Sheet1_populaiton": 16537, "Sheet1_income": 93031, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.354651753693119, 33.004446033381328 ], [ -97.331538136769268, 32.925143639043753 ], [ -97.406657391771788, 32.925143639043753 ], [ -97.435549412926605, 33.011880632850477 ], [ -97.395100583309869, 33.036662631080972 ], [ -97.354651753693119, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HURST", "zip": "76053", "state": "TX", "Sheet1_value": 1673, "Sheet1_populaiton": 28767, "Sheet1_income": 44977, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140850797147451, 32.803711847714325 ], [ -97.210191647919018, 32.823537446298722 ], [ -97.192856435226133, 32.838406645237022 ], [ -97.163964414071302, 32.838406645237022 ], [ -97.15818600984035, 32.823537446298722 ], [ -97.140850797147451, 32.803711847714325 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HURST", "zip": "76054", "state": "TX", "Sheet1_value": 522, "Sheet1_populaiton": 11250, "Sheet1_income": 93763, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.192856435226133, 32.838406645237022 ], [ -97.187078030995167, 32.892927041344109 ], [ -97.169742818302268, 32.860710443644464 ], [ -97.15818600984035, 32.838406645237022 ], [ -97.163964414071302, 32.838406645237022 ], [ -97.192856435226133, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ITASCA", "zip": "76055", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 2857, "Sheet1_income": 48142, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244862073304802, 32.072642899914754 ], [ -97.221748456380951, 32.196552891067221 ], [ -97.071509946375883, 32.243638687705158 ], [ -97.048396329452032, 32.161858093544531 ], [ -97.244862073304802, 32.072642899914754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JOSHUA", "zip": "76058", "state": "TX", "Sheet1_value": 710, "Sheet1_populaiton": 18323, "Sheet1_income": 56151, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.383543774847936, 32.42454727478777 ], [ -97.470219838312403, 32.419590875141672 ], [ -97.504890263698172, 32.528631667355846 ], [ -97.429771008695653, 32.516240668240599 ], [ -97.314202924076369, 32.456763872487414 ], [ -97.383543774847936, 32.42454727478777 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KENNEDALE", "zip": "76060", "state": "TX", "Sheet1_value": 394, "Sheet1_populaiton": 6994, "Sheet1_income": 74375, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.181299626764201, 32.607934061693427 ], [ -97.221748456380951, 32.62280326063172 ], [ -97.233305264842869, 32.667410857446612 ], [ -97.221748456380951, 32.667410857446612 ], [ -97.187078030995167, 32.647585258862215 ], [ -97.181299626764201, 32.607934061693427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MANSFIELD", "zip": "76063", "state": "TX", "Sheet1_value": 2931, "Sheet1_populaiton": 62321, "Sheet1_income": 92052, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.0368395209901, 32.548457265940236 ], [ -97.088845159068782, 32.523675267709748 ], [ -97.140850797147451, 32.528631667355846 ], [ -97.187078030995167, 32.506327868948397 ], [ -97.215970052149984, 32.575717463993783 ], [ -97.221748456380951, 32.62280326063172 ], [ -97.181299626764201, 32.607934061693427 ], [ -97.1177371802236, 32.610412261516473 ], [ -97.065731542144931, 32.615368661162577 ], [ -97.0368395209901, 32.617846860985622 ], [ -97.0368395209901, 32.548457265940236 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAYPEARL", "zip": "76064", "state": "TX", "Sheet1_value": 68, "Sheet1_populaiton": 1550, "Sheet1_income": 77500, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.961720265987566, 32.270898885758704 ], [ -96.996390691373364, 32.273377085581757 ], [ -97.048396329452032, 32.275855285404802 ], [ -97.088845159068782, 32.350201280096286 ], [ -97.0368395209901, 32.345244880450188 ], [ -96.961720265987566, 32.270898885758704 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLOTHIAN", "zip": "76065", "state": "TX", "Sheet1_value": 1216, "Sheet1_populaiton": 29127, "Sheet1_income": 81793, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.025282712528181, 32.350201280096286 ], [ -97.088845159068782, 32.523675267709748 ], [ -97.0368395209901, 32.548457265940236 ], [ -96.909714627908897, 32.545979066117191 ], [ -96.875044202523114, 32.498893269479254 ], [ -97.025282712528181, 32.350201280096286 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILLSAP", "zip": "76066", "state": "TX", "Sheet1_value": 159, "Sheet1_populaiton": 3628, "Sheet1_income": 80088, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.065395474101678, 32.632716059923922 ], [ -98.100065899487461, 32.642628859216117 ], [ -98.059617069870711, 32.798755448068228 ], [ -97.932492176789509, 32.709540254438451 ], [ -98.065395474101678, 32.632716059923922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MINERAL WELLS", "zip": "76067", "state": "TX", "Sheet1_value": 764, "Sheet1_populaiton": 21997, "Sheet1_income": 40367, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.198298771413846, 32.707062054615399 ], [ -98.27341802641638, 32.734322252668946 ], [ -98.209855579875779, 32.823537446298722 ], [ -98.105844303718413, 32.920187239397649 ], [ -98.030725048715894, 32.912752639928499 ], [ -98.059617069870711, 32.798755448068228 ], [ -98.100065899487461, 32.642628859216117 ], [ -98.198298771413846, 32.707062054615399 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEMO", "zip": "76070", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56382, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.61467994408649, 32.20398749053637 ], [ -97.632015156779389, 32.206465690359423 ], [ -97.718691220243841, 32.24611688752821 ], [ -97.666685582165172, 32.270898885758704 ], [ -97.580009518700706, 32.293202684166147 ], [ -97.61467994408649, 32.20398749053637 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEWARK", "zip": "76071", "state": "TX", "Sheet1_value": 165, "Sheet1_populaiton": 3683, "Sheet1_income": 63750, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.481776646774321, 33.004446033381328 ], [ -97.499111859467206, 32.994533234089133 ], [ -97.528003880622038, 33.004446033381328 ], [ -97.533782284853004, 33.029228031611822 ], [ -97.481776646774321, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PARADISE", "zip": "76073", "state": "TX", "Sheet1_value": 219, "Sheet1_populaiton": 5409, "Sheet1_income": 54109, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 33.009402433027432 ], [ -97.811145687939259, 33.071357428603662 ], [ -97.799588879477341, 33.182876420640888 ], [ -97.672463986396139, 33.182876420640888 ], [ -97.637793561010341, 33.118443225241606 ], [ -97.672463986396139, 33.009402433027432 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RAINBOW", "zip": "76077", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 91875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.718691220243841, 32.24611688752821 ], [ -97.73602643293674, 32.283289884873952 ], [ -97.730248028705773, 32.317984682396641 ], [ -97.666685582165172, 32.270898885758704 ], [ -97.718691220243841, 32.24611688752821 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RHOME", "zip": "76078", "state": "TX", "Sheet1_value": 345, "Sheet1_populaiton": 8959, "Sheet1_income": 64280, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.435549412926605, 33.011880632850477 ], [ -97.481776646774321, 33.004446033381328 ], [ -97.533782284853004, 33.029228031611822 ], [ -97.551117497545889, 33.098617626657209 ], [ -97.499111859467206, 33.190311020110038 ], [ -97.395100583309869, 33.130834224356853 ], [ -97.395100583309869, 33.036662631080972 ], [ -97.435549412926605, 33.011880632850477 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRINGTOWN", "zip": "76082", "state": "TX", "Sheet1_value": 712, "Sheet1_populaiton": 18598, "Sheet1_income": 58255, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.591566327162639, 32.910274440105454 ], [ -97.770696858322509, 32.897883440990206 ], [ -97.788032071015408, 32.917709039574603 ], [ -97.822702496401192, 33.058966429488422 ], [ -97.811145687939259, 33.071357428603662 ], [ -97.672463986396139, 33.009402433027432 ], [ -97.597344731393605, 32.979664035150833 ], [ -97.591566327162639, 32.910274440105454 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VENUS", "zip": "76084", "state": "TX", "Sheet1_value": 357, "Sheet1_populaiton": 8223, "Sheet1_income": 54599, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 32.367548678857631 ], [ -97.140850797147451, 32.528631667355846 ], [ -97.088845159068782, 32.523675267709748 ], [ -97.025282712528181, 32.350201280096286 ], [ -97.0368395209901, 32.345244880450188 ], [ -97.088845159068782, 32.350201280096286 ], [ -97.111958775992633, 32.367548678857631 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEATHERFORD", "zip": "76085", "state": "TX", "Sheet1_value": 431, "Sheet1_populaiton": 8061, "Sheet1_income": 60291, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.678242390627091, 32.81610284682958 ], [ -97.741804837167706, 32.764060650545538 ], [ -97.805367283708307, 32.783886249129935 ], [ -97.770696858322509, 32.897883440990206 ], [ -97.591566327162639, 32.910274440105454 ], [ -97.678242390627091, 32.81610284682958 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEATHERFORD", "zip": "76086", "state": "TX", "Sheet1_value": 947, "Sheet1_populaiton": 20863, "Sheet1_income": 48176, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.741804837167706, 32.764060650545538 ], [ -97.840037709094076, 32.729365853022848 ], [ -97.805367283708307, 32.783886249129935 ], [ -97.741804837167706, 32.764060650545538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEATHERFORD", "zip": "76087", "state": "TX", "Sheet1_value": 1061, "Sheet1_populaiton": 24842, "Sheet1_income": 74898, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.701356007550942, 32.555891865409386 ], [ -97.828480900632158, 32.533588067001944 ], [ -97.851594517556009, 32.521197067886696 ], [ -97.886264942941793, 32.615368661162577 ], [ -98.065395474101678, 32.573239264170731 ], [ -98.065395474101678, 32.632716059923922 ], [ -97.932492176789509, 32.709540254438451 ], [ -97.840037709094076, 32.729365853022848 ], [ -97.741804837167706, 32.764060650545538 ], [ -97.678242390627091, 32.81610284682958 ], [ -97.597344731393605, 32.826015646121775 ], [ -97.591566327162639, 32.769017050191636 ], [ -97.782253666784442, 32.714496654084549 ], [ -97.580009518700706, 32.607934061693427 ], [ -97.666685582165172, 32.555891865409386 ], [ -97.701356007550942, 32.555891865409386 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEATHERFORD", "zip": "76088", "state": "TX", "Sheet1_value": 538, "Sheet1_populaiton": 12097, "Sheet1_income": 64093, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.840037709094076, 32.729365853022848 ], [ -97.932492176789509, 32.709540254438451 ], [ -98.059617069870711, 32.798755448068228 ], [ -98.030725048715894, 32.912752639928499 ], [ -98.024946644484928, 32.962316636389488 ], [ -97.984497814868178, 32.989576834443035 ], [ -97.788032071015408, 32.917709039574603 ], [ -97.770696858322509, 32.897883440990206 ], [ -97.805367283708307, 32.783886249129935 ], [ -97.840037709094076, 32.729365853022848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SOUTHLAKE", "zip": "76092", "state": "TX", "Sheet1_value": 851, "Sheet1_populaiton": 27236, "Sheet1_income": 173507, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175521222533234, 32.922665439220701 ], [ -97.187078030995167, 32.917709039574603 ], [ -97.204413243688052, 32.942491037805098 ], [ -97.123515584454566, 32.987098634619983 ], [ -97.106180371761667, 32.984620434796938 ], [ -97.123515584454566, 32.915230839751551 ], [ -97.175521222533234, 32.922665439220701 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIO VISTA", "zip": "76093", "state": "TX", "Sheet1_value": 104, "Sheet1_populaiton": 2036, "Sheet1_income": 59195, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.208943890182468 ], [ -97.475998242543355, 32.174249092659778 ], [ -97.37776537061697, 32.285768084696997 ], [ -97.325759732538302, 32.228769488766865 ], [ -97.360430157924085, 32.208943890182468 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76102", "state": "TX", "Sheet1_value": 208, "Sheet1_populaiton": 9122, "Sheet1_income": 50177, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.302646115614436, 32.744235051961141 ], [ -97.354651753693119, 32.736800452491991 ], [ -97.360430157924085, 32.731844052845894 ], [ -97.331538136769268, 32.759104250899441 ], [ -97.319981328307335, 32.776451649660785 ], [ -97.308424519845403, 32.746713251784193 ], [ -97.302646115614436, 32.744235051961141 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76103", "state": "TX", "Sheet1_value": 805, "Sheet1_populaiton": 14330, "Sheet1_income": 39513, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308424519845403, 32.746713251784193 ], [ -97.267975690228667, 32.76653885036859 ], [ -97.244862073304802, 32.771495250014688 ], [ -97.244862073304802, 32.731844052845894 ], [ -97.29686771138347, 32.744235051961141 ], [ -97.302646115614436, 32.744235051961141 ], [ -97.308424519845403, 32.746713251784193 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76104", "state": "TX", "Sheet1_value": 761, "Sheet1_populaiton": 16020, "Sheet1_income": 22221, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.29686771138347, 32.712018454261496 ], [ -97.308424519845403, 32.707062054615399 ], [ -97.354651753693119, 32.736800452491991 ], [ -97.302646115614436, 32.744235051961141 ], [ -97.29686771138347, 32.744235051961141 ], [ -97.29686771138347, 32.712018454261496 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76105", "state": "TX", "Sheet1_value": 858, "Sheet1_populaiton": 21626, "Sheet1_income": 24526, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.29686771138347, 32.744235051961141 ], [ -97.244862073304802, 32.731844052845894 ], [ -97.239083669073835, 32.721931253553699 ], [ -97.29686771138347, 32.712018454261496 ], [ -97.29686771138347, 32.744235051961141 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76106", "state": "TX", "Sheet1_value": 1443, "Sheet1_populaiton": 36761, "Sheet1_income": 31391, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.348873349462153, 32.764060650545538 ], [ -97.412435796002754, 32.813624647006527 ], [ -97.400878987540835, 32.821059246475677 ], [ -97.360430157924085, 32.838406645237022 ], [ -97.314202924076369, 32.840884845060074 ], [ -97.314202924076369, 32.80866824736043 ], [ -97.319981328307335, 32.776451649660785 ], [ -97.331538136769268, 32.759104250899441 ], [ -97.348873349462153, 32.764060650545538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76107", "state": "TX", "Sheet1_value": 1261, "Sheet1_populaiton": 25810, "Sheet1_income": 51370, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.731844052845894 ], [ -97.360430157924085, 32.726887653199796 ], [ -97.412435796002754, 32.709540254438451 ], [ -97.412435796002754, 32.749191451607246 ], [ -97.348873349462153, 32.764060650545538 ], [ -97.331538136769268, 32.759104250899441 ], [ -97.360430157924085, 32.731844052845894 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76108", "state": "TX", "Sheet1_value": 1796, "Sheet1_populaiton": 38783, "Sheet1_income": 58528, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.447106221388538, 32.764060650545538 ], [ -97.441327817157571, 32.744235051961141 ], [ -97.504890263698172, 32.731844052845894 ], [ -97.591566327162639, 32.769017050191636 ], [ -97.597344731393605, 32.826015646121775 ], [ -97.533782284853004, 32.826015646121775 ], [ -97.441327817157571, 32.788842648776033 ], [ -97.447106221388538, 32.764060650545538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76109", "state": "TX", "Sheet1_value": 783, "Sheet1_populaiton": 21764, "Sheet1_income": 58704, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.726887653199796 ], [ -97.366208562155037, 32.689714655854054 ], [ -97.383543774847936, 32.674845456915762 ], [ -97.423992604464686, 32.697149255323204 ], [ -97.412435796002754, 32.709540254438451 ], [ -97.360430157924085, 32.726887653199796 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76110", "state": "TX", "Sheet1_value": 1655, "Sheet1_populaiton": 31023, "Sheet1_income": 39600, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.726887653199796 ], [ -97.360430157924085, 32.731844052845894 ], [ -97.354651753693119, 32.736800452491991 ], [ -97.308424519845403, 32.707062054615399 ], [ -97.314202924076369, 32.699627455146256 ], [ -97.354651753693119, 32.687236456031002 ], [ -97.366208562155037, 32.689714655854054 ], [ -97.360430157924085, 32.726887653199796 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76111", "state": "TX", "Sheet1_value": 1073, "Sheet1_populaiton": 21029, "Sheet1_income": 40511, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308424519845403, 32.746713251784193 ], [ -97.319981328307335, 32.776451649660785 ], [ -97.314202924076369, 32.80866824736043 ], [ -97.291089307152518, 32.80866824736043 ], [ -97.267975690228667, 32.76653885036859 ], [ -97.308424519845403, 32.746713251784193 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76112", "state": "TX", "Sheet1_value": 2117, "Sheet1_populaiton": 39447, "Sheet1_income": 36820, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.210191647919018, 32.721931253553699 ], [ -97.239083669073835, 32.721931253553699 ], [ -97.244862073304802, 32.731844052845894 ], [ -97.244862073304802, 32.771495250014688 ], [ -97.233305264842869, 32.778929849483831 ], [ -97.210191647919018, 32.781408049306883 ], [ -97.181299626764201, 32.729365853022848 ], [ -97.210191647919018, 32.721931253553699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76114", "state": "TX", "Sheet1_value": 1293, "Sheet1_populaiton": 25051, "Sheet1_income": 37752, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 32.749191451607246 ], [ -97.441327817157571, 32.744235051961141 ], [ -97.447106221388538, 32.764060650545538 ], [ -97.412435796002754, 32.791320848599085 ], [ -97.412435796002754, 32.813624647006527 ], [ -97.348873349462153, 32.764060650545538 ], [ -97.412435796002754, 32.749191451607246 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76115", "state": "TX", "Sheet1_value": 933, "Sheet1_populaiton": 21695, "Sheet1_income": 27806, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.354651753693119, 32.667410857446612 ], [ -97.354651753693119, 32.687236456031002 ], [ -97.314202924076369, 32.699627455146256 ], [ -97.308424519845403, 32.669889057269657 ], [ -97.354651753693119, 32.667410857446612 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76116", "state": "TX", "Sheet1_value": 2149, "Sheet1_populaiton": 46488, "Sheet1_income": 41573, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.423992604464686, 32.697149255323204 ], [ -97.429771008695653, 32.697149255323204 ], [ -97.504890263698172, 32.716974853907601 ], [ -97.504890263698172, 32.731844052845894 ], [ -97.441327817157571, 32.744235051961141 ], [ -97.412435796002754, 32.749191451607246 ], [ -97.412435796002754, 32.709540254438451 ], [ -97.423992604464686, 32.697149255323204 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HALTOM CITY", "zip": "76117", "state": "TX", "Sheet1_value": 1850, "Sheet1_populaiton": 31010, "Sheet1_income": 39054, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244862073304802, 32.771495250014688 ], [ -97.267975690228667, 32.76653885036859 ], [ -97.291089307152518, 32.80866824736043 ], [ -97.267975690228667, 32.838406645237022 ], [ -97.256418881766734, 32.840884845060074 ], [ -97.250640477535768, 32.80866824736043 ], [ -97.233305264842869, 32.778929849483831 ], [ -97.244862073304802, 32.771495250014688 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76118", "state": "TX", "Sheet1_value": 905, "Sheet1_populaiton": 14699, "Sheet1_income": 62282, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.233305264842869, 32.778929849483831 ], [ -97.250640477535768, 32.80866824736043 ], [ -97.210191647919018, 32.823537446298722 ], [ -97.140850797147451, 32.803711847714325 ], [ -97.129293988685532, 32.803711847714325 ], [ -97.129293988685532, 32.796277248245183 ], [ -97.152407605609383, 32.776451649660785 ], [ -97.210191647919018, 32.781408049306883 ], [ -97.233305264842869, 32.778929849483831 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76119", "state": "TX", "Sheet1_value": 2079, "Sheet1_populaiton": 42440, "Sheet1_income": 28660, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314202924076369, 32.699627455146256 ], [ -97.308424519845403, 32.707062054615399 ], [ -97.29686771138347, 32.712018454261496 ], [ -97.239083669073835, 32.721931253553699 ], [ -97.210191647919018, 32.721931253553699 ], [ -97.204413243688052, 32.714496654084549 ], [ -97.233305264842869, 32.667410857446612 ], [ -97.308424519845403, 32.669889057269657 ], [ -97.314202924076369, 32.699627455146256 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76120", "state": "TX", "Sheet1_value": 1027, "Sheet1_populaiton": 17578, "Sheet1_income": 39714, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.181299626764201, 32.729365853022848 ], [ -97.210191647919018, 32.781408049306883 ], [ -97.152407605609383, 32.776451649660785 ], [ -97.181299626764201, 32.729365853022848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76123", "state": "TX", "Sheet1_value": 1617, "Sheet1_populaiton": 30398, "Sheet1_income": 81008, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 32.63023786010087 ], [ -97.354651753693119, 32.635194259746967 ], [ -97.348873349462153, 32.612890461339525 ], [ -97.412435796002754, 32.63023786010087 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76126", "state": "TX", "Sheet1_value": 888, "Sheet1_populaiton": 20261, "Sheet1_income": 76330, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.504890263698172, 32.555891865409386 ], [ -97.580009518700706, 32.553413665586341 ], [ -97.666685582165172, 32.555891865409386 ], [ -97.580009518700706, 32.607934061693427 ], [ -97.597344731393605, 32.714496654084549 ], [ -97.504890263698172, 32.716974853907601 ], [ -97.429771008695653, 32.697149255323204 ], [ -97.447106221388538, 32.647585258862215 ], [ -97.504890263698172, 32.555891865409386 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NAVAL AIR STATION\/ JRB", "zip": "76127", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 173500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.447106221388538, 32.764060650545538 ], [ -97.441327817157571, 32.788842648776033 ], [ -97.412435796002754, 32.791320848599085 ], [ -97.447106221388538, 32.764060650545538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76131", "state": "TX", "Sheet1_value": 1456, "Sheet1_populaiton": 31311, "Sheet1_income": 77413, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.838406645237022 ], [ -97.406657391771788, 32.925143639043753 ], [ -97.331538136769268, 32.925143639043753 ], [ -97.319981328307335, 32.890448841521057 ], [ -97.314202924076369, 32.840884845060074 ], [ -97.360430157924085, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76132", "state": "TX", "Sheet1_value": 1255, "Sheet1_populaiton": 24747, "Sheet1_income": 49437, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.383543774847936, 32.674845456915762 ], [ -97.412435796002754, 32.645107059039162 ], [ -97.447106221388538, 32.647585258862215 ], [ -97.429771008695653, 32.697149255323204 ], [ -97.423992604464686, 32.697149255323204 ], [ -97.383543774847936, 32.674845456915762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76133", "state": "TX", "Sheet1_value": 2581, "Sheet1_populaiton": 50558, "Sheet1_income": 51123, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.354651753693119, 32.667410857446612 ], [ -97.354651753693119, 32.635194259746967 ], [ -97.412435796002754, 32.63023786010087 ], [ -97.412435796002754, 32.645107059039162 ], [ -97.383543774847936, 32.674845456915762 ], [ -97.366208562155037, 32.689714655854054 ], [ -97.354651753693119, 32.687236456031002 ], [ -97.354651753693119, 32.667410857446612 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76134", "state": "TX", "Sheet1_value": 1183, "Sheet1_populaiton": 24297, "Sheet1_income": 48534, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308424519845403, 32.669889057269657 ], [ -97.331538136769268, 32.612890461339525 ], [ -97.348873349462153, 32.612890461339525 ], [ -97.354651753693119, 32.635194259746967 ], [ -97.354651753693119, 32.667410857446612 ], [ -97.308424519845403, 32.669889057269657 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76135", "state": "TX", "Sheet1_value": 979, "Sheet1_populaiton": 20550, "Sheet1_income": 52945, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 32.791320848599085 ], [ -97.441327817157571, 32.788842648776033 ], [ -97.533782284853004, 32.826015646121775 ], [ -97.493333455236254, 32.875579642582764 ], [ -97.400878987540835, 32.821059246475677 ], [ -97.412435796002754, 32.813624647006527 ], [ -97.412435796002754, 32.791320848599085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76137", "state": "TX", "Sheet1_value": 3144, "Sheet1_populaiton": 54345, "Sheet1_income": 66306, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314202924076369, 32.840884845060074 ], [ -97.319981328307335, 32.890448841521057 ], [ -97.308424519845403, 32.890448841521057 ], [ -97.256418881766734, 32.892927041344109 ], [ -97.267975690228667, 32.838406645237022 ], [ -97.291089307152518, 32.80866824736043 ], [ -97.314202924076369, 32.80866824736043 ], [ -97.314202924076369, 32.840884845060074 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76140", "state": "TX", "Sheet1_value": 1355, "Sheet1_populaiton": 27671, "Sheet1_income": 50739, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331538136769268, 32.612890461339525 ], [ -97.308424519845403, 32.669889057269657 ], [ -97.233305264842869, 32.667410857446612 ], [ -97.221748456380951, 32.62280326063172 ], [ -97.215970052149984, 32.575717463993783 ], [ -97.325759732538302, 32.590586662932083 ], [ -97.331538136769268, 32.612890461339525 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76148", "state": "TX", "Sheet1_value": 1258, "Sheet1_populaiton": 23959, "Sheet1_income": 59394, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.267975690228667, 32.838406645237022 ], [ -97.256418881766734, 32.892927041344109 ], [ -97.239083669073835, 32.892927041344109 ], [ -97.256418881766734, 32.840884845060074 ], [ -97.267975690228667, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76155", "state": "TX", "Sheet1_value": 286, "Sheet1_populaiton": 3643, "Sheet1_income": 45675, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.071509946375883, 32.838406645237022 ], [ -97.065731542144931, 32.838406645237022 ], [ -97.031061116759133, 32.83592844541397 ], [ -97.0368395209901, 32.81610284682958 ], [ -97.059953137913965, 32.81610284682958 ], [ -97.071509946375883, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76177", "state": "TX", "Sheet1_value": 444, "Sheet1_populaiton": 5306, "Sheet1_income": 81755, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308424519845403, 32.957360236743391 ], [ -97.308424519845403, 32.890448841521057 ], [ -97.319981328307335, 32.890448841521057 ], [ -97.331538136769268, 32.925143639043753 ], [ -97.354651753693119, 33.004446033381328 ], [ -97.291089307152518, 33.004446033381328 ], [ -97.308424519845403, 32.957360236743391 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT WORTH", "zip": "76179", "state": "TX", "Sheet1_value": 2134, "Sheet1_populaiton": 49578, "Sheet1_income": 75472, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360430157924085, 32.838406645237022 ], [ -97.400878987540835, 32.821059246475677 ], [ -97.493333455236254, 32.875579642582764 ], [ -97.499111859467206, 32.994533234089133 ], [ -97.481776646774321, 33.004446033381328 ], [ -97.435549412926605, 33.011880632850477 ], [ -97.406657391771788, 32.925143639043753 ], [ -97.360430157924085, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NORTH RICHLAND HILLS", "zip": "76180", "state": "TX", "Sheet1_value": 1806, "Sheet1_populaiton": 33674, "Sheet1_income": 52086, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.210191647919018, 32.823537446298722 ], [ -97.250640477535768, 32.80866824736043 ], [ -97.256418881766734, 32.840884845060074 ], [ -97.239083669073835, 32.892927041344109 ], [ -97.187078030995167, 32.917709039574603 ], [ -97.175521222533234, 32.922665439220701 ], [ -97.187078030995167, 32.892927041344109 ], [ -97.192856435226133, 32.838406645237022 ], [ -97.210191647919018, 32.823537446298722 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76201", "state": "TX", "Sheet1_value": 1127, "Sheet1_populaiton": 26557, "Sheet1_income": 22342, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.129293988685532, 33.215093018340532 ], [ -97.163964414071302, 33.207658418871382 ], [ -97.129293988685532, 33.239875016571027 ], [ -97.129293988685532, 33.215093018340532 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76205", "state": "TX", "Sheet1_value": 794, "Sheet1_populaiton": 18680, "Sheet1_income": 41371, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.163964414071302, 33.17792002099479 ], [ -97.163964414071302, 33.207658418871382 ], [ -97.129293988685532, 33.215093018340532 ], [ -97.088845159068782, 33.207658418871382 ], [ -97.100401967530701, 33.190311020110038 ], [ -97.152407605609383, 33.17048542152564 ], [ -97.163964414071302, 33.17792002099479 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76207", "state": "TX", "Sheet1_value": 485, "Sheet1_populaiton": 11477, "Sheet1_income": 61377, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.163964414071302, 33.17792002099479 ], [ -97.181299626764201, 33.17048542152564 ], [ -97.244862073304802, 33.222527617809682 ], [ -97.204413243688052, 33.296873612501159 ], [ -97.094623563299734, 33.282004413562866 ], [ -97.111958775992633, 33.254744215509319 ], [ -97.129293988685532, 33.239875016571027 ], [ -97.163964414071302, 33.207658418871382 ], [ -97.163964414071302, 33.17792002099479 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76208", "state": "TX", "Sheet1_value": 930, "Sheet1_populaiton": 19644, "Sheet1_income": 70890, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.002169095604316, 33.143225223472101 ], [ -97.048396329452032, 33.138268823825996 ], [ -97.100401967530701, 33.190311020110038 ], [ -97.088845159068782, 33.207658418871382 ], [ -97.111958775992633, 33.254744215509319 ], [ -97.094623563299734, 33.282004413562866 ], [ -97.083066754837816, 33.286960813208964 ], [ -97.025282712528181, 33.22004941798663 ], [ -97.002169095604316, 33.143225223472101 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76209", "state": "TX", "Sheet1_value": 1252, "Sheet1_populaiton": 25756, "Sheet1_income": 48237, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.088845159068782, 33.207658418871382 ], [ -97.129293988685532, 33.215093018340532 ], [ -97.129293988685532, 33.239875016571027 ], [ -97.111958775992633, 33.254744215509319 ], [ -97.088845159068782, 33.207658418871382 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENTON", "zip": "76210", "state": "TX", "Sheet1_value": 1827, "Sheet1_populaiton": 41180, "Sheet1_income": 80407, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.059953137913965, 33.101095826480261 ], [ -97.152407605609383, 33.17048542152564 ], [ -97.100401967530701, 33.190311020110038 ], [ -97.048396329452032, 33.138268823825996 ], [ -97.025282712528181, 33.101095826480261 ], [ -97.059953137913965, 33.101095826480261 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALVORD", "zip": "76225", "state": "TX", "Sheet1_value": 142, "Sheet1_populaiton": 3377, "Sheet1_income": 62554, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.678242390627091, 33.274569814093717 ], [ -97.816924092170225, 33.38361060630789 ], [ -97.69557760331999, 33.433174602768879 ], [ -97.580009518700706, 33.433174602768879 ], [ -97.562674306007821, 33.433174602768879 ], [ -97.678242390627091, 33.274569814093717 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARGYLE", "zip": "76226", "state": "TX", "Sheet1_value": 726, "Sheet1_populaiton": 19896, "Sheet1_income": 116101, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.221748456380951, 33.061444629311467 ], [ -97.267975690228667, 33.15065982294125 ], [ -97.181299626764201, 33.17048542152564 ], [ -97.163964414071302, 33.17792002099479 ], [ -97.152407605609383, 33.17048542152564 ], [ -97.059953137913965, 33.101095826480261 ], [ -97.129293988685532, 33.063922829134519 ], [ -97.204413243688052, 33.054010029842317 ], [ -97.221748456380951, 33.061444629311467 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUBREY", "zip": "76227", "state": "TX", "Sheet1_value": 1307, "Sheet1_populaiton": 23268, "Sheet1_income": 77386, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.875044202523114, 33.229962217278825 ], [ -97.025282712528181, 33.22004941798663 ], [ -97.083066754837816, 33.286960813208964 ], [ -97.0368395209901, 33.358828608077395 ], [ -96.892379415215999, 33.291917212855061 ], [ -96.863487394061195, 33.262178814978469 ], [ -96.875044202523114, 33.229962217278825 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BELLEVUE", "zip": "76228", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46620, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.978719410637211, 33.728080381711763 ], [ -97.978719410637211, 33.467869400291576 ], [ -98.423656536421433, 33.467869400291576 ], [ -98.423656536421433, 33.559562793744405 ], [ -98.423656536421433, 33.601692190736244 ], [ -98.423656536421433, 33.628952388789784 ], [ -98.423656536421433, 33.656212586843324 ], [ -98.163628346028062, 33.636386988258934 ], [ -98.094287495256495, 33.807382776049344 ], [ -97.978719410637211, 33.814817375518487 ], [ -97.978719410637211, 33.7751661783497 ], [ -97.978719410637211, 33.728080381711763 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOWIE", "zip": "76230", "state": "TX", "Sheet1_value": 353, "Sheet1_populaiton": 9827, "Sheet1_income": 43390, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.69557760331999, 33.433174602768879 ], [ -97.770696858322509, 33.507520597460363 ], [ -97.863151326017942, 33.433174602768879 ], [ -97.920935368327576, 33.433174602768879 ], [ -97.978719410637211, 33.467869400291576 ], [ -97.978719410637211, 33.728080381711763 ], [ -97.793810475246374, 33.688429184542969 ], [ -97.759140049860591, 33.606648590382342 ], [ -97.580009518700706, 33.433174602768879 ], [ -97.69557760331999, 33.433174602768879 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLLINSVILLE", "zip": "76233", "state": "TX", "Sheet1_value": 128, "Sheet1_populaiton": 3334, "Sheet1_income": 63697, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.794146543289628, 33.487694998875966 ], [ -96.944385053294681, 33.482738599229869 ], [ -96.961720265987566, 33.487694998875966 ], [ -96.944385053294681, 33.594257591267095 ], [ -96.851930585599263, 33.574431992682698 ], [ -96.794146543289628, 33.487694998875966 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DECATUR", "zip": "76234", "state": "TX", "Sheet1_value": 700, "Sheet1_populaiton": 15372, "Sheet1_income": 58848, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 33.163050822056491 ], [ -97.395100583309869, 33.130834224356853 ], [ -97.499111859467206, 33.190311020110038 ], [ -97.551117497545889, 33.098617626657209 ], [ -97.637793561010341, 33.118443225241606 ], [ -97.672463986396139, 33.182876420640888 ], [ -97.69557760331999, 33.244831416217124 ], [ -97.678242390627091, 33.274569814093717 ], [ -97.562674306007821, 33.433174602768879 ], [ -97.487555051005288, 33.433174602768879 ], [ -97.383543774847936, 33.430696402945827 ], [ -97.343094945231186, 33.35635040825435 ], [ -97.389322179078903, 33.247309616040177 ], [ -97.395100583309869, 33.163050822056491 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORESTBURG", "zip": "76239", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.580009518700706, 33.433174602768879 ], [ -97.759140049860591, 33.606648590382342 ], [ -97.660907177934206, 33.651256187197227 ], [ -97.487555051005288, 33.5694755930366 ], [ -97.447106221388538, 33.502564197814266 ], [ -97.487555051005288, 33.470347600114621 ], [ -97.487555051005288, 33.433174602768879 ], [ -97.562674306007821, 33.433174602768879 ], [ -97.580009518700706, 33.433174602768879 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GAINESVILLE", "zip": "76240", "state": "TX", "Sheet1_value": 766, "Sheet1_populaiton": 26332, "Sheet1_income": 47663, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 33.797469976757142 ], [ -97.019504308297215, 33.742949580650055 ], [ -96.944385053294681, 33.594257591267095 ], [ -96.961720265987566, 33.487694998875966 ], [ -97.111958775992633, 33.57691019250575 ], [ -97.192856435226133, 33.490173198699019 ], [ -97.285310902921552, 33.60417039055929 ], [ -97.250640477535768, 33.611604990028439 ], [ -97.267975690228667, 33.643821587728084 ], [ -97.227526860611917, 33.772687978526648 ], [ -97.331538136769268, 33.854468572687281 ], [ -97.221748456380951, 33.913945368440466 ], [ -97.210191647919018, 33.913945368440466 ], [ -97.123515584454566, 33.718167582419561 ], [ -96.996390691373364, 33.874294171271679 ], [ -96.996390691373364, 33.933770967024863 ], [ -96.944385053294681, 33.948640165963155 ], [ -96.944385053294681, 33.797469976757142 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GORDONVILLE", "zip": "76245", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 1508, "Sheet1_income": 32157, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.805703351751546, 33.824730174810689 ], [ -96.886601010985046, 33.777644378172752 ], [ -96.944385053294681, 33.797469976757142 ], [ -96.944385053294681, 33.948640165963155 ], [ -96.788368139058662, 33.864381371979476 ], [ -96.805703351751546, 33.824730174810689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JUSTIN", "zip": "76247", "state": "TX", "Sheet1_value": 561, "Sheet1_populaiton": 12283, "Sheet1_income": 77968, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 33.036662631080972 ], [ -97.395100583309869, 33.130834224356853 ], [ -97.395100583309869, 33.163050822056491 ], [ -97.267975690228667, 33.15065982294125 ], [ -97.221748456380951, 33.061444629311467 ], [ -97.291089307152518, 33.004446033381328 ], [ -97.354651753693119, 33.004446033381328 ], [ -97.395100583309869, 33.036662631080972 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KELLER", "zip": "76248", "state": "TX", "Sheet1_value": 1250, "Sheet1_populaiton": 35660, "Sheet1_income": 111606, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.239083669073835, 32.892927041344109 ], [ -97.256418881766734, 32.892927041344109 ], [ -97.308424519845403, 32.890448841521057 ], [ -97.308424519845403, 32.957360236743391 ], [ -97.279532498690585, 32.969751235858638 ], [ -97.244862073304802, 32.969751235858638 ], [ -97.204413243688052, 32.942491037805098 ], [ -97.187078030995167, 32.917709039574603 ], [ -97.239083669073835, 32.892927041344109 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KRUM", "zip": "76249", "state": "TX", "Sheet1_value": 328, "Sheet1_populaiton": 6777, "Sheet1_income": 75250, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244862073304802, 33.222527617809682 ], [ -97.389322179078903, 33.247309616040177 ], [ -97.343094945231186, 33.35635040825435 ], [ -97.204413243688052, 33.296873612501159 ], [ -97.244862073304802, 33.222527617809682 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MONTAGUE", "zip": "76251", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 57321, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.793810475246374, 33.688429184542969 ], [ -97.666685582165172, 33.725602181888711 ], [ -97.660907177934206, 33.651256187197227 ], [ -97.759140049860591, 33.606648590382342 ], [ -97.793810475246374, 33.688429184542969 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MUENSTER", "zip": "76252", "state": "TX", "Sheet1_value": 85, "Sheet1_populaiton": 3092, "Sheet1_income": 62054, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.285310902921552, 33.60417039055929 ], [ -97.487555051005288, 33.648777987374181 ], [ -97.481776646774321, 33.916423568263518 ], [ -97.406657391771788, 33.814817375518487 ], [ -97.325759732538302, 33.876772371094724 ], [ -97.331538136769268, 33.854468572687281 ], [ -97.227526860611917, 33.772687978526648 ], [ -97.267975690228667, 33.643821587728084 ], [ -97.250640477535768, 33.611604990028439 ], [ -97.285310902921552, 33.60417039055929 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NOCONA", "zip": "76255", "state": "TX", "Sheet1_value": 194, "Sheet1_populaiton": 5352, "Sheet1_income": 36082, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.580009518700706, 33.901554369325218 ], [ -97.666685582165172, 33.725602181888711 ], [ -97.793810475246374, 33.688429184542969 ], [ -97.978719410637211, 33.728080381711763 ], [ -97.978719410637211, 33.7751661783497 ], [ -97.978719410637211, 33.842077573572034 ], [ -97.978719410637211, 33.889163370209971 ], [ -97.932492176789509, 33.879250570917776 ], [ -97.753361645629624, 33.936249166847915 ], [ -97.672463986396139, 33.990769562954995 ], [ -97.580009518700706, 33.901554369325218 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PILOT POINT", "zip": "76258", "state": "TX", "Sheet1_value": 396, "Sheet1_populaiton": 6022, "Sheet1_income": 53438, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.0368395209901, 33.358828608077395 ], [ -97.083066754837816, 33.39104520577704 ], [ -96.944385053294681, 33.415827204007535 ], [ -96.84037377713733, 33.438131002414977 ], [ -96.805703351751546, 33.405914404715332 ], [ -96.892379415215999, 33.291917212855061 ], [ -97.0368395209901, 33.358828608077395 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PONDER", "zip": "76259", "state": "TX", "Sheet1_value": 153, "Sheet1_populaiton": 4831, "Sheet1_income": 76021, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 33.163050822056491 ], [ -97.389322179078903, 33.247309616040177 ], [ -97.244862073304802, 33.222527617809682 ], [ -97.181299626764201, 33.17048542152564 ], [ -97.267975690228667, 33.15065982294125 ], [ -97.395100583309869, 33.163050822056491 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROANOKE", "zip": "76262", "state": "TX", "Sheet1_value": 1033, "Sheet1_populaiton": 30940, "Sheet1_income": 88114, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.291089307152518, 33.004446033381328 ], [ -97.221748456380951, 33.061444629311467 ], [ -97.204413243688052, 33.054010029842317 ], [ -97.123515584454566, 32.987098634619983 ], [ -97.204413243688052, 32.942491037805098 ], [ -97.244862073304802, 32.969751235858638 ], [ -97.279532498690585, 32.969751235858638 ], [ -97.308424519845403, 32.957360236743391 ], [ -97.291089307152518, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SADLER", "zip": "76264", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 1259, "Sheet1_income": 49650, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.75947611790383, 33.708254783127366 ], [ -96.886601010985046, 33.777644378172752 ], [ -96.805703351751546, 33.824730174810689 ], [ -96.742140905210945, 33.713211182773463 ], [ -96.75947611790383, 33.708254783127366 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAINT JO", "zip": "76265", "state": "TX", "Sheet1_value": 79, "Sheet1_populaiton": 1815, "Sheet1_income": 47500, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.487555051005288, 33.648777987374181 ], [ -97.487555051005288, 33.5694755930366 ], [ -97.660907177934206, 33.651256187197227 ], [ -97.666685582165172, 33.725602181888711 ], [ -97.580009518700706, 33.901554369325218 ], [ -97.562674306007821, 33.899076169502173 ], [ -97.481776646774321, 33.916423568263518 ], [ -97.487555051005288, 33.648777987374181 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANGER", "zip": "76266", "state": "TX", "Sheet1_value": 583, "Sheet1_populaiton": 14729, "Sheet1_income": 63416, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.083066754837816, 33.286960813208964 ], [ -97.094623563299734, 33.282004413562866 ], [ -97.204413243688052, 33.296873612501159 ], [ -97.343094945231186, 33.35635040825435 ], [ -97.383543774847936, 33.430696402945827 ], [ -97.083066754837816, 33.39104520577704 ], [ -97.0368395209901, 33.358828608077395 ], [ -97.083066754837816, 33.286960813208964 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUNSET", "zip": "76270", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 1770, "Sheet1_income": 55028, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.816924092170225, 33.38361060630789 ], [ -97.863151326017942, 33.433174602768879 ], [ -97.770696858322509, 33.507520597460363 ], [ -97.69557760331999, 33.433174602768879 ], [ -97.816924092170225, 33.38361060630789 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TIOGA", "zip": "76271", "state": "TX", "Sheet1_value": 85, "Sheet1_populaiton": 1310, "Sheet1_income": 47981, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 33.415827204007535 ], [ -96.944385053294681, 33.482738599229869 ], [ -96.794146543289628, 33.487694998875966 ], [ -96.776811330596729, 33.482738599229869 ], [ -96.84037377713733, 33.438131002414977 ], [ -96.944385053294681, 33.415827204007535 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VALLEY VIEW", "zip": "76272", "state": "TX", "Sheet1_value": 166, "Sheet1_populaiton": 4980, "Sheet1_income": 52763, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.487555051005288, 33.433174602768879 ], [ -97.487555051005288, 33.470347600114621 ], [ -97.447106221388538, 33.502564197814266 ], [ -97.487555051005288, 33.5694755930366 ], [ -97.487555051005288, 33.648777987374181 ], [ -97.285310902921552, 33.60417039055929 ], [ -97.192856435226133, 33.490173198699019 ], [ -97.111958775992633, 33.57691019250575 ], [ -96.961720265987566, 33.487694998875966 ], [ -96.944385053294681, 33.482738599229869 ], [ -96.944385053294681, 33.415827204007535 ], [ -97.083066754837816, 33.39104520577704 ], [ -97.383543774847936, 33.430696402945827 ], [ -97.487555051005288, 33.433174602768879 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITESBORO", "zip": "76273", "state": "TX", "Sheet1_value": 291, "Sheet1_populaiton": 8562, "Sheet1_income": 44190, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.944385053294681, 33.797469976757142 ], [ -96.886601010985046, 33.777644378172752 ], [ -96.75947611790383, 33.708254783127366 ], [ -96.701692075594195, 33.616561389674537 ], [ -96.851930585599263, 33.574431992682698 ], [ -96.944385053294681, 33.594257591267095 ], [ -97.019504308297215, 33.742949580650055 ], [ -96.944385053294681, 33.797469976757142 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76301", "state": "TX", "Sheet1_value": 453, "Sheet1_populaiton": 17052, "Sheet1_income": 31565, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.435213344883365, 33.884206970563874 ], [ -98.510332599885899, 33.876772371094724 ], [ -98.510332599885899, 33.889163370209971 ], [ -98.53344621680975, 33.908988968794368 ], [ -98.475662174500115, 33.923858167732661 ], [ -98.435213344883365, 33.884206970563874 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76302", "state": "TX", "Sheet1_value": 357, "Sheet1_populaiton": 13126, "Sheet1_income": 44066, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.429434940652399, 33.884206970563874 ], [ -98.521889408347818, 33.834642974102884 ], [ -98.510332599885899, 33.876772371094724 ], [ -98.435213344883365, 33.884206970563874 ], [ -98.429434940652399, 33.884206970563874 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76305", "state": "TX", "Sheet1_value": 145, "Sheet1_populaiton": 4510, "Sheet1_income": 53525, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 33.923858167732661 ], [ -98.492997387193, 33.956074765432305 ], [ -98.521889408347818, 33.990769562954995 ], [ -98.550781429502649, 33.91890176808657 ], [ -98.568116642195534, 33.91890176808657 ], [ -98.597008663350351, 33.906510768971316 ], [ -98.602787067581318, 34.035377159769887 ], [ -98.521889408347818, 34.087419356053928 ], [ -98.423656536421433, 34.082462956407824 ], [ -98.423656536421433, 34.018029761008542 ], [ -98.423656536421433, 33.881728770740821 ], [ -98.429434940652399, 33.884206970563874 ], [ -98.435213344883365, 33.884206970563874 ], [ -98.475662174500115, 33.923858167732661 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76306", "state": "TX", "Sheet1_value": 404, "Sheet1_populaiton": 15200, "Sheet1_income": 41765, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.53344621680975, 33.908988968794368 ], [ -98.550781429502649, 33.91890176808657 ], [ -98.521889408347818, 33.990769562954995 ], [ -98.492997387193, 33.956074765432305 ], [ -98.475662174500115, 33.923858167732661 ], [ -98.53344621680975, 33.908988968794368 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76308", "state": "TX", "Sheet1_value": 577, "Sheet1_populaiton": 19509, "Sheet1_income": 46546, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.521889408347818, 33.834642974102884 ], [ -98.562338237964568, 33.874294171271679 ], [ -98.510332599885899, 33.889163370209971 ], [ -98.510332599885899, 33.876772371094724 ], [ -98.521889408347818, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76309", "state": "TX", "Sheet1_value": 446, "Sheet1_populaiton": 13293, "Sheet1_income": 46038, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.562338237964568, 33.874294171271679 ], [ -98.568116642195534, 33.91890176808657 ], [ -98.550781429502649, 33.91890176808657 ], [ -98.53344621680975, 33.908988968794368 ], [ -98.510332599885899, 33.889163370209971 ], [ -98.562338237964568, 33.874294171271679 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WICHITA FALLS", "zip": "76310", "state": "TX", "Sheet1_value": 590, "Sheet1_populaiton": 18492, "Sheet1_income": 63646, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.521889408347818, 33.834642974102884 ], [ -98.429434940652399, 33.884206970563874 ], [ -98.423656536421433, 33.881728770740821 ], [ -98.423656536421433, 33.750384180119205 ], [ -98.701019939507702, 33.834642974102884 ], [ -98.597008663350351, 33.906510768971316 ], [ -98.568116642195534, 33.91890176808657 ], [ -98.562338237964568, 33.874294171271679 ], [ -98.521889408347818, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURKBURNETT", "zip": "76354", "state": "TX", "Sheet1_value": 245, "Sheet1_populaiton": 11256, "Sheet1_income": 49031, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.602787067581318, 34.035377159769887 ], [ -98.672127918352885, 34.149374351630158 ], [ -98.608565471812284, 34.156808951099308 ], [ -98.539224621040717, 34.107244954638318 ], [ -98.521889408347818, 34.087419356053928 ], [ -98.602787067581318, 34.035377159769887 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BYERS", "zip": "76357", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36683, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.094287495256495, 34.020507960831594 ], [ -98.227190792568663, 34.057680958177329 ], [ -98.169406750259029, 34.114679554107468 ], [ -98.140514729104211, 34.141939752161015 ], [ -98.11162270794938, 34.089897555876973 ], [ -98.094287495256495, 34.020507960831594 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELECTRA", "zip": "76360", "state": "TX", "Sheet1_value": 59, "Sheet1_populaiton": 3457, "Sheet1_income": 43958, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.81080961989602, 33.834642974102884 ], [ -98.955269725670121, 33.834642974102884 ], [ -99.342422809144693, 33.834642974102884 ], [ -99.174849086446741, 33.995725962601099 ], [ -98.955269725670121, 33.899076169502173 ], [ -98.955269725670121, 34.179112749506757 ], [ -98.955269725670121, 34.211329347206394 ], [ -98.833923236819871, 34.156808951099308 ], [ -98.753025577586385, 34.124592353399663 ], [ -98.81080961989602, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOREE", "zip": "76363", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 21488, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.556223765690362, 33.39847980524619 ], [ -99.573558978383247, 33.571953792859645 ], [ -99.475326106456862, 33.579388392328795 ], [ -99.469547702225896, 33.39847980524619 ], [ -99.556223765690362, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARROLD", "zip": "76364", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36912, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.174849086446741, 33.995725962601099 ], [ -99.157513873753857, 34.124592353399663 ], [ -98.955269725670121, 34.179112749506757 ], [ -98.955269725670121, 33.899076169502173 ], [ -99.174849086446741, 33.995725962601099 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HENRIETTA", "zip": "76365", "state": "TX", "Sheet1_value": 132, "Sheet1_populaiton": 4813, "Sheet1_income": 54517, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.423656536421433, 33.680994585073819 ], [ -98.423656536421433, 33.750384180119205 ], [ -98.423656536421433, 33.881728770740821 ], [ -98.423656536421433, 34.018029761008542 ], [ -98.377429302573717, 33.931292767201811 ], [ -97.984497814868178, 33.899076169502173 ], [ -97.978719410637211, 33.889163370209971 ], [ -97.978719410637211, 33.842077573572034 ], [ -97.978719410637211, 33.814817375518487 ], [ -98.094287495256495, 33.807382776049344 ], [ -98.163628346028062, 33.636386988258934 ], [ -98.423656536421433, 33.656212586843324 ], [ -98.423656536421433, 33.680994585073819 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOLLIDAY", "zip": "76366", "state": "TX", "Sheet1_value": 61, "Sheet1_populaiton": 2298, "Sheet1_income": 59732, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.423656536421433, 33.467869400291576 ], [ -98.423656536421433, 33.396001605423137 ], [ -98.955269725670121, 33.39847980524619 ], [ -98.955269725670121, 33.834642974102884 ], [ -98.81080961989602, 33.834642974102884 ], [ -98.701019939507702, 33.834642974102884 ], [ -98.423656536421433, 33.750384180119205 ], [ -98.423656536421433, 33.680994585073819 ], [ -98.527667812578784, 33.643821587728084 ], [ -98.423656536421433, 33.628952388789784 ], [ -98.423656536421433, 33.601692190736244 ], [ -98.423656536421433, 33.559562793744405 ], [ -98.423656536421433, 33.467869400291576 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IOWA PARK", "zip": "76367", "state": "TX", "Sheet1_value": 247, "Sheet1_populaiton": 14596, "Sheet1_income": 50879, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.701019939507702, 33.834642974102884 ], [ -98.81080961989602, 33.834642974102884 ], [ -98.753025577586385, 34.124592353399663 ], [ -98.672127918352885, 34.149374351630158 ], [ -98.602787067581318, 34.035377159769887 ], [ -98.597008663350351, 33.906510768971316 ], [ -98.701019939507702, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MUNDAY", "zip": "76371", "state": "TX", "Sheet1_value": 74, "Sheet1_populaiton": 1633, "Sheet1_income": 34250, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.556223765690362, 33.39847980524619 ], [ -99.718019084157348, 33.39847980524619 ], [ -99.781581530697949, 33.495129598345116 ], [ -99.573558978383247, 33.571953792859645 ], [ -99.556223765690362, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEWCASTLE", "zip": "76372", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39141, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.64901430142902, 33.20518021904833 ], [ -98.72991196066252, 33.081270227895864 ], [ -98.949491321439154, 33.056488229665369 ], [ -98.955269725670121, 33.163050822056491 ], [ -98.955269725670121, 33.234918616924929 ], [ -98.955269725670121, 33.286960813208964 ], [ -98.64901430142902, 33.20518021904833 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OKLAUNION", "zip": "76373", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45948, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.157513873753857, 34.124592353399663 ], [ -99.209519511832525, 34.176634549683705 ], [ -99.117065044137107, 34.201416547914199 ], [ -98.955269725670121, 34.211329347206394 ], [ -98.955269725670121, 34.179112749506757 ], [ -99.157513873753857, 34.124592353399663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OLNEY", "zip": "76374", "state": "TX", "Sheet1_value": 107, "Sheet1_populaiton": 3916, "Sheet1_income": 29965, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.423656536421433, 33.296873612501159 ], [ -98.423656536421433, 33.222527617809682 ], [ -98.64901430142902, 33.20518021904833 ], [ -98.955269725670121, 33.286960813208964 ], [ -98.955269725670121, 33.39847980524619 ], [ -98.423656536421433, 33.396001605423137 ], [ -98.423656536421433, 33.296873612501159 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PETROLIA", "zip": "76377", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.094287495256495, 34.020507960831594 ], [ -97.95560579371336, 33.933770967024863 ], [ -97.984497814868178, 33.899076169502173 ], [ -98.377429302573717, 33.931292767201811 ], [ -98.423656536421433, 34.018029761008542 ], [ -98.423656536421433, 34.082462956407824 ], [ -98.267639622185413, 34.132026952868813 ], [ -98.169406750259029, 34.114679554107468 ], [ -98.227190792568663, 34.057680958177329 ], [ -98.094287495256495, 34.020507960831594 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SCOTLAND", "zip": "76379", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46667, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.423656536421433, 33.680994585073819 ], [ -98.423656536421433, 33.656212586843324 ], [ -98.423656536421433, 33.628952388789784 ], [ -98.527667812578784, 33.643821587728084 ], [ -98.423656536421433, 33.680994585073819 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEYMOUR", "zip": "76380", "state": "TX", "Sheet1_value": 81, "Sheet1_populaiton": 3743, "Sheet1_income": 33689, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.573558978383247, 33.571953792859645 ], [ -99.781581530697949, 33.495129598345116 ], [ -99.989604083012651, 33.403436204892287 ], [ -99.995382487243617, 33.834642974102884 ], [ -99.683348658771564, 33.703298383481268 ], [ -99.475326106456862, 33.703298383481268 ], [ -99.475326106456862, 33.834642974102884 ], [ -99.342422809144693, 33.834642974102884 ], [ -98.955269725670121, 33.834642974102884 ], [ -98.955269725670121, 33.39847980524619 ], [ -99.082394618751323, 33.39847980524619 ], [ -99.469547702225896, 33.39847980524619 ], [ -99.475326106456862, 33.579388392328795 ], [ -99.573558978383247, 33.571953792859645 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VERNON", "zip": "76384", "state": "TX", "Sheet1_value": 260, "Sheet1_populaiton": 12748, "Sheet1_income": 41050, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.475326106456862, 33.834642974102884 ], [ -99.475326106456862, 34.084941156230876 ], [ -99.475326106456862, 34.397194333935104 ], [ -99.353979617606626, 34.449236530219139 ], [ -99.209519511832525, 34.33771753818192 ], [ -99.117065044137107, 34.201416547914199 ], [ -99.209519511832525, 34.176634549683705 ], [ -99.157513873753857, 34.124592353399663 ], [ -99.174849086446741, 33.995725962601099 ], [ -99.342422809144693, 33.834642974102884 ], [ -99.475326106456862, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEINERT", "zip": "76388", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34493, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.723797488388314, 33.321655610731653 ], [ -99.718019084157348, 33.39847980524619 ], [ -99.556223765690362, 33.39847980524619 ], [ -99.469547702225896, 33.39847980524619 ], [ -99.469547702225896, 33.321655610731653 ], [ -99.723797488388314, 33.252266015686274 ], [ -99.723797488388314, 33.321655610731653 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STEPHENVILLE", "zip": "76401", "state": "TX", "Sheet1_value": 942, "Sheet1_populaiton": 26435, "Sheet1_income": 37194, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.949827389482394, 32.24611688752821 ], [ -98.204077175644812, 32.065208300445605 ], [ -98.539224621040717, 32.268420685935652 ], [ -98.475662174500115, 32.387374277442028 ], [ -97.949827389482394, 32.24611688752821 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRECKENRIDGE", "zip": "76424", "state": "TX", "Sheet1_value": 296, "Sheet1_populaiton": 8961, "Sheet1_income": 42194, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.712576747969635, 32.659976257977462 ], [ -98.787696002972154, 32.516240668240599 ], [ -98.932156108746256, 32.516240668240599 ], [ -99.093951427213241, 32.513762468417546 ], [ -99.093951427213241, 32.759104250899441 ], [ -99.093951427213241, 32.957360236743391 ], [ -98.949491321439154, 32.957360236743391 ], [ -98.5738950464265, 32.885492441874959 ], [ -98.5738950464265, 32.878057842405809 ], [ -98.5738950464265, 32.78636444895298 ], [ -98.695241535276736, 32.788842648776033 ], [ -98.712576747969635, 32.659976257977462 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRIDGEPORT", "zip": "76426", "state": "TX", "Sheet1_value": 421, "Sheet1_populaiton": 10901, "Sheet1_income": 52328, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.822702496401192, 33.058966429488422 ], [ -97.920935368327576, 33.056488229665369 ], [ -97.920935368327576, 33.172963621348693 ], [ -97.920935368327576, 33.237396816747975 ], [ -97.69557760331999, 33.244831416217124 ], [ -97.672463986396139, 33.182876420640888 ], [ -97.799588879477341, 33.182876420640888 ], [ -97.811145687939259, 33.071357428603662 ], [ -97.822702496401192, 33.058966429488422 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYSON", "zip": "76427", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34014, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.238747601030596, 33.063922829134519 ], [ -98.244526005261548, 33.004446033381328 ], [ -98.423656536421433, 33.00692423320438 ], [ -98.423656536421433, 33.222527617809682 ], [ -98.371650898342764, 33.296873612501159 ], [ -98.238747601030596, 33.063922829134519 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CADDO", "zip": "76429", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 96875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.5738950464265, 32.650063458685267 ], [ -98.712576747969635, 32.659976257977462 ], [ -98.695241535276736, 32.788842648776033 ], [ -98.5738950464265, 32.78636444895298 ], [ -98.5738950464265, 32.650063458685267 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALBANY", "zip": "76430", "state": "TX", "Sheet1_value": 62, "Sheet1_populaiton": 2721, "Sheet1_income": 51105, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.342422809144693, 32.516240668240599 ], [ -99.394428447223362, 32.516240668240599 ], [ -99.562002169921328, 32.513762468417546 ], [ -99.614007808, 32.677323656738807 ], [ -99.562002169921328, 32.957360236743391 ], [ -99.469547702225896, 32.957360236743391 ], [ -99.192184299139626, 32.957360236743391 ], [ -99.093951427213241, 32.957360236743391 ], [ -99.093951427213241, 32.759104250899441 ], [ -99.342422809144693, 32.516240668240599 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHICO", "zip": "76431", "state": "TX", "Sheet1_value": 145, "Sheet1_populaiton": 3525, "Sheet1_income": 51941, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.69557760331999, 33.244831416217124 ], [ -97.920935368327576, 33.237396816747975 ], [ -97.920935368327576, 33.433174602768879 ], [ -97.863151326017942, 33.433174602768879 ], [ -97.816924092170225, 33.38361060630789 ], [ -97.678242390627091, 33.274569814093717 ], [ -97.69557760331999, 33.244831416217124 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLANKET", "zip": "76432", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41563, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.666349514121919, 31.700912926457338 ], [ -98.758803981817337, 31.688521927342091 ], [ -98.828144832588904, 31.740564123626129 ], [ -98.937934512977222, 31.844648516194205 ], [ -98.787696002972154, 31.879343313716895 ], [ -98.666349514121919, 31.700912926457338 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLUFF DALE", "zip": "76433", "state": "TX", "Sheet1_value": 62, "Sheet1_populaiton": 1808, "Sheet1_income": 61953, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 32.387374277442028 ], [ -98.475662174500115, 32.513762468417546 ], [ -98.400542919497582, 32.513762468417546 ], [ -98.267639622185413, 32.513762468417546 ], [ -98.186741962951913, 32.511284268594494 ], [ -98.03650345294686, 32.43198187425692 ], [ -97.897821751403725, 32.256029686820405 ], [ -97.91515696409661, 32.179205492305876 ], [ -97.949827389482394, 32.24611688752821 ], [ -98.475662174500115, 32.387374277442028 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARBON", "zip": "76435", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34226, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.776139194510236, 32.320462882219694 ], [ -98.857036853743722, 32.206465690359423 ], [ -98.914820896053371, 32.278333485227854 ], [ -98.885928874898553, 32.315506482573596 ], [ -98.776139194510236, 32.320462882219694 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARLTON", "zip": "76436", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 61500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.117401112180346, 31.824822917609808 ], [ -98.163628346028062, 31.849604915840303 ], [ -98.209855579875779, 31.916516311062637 ], [ -98.082730686794562, 31.971036707169723 ], [ -98.117401112180346, 31.824822917609808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CISCO", "zip": "76437", "state": "TX", "Sheet1_value": 182, "Sheet1_populaiton": 5736, "Sheet1_income": 41000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.914820896053371, 32.278333485227854 ], [ -99.117065044137107, 32.251073287174307 ], [ -99.117065044137107, 32.516240668240599 ], [ -99.093951427213241, 32.513762468417546 ], [ -98.932156108746256, 32.516240668240599 ], [ -98.885928874898553, 32.315506482573596 ], [ -98.914820896053371, 32.278333485227854 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COMANCHE", "zip": "76442", "state": "TX", "Sheet1_value": 284, "Sheet1_populaiton": 7898, "Sheet1_income": 35074, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.521889408347818, 31.720738525041735 ], [ -98.545003025271683, 31.718260325218687 ], [ -98.666349514121919, 31.700912926457338 ], [ -98.787696002972154, 31.879343313716895 ], [ -98.805031215665053, 31.901647112124341 ], [ -98.735690364893486, 31.948732908762281 ], [ -98.833923236819871, 31.943776509116184 ], [ -98.926377704515289, 32.077599299560852 ], [ -98.885928874898553, 32.094946698322197 ], [ -98.481440578731082, 31.975993106815825 ], [ -98.521889408347818, 31.720738525041735 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROSS PLAINS", "zip": "76443", "state": "TX", "Sheet1_value": 65, "Sheet1_populaiton": 1813, "Sheet1_income": 38472, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.117065044137107, 32.080077499383897 ], [ -99.197962703370592, 32.080077499383897 ], [ -99.423320468378193, 32.080077499383897 ], [ -99.417542064147227, 32.206465690359423 ], [ -99.38865004299241, 32.288246284520049 ], [ -99.117065044137107, 32.251073287174307 ], [ -99.117065044137107, 32.080077499383897 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DE LEON", "zip": "76444", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 3327, "Sheet1_income": 35833, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.550781429502649, 32.260986086466509 ], [ -98.417878132190481, 32.070164700091702 ], [ -98.481440578731082, 31.975993106815825 ], [ -98.885928874898553, 32.094946698322197 ], [ -98.833923236819871, 32.122206896375737 ], [ -98.631679088736135, 32.218856689474663 ], [ -98.550781429502649, 32.260986086466509 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DESDEMONA", "zip": "76445", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45050, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.631679088736135, 32.218856689474663 ], [ -98.625900684505169, 32.315506482573596 ], [ -98.475662174500115, 32.387374277442028 ], [ -98.539224621040717, 32.268420685935652 ], [ -98.550781429502649, 32.260986086466509 ], [ -98.631679088736135, 32.218856689474663 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DUBLIN", "zip": "76446", "state": "TX", "Sheet1_value": 414, "Sheet1_populaiton": 8295, "Sheet1_income": 37589, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.204077175644812, 32.065208300445605 ], [ -98.256082813723481, 31.978471306638873 ], [ -98.417878132190481, 32.070164700091702 ], [ -98.550781429502649, 32.260986086466509 ], [ -98.539224621040717, 32.268420685935652 ], [ -98.204077175644812, 32.065208300445605 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EASTLAND", "zip": "76448", "state": "TX", "Sheet1_value": 185, "Sheet1_populaiton": 5330, "Sheet1_income": 35949, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.932156108746256, 32.516240668240599 ], [ -98.787696002972154, 32.516240668240599 ], [ -98.654792705659986, 32.325419281865791 ], [ -98.776139194510236, 32.320462882219694 ], [ -98.885928874898553, 32.315506482573596 ], [ -98.932156108746256, 32.516240668240599 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAFORD", "zip": "76449", "state": "TX", "Sheet1_value": 110, "Sheet1_populaiton": 2351, "Sheet1_income": 41797, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.209855579875779, 32.823537446298722 ], [ -98.412099727959514, 32.79379904842213 ], [ -98.5738950464265, 32.878057842405809 ], [ -98.5738950464265, 32.885492441874959 ], [ -98.423656536421433, 33.00692423320438 ], [ -98.244526005261548, 33.004446033381328 ], [ -98.105844303718413, 32.920187239397649 ], [ -98.209855579875779, 32.823537446298722 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRAHAM", "zip": "76450", "state": "TX", "Sheet1_value": 444, "Sheet1_populaiton": 13652, "Sheet1_income": 49066, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.949491321439154, 32.957360236743391 ], [ -98.949491321439154, 33.056488229665369 ], [ -98.72991196066252, 33.081270227895864 ], [ -98.64901430142902, 33.20518021904833 ], [ -98.423656536421433, 33.222527617809682 ], [ -98.423656536421433, 33.00692423320438 ], [ -98.5738950464265, 32.885492441874959 ], [ -98.949491321439154, 32.957360236743391 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GORDON", "zip": "76453", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.267639622185413, 32.645107059039162 ], [ -98.267639622185413, 32.513762468417546 ], [ -98.400542919497582, 32.513762468417546 ], [ -98.417878132190481, 32.573239264170731 ], [ -98.377429302573717, 32.739278652315043 ], [ -98.267639622185413, 32.645107059039162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GORMAN", "zip": "76454", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 26017, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.776139194510236, 32.320462882219694 ], [ -98.654792705659986, 32.325419281865791 ], [ -98.625900684505169, 32.315506482573596 ], [ -98.631679088736135, 32.218856689474663 ], [ -98.833923236819871, 32.122206896375737 ], [ -98.857036853743722, 32.206465690359423 ], [ -98.776139194510236, 32.320462882219694 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GUSTINE", "zip": "76455", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.481440578731082, 31.975993106815825 ], [ -98.417878132190481, 32.070164700091702 ], [ -98.256082813723481, 31.978471306638873 ], [ -98.209855579875779, 31.916516311062637 ], [ -98.163628346028062, 31.849604915840303 ], [ -98.284974834878298, 31.775258921148822 ], [ -98.464105366038183, 31.683565527695993 ], [ -98.521889408347818, 31.720738525041735 ], [ -98.481440578731082, 31.975993106815825 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HICO", "zip": "76457", "state": "TX", "Sheet1_value": 171, "Sheet1_populaiton": 4501, "Sheet1_income": 44595, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.209855579875779, 31.916516311062637 ], [ -98.256082813723481, 31.978471306638873 ], [ -98.204077175644812, 32.065208300445605 ], [ -97.949827389482394, 32.24611688752821 ], [ -97.91515696409661, 32.179205492305876 ], [ -97.863151326017942, 32.087512098853047 ], [ -98.007611431792043, 32.01812250380766 ], [ -97.874708134479874, 31.829779317255909 ], [ -97.834259304863124, 31.767824321679672 ], [ -98.007611431792043, 31.725694924687833 ], [ -98.117401112180346, 31.824822917609808 ], [ -98.082730686794562, 31.971036707169723 ], [ -98.209855579875779, 31.916516311062637 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JACKSBORO", "zip": "76458", "state": "TX", "Sheet1_value": 155, "Sheet1_populaiton": 5962, "Sheet1_income": 49306, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.920935368327576, 33.172963621348693 ], [ -98.238747601030596, 33.063922829134519 ], [ -98.371650898342764, 33.296873612501159 ], [ -98.423656536421433, 33.296873612501159 ], [ -98.423656536421433, 33.396001605423137 ], [ -98.423656536421433, 33.467869400291576 ], [ -97.978719410637211, 33.467869400291576 ], [ -97.920935368327576, 33.433174602768879 ], [ -97.920935368327576, 33.237396816747975 ], [ -97.920935368327576, 33.172963621348693 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JERMYN", "zip": "76459", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.423656536421433, 33.222527617809682 ], [ -98.423656536421433, 33.296873612501159 ], [ -98.371650898342764, 33.296873612501159 ], [ -98.423656536421433, 33.222527617809682 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIPAN", "zip": "76462", "state": "TX", "Sheet1_value": 142, "Sheet1_populaiton": 3221, "Sheet1_income": 59375, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.967162602175293, 32.506327868948397 ], [ -98.03650345294686, 32.43198187425692 ], [ -98.186741962951913, 32.511284268594494 ], [ -98.065395474101678, 32.573239264170731 ], [ -97.886264942941793, 32.615368661162577 ], [ -97.851594517556009, 32.521197067886696 ], [ -97.967162602175293, 32.506327868948397 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MINGUS", "zip": "76463", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34688, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.400542919497582, 32.513762468417546 ], [ -98.475662174500115, 32.513762468417546 ], [ -98.510332599885899, 32.513762468417546 ], [ -98.417878132190481, 32.573239264170731 ], [ -98.400542919497582, 32.513762468417546 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MORAN", "zip": "76464", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38984, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.093951427213241, 32.513762468417546 ], [ -99.117065044137107, 32.516240668240599 ], [ -99.342422809144693, 32.516240668240599 ], [ -99.093951427213241, 32.759104250899441 ], [ -99.093951427213241, 32.513762468417546 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RANGER", "zip": "76470", "state": "TX", "Sheet1_value": 90, "Sheet1_populaiton": 3557, "Sheet1_income": 30918, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.787696002972154, 32.516240668240599 ], [ -98.712576747969635, 32.659976257977462 ], [ -98.5738950464265, 32.650063458685267 ], [ -98.510332599885899, 32.513762468417546 ], [ -98.475662174500115, 32.513762468417546 ], [ -98.475662174500115, 32.387374277442028 ], [ -98.625900684505169, 32.315506482573596 ], [ -98.654792705659986, 32.325419281865791 ], [ -98.787696002972154, 32.516240668240599 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RISING STAR", "zip": "76471", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31317, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.117065044137107, 32.251073287174307 ], [ -98.914820896053371, 32.278333485227854 ], [ -98.857036853743722, 32.206465690359423 ], [ -98.833923236819871, 32.122206896375737 ], [ -98.885928874898553, 32.094946698322197 ], [ -98.926377704515289, 32.077599299560852 ], [ -99.117065044137107, 32.080077499383897 ], [ -99.117065044137107, 32.251073287174307 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTO", "zip": "76472", "state": "TX", "Sheet1_value": 60, "Sheet1_populaiton": 1282, "Sheet1_income": 41935, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.267639622185413, 32.645107059039162 ], [ -98.198298771413846, 32.707062054615399 ], [ -98.100065899487461, 32.642628859216117 ], [ -98.065395474101678, 32.632716059923922 ], [ -98.065395474101678, 32.573239264170731 ], [ -98.186741962951913, 32.511284268594494 ], [ -98.267639622185413, 32.513762468417546 ], [ -98.267639622185413, 32.645107059039162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SIDNEY", "zip": "76474", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 73207, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 31.901647112124341 ], [ -98.833923236819871, 31.943776509116184 ], [ -98.735690364893486, 31.948732908762281 ], [ -98.805031215665053, 31.901647112124341 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STRAWN", "zip": "76475", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40774, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.417878132190481, 32.573239264170731 ], [ -98.510332599885899, 32.513762468417546 ], [ -98.5738950464265, 32.650063458685267 ], [ -98.5738950464265, 32.78636444895298 ], [ -98.5738950464265, 32.878057842405809 ], [ -98.412099727959514, 32.79379904842213 ], [ -98.377429302573717, 32.739278652315043 ], [ -98.417878132190481, 32.573239264170731 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TOLAR", "zip": "76476", "state": "TX", "Sheet1_value": 111, "Sheet1_populaiton": 2789, "Sheet1_income": 62974, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.897821751403725, 32.256029686820405 ], [ -98.03650345294686, 32.43198187425692 ], [ -97.967162602175293, 32.506327868948397 ], [ -97.788032071015408, 32.315506482573596 ], [ -97.897821751403725, 32.256029686820405 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THROCKMORTON", "zip": "76483", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37596, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.469547702225896, 32.957360236743391 ], [ -99.469547702225896, 33.091183027188059 ], [ -99.469547702225896, 33.321655610731653 ], [ -99.469547702225896, 33.39847980524619 ], [ -99.082394618751323, 33.39847980524619 ], [ -99.11128663990614, 33.222527617809682 ], [ -98.955269725670121, 33.234918616924929 ], [ -98.955269725670121, 33.163050822056491 ], [ -99.180627490677708, 33.096139426834156 ], [ -99.192184299139626, 32.957360236743391 ], [ -99.469547702225896, 32.957360236743391 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PALO PINTO", "zip": "76484", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47847, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.267639622185413, 32.645107059039162 ], [ -98.377429302573717, 32.739278652315043 ], [ -98.412099727959514, 32.79379904842213 ], [ -98.209855579875779, 32.823537446298722 ], [ -98.27341802641638, 32.734322252668946 ], [ -98.198298771413846, 32.707062054615399 ], [ -98.267639622185413, 32.645107059039162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PERRIN", "zip": "76486", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 1267, "Sheet1_income": 53906, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.244526005261548, 33.004446033381328 ], [ -98.238747601030596, 33.063922829134519 ], [ -97.920935368327576, 33.172963621348693 ], [ -97.920935368327576, 33.056488229665369 ], [ -97.990276219099144, 33.001967833558282 ], [ -98.024946644484928, 32.962316636389488 ], [ -98.030725048715894, 32.912752639928499 ], [ -98.105844303718413, 32.920187239397649 ], [ -98.244526005261548, 33.004446033381328 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POOLVILLE", "zip": "76487", "state": "TX", "Sheet1_value": 88, "Sheet1_populaiton": 1901, "Sheet1_income": 54872, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.788032071015408, 32.917709039574603 ], [ -97.984497814868178, 32.989576834443035 ], [ -97.990276219099144, 33.001967833558282 ], [ -97.920935368327576, 33.056488229665369 ], [ -97.822702496401192, 33.058966429488422 ], [ -97.788032071015408, 32.917709039574603 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITT", "zip": "76490", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 107344, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.024946644484928, 32.962316636389488 ], [ -97.990276219099144, 33.001967833558282 ], [ -97.984497814868178, 32.989576834443035 ], [ -98.024946644484928, 32.962316636389488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOODSON", "zip": "76491", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35833, "Sheet1_percent": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -98.955269725670121, 33.234918616924929 ], [ -99.11128663990614, 33.222527617809682 ], [ -99.082394618751323, 33.39847980524619 ], [ -98.955269725670121, 33.39847980524619 ], [ -98.955269725670121, 33.286960813208964 ], [ -98.955269725670121, 33.234918616924929 ] ] ], [ [ [ -99.192184299139626, 32.957360236743391 ], [ -99.180627490677708, 33.096139426834156 ], [ -98.955269725670121, 33.163050822056491 ], [ -98.949491321439154, 33.056488229665369 ], [ -98.949491321439154, 32.957360236743391 ], [ -99.093951427213241, 32.957360236743391 ], [ -99.192184299139626, 32.957360236743391 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEMPLE", "zip": "76501", "state": "TX", "Sheet1_value": 482, "Sheet1_populaiton": 16869, "Sheet1_income": 40237, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.337316541000234, 30.997104176711304 ], [ -97.331538136769268, 31.054102772641443 ], [ -97.348873349462153, 31.19040376290916 ], [ -97.175521222533234, 31.130926967155972 ], [ -97.135072392916499, 31.078884770871937 ], [ -97.123515584454566, 31.034277174057046 ], [ -97.337316541000234, 30.979756777949959 ], [ -97.337316541000234, 30.997104176711304 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEMPLE", "zip": "76502", "state": "TX", "Sheet1_value": 956, "Sheet1_populaiton": 33305, "Sheet1_income": 62939, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 30.994625976888255 ], [ -97.464441434081436, 31.163143564855616 ], [ -97.441327817157571, 31.185447363263059 ], [ -97.331538136769268, 31.054102772641443 ], [ -97.337316541000234, 30.997104176711304 ], [ -97.395100583309869, 30.994625976888255 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEMPLE", "zip": "76504", "state": "TX", "Sheet1_value": 597, "Sheet1_populaiton": 23039, "Sheet1_income": 37951, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331538136769268, 31.054102772641443 ], [ -97.441327817157571, 31.185447363263059 ], [ -97.389322179078903, 31.200316562201358 ], [ -97.348873349462153, 31.19040376290916 ], [ -97.331538136769268, 31.054102772641443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BARTLETT", "zip": "76511", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 2409, "Sheet1_income": 38194, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.291089307152518, 30.816195589628698 ], [ -97.314202924076369, 30.751762394229413 ], [ -97.545339093314922, 30.751762394229413 ], [ -97.53956068908397, 30.774066192636859 ], [ -97.53956068908397, 30.838499388036141 ], [ -97.452884625619504, 30.848412187328339 ], [ -97.291089307152518, 30.816195589628698 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BELTON", "zip": "76513", "state": "TX", "Sheet1_value": 792, "Sheet1_populaiton": 35001, "Sheet1_income": 57545, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 30.994625976888255 ], [ -97.400878987540835, 30.984713177596056 ], [ -97.423992604464686, 30.922758182019823 ], [ -97.591566327162639, 31.024364374764847 ], [ -97.632015156779389, 31.05162457281839 ], [ -97.597344731393605, 31.111101368571578 ], [ -97.528003880622038, 31.145796166094271 ], [ -97.464441434081436, 31.163143564855616 ], [ -97.395100583309869, 30.994625976888255 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BUCKHOLTS", "zip": "76518", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38098, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.002169095604316, 30.902932583435426 ], [ -97.111958775992633, 30.793891791221252 ], [ -97.262197285997701, 30.878150585204931 ], [ -97.100401967530701, 30.972322178480809 ], [ -97.07728835060685, 30.984713177596056 ], [ -97.002169095604316, 30.902932583435426 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURLINGTON", "zip": "76519", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29821, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.730584096749013, 30.900454383612377 ], [ -96.678578458670344, 30.843455787682242 ], [ -96.75947611790383, 30.826108388920893 ], [ -97.002169095604316, 30.902932583435426 ], [ -97.07728835060685, 30.984713177596056 ], [ -96.828816968675397, 31.111101368571578 ], [ -96.828816968675397, 31.106144968925477 ], [ -96.771032926365763, 31.002060576357405 ], [ -96.730584096749013, 30.900454383612377 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CAMERON", "zip": "76520", "state": "TX", "Sheet1_value": 151, "Sheet1_populaiton": 7813, "Sheet1_income": 36259, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.950163457525647, 30.774066192636859 ], [ -97.013725904066249, 30.759196993698559 ], [ -97.111958775992633, 30.793891791221252 ], [ -97.002169095604316, 30.902932583435426 ], [ -96.75947611790383, 30.826108388920893 ], [ -96.950163457525647, 30.774066192636859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COPPERAS COVE", "zip": "76522", "state": "TX", "Sheet1_value": 789, "Sheet1_populaiton": 36207, "Sheet1_income": 54493, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.880486538710826, 31.083841170518035 ], [ -97.886264942941793, 31.081362970694983 ], [ -97.91515696409661, 31.064015571933638 ], [ -98.053838665639745, 31.116057768217676 ], [ -98.23296919679963, 31.220142160785752 ], [ -98.308088451802163, 31.383703349107012 ], [ -98.27341802641638, 31.415919946806657 ], [ -98.180963558720947, 31.463005743444594 ], [ -98.007611431792043, 31.212707561316606 ], [ -97.903600155634678, 31.267227957423692 ], [ -97.880486538710826, 31.083841170518035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DAVILLA", "zip": "76523", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.013725904066249, 30.759196993698559 ], [ -97.083066754837816, 30.709632997237573 ], [ -97.250640477535768, 30.692285598476225 ], [ -97.314202924076369, 30.751762394229413 ], [ -97.291089307152518, 30.816195589628698 ], [ -97.262197285997701, 30.875672385381883 ], [ -97.262197285997701, 30.878150585204931 ], [ -97.111958775992633, 30.793891791221252 ], [ -97.013725904066249, 30.759196993698559 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDDY", "zip": "76524", "state": "TX", "Sheet1_value": 80, "Sheet1_populaiton": 3494, "Sheet1_income": 54783, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.279532498690585, 31.27961895653894 ], [ -97.262197285997701, 31.336617552469075 ], [ -97.227526860611917, 31.304400954769431 ], [ -97.279532498690585, 31.27961895653894 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EVANT", "zip": "76525", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.880486538710826, 31.284575356185037 ], [ -97.903600155634678, 31.267227957423692 ], [ -98.007611431792043, 31.212707561316606 ], [ -98.180963558720947, 31.463005743444594 ], [ -98.140514729104211, 31.482831342028991 ], [ -97.91515696409661, 31.378746949460915 ], [ -97.880486538710826, 31.284575356185037 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLAT", "zip": "76526", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 31.26474975760064 ], [ -97.585787922931672, 31.341573952115173 ], [ -97.481776646774321, 31.289531755831135 ], [ -97.528003880622038, 31.26474975760064 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLORENCE", "zip": "76527", "state": "TX", "Sheet1_value": 170, "Sheet1_populaiton": 3965, "Sheet1_income": 44977, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.626236752548422, 30.870715985735785 ], [ -97.724469624474807, 30.759196993698559 ], [ -97.851594517556009, 30.803804590513451 ], [ -97.863151326017942, 30.707154797414525 ], [ -97.972941006406245, 30.766631593167709 ], [ -97.926713772558543, 30.818673789451747 ], [ -97.828480900632158, 30.910367182904576 ], [ -97.730248028705773, 30.890541584320179 ], [ -97.626236752548422, 30.870715985735785 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GATESVILLE", "zip": "76528", "state": "TX", "Sheet1_value": 371, "Sheet1_populaiton": 18519, "Sheet1_income": 46996, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 31.26474975760064 ], [ -97.568452710238773, 31.242445959193198 ], [ -97.793810475246374, 31.391137948576162 ], [ -97.880486538710826, 31.284575356185037 ], [ -97.91515696409661, 31.378746949460915 ], [ -97.886264942941793, 31.542308137782175 ], [ -97.759140049860591, 31.505135140436437 ], [ -97.678242390627091, 31.465483943267643 ], [ -97.585787922931672, 31.341573952115173 ], [ -97.528003880622038, 31.26474975760064 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRANGER", "zip": "76530", "state": "TX", "Sheet1_value": 109, "Sheet1_populaiton": 2410, "Sheet1_income": 50463, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.250640477535768, 30.692285598476225 ], [ -97.470219838312403, 30.635287002546089 ], [ -97.545339093314922, 30.751762394229413 ], [ -97.314202924076369, 30.751762394229413 ], [ -97.250640477535768, 30.692285598476225 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HAMILTON", "zip": "76531", "state": "TX", "Sheet1_value": 182, "Sheet1_populaiton": 4685, "Sheet1_income": 40509, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.019168240253961, 31.544786337605224 ], [ -98.140514729104211, 31.482831342028991 ], [ -98.180963558720947, 31.463005743444594 ], [ -98.27341802641638, 31.415919946806657 ], [ -98.417878132190481, 31.619132332296708 ], [ -98.302310047571197, 31.636479731058053 ], [ -98.284974834878298, 31.775258921148822 ], [ -98.163628346028062, 31.849604915840303 ], [ -98.117401112180346, 31.824822917609808 ], [ -98.007611431792043, 31.725694924687833 ], [ -97.834259304863124, 31.767824321679672 ], [ -97.764918454091557, 31.673652728403795 ], [ -97.799588879477341, 31.65630532964245 ], [ -98.019168240253961, 31.544786337605224 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOLLAND", "zip": "76534", "state": "TX", "Sheet1_value": 69, "Sheet1_populaiton": 2185, "Sheet1_income": 49375, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.452884625619504, 30.848412187328339 ], [ -97.423992604464686, 30.922758182019823 ], [ -97.400878987540835, 30.984713177596056 ], [ -97.331538136769268, 30.957452979542513 ], [ -97.262197285997701, 30.875672385381883 ], [ -97.291089307152518, 30.816195589628698 ], [ -97.452884625619504, 30.848412187328339 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JARRELL", "zip": "76537", "state": "TX", "Sheet1_value": 236, "Sheet1_populaiton": 4075, "Sheet1_income": 54479, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.626236752548422, 30.870715985735785 ], [ -97.53956068908397, 30.838499388036141 ], [ -97.53956068908397, 30.774066192636859 ], [ -97.632015156779389, 30.774066192636859 ], [ -97.724469624474807, 30.759196993698559 ], [ -97.626236752548422, 30.870715985735785 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JONESBORO", "zip": "76538", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 51250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.886264942941793, 31.542308137782175 ], [ -98.019168240253961, 31.544786337605224 ], [ -97.799588879477341, 31.65630532964245 ], [ -97.759140049860591, 31.505135140436437 ], [ -97.886264942941793, 31.542308137782175 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KEMPNER", "zip": "76539", "state": "TX", "Sheet1_value": 162, "Sheet1_populaiton": 8042, "Sheet1_income": 56696, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.909378559865644, 31.034277174057046 ], [ -98.140514729104211, 31.031798974233997 ], [ -98.053838665639745, 31.116057768217676 ], [ -97.91515696409661, 31.064015571933638 ], [ -97.909378559865644, 31.034277174057046 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILLEEN", "zip": "76541", "state": "TX", "Sheet1_value": 510, "Sheet1_populaiton": 18976, "Sheet1_income": 28946, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.707134411781908, 31.128448767332923 ], [ -97.718691220243841, 31.091275769987181 ], [ -97.747583241398658, 31.10862316874853 ], [ -97.753361645629624, 31.10862316874853 ], [ -97.707134411781908, 31.128448767332923 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILLEEN", "zip": "76542", "state": "TX", "Sheet1_value": 1082, "Sheet1_populaiton": 40797, "Sheet1_income": 57884, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.828480900632158, 30.910367182904576 ], [ -97.909378559865644, 31.034277174057046 ], [ -97.91515696409661, 31.064015571933638 ], [ -97.886264942941793, 31.081362970694983 ], [ -97.753361645629624, 30.964887579011663 ], [ -97.747583241398658, 31.10862316874853 ], [ -97.718691220243841, 31.091275769987181 ], [ -97.684020794858057, 31.073928371225836 ], [ -97.649350369472273, 31.009495175826551 ], [ -97.730248028705773, 30.890541584320179 ], [ -97.828480900632158, 30.910367182904576 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILLEEN", "zip": "76543", "state": "TX", "Sheet1_value": 777, "Sheet1_populaiton": 29588, "Sheet1_income": 39704, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.620458348317456, 31.083841170518035 ], [ -97.684020794858057, 31.073928371225836 ], [ -97.718691220243841, 31.091275769987181 ], [ -97.707134411781908, 31.128448767332923 ], [ -97.620458348317456, 31.118535968040725 ], [ -97.620458348317456, 31.083841170518035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILLEEN", "zip": "76544", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41700, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.597344731393605, 31.111101368571578 ], [ -97.620458348317456, 31.118535968040725 ], [ -97.707134411781908, 31.128448767332923 ], [ -97.753361645629624, 31.10862316874853 ], [ -97.880486538710826, 31.083841170518035 ], [ -97.903600155634678, 31.267227957423692 ], [ -97.880486538710826, 31.284575356185037 ], [ -97.793810475246374, 31.391137948576162 ], [ -97.568452710238773, 31.242445959193198 ], [ -97.643571965241307, 31.205272961847456 ], [ -97.528003880622038, 31.145796166094271 ], [ -97.597344731393605, 31.111101368571578 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARKER HEIGHTS", "zip": "76548", "state": "TX", "Sheet1_value": 659, "Sheet1_populaiton": 26965, "Sheet1_income": 63792, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.591566327162639, 31.024364374764847 ], [ -97.649350369472273, 31.009495175826551 ], [ -97.684020794858057, 31.073928371225836 ], [ -97.620458348317456, 31.083841170518035 ], [ -97.632015156779389, 31.05162457281839 ], [ -97.591566327162639, 31.024364374764847 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KILLEEN", "zip": "76549", "state": "TX", "Sheet1_value": 1026, "Sheet1_populaiton": 48388, "Sheet1_income": 52400, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.880486538710826, 31.083841170518035 ], [ -97.753361645629624, 31.10862316874853 ], [ -97.747583241398658, 31.10862316874853 ], [ -97.753361645629624, 30.964887579011663 ], [ -97.886264942941793, 31.081362970694983 ], [ -97.880486538710826, 31.083841170518035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAMPASAS", "zip": "76550", "state": "TX", "Sheet1_value": 376, "Sheet1_populaiton": 11814, "Sheet1_income": 45526, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 31.029320774410948 ], [ -98.23296919679963, 31.220142160785752 ], [ -98.053838665639745, 31.116057768217676 ], [ -98.140514729104211, 31.031798974233997 ], [ -98.163628346028062, 31.031798974233997 ], [ -98.440991749114332, 31.029320774410948 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LITTLE RIVER", "zip": "76554", "state": "TX", "Sheet1_value": 61, "Sheet1_populaiton": 1955, "Sheet1_income": 48241, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.337316541000234, 30.979756777949959 ], [ -97.331538136769268, 30.957452979542513 ], [ -97.400878987540835, 30.984713177596056 ], [ -97.395100583309869, 30.994625976888255 ], [ -97.337316541000234, 30.997104176711304 ], [ -97.337316541000234, 30.979756777949959 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILANO", "zip": "76556", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39375, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.620794416360695, 30.731936795645016 ], [ -96.875044202523114, 30.600592205023396 ], [ -96.950163457525647, 30.774066192636859 ], [ -96.75947611790383, 30.826108388920893 ], [ -96.678578458670344, 30.843455787682242 ], [ -96.620794416360695, 30.731936795645016 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOODY", "zip": "76557", "state": "TX", "Sheet1_value": 165, "Sheet1_populaiton": 4877, "Sheet1_income": 47384, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.441327817157571, 31.185447363263059 ], [ -97.464441434081436, 31.163143564855616 ], [ -97.528003880622038, 31.145796166094271 ], [ -97.643571965241307, 31.205272961847456 ], [ -97.568452710238773, 31.242445959193198 ], [ -97.528003880622038, 31.26474975760064 ], [ -97.481776646774321, 31.289531755831135 ], [ -97.423992604464686, 31.331661152822974 ], [ -97.291089307152518, 31.398572548045308 ], [ -97.256418881766734, 31.388659748753113 ], [ -97.262197285997701, 31.336617552469075 ], [ -97.279532498690585, 31.27961895653894 ], [ -97.389322179078903, 31.200316562201358 ], [ -97.441327817157571, 31.185447363263059 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NOLANVILLE", "zip": "76559", "state": "TX", "Sheet1_value": 126, "Sheet1_populaiton": 4898, "Sheet1_income": 53687, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.632015156779389, 31.05162457281839 ], [ -97.620458348317456, 31.083841170518035 ], [ -97.620458348317456, 31.118535968040725 ], [ -97.597344731393605, 31.111101368571578 ], [ -97.632015156779389, 31.05162457281839 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OGLESBY", "zip": "76561", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.510668667929139, 31.510091540082534 ], [ -97.423992604464686, 31.331661152822974 ], [ -97.481776646774321, 31.289531755831135 ], [ -97.585787922931672, 31.341573952115173 ], [ -97.678242390627091, 31.465483943267643 ], [ -97.57423111446974, 31.517526139551684 ], [ -97.510668667929139, 31.510091540082534 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POTTSVILLE", "zip": "76565", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31364, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.417878132190481, 31.619132332296708 ], [ -98.458326961807217, 31.676130928226844 ], [ -98.464105366038183, 31.683565527695993 ], [ -98.284974834878298, 31.775258921148822 ], [ -98.302310047571197, 31.636479731058053 ], [ -98.417878132190481, 31.619132332296708 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PURMELA", "zip": "76566", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50962, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.140514729104211, 31.482831342028991 ], [ -98.019168240253961, 31.544786337605224 ], [ -97.886264942941793, 31.542308137782175 ], [ -97.91515696409661, 31.378746949460915 ], [ -98.140514729104211, 31.482831342028991 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKDALE", "zip": "76567", "state": "TX", "Sheet1_value": 276, "Sheet1_populaiton": 9097, "Sheet1_income": 36453, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.875044202523114, 30.600592205023396 ], [ -96.961720265987566, 30.555984608208508 ], [ -97.048396329452032, 30.51137701139362 ], [ -97.083066754837816, 30.709632997237573 ], [ -97.013725904066249, 30.759196993698559 ], [ -96.950163457525647, 30.774066192636859 ], [ -96.875044202523114, 30.600592205023396 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROGERS", "zip": "76569", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 1943, "Sheet1_income": 57955, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262197285997701, 30.878150585204931 ], [ -97.262197285997701, 30.875672385381883 ], [ -97.331538136769268, 30.957452979542513 ], [ -97.337316541000234, 30.979756777949959 ], [ -97.123515584454566, 31.034277174057046 ], [ -97.100401967530701, 30.972322178480809 ], [ -97.262197285997701, 30.878150585204931 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROSEBUD", "zip": "76570", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 2856, "Sheet1_income": 31691, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.07728835060685, 30.984713177596056 ], [ -97.100401967530701, 30.972322178480809 ], [ -97.123515584454566, 31.034277174057046 ], [ -97.135072392916499, 31.078884770871937 ], [ -96.927049840601796, 31.217663960962703 ], [ -96.828816968675397, 31.111101368571578 ], [ -97.07728835060685, 30.984713177596056 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SALADO", "zip": "76571", "state": "TX", "Sheet1_value": 220, "Sheet1_populaiton": 5747, "Sheet1_income": 92222, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.452884625619504, 30.848412187328339 ], [ -97.53956068908397, 30.838499388036141 ], [ -97.626236752548422, 30.870715985735785 ], [ -97.730248028705773, 30.890541584320179 ], [ -97.649350369472273, 31.009495175826551 ], [ -97.591566327162639, 31.024364374764847 ], [ -97.423992604464686, 30.922758182019823 ], [ -97.452884625619504, 30.848412187328339 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TAYLOR", "zip": "76574", "state": "TX", "Sheet1_value": 735, "Sheet1_populaiton": 18037, "Sheet1_income": 45011, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.499111859467206, 30.476682213870927 ], [ -97.522225476391071, 30.630330602899992 ], [ -97.470219838312403, 30.635287002546089 ], [ -97.250640477535768, 30.692285598476225 ], [ -97.227526860611917, 30.630330602899992 ], [ -97.291089307152518, 30.541115409270212 ], [ -97.487555051005288, 30.471725814224829 ], [ -97.499111859467206, 30.476682213870927 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THORNDALE", "zip": "76577", "state": "TX", "Sheet1_value": 108, "Sheet1_populaiton": 3349, "Sheet1_income": 45855, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.048396329452032, 30.51137701139362 ], [ -97.152407605609383, 30.456856615286533 ], [ -97.227526860611917, 30.630330602899992 ], [ -97.250640477535768, 30.692285598476225 ], [ -97.083066754837816, 30.709632997237573 ], [ -97.048396329452032, 30.51137701139362 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THRALL", "zip": "76578", "state": "TX", "Sheet1_value": 90, "Sheet1_populaiton": 1709, "Sheet1_income": 57857, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.152407605609383, 30.456856615286533 ], [ -97.192856435226133, 30.446943815994334 ], [ -97.291089307152518, 30.541115409270212 ], [ -97.227526860611917, 30.630330602899992 ], [ -97.152407605609383, 30.456856615286533 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TROY", "zip": "76579", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 4628, "Sheet1_income": 63942, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.227526860611917, 31.210229361493553 ], [ -97.175521222533234, 31.130926967155972 ], [ -97.348873349462153, 31.19040376290916 ], [ -97.389322179078903, 31.200316562201358 ], [ -97.279532498690585, 31.27961895653894 ], [ -97.227526860611917, 31.210229361493553 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABBOTT", "zip": "76621", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 1021, "Sheet1_income": 57361, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 31.839692116548107 ], [ -97.163964414071302, 31.802519119202366 ], [ -97.163964414071302, 31.891734312832142 ], [ -97.019504308297215, 31.938820109470083 ], [ -96.996390691373364, 31.931385510000936 ], [ -97.019504308297215, 31.839692116548107 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AQUILLA", "zip": "76622", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42231, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.163964414071302, 31.802519119202366 ], [ -97.227526860611917, 31.772780721325773 ], [ -97.279532498690585, 31.745520523272226 ], [ -97.371986966386004, 31.866952314601651 ], [ -97.233305264842869, 31.948732908762281 ], [ -97.163964414071302, 31.891734312832142 ], [ -97.163964414071302, 31.802519119202366 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AXTELL", "zip": "76624", "state": "TX", "Sheet1_value": 71, "Sheet1_populaiton": 2150, "Sheet1_income": 49863, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.932828244832749, 31.708347525926488 ], [ -96.886601010985046, 31.641436130704154 ], [ -96.961720265987566, 31.577002935304868 ], [ -97.0368395209901, 31.653827129819398 ], [ -97.019504308297215, 31.730651324333934 ], [ -96.979055478680465, 31.772780721325773 ], [ -96.973277074449499, 31.765346121856624 ], [ -96.932828244832749, 31.708347525926488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLOOMING GROVE", "zip": "76626", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 1841, "Sheet1_income": 49364, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.591902395205892, 32.010687904338518 ], [ -96.638129629053594, 31.973514906992776 ], [ -96.771032926365763, 32.134597895490984 ], [ -96.747919309441912, 32.146988894606231 ], [ -96.701692075594195, 32.171770892836726 ], [ -96.690135267132263, 32.174249092659778 ], [ -96.667021650208412, 32.171770892836726 ], [ -96.603459203667811, 32.03299170274596 ], [ -96.591902395205892, 32.010687904338518 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLUM", "zip": "76627", "state": "TX", "Sheet1_value": 82, "Sheet1_populaiton": 1616, "Sheet1_income": 42917, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.487555051005288, 32.02555710327681 ], [ -97.475998242543355, 32.174249092659778 ], [ -97.360430157924085, 32.208943890182468 ], [ -97.29686771138347, 32.206465690359423 ], [ -97.267975690228667, 32.06768650026865 ], [ -97.256418881766734, 32.045382701861207 ], [ -97.429771008695653, 32.028035303099863 ], [ -97.487555051005288, 32.02555710327681 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BREMOND", "zip": "76629", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 49583, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.615016012129743, 31.121014167863777 ], [ -96.771032926365763, 31.002060576357405 ], [ -96.828816968675397, 31.106144968925477 ], [ -96.597680799436844, 31.220142160785752 ], [ -96.53989675712721, 31.247402358839295 ], [ -96.505226331741426, 31.158187165209519 ], [ -96.615016012129743, 31.121014167863777 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRUCEVILLE", "zip": "76630", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 1567, "Sheet1_income": 47857, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175521222533234, 31.331661152822974 ], [ -97.227526860611917, 31.304400954769431 ], [ -97.262197285997701, 31.336617552469075 ], [ -97.256418881766734, 31.388659748753113 ], [ -97.175521222533234, 31.331661152822974 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BYNUM", "zip": "76631", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 66964, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.875044202523114, 31.978471306638873 ], [ -96.996390691373364, 31.931385510000936 ], [ -97.019504308297215, 31.938820109470083 ], [ -96.984833882911431, 32.04042630221511 ], [ -96.875044202523114, 31.978471306638873 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHILTON", "zip": "76632", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1407, "Sheet1_income": 33371, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.955941861756614, 31.366355950345667 ], [ -96.961720265987566, 31.274662556892839 ], [ -97.227526860611917, 31.210229361493553 ], [ -97.279532498690585, 31.27961895653894 ], [ -97.227526860611917, 31.304400954769431 ], [ -97.175521222533234, 31.331661152822974 ], [ -97.042617925221066, 31.398572548045308 ], [ -97.019504308297215, 31.410963547160556 ], [ -96.955941861756614, 31.366355950345667 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHINA SPRING", "zip": "76633", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 6072, "Sheet1_income": 68618, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.302646115614436, 31.601784933535363 ], [ -97.343094945231186, 31.616654132473659 ], [ -97.337316541000234, 31.718260325218687 ], [ -97.279532498690585, 31.745520523272226 ], [ -97.262197285997701, 31.693478326988192 ], [ -97.273754094459619, 31.596828533889262 ], [ -97.302646115614436, 31.601784933535363 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLIFTON", "zip": "76634", "state": "TX", "Sheet1_value": 280, "Sheet1_populaiton": 6488, "Sheet1_income": 47315, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.337316541000234, 31.718260325218687 ], [ -97.666685582165172, 31.703391126280387 ], [ -97.672463986396139, 31.812431918494561 ], [ -97.412435796002754, 31.90908171159349 ], [ -97.371986966386004, 31.866952314601651 ], [ -97.279532498690585, 31.745520523272226 ], [ -97.337316541000234, 31.718260325218687 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COOLIDGE", "zip": "76635", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29327, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.574567182512993, 31.802519119202366 ], [ -96.597680799436844, 31.65630532964245 ], [ -96.620794416360695, 31.658783529465499 ], [ -96.84037377713733, 31.755433322564425 ], [ -96.719027288287094, 31.814910118317613 ], [ -96.574567182512993, 31.802519119202366 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COVINGTON", "zip": "76636", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244862073304802, 32.072642899914754 ], [ -97.267975690228667, 32.06768650026865 ], [ -97.29686771138347, 32.206465690359423 ], [ -97.221748456380951, 32.196552891067221 ], [ -97.244862073304802, 32.072642899914754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CRANFILLS GAP", "zip": "76637", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42292, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.666685582165172, 31.703391126280387 ], [ -97.764918454091557, 31.673652728403795 ], [ -97.834259304863124, 31.767824321679672 ], [ -97.874708134479874, 31.829779317255909 ], [ -97.764918454091557, 31.879343313716895 ], [ -97.672463986396139, 31.812431918494561 ], [ -97.666685582165172, 31.703391126280387 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CRAWFORD", "zip": "76638", "state": "TX", "Sheet1_value": 89, "Sheet1_populaiton": 3083, "Sheet1_income": 77679, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.57423111446974, 31.517526139551684 ], [ -97.343094945231186, 31.616654132473659 ], [ -97.302646115614436, 31.601784933535363 ], [ -97.331538136769268, 31.537351738136078 ], [ -97.510668667929139, 31.510091540082534 ], [ -97.57423111446974, 31.517526139551684 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DAWSON", "zip": "76639", "state": "TX", "Sheet1_value": 61, "Sheet1_populaiton": 1449, "Sheet1_income": 32778, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.719027288287094, 31.814910118317613 ], [ -96.794146543289628, 31.923950910531786 ], [ -96.79992494752058, 31.931385510000936 ], [ -96.684356862901311, 31.938820109470083 ], [ -96.522561544434325, 31.889256113009093 ], [ -96.574567182512993, 31.802519119202366 ], [ -96.719027288287094, 31.814910118317613 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELM MOTT", "zip": "76640", "state": "TX", "Sheet1_value": 88, "Sheet1_populaiton": 3183, "Sheet1_income": 37651, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.0368395209901, 31.653827129819398 ], [ -97.135072392916499, 31.705869326103439 ], [ -97.019504308297215, 31.730651324333934 ], [ -97.0368395209901, 31.653827129819398 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FROST", "zip": "76641", "state": "TX", "Sheet1_value": 70, "Sheet1_populaiton": 1724, "Sheet1_income": 40238, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.638129629053594, 31.973514906992776 ], [ -96.684356862901311, 31.938820109470083 ], [ -96.79992494752058, 31.931385510000936 ], [ -96.834595372906364, 31.980949506461922 ], [ -96.886601010985046, 32.062730100622552 ], [ -96.846152181368296, 32.099903097968294 ], [ -96.771032926365763, 32.134597895490984 ], [ -96.638129629053594, 31.973514906992776 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GROESBECK", "zip": "76642", "state": "TX", "Sheet1_value": 181, "Sheet1_populaiton": 7273, "Sheet1_income": 42778, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.672800054439378, 31.467962143090695 ], [ -96.736362500979979, 31.430789145744953 ], [ -96.79992494752058, 31.522482539197782 ], [ -96.823038564444431, 31.549742737251325 ], [ -96.620794416360695, 31.658783529465499 ], [ -96.597680799436844, 31.65630532964245 ], [ -96.476334310586608, 31.537351738136078 ], [ -96.38387984289119, 31.626566931765858 ], [ -96.308760587888656, 31.522482539197782 ], [ -96.378101438660224, 31.440701945037148 ], [ -96.672800054439378, 31.467962143090695 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEWITT", "zip": "76643", "state": "TX", "Sheet1_value": 423, "Sheet1_populaiton": 13724, "Sheet1_income": 66898, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.192856435226133, 31.420876346452754 ], [ -97.215970052149984, 31.450614744329346 ], [ -97.15818600984035, 31.482831342028991 ], [ -97.192856435226133, 31.420876346452754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HILLSBORO", "zip": "76645", "state": "TX", "Sheet1_value": 429, "Sheet1_populaiton": 11339, "Sheet1_income": 32234, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 31.938820109470083 ], [ -97.163964414071302, 31.891734312832142 ], [ -97.233305264842869, 31.948732908762281 ], [ -97.256418881766734, 32.045382701861207 ], [ -97.267975690228667, 32.06768650026865 ], [ -97.244862073304802, 32.072642899914754 ], [ -97.048396329452032, 32.161858093544531 ], [ -96.944385053294681, 32.052817301330357 ], [ -96.984833882911431, 32.04042630221511 ], [ -97.019504308297215, 31.938820109470083 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUBBARD", "zip": "76648", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39833, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.84037377713733, 31.755433322564425 ], [ -96.898157819446965, 31.814910118317613 ], [ -96.846152181368296, 31.879343313716895 ], [ -96.794146543289628, 31.923950910531786 ], [ -96.719027288287094, 31.814910118317613 ], [ -96.84037377713733, 31.755433322564425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IREDELL", "zip": "76649", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.759140049860591, 31.990862305754121 ], [ -97.764918454091557, 31.879343313716895 ], [ -97.874708134479874, 31.829779317255909 ], [ -98.007611431792043, 32.01812250380766 ], [ -97.863151326017942, 32.087512098853047 ], [ -97.845816113325043, 32.094946698322197 ], [ -97.782253666784442, 32.01812250380766 ], [ -97.759140049860591, 31.990862305754121 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ITALY", "zip": "76651", "state": "TX", "Sheet1_value": 147, "Sheet1_populaiton": 3247, "Sheet1_income": 50457, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.771032926365763, 32.134597895490984 ], [ -96.846152181368296, 32.099903097968294 ], [ -96.996390691373364, 32.273377085581757 ], [ -96.961720265987566, 32.270898885758704 ], [ -96.92127143637083, 32.24611688752821 ], [ -96.811481755982513, 32.226291288943813 ], [ -96.747919309441912, 32.146988894606231 ], [ -96.771032926365763, 32.134597895490984 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KOPPERL", "zip": "76652", "state": "TX", "Sheet1_value": 53, "Sheet1_populaiton": 958, "Sheet1_income": 37647, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.487555051005288, 32.02555710327681 ], [ -97.724469624474807, 32.156901693898433 ], [ -97.632015156779389, 32.206465690359423 ], [ -97.61467994408649, 32.20398749053637 ], [ -97.475998242543355, 32.174249092659778 ], [ -97.487555051005288, 32.02555710327681 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KOSSE", "zip": "76653", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37303, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.412771864046007, 31.311835554238581 ], [ -96.53989675712721, 31.247402358839295 ], [ -96.597680799436844, 31.220142160785752 ], [ -96.713248884056128, 31.391137948576162 ], [ -96.730584096749013, 31.420876346452754 ], [ -96.736362500979979, 31.430789145744953 ], [ -96.672800054439378, 31.467962143090695 ], [ -96.412771864046007, 31.311835554238581 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LORENA", "zip": "76655", "state": "TX", "Sheet1_value": 271, "Sheet1_populaiton": 9000, "Sheet1_income": 75104, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.291089307152518, 31.398572548045308 ], [ -97.291089307152518, 31.450614744329346 ], [ -97.215970052149984, 31.450614744329346 ], [ -97.192856435226133, 31.420876346452754 ], [ -97.042617925221066, 31.398572548045308 ], [ -97.175521222533234, 31.331661152822974 ], [ -97.256418881766734, 31.388659748753113 ], [ -97.291089307152518, 31.398572548045308 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOTT", "zip": "76656", "state": "TX", "Sheet1_value": 68, "Sheet1_populaiton": 2595, "Sheet1_income": 38456, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.227526860611917, 31.210229361493553 ], [ -96.961720265987566, 31.274662556892839 ], [ -96.92127143637083, 31.252358758485393 ], [ -96.927049840601796, 31.217663960962703 ], [ -97.135072392916499, 31.078884770871937 ], [ -97.175521222533234, 31.130926967155972 ], [ -97.227526860611917, 31.210229361493553 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC GREGOR", "zip": "76657", "state": "TX", "Sheet1_value": 264, "Sheet1_populaiton": 8970, "Sheet1_income": 62058, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.423992604464686, 31.331661152822974 ], [ -97.510668667929139, 31.510091540082534 ], [ -97.331538136769268, 31.537351738136078 ], [ -97.291089307152518, 31.450614744329346 ], [ -97.291089307152518, 31.398572548045308 ], [ -97.423992604464686, 31.331661152822974 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MALONE", "zip": "76660", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41818, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.794146543289628, 31.923950910531786 ], [ -96.846152181368296, 31.879343313716895 ], [ -96.996390691373364, 31.931385510000936 ], [ -96.875044202523114, 31.978471306638873 ], [ -96.834595372906364, 31.980949506461922 ], [ -96.79992494752058, 31.931385510000936 ], [ -96.794146543289628, 31.923950910531786 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARLIN", "zip": "76661", "state": "TX", "Sheet1_value": 228, "Sheet1_populaiton": 7984, "Sheet1_income": 28346, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.961720265987566, 31.274662556892839 ], [ -96.955941861756614, 31.366355950345667 ], [ -96.730584096749013, 31.420876346452754 ], [ -96.713248884056128, 31.391137948576162 ], [ -96.92127143637083, 31.252358758485393 ], [ -96.961720265987566, 31.274662556892839 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MART", "zip": "76664", "state": "TX", "Sheet1_value": 78, "Sheet1_populaiton": 3258, "Sheet1_income": 34983, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.79992494752058, 31.522482539197782 ], [ -96.857708989830229, 31.492744141321189 ], [ -96.938606649063715, 31.554699136897423 ], [ -96.961720265987566, 31.577002935304868 ], [ -96.886601010985046, 31.641436130704154 ], [ -96.823038564444431, 31.549742737251325 ], [ -96.79992494752058, 31.522482539197782 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERIDIAN", "zip": "76665", "state": "TX", "Sheet1_value": 113, "Sheet1_populaiton": 2615, "Sheet1_income": 42616, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 31.812431918494561 ], [ -97.764918454091557, 31.879343313716895 ], [ -97.759140049860591, 31.990862305754121 ], [ -97.400878987540835, 31.956167508231427 ], [ -97.412435796002754, 31.90908171159349 ], [ -97.672463986396139, 31.812431918494561 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERTENS", "zip": "76666", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.984833882911431, 32.04042630221511 ], [ -96.944385053294681, 32.052817301330357 ], [ -96.886601010985046, 32.062730100622552 ], [ -96.834595372906364, 31.980949506461922 ], [ -96.875044202523114, 31.978471306638873 ], [ -96.984833882911431, 32.04042630221511 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MEXIA", "zip": "76667", "state": "TX", "Sheet1_value": 343, "Sheet1_populaiton": 11407, "Sheet1_income": 36663, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.38387984289119, 31.626566931765858 ], [ -96.476334310586608, 31.537351738136078 ], [ -96.597680799436844, 31.65630532964245 ], [ -96.574567182512993, 31.802519119202366 ], [ -96.49944792751046, 31.797562719556268 ], [ -96.464777502124676, 31.745520523272226 ], [ -96.38387984289119, 31.626566931765858 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILFORD", "zip": "76670", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 1268, "Sheet1_income": 49667, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.886601010985046, 32.062730100622552 ], [ -96.944385053294681, 32.052817301330357 ], [ -97.048396329452032, 32.161858093544531 ], [ -97.071509946375883, 32.243638687705158 ], [ -97.048396329452032, 32.275855285404802 ], [ -96.996390691373364, 32.273377085581757 ], [ -96.846152181368296, 32.099903097968294 ], [ -96.886601010985046, 32.062730100622552 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MORGAN", "zip": "76671", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 2063, "Sheet1_income": 46509, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.782253666784442, 32.01812250380766 ], [ -97.712912816012874, 32.04786090168426 ], [ -97.805367283708307, 32.119728696552691 ], [ -97.724469624474807, 32.156901693898433 ], [ -97.487555051005288, 32.02555710327681 ], [ -97.429771008695653, 32.028035303099863 ], [ -97.400878987540835, 31.956167508231427 ], [ -97.759140049860591, 31.990862305754121 ], [ -97.782253666784442, 32.01812250380766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOUNT CALM", "zip": "76673", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48571, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.84037377713733, 31.755433322564425 ], [ -96.932828244832749, 31.708347525926488 ], [ -96.973277074449499, 31.765346121856624 ], [ -96.898157819446965, 31.814910118317613 ], [ -96.84037377713733, 31.755433322564425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OTTO", "zip": "76675", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 31.410963547160556 ], [ -96.857708989830229, 31.492744141321189 ], [ -96.79992494752058, 31.522482539197782 ], [ -96.736362500979979, 31.430789145744953 ], [ -96.730584096749013, 31.420876346452754 ], [ -96.955941861756614, 31.366355950345667 ], [ -97.019504308297215, 31.410963547160556 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PENELOPE", "zip": "76676", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41333, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.979055478680465, 31.772780721325773 ], [ -97.019504308297215, 31.839692116548107 ], [ -96.996390691373364, 31.931385510000936 ], [ -96.846152181368296, 31.879343313716895 ], [ -96.898157819446965, 31.814910118317613 ], [ -96.973277074449499, 31.765346121856624 ], [ -96.979055478680465, 31.772780721325773 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PRAIRIE HILL", "zip": "76678", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 19286, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.823038564444431, 31.549742737251325 ], [ -96.886601010985046, 31.641436130704154 ], [ -96.932828244832749, 31.708347525926488 ], [ -96.84037377713733, 31.755433322564425 ], [ -96.620794416360695, 31.658783529465499 ], [ -96.823038564444431, 31.549742737251325 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PURDON", "zip": "76679", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 1356, "Sheet1_income": 35694, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.476334310586608, 31.968558507346675 ], [ -96.522561544434325, 31.889256113009093 ], [ -96.684356862901311, 31.938820109470083 ], [ -96.638129629053594, 31.973514906992776 ], [ -96.591902395205892, 32.010687904338518 ], [ -96.476334310586608, 31.968558507346675 ] ] ] } },
{ "type": "Feature", "properties": { "name": "REAGAN", "zip": "76680", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55956, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.927049840601796, 31.217663960962703 ], [ -96.92127143637083, 31.252358758485393 ], [ -96.713248884056128, 31.391137948576162 ], [ -96.597680799436844, 31.220142160785752 ], [ -96.828816968675397, 31.106144968925477 ], [ -96.828816968675397, 31.111101368571578 ], [ -96.927049840601796, 31.217663960962703 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHLAND", "zip": "76681", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40577, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.522561544434325, 31.889256113009093 ], [ -96.476334310586608, 31.968558507346675 ], [ -96.354987821736358, 31.936341909647034 ], [ -96.366544630198291, 31.859517715132501 ], [ -96.49944792751046, 31.797562719556268 ], [ -96.574567182512993, 31.802519119202366 ], [ -96.522561544434325, 31.889256113009093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIESEL", "zip": "76682", "state": "TX", "Sheet1_value": 69, "Sheet1_populaiton": 2675, "Sheet1_income": 40234, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 31.410963547160556 ], [ -97.048396329452032, 31.517526139551684 ], [ -96.938606649063715, 31.554699136897423 ], [ -96.857708989830229, 31.492744141321189 ], [ -97.019504308297215, 31.410963547160556 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THORNTON", "zip": "76687", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48032, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.320317396350589, 31.356443151053469 ], [ -96.412771864046007, 31.311835554238581 ], [ -96.672800054439378, 31.467962143090695 ], [ -96.378101438660224, 31.440701945037148 ], [ -96.320317396350589, 31.356443151053469 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VALLEY MILLS", "zip": "76689", "state": "TX", "Sheet1_value": 159, "Sheet1_populaiton": 3721, "Sheet1_income": 49722, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.799588879477341, 31.65630532964245 ], [ -97.764918454091557, 31.673652728403795 ], [ -97.666685582165172, 31.703391126280387 ], [ -97.337316541000234, 31.718260325218687 ], [ -97.343094945231186, 31.616654132473659 ], [ -97.57423111446974, 31.517526139551684 ], [ -97.678242390627091, 31.465483943267643 ], [ -97.759140049860591, 31.505135140436437 ], [ -97.799588879477341, 31.65630532964245 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WALNUT SPRINGS", "zip": "76690", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 1012, "Sheet1_income": 39022, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.845816113325043, 32.094946698322197 ], [ -97.805367283708307, 32.119728696552691 ], [ -97.712912816012874, 32.04786090168426 ], [ -97.782253666784442, 32.01812250380766 ], [ -97.845816113325043, 32.094946698322197 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEST", "zip": "76691", "state": "TX", "Sheet1_value": 178, "Sheet1_populaiton": 6165, "Sheet1_income": 50000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.019504308297215, 31.730651324333934 ], [ -97.135072392916499, 31.705869326103439 ], [ -97.227526860611917, 31.772780721325773 ], [ -97.163964414071302, 31.802519119202366 ], [ -97.019504308297215, 31.839692116548107 ], [ -96.979055478680465, 31.772780721325773 ], [ -97.019504308297215, 31.730651324333934 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITNEY", "zip": "76692", "state": "TX", "Sheet1_value": 399, "Sheet1_populaiton": 9848, "Sheet1_income": 42965, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.400878987540835, 31.956167508231427 ], [ -97.429771008695653, 32.028035303099863 ], [ -97.256418881766734, 32.045382701861207 ], [ -97.233305264842869, 31.948732908762281 ], [ -97.371986966386004, 31.866952314601651 ], [ -97.412435796002754, 31.90908171159349 ], [ -97.400878987540835, 31.956167508231427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WORTHAM", "zip": "76693", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 1504, "Sheet1_income": 37661, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.49944792751046, 31.797562719556268 ], [ -96.366544630198291, 31.859517715132501 ], [ -96.256754949809988, 31.824822917609808 ], [ -96.250976545579022, 31.787649920264069 ], [ -96.464777502124676, 31.745520523272226 ], [ -96.49944792751046, 31.797562719556268 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76701", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1715, "Sheet1_income": 25372, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.123515584454566, 31.559655536543524 ], [ -97.146629201378417, 31.537351738136078 ], [ -97.152407605609383, 31.542308137782175 ], [ -97.135072392916499, 31.564611936189621 ], [ -97.123515584454566, 31.559655536543524 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76704", "state": "TX", "Sheet1_value": 180, "Sheet1_populaiton": 8097, "Sheet1_income": 17166, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 31.599306733712311 ], [ -97.088845159068782, 31.552220937074374 ], [ -97.123515584454566, 31.559655536543524 ], [ -97.135072392916499, 31.564611936189621 ], [ -97.140850797147451, 31.569568335835719 ], [ -97.15818600984035, 31.599306733712311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76705", "state": "TX", "Sheet1_value": 848, "Sheet1_populaiton": 29007, "Sheet1_income": 37609, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 31.599306733712311 ], [ -97.262197285997701, 31.693478326988192 ], [ -97.279532498690585, 31.745520523272226 ], [ -97.227526860611917, 31.772780721325773 ], [ -97.135072392916499, 31.705869326103439 ], [ -97.0368395209901, 31.653827129819398 ], [ -96.961720265987566, 31.577002935304868 ], [ -96.938606649063715, 31.554699136897423 ], [ -97.048396329452032, 31.517526139551684 ], [ -97.088845159068782, 31.552220937074374 ], [ -97.15818600984035, 31.599306733712311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76706", "state": "TX", "Sheet1_value": 819, "Sheet1_populaiton": 36055, "Sheet1_income": 26398, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 31.482831342028991 ], [ -97.15818600984035, 31.495222341144238 ], [ -97.146629201378417, 31.537351738136078 ], [ -97.123515584454566, 31.559655536543524 ], [ -97.088845159068782, 31.552220937074374 ], [ -97.048396329452032, 31.517526139551684 ], [ -97.019504308297215, 31.410963547160556 ], [ -97.042617925221066, 31.398572548045308 ], [ -97.192856435226133, 31.420876346452754 ], [ -97.15818600984035, 31.482831342028991 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76707", "state": "TX", "Sheet1_value": 495, "Sheet1_populaiton": 15501, "Sheet1_income": 32021, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.152407605609383, 31.542308137782175 ], [ -97.187078030995167, 31.547264537428276 ], [ -97.140850797147451, 31.569568335835719 ], [ -97.135072392916499, 31.564611936189621 ], [ -97.152407605609383, 31.542308137782175 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76708", "state": "TX", "Sheet1_value": 832, "Sheet1_populaiton": 26028, "Sheet1_income": 40477, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.192856435226133, 31.56709013601267 ], [ -97.273754094459619, 31.596828533889262 ], [ -97.262197285997701, 31.693478326988192 ], [ -97.15818600984035, 31.599306733712311 ], [ -97.140850797147451, 31.569568335835719 ], [ -97.187078030995167, 31.547264537428276 ], [ -97.192856435226133, 31.56709013601267 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76710", "state": "TX", "Sheet1_value": 827, "Sheet1_populaiton": 22659, "Sheet1_income": 37195, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.152407605609383, 31.542308137782175 ], [ -97.146629201378417, 31.537351738136078 ], [ -97.175521222533234, 31.502656940613385 ], [ -97.192856435226133, 31.56709013601267 ], [ -97.187078030995167, 31.547264537428276 ], [ -97.152407605609383, 31.542308137782175 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WACO", "zip": "76711", "state": "TX", "Sheet1_value": 325, "Sheet1_populaiton": 8042, "Sheet1_income": 31134, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 31.495222341144238 ], [ -97.175521222533234, 31.502656940613385 ], [ -97.146629201378417, 31.537351738136078 ], [ -97.15818600984035, 31.495222341144238 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOODWAY", "zip": "76712", "state": "TX", "Sheet1_value": 840, "Sheet1_populaiton": 24080, "Sheet1_income": 68413, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.215970052149984, 31.450614744329346 ], [ -97.291089307152518, 31.450614744329346 ], [ -97.331538136769268, 31.537351738136078 ], [ -97.302646115614436, 31.601784933535363 ], [ -97.273754094459619, 31.596828533889262 ], [ -97.192856435226133, 31.56709013601267 ], [ -97.175521222533234, 31.502656940613385 ], [ -97.15818600984035, 31.495222341144238 ], [ -97.15818600984035, 31.482831342028991 ], [ -97.215970052149984, 31.450614744329346 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNWOOD", "zip": "76801", "state": "TX", "Sheet1_value": 656, "Sheet1_populaiton": 24687, "Sheet1_income": 37180, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.041945789134573, 31.487787741675088 ], [ -99.169070682215775, 31.599306733712311 ], [ -99.041945789134573, 31.911559911416539 ], [ -98.966826534132039, 31.804997319025414 ], [ -98.903264087591438, 31.703391126280387 ], [ -98.822366428357952, 31.584437534774018 ], [ -98.98994015105589, 31.482831342028991 ], [ -99.041945789134573, 31.487787741675088 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EARLY", "zip": "76802", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 5294, "Sheet1_income": 47196, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.828144832588904, 31.740564123626129 ], [ -98.903264087591438, 31.703391126280387 ], [ -98.966826534132039, 31.804997319025414 ], [ -98.937934512977222, 31.844648516194205 ], [ -98.828144832588904, 31.740564123626129 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ART", "zip": "76820", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.961048129901073, 30.739371395114166 ], [ -98.961048129901073, 30.736893195291117 ], [ -99.15173546952289, 30.712111197060622 ], [ -99.082394618751323, 30.843455787682242 ], [ -98.961048129901073, 30.808760990159548 ], [ -98.961048129901073, 30.739371395114166 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BALLINGER", "zip": "76821", "state": "TX", "Sheet1_value": 184, "Sheet1_populaiton": 5017, "Sheet1_income": 34324, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.723797488388314, 31.577002935304868 ], [ -99.758467913774098, 31.577002935304868 ], [ -100.099393763400968, 31.718260325218687 ], [ -100.238075464944103, 31.82730111743286 ], [ -100.238075464944103, 31.852083115663355 ], [ -100.047388125322286, 31.837213916725055 ], [ -99.718019084157348, 31.899168912301292 ], [ -99.718019084157348, 31.673652728403795 ], [ -99.723797488388314, 31.577002935304868 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BANGS", "zip": "76823", "state": "TX", "Sheet1_value": 67, "Sheet1_populaiton": 3544, "Sheet1_income": 40807, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.169070682215775, 31.599306733712311 ], [ -99.203741107601559, 31.599306733712311 ], [ -99.203741107601559, 31.852083115663355 ], [ -99.197962703370592, 31.941298309293131 ], [ -99.197962703370592, 31.975993106815825 ], [ -99.041945789134573, 31.911559911416539 ], [ -99.169070682215775, 31.599306733712311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRADY", "zip": "76825", "state": "TX", "Sheet1_value": 159, "Sheet1_populaiton": 7187, "Sheet1_income": 38243, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.602450999538064, 30.940105580781168 ], [ -99.602450999538064, 30.979756777949959 ], [ -99.463769297994929, 31.024364374764847 ], [ -99.492661319149761, 31.197838362378306 ], [ -99.377093234530477, 31.212707561316606 ], [ -99.290417171066025, 31.227576760254898 ], [ -99.093951427213241, 31.133405166979024 ], [ -99.093951427213241, 31.044189973349244 ], [ -99.221076320294458, 30.940105580781168 ], [ -99.486882914918795, 30.940105580781168 ], [ -99.602450999538064, 30.940105580781168 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROOKESMITH", "zip": "76827", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 60625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.203741107601559, 31.467962143090695 ], [ -99.203741107601559, 31.599306733712311 ], [ -99.169070682215775, 31.599306733712311 ], [ -99.041945789134573, 31.487787741675088 ], [ -99.203741107601559, 31.467962143090695 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURKETT", "zip": "76828", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 26094, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.197962703370592, 31.941298309293131 ], [ -99.417542064147227, 31.983427706284971 ], [ -99.423320468378193, 32.080077499383897 ], [ -99.197962703370592, 32.080077499383897 ], [ -99.197962703370592, 31.975993106815825 ], [ -99.197962703370592, 31.941298309293131 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CASTELL", "zip": "76831", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.966826534132039, 30.635287002546089 ], [ -98.961048129901073, 30.736893195291117 ], [ -98.961048129901073, 30.739371395114166 ], [ -98.885928874898553, 30.751762394229413 ], [ -98.966826534132039, 30.635287002546089 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHEROKEE", "zip": "76832", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44464, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.625900684505169, 30.920279982196774 ], [ -98.672127918352885, 31.019407975118749 ], [ -98.602787067581318, 30.922758182019823 ], [ -98.625900684505169, 30.920279982196774 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLEMAN", "zip": "76834", "state": "TX", "Sheet1_value": 190, "Sheet1_populaiton": 5796, "Sheet1_income": 30000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.596672595307098, 31.849604915840303 ], [ -99.694905467233497, 31.894212512655194 ], [ -99.417542064147227, 31.983427706284971 ], [ -99.197962703370592, 31.941298309293131 ], [ -99.203741107601559, 31.852083115663355 ], [ -99.440655681071078, 31.747998723095279 ], [ -99.596672595307098, 31.849604915840303 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DOOLE", "zip": "76836", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.469547702225896, 31.420876346452754 ], [ -99.602450999538064, 31.341573952115173 ], [ -99.602450999538064, 31.36139955069957 ], [ -99.602450999538064, 31.492744141321189 ], [ -99.469547702225896, 31.420876346452754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDEN", "zip": "76837", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50685, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.116728976093853, 31.088797570164132 ], [ -100.116728976093853, 31.239967759370145 ], [ -99.983825678781685, 31.388659748753113 ], [ -99.874035998393367, 31.445658344683249 ], [ -99.602450999538064, 31.36139955069957 ], [ -99.602450999538064, 31.341573952115173 ], [ -99.602450999538064, 31.254836958308445 ], [ -99.602450999538064, 31.086319370341084 ], [ -100.116728976093853, 31.088797570164132 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FORT MC KAVETT", "zip": "76841", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.116728976093853, 30.878150585204931 ], [ -100.001160891474569, 30.826108388920893 ], [ -100.116728976093853, 30.808760990159548 ], [ -100.116728976093853, 30.878150585204931 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FREDONIA", "zip": "76842", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39196, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.093951427213241, 30.922758182019823 ], [ -99.093951427213241, 30.89549798396628 ], [ -99.18640589490866, 30.940105580781168 ], [ -99.093951427213241, 30.940105580781168 ], [ -99.093951427213241, 30.922758182019823 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOLDTHWAITE", "zip": "76844", "state": "TX", "Sheet1_value": 128, "Sheet1_populaiton": 3685, "Sheet1_income": 43421, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.400542919497582, 31.329182952999926 ], [ -98.562338237964568, 31.23005496007795 ], [ -98.695241535276736, 31.406007147514458 ], [ -98.845480045281803, 31.410963547160556 ], [ -98.556559833733601, 31.542308137782175 ], [ -98.400542919497582, 31.329182952999926 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOULDBUSK", "zip": "76845", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39167, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.457990893763963, 31.539829937959126 ], [ -99.411763659916261, 31.463005743444594 ], [ -99.469547702225896, 31.420876346452754 ], [ -99.602450999538064, 31.492744141321189 ], [ -99.654456637616747, 31.529917138666928 ], [ -99.457990893763963, 31.599306733712311 ], [ -99.457990893763963, 31.539829937959126 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEXT", "zip": "76848", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44167, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.486882914918795, 30.826108388920893 ], [ -99.602450999538064, 30.940105580781168 ], [ -99.486882914918795, 30.940105580781168 ], [ -99.486882914918795, 30.826108388920893 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JUNCTION", "zip": "76849", "state": "TX", "Sheet1_value": 125, "Sheet1_populaiton": 4005, "Sheet1_income": 43421, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.400206851454328, 30.288339027319171 ], [ -99.752689509543131, 30.29081722714222 ], [ -99.908706423779151, 30.29081722714222 ], [ -99.891371211086266, 30.387467020241147 ], [ -99.775803126466982, 30.501464212101421 ], [ -99.481104510687828, 30.642721602015239 ], [ -99.486882914918795, 30.50394241192447 ], [ -99.301973979527943, 30.498986012278372 ], [ -99.301973979527943, 30.285860827496123 ], [ -99.400206851454328, 30.288339027319171 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOHN", "zip": "76852", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42155, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.30775238375891, 31.415919946806657 ], [ -99.290417171066025, 31.227576760254898 ], [ -99.377093234530477, 31.212707561316606 ], [ -99.602450999538064, 31.254836958308445 ], [ -99.602450999538064, 31.341573952115173 ], [ -99.469547702225896, 31.420876346452754 ], [ -99.411763659916261, 31.463005743444594 ], [ -99.30775238375891, 31.415919946806657 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOMETA", "zip": "76853", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 33056, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.562338237964568, 31.217663960962703 ], [ -98.562338237964568, 31.23005496007795 ], [ -98.400542919497582, 31.329182952999926 ], [ -98.308088451802163, 31.383703349107012 ], [ -98.23296919679963, 31.220142160785752 ], [ -98.440991749114332, 31.029320774410948 ], [ -98.562338237964568, 31.217663960962703 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LONDON", "zip": "76854", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 20391, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.775803126466982, 30.501464212101421 ], [ -99.770024722236016, 30.712111197060622 ], [ -99.481104510687828, 30.712111197060622 ], [ -99.481104510687828, 30.642721602015239 ], [ -99.775803126466982, 30.501464212101421 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MASON", "zip": "76856", "state": "TX", "Sheet1_value": 166, "Sheet1_populaiton": 3747, "Sheet1_income": 46471, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.966826534132039, 30.635287002546089 ], [ -98.966826534132039, 30.551028208562411 ], [ -99.128621852599025, 30.498986012278372 ], [ -99.26730355414216, 30.498986012278372 ], [ -99.301973979527943, 30.498986012278372 ], [ -99.486882914918795, 30.50394241192447 ], [ -99.481104510687828, 30.642721602015239 ], [ -99.481104510687828, 30.712111197060622 ], [ -99.486882914918795, 30.826108388920893 ], [ -99.486882914918795, 30.940105580781168 ], [ -99.221076320294458, 30.940105580781168 ], [ -99.18640589490866, 30.940105580781168 ], [ -99.093951427213241, 30.89549798396628 ], [ -99.082394618751323, 30.843455787682242 ], [ -99.15173546952289, 30.712111197060622 ], [ -98.961048129901073, 30.736893195291117 ], [ -98.966826534132039, 30.635287002546089 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAY", "zip": "76857", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 2156, "Sheet1_income": 53563, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.787696002972154, 31.879343313716895 ], [ -98.937934512977222, 31.844648516194205 ], [ -98.966826534132039, 31.804997319025414 ], [ -99.041945789134573, 31.911559911416539 ], [ -99.197962703370592, 31.975993106815825 ], [ -99.197962703370592, 32.080077499383897 ], [ -99.117065044137107, 32.080077499383897 ], [ -98.926377704515289, 32.077599299560852 ], [ -98.833923236819871, 31.943776509116184 ], [ -98.805031215665053, 31.901647112124341 ], [ -98.787696002972154, 31.879343313716895 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MELVIN", "zip": "76858", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37895, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.602450999538064, 30.979756777949959 ], [ -99.602450999538064, 31.086319370341084 ], [ -99.602450999538064, 31.254836958308445 ], [ -99.377093234530477, 31.212707561316606 ], [ -99.492661319149761, 31.197838362378306 ], [ -99.463769297994929, 31.024364374764847 ], [ -99.602450999538064, 30.979756777949959 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MENARD", "zip": "76859", "state": "TX", "Sheet1_value": 94, "Sheet1_populaiton": 2035, "Sheet1_income": 30833, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.481104510687828, 30.712111197060622 ], [ -99.770024722236016, 30.712111197060622 ], [ -100.116728976093853, 30.709632997237573 ], [ -100.116728976093853, 30.808760990159548 ], [ -100.001160891474569, 30.826108388920893 ], [ -100.116728976093853, 30.878150585204931 ], [ -100.116728976093853, 31.088797570164132 ], [ -99.602450999538064, 31.086319370341084 ], [ -99.602450999538064, 30.979756777949959 ], [ -99.602450999538064, 30.940105580781168 ], [ -99.486882914918795, 30.826108388920893 ], [ -99.481104510687828, 30.712111197060622 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILES", "zip": "76861", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 2282, "Sheet1_income": 50938, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.093615359170002, 31.579481135127917 ], [ -100.110950571862887, 31.552220937074374 ], [ -100.261189081867954, 31.490265941498137 ], [ -100.284302698791805, 31.693478326988192 ], [ -100.238075464944103, 31.82730111743286 ], [ -100.099393763400968, 31.718260325218687 ], [ -100.093615359170002, 31.579481135127917 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MILLERSVIEW", "zip": "76862", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 64773, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.874035998393367, 31.445658344683249 ], [ -99.723797488388314, 31.577002935304868 ], [ -99.654456637616747, 31.529917138666928 ], [ -99.602450999538064, 31.492744141321189 ], [ -99.602450999538064, 31.36139955069957 ], [ -99.874035998393367, 31.445658344683249 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MULLIN", "zip": "76864", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47917, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.822366428357952, 31.584437534774018 ], [ -98.758803981817337, 31.688521927342091 ], [ -98.666349514121919, 31.700912926457338 ], [ -98.545003025271683, 31.718260325218687 ], [ -98.458326961807217, 31.676130928226844 ], [ -98.417878132190481, 31.619132332296708 ], [ -98.556559833733601, 31.542308137782175 ], [ -98.845480045281803, 31.410963547160556 ], [ -98.897485683360472, 31.43574554539105 ], [ -98.98994015105589, 31.482831342028991 ], [ -98.822366428357952, 31.584437534774018 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NORTON", "zip": "76865", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.128285784555786, 31.95121110858533 ], [ -100.047388125322286, 31.837213916725055 ], [ -100.238075464944103, 31.852083115663355 ], [ -100.238075464944103, 31.906603511770442 ], [ -100.128285784555786, 31.95121110858533 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PAINT ROCK", "zip": "76866", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42222, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.983825678781685, 31.388659748753113 ], [ -100.024274508398435, 31.579481135127917 ], [ -99.758467913774098, 31.577002935304868 ], [ -99.723797488388314, 31.577002935304868 ], [ -99.874035998393367, 31.445658344683249 ], [ -99.983825678781685, 31.388659748753113 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PONTOTOC", "zip": "76869", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.966826534132039, 30.922758182019823 ], [ -98.961048129901073, 30.808760990159548 ], [ -99.082394618751323, 30.843455787682242 ], [ -99.093951427213241, 30.89549798396628 ], [ -99.093951427213241, 30.922758182019823 ], [ -98.966826534132039, 30.922758182019823 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PRIDDY", "zip": "76870", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31979, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.458326961807217, 31.676130928226844 ], [ -98.545003025271683, 31.718260325218687 ], [ -98.521889408347818, 31.720738525041735 ], [ -98.464105366038183, 31.683565527695993 ], [ -98.458326961807217, 31.676130928226844 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHLAND SPRINGS", "zip": "76871", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.562338237964568, 31.217663960962703 ], [ -99.093951427213241, 31.239967759370145 ], [ -98.897485683360472, 31.43574554539105 ], [ -98.845480045281803, 31.410963547160556 ], [ -98.695241535276736, 31.406007147514458 ], [ -98.562338237964568, 31.23005496007795 ], [ -98.562338237964568, 31.217663960962703 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCHELLE", "zip": "76872", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55550, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.30775238375891, 31.415919946806657 ], [ -99.301973979527943, 31.433267345568002 ], [ -99.203741107601559, 31.467962143090695 ], [ -99.041945789134573, 31.487787741675088 ], [ -98.98994015105589, 31.482831342028991 ], [ -98.897485683360472, 31.43574554539105 ], [ -99.093951427213241, 31.239967759370145 ], [ -99.093951427213241, 31.133405166979024 ], [ -99.290417171066025, 31.227576760254898 ], [ -99.30775238375891, 31.415919946806657 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKWOOD", "zip": "76873", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 85625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.30775238375891, 31.415919946806657 ], [ -99.411763659916261, 31.463005743444594 ], [ -99.457990893763963, 31.539829937959126 ], [ -99.301973979527943, 31.433267345568002 ], [ -99.30775238375891, 31.415919946806657 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROOSEVELT", "zip": "76874", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.891371211086266, 30.387467020241147 ], [ -100.116728976093853, 30.310642825726617 ], [ -100.116728976093853, 30.709632997237573 ], [ -99.770024722236016, 30.712111197060622 ], [ -99.775803126466982, 30.501464212101421 ], [ -99.891371211086266, 30.387467020241147 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROWENA", "zip": "76875", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41146, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.758467913774098, 31.577002935304868 ], [ -100.024274508398435, 31.579481135127917 ], [ -100.093615359170002, 31.579481135127917 ], [ -100.099393763400968, 31.718260325218687 ], [ -99.758467913774098, 31.577002935304868 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN SABA", "zip": "76877", "state": "TX", "Sheet1_value": 156, "Sheet1_populaiton": 4447, "Sheet1_income": 33599, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.093951427213241, 30.922758182019823 ], [ -99.093951427213241, 30.940105580781168 ], [ -99.093951427213241, 31.044189973349244 ], [ -99.093951427213241, 31.133405166979024 ], [ -99.093951427213241, 31.239967759370145 ], [ -98.562338237964568, 31.217663960962703 ], [ -98.440991749114332, 31.029320774410948 ], [ -98.446770153345284, 30.922758182019823 ], [ -98.602787067581318, 30.922758182019823 ], [ -98.672127918352885, 31.019407975118749 ], [ -98.625900684505169, 30.920279982196774 ], [ -98.718355152200587, 30.920279982196774 ], [ -98.966826534132039, 30.922758182019823 ], [ -99.093951427213241, 30.922758182019823 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTA ANNA", "zip": "76878", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30950, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.203741107601559, 31.467962143090695 ], [ -99.301973979527943, 31.433267345568002 ], [ -99.457990893763963, 31.539829937959126 ], [ -99.457990893763963, 31.599306733712311 ], [ -99.452212489533011, 31.713303925572585 ], [ -99.440655681071078, 31.747998723095279 ], [ -99.203741107601559, 31.852083115663355 ], [ -99.203741107601559, 31.599306733712311 ], [ -99.203741107601559, 31.467962143090695 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STAR", "zip": "76880", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.400542919497582, 31.329182952999926 ], [ -98.556559833733601, 31.542308137782175 ], [ -98.417878132190481, 31.619132332296708 ], [ -98.27341802641638, 31.415919946806657 ], [ -98.308088451802163, 31.383703349107012 ], [ -98.400542919497582, 31.329182952999926 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TALPA", "zip": "76882", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 60188, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.718019084157348, 31.899168912301292 ], [ -99.694905467233497, 31.894212512655194 ], [ -99.596672595307098, 31.849604915840303 ], [ -99.614007808, 31.713303925572585 ], [ -99.718019084157348, 31.673652728403795 ], [ -99.718019084157348, 31.899168912301292 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TELEGRAPH", "zip": "76883", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.908706423779151, 30.29081722714222 ], [ -100.116728976093853, 30.29081722714222 ], [ -100.116728976093853, 30.310642825726617 ], [ -99.891371211086266, 30.387467020241147 ], [ -99.908706423779151, 30.29081722714222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VALERA", "zip": "76884", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 100735, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.452212489533011, 31.713303925572585 ], [ -99.614007808, 31.713303925572585 ], [ -99.596672595307098, 31.849604915840303 ], [ -99.440655681071078, 31.747998723095279 ], [ -99.452212489533011, 31.713303925572585 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VALLEY SPRING", "zip": "76885", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.961048129901073, 30.739371395114166 ], [ -98.961048129901073, 30.808760990159548 ], [ -98.966826534132039, 30.922758182019823 ], [ -98.718355152200587, 30.920279982196774 ], [ -98.695241535276736, 30.769109792990758 ], [ -98.885928874898553, 30.751762394229413 ], [ -98.961048129901073, 30.739371395114166 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VOCA", "zip": "76887", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 62045, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.093951427213241, 30.940105580781168 ], [ -99.18640589490866, 30.940105580781168 ], [ -99.221076320294458, 30.940105580781168 ], [ -99.093951427213241, 31.044189973349244 ], [ -99.093951427213241, 30.940105580781168 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VOSS", "zip": "76888", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 26705, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.718019084157348, 31.673652728403795 ], [ -99.614007808, 31.713303925572585 ], [ -99.452212489533011, 31.713303925572585 ], [ -99.457990893763963, 31.599306733712311 ], [ -99.654456637616747, 31.529917138666928 ], [ -99.723797488388314, 31.577002935304868 ], [ -99.718019084157348, 31.673652728403795 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ZEPHYR", "zip": "76890", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55673, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.822366428357952, 31.584437534774018 ], [ -98.903264087591438, 31.703391126280387 ], [ -98.828144832588904, 31.740564123626129 ], [ -98.758803981817337, 31.688521927342091 ], [ -98.822366428357952, 31.584437534774018 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANGELO", "zip": "76901", "state": "TX", "Sheet1_value": 885, "Sheet1_populaiton": 27527, "Sheet1_income": 46111, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.434541208796873, 31.527438938843879 ], [ -100.446098017258791, 31.4431801448602 ], [ -100.694569399190243, 31.438223745214103 ], [ -100.694569399190243, 31.52496073902083 ], [ -100.619450144187709, 31.693478326988192 ], [ -100.440319613027839, 31.693478326988192 ], [ -100.434541208796873, 31.527438938843879 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANGELO", "zip": "76903", "state": "TX", "Sheet1_value": 969, "Sheet1_populaiton": 32388, "Sheet1_income": 33533, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.411427591873007, 31.4431801448602 ], [ -100.417205996103974, 31.423354546275803 ], [ -100.446098017258791, 31.4431801448602 ], [ -100.434541208796873, 31.527438938843879 ], [ -100.411427591873007, 31.4431801448602 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANGELO", "zip": "76904", "state": "TX", "Sheet1_value": 848, "Sheet1_populaiton": 32554, "Sheet1_income": 54537, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.688790994959277, 31.217663960962703 ], [ -100.694569399190243, 31.438223745214103 ], [ -100.446098017258791, 31.4431801448602 ], [ -100.417205996103974, 31.423354546275803 ], [ -100.405649187642041, 31.423354546275803 ], [ -100.249632273406021, 31.373790549814814 ], [ -100.243853869175055, 31.344052151938222 ], [ -100.370978762256271, 31.178012763793912 ], [ -100.318973124177589, 31.088797570164132 ], [ -100.34208674110144, 31.088797570164132 ], [ -100.688790994959277, 31.217663960962703 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANGELO", "zip": "76905", "state": "TX", "Sheet1_value": 289, "Sheet1_populaiton": 12582, "Sheet1_income": 50674, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.110950571862887, 31.460527543621545 ], [ -100.110950571862887, 31.398572548045308 ], [ -100.22651865648217, 31.371312349991769 ], [ -100.249632273406021, 31.373790549814814 ], [ -100.405649187642041, 31.423354546275803 ], [ -100.411427591873007, 31.4431801448602 ], [ -100.434541208796873, 31.527438938843879 ], [ -100.440319613027839, 31.693478326988192 ], [ -100.284302698791805, 31.693478326988192 ], [ -100.261189081867954, 31.490265941498137 ], [ -100.110950571862887, 31.460527543621545 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOODFELLOW AFB", "zip": "76908", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 23875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.417205996103974, 31.423354546275803 ], [ -100.411427591873007, 31.4431801448602 ], [ -100.405649187642041, 31.423354546275803 ], [ -100.417205996103974, 31.423354546275803 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BARNHART", "zip": "76930", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50694, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.272409822286633, 31.078884770871937 ], [ -101.272409822286633, 31.294488155477232 ], [ -101.110614503819647, 31.294488155477232 ], [ -101.122171312281566, 31.081362970694983 ], [ -101.272409822286633, 31.078884770871937 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BIG LAKE", "zip": "76932", "state": "TX", "Sheet1_value": 82, "Sheet1_populaiton": 3571, "Sheet1_income": 59792, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.775130990380489, 31.078884770871937 ], [ -101.775130990380489, 31.651348929996352 ], [ -101.266631418055667, 31.651348929996352 ], [ -101.266631418055667, 31.527438938843879 ], [ -101.272409822286633, 31.294488155477232 ], [ -101.272409822286633, 31.078884770871937 ], [ -101.775130990380489, 31.078884770871937 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRONTE", "zip": "76933", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43295, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.440319613027839, 31.693478326988192 ], [ -100.399870783411089, 31.904125311947389 ], [ -100.521217272261325, 32.030513502922915 ], [ -100.238075464944103, 32.057773700976455 ], [ -100.238075464944103, 31.906603511770442 ], [ -100.238075464944103, 31.852083115663355 ], [ -100.238075464944103, 31.82730111743286 ], [ -100.284302698791805, 31.693478326988192 ], [ -100.440319613027839, 31.693478326988192 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARLSBAD", "zip": "76934", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45217, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.694569399190243, 31.52496073902083 ], [ -100.839029504964344, 31.52496073902083 ], [ -100.827472696502412, 31.695956526811241 ], [ -100.619450144187709, 31.693478326988192 ], [ -100.694569399190243, 31.52496073902083 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHRISTOVAL", "zip": "76935", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63636, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.688790994959277, 31.086319370341084 ], [ -100.688790994959277, 31.217663960962703 ], [ -100.34208674110144, 31.088797570164132 ], [ -100.688790994959277, 31.086319370341084 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELDORADO", "zip": "76936", "state": "TX", "Sheet1_value": 100, "Sheet1_populaiton": 3268, "Sheet1_income": 50602, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.116728976093853, 30.709632997237573 ], [ -100.96037599381458, 30.707154797414525 ], [ -100.96037599381458, 31.083841170518035 ], [ -100.688790994959277, 31.086319370341084 ], [ -100.34208674110144, 31.088797570164132 ], [ -100.318973124177589, 31.088797570164132 ], [ -100.116728976093853, 31.088797570164132 ], [ -100.116728976093853, 30.878150585204931 ], [ -100.116728976093853, 30.808760990159548 ], [ -100.116728976093853, 30.709632997237573 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EOLA", "zip": "76937", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.983825678781685, 31.388659748753113 ], [ -100.116728976093853, 31.239967759370145 ], [ -100.110950571862887, 31.398572548045308 ], [ -100.110950571862887, 31.460527543621545 ], [ -100.110950571862887, 31.552220937074374 ], [ -100.093615359170002, 31.579481135127917 ], [ -100.024274508398435, 31.579481135127917 ], [ -99.983825678781685, 31.388659748753113 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERETA", "zip": "76940", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.261189081867954, 31.490265941498137 ], [ -100.110950571862887, 31.552220937074374 ], [ -100.110950571862887, 31.460527543621545 ], [ -100.261189081867954, 31.490265941498137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERTZON", "zip": "76941", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47159, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.96037599381458, 31.083841170518035 ], [ -101.122171312281566, 31.081362970694983 ], [ -101.110614503819647, 31.294488155477232 ], [ -101.272409822286633, 31.294488155477232 ], [ -101.266631418055667, 31.527438938843879 ], [ -100.839029504964344, 31.52496073902083 ], [ -100.694569399190243, 31.52496073902083 ], [ -100.694569399190243, 31.438223745214103 ], [ -100.688790994959277, 31.217663960962703 ], [ -100.688790994959277, 31.086319370341084 ], [ -100.96037599381458, 31.083841170518035 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OZONA", "zip": "76943", "state": "TX", "Sheet1_value": 118, "Sheet1_populaiton": 3719, "Sheet1_income": 49643, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.769352586149523, 30.652634401307438 ], [ -101.815579819997239, 30.754240594052462 ], [ -101.971596734233259, 30.984713177596056 ], [ -102.358749817707846, 31.078884770871937 ], [ -102.387641838862663, 31.086319370341084 ], [ -102.300965775398197, 31.086319370341084 ], [ -102.012045563850009, 31.083841170518035 ], [ -101.775130990380489, 31.078884770871937 ], [ -101.272409822286633, 31.078884770871937 ], [ -101.122171312281566, 31.081362970694983 ], [ -100.96037599381458, 31.083841170518035 ], [ -100.96037599381458, 30.707154797414525 ], [ -100.96037599381458, 30.288339027319171 ], [ -101.070165674202897, 30.288339027319171 ], [ -101.757795777687591, 30.288339027319171 ], [ -101.636449288837355, 30.558462808031557 ], [ -101.769352586149523, 30.652634401307438 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROBERT LEE", "zip": "76945", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38839, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.827472696502412, 31.695956526811241 ], [ -100.821694292271445, 32.087512098853047 ], [ -100.792802271116628, 32.087512098853047 ], [ -100.700347803421209, 32.085033899029995 ], [ -100.654120569573493, 31.983427706284971 ], [ -100.596336527263858, 32.085033899029995 ], [ -100.538552484954209, 32.082555699206949 ], [ -100.521217272261325, 32.030513502922915 ], [ -100.399870783411089, 31.904125311947389 ], [ -100.440319613027839, 31.693478326988192 ], [ -100.619450144187709, 31.693478326988192 ], [ -100.827472696502412, 31.695956526811241 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SILVER", "zip": "76949", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.700347803421209, 32.085033899029995 ], [ -100.665677378035426, 32.085033899029995 ], [ -100.596336527263858, 32.085033899029995 ], [ -100.654120569573493, 31.983427706284971 ], [ -100.700347803421209, 32.085033899029995 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SONORA", "zip": "76950", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 4069, "Sheet1_income": 53500, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.116728976093853, 30.29081722714222 ], [ -100.648342165342527, 30.288339027319171 ], [ -100.96037599381458, 30.288339027319171 ], [ -100.96037599381458, 30.707154797414525 ], [ -100.116728976093853, 30.709632997237573 ], [ -100.116728976093853, 30.310642825726617 ], [ -100.116728976093853, 30.29081722714222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STERLING CITY", "zip": "76951", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50543, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.266631418055667, 31.651348929996352 ], [ -101.266631418055667, 32.087512098853047 ], [ -101.185733758822181, 32.087512098853047 ], [ -100.821694292271445, 32.087512098853047 ], [ -100.827472696502412, 31.695956526811241 ], [ -100.839029504964344, 31.52496073902083 ], [ -101.266631418055667, 31.527438938843879 ], [ -101.266631418055667, 31.651348929996352 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VANCOURT", "zip": "76955", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.243853869175055, 31.344052151938222 ], [ -100.22651865648217, 31.371312349991769 ], [ -100.110950571862887, 31.398572548045308 ], [ -100.116728976093853, 31.239967759370145 ], [ -100.116728976093853, 31.088797570164132 ], [ -100.318973124177589, 31.088797570164132 ], [ -100.370978762256271, 31.178012763793912 ], [ -100.243853869175055, 31.344052151938222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WALL", "zip": "76957", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.243853869175055, 31.344052151938222 ], [ -100.249632273406021, 31.373790549814814 ], [ -100.22651865648217, 31.371312349991769 ], [ -100.243853869175055, 31.344052151938222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77002", "state": "TX", "Sheet1_value": 269, "Sheet1_populaiton": 11602, "Sheet1_income": 64093, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.366880698241545, 29.7431350662483 ], [ -95.384215910934429, 29.728265867310004 ], [ -95.378437506703477, 29.753047865540498 ], [ -95.372659102472511, 29.758004265186596 ], [ -95.366880698241545, 29.772873464124892 ], [ -95.349545485548646, 29.772873464124892 ], [ -95.349545485548646, 29.765438864655746 ], [ -95.361102294010578, 29.755526065363547 ], [ -95.361102294010578, 29.753047865540498 ], [ -95.366880698241545, 29.7431350662483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77003", "state": "TX", "Sheet1_value": 489, "Sheet1_populaiton": 10617, "Sheet1_income": 36412, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.349545485548646, 29.765438864655746 ], [ -95.320653464393828, 29.755526065363547 ], [ -95.332210272855761, 29.7431350662483 ], [ -95.343767081317679, 29.730744067133053 ], [ -95.366880698241545, 29.7431350662483 ], [ -95.361102294010578, 29.753047865540498 ], [ -95.361102294010578, 29.755526065363547 ], [ -95.349545485548646, 29.765438864655746 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77004", "state": "TX", "Sheet1_value": 1412, "Sheet1_populaiton": 31593, "Sheet1_income": 41983, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 29.730744067133053 ], [ -95.332210272855761, 29.713396668371708 ], [ -95.384215910934429, 29.713396668371708 ], [ -95.389994315165396, 29.723309467663903 ], [ -95.389994315165396, 29.725787667486955 ], [ -95.384215910934429, 29.728265867310004 ], [ -95.366880698241545, 29.7431350662483 ], [ -95.343767081317679, 29.730744067133053 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77005", "state": "TX", "Sheet1_value": 615, "Sheet1_populaiton": 25752, "Sheet1_income": 159732, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.389994315165396, 29.723309467663903 ], [ -95.424664740551179, 29.705962068902558 ], [ -95.44777835747503, 29.705962068902558 ], [ -95.44777835747503, 29.728265867310004 ], [ -95.430443144782146, 29.728265867310004 ], [ -95.401551123627328, 29.725787667486955 ], [ -95.389994315165396, 29.725787667486955 ], [ -95.389994315165396, 29.723309467663903 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77006", "state": "TX", "Sheet1_value": 1141, "Sheet1_populaiton": 20573, "Sheet1_income": 67458, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.401551123627328, 29.725787667486955 ], [ -95.401551123627328, 29.7431350662483 ], [ -95.378437506703477, 29.753047865540498 ], [ -95.384215910934429, 29.728265867310004 ], [ -95.389994315165396, 29.725787667486955 ], [ -95.401551123627328, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77007", "state": "TX", "Sheet1_value": 1259, "Sheet1_populaiton": 30868, "Sheet1_income": 98725, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372659102472511, 29.758004265186596 ], [ -95.44777835747503, 29.755526065363547 ], [ -95.453556761705997, 29.765438864655746 ], [ -95.436221549013112, 29.782786263417091 ], [ -95.389994315165396, 29.787742663063192 ], [ -95.366880698241545, 29.772873464124892 ], [ -95.372659102472511, 29.758004265186596 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77008", "state": "TX", "Sheet1_value": 1283, "Sheet1_populaiton": 30807, "Sheet1_income": 70293, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436221549013112, 29.782786263417091 ], [ -95.44777835747503, 29.795177262532338 ], [ -95.430443144782146, 29.812524661293683 ], [ -95.389994315165396, 29.815002861116731 ], [ -95.389994315165396, 29.787742663063192 ], [ -95.436221549013112, 29.782786263417091 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77009", "state": "TX", "Sheet1_value": 1797, "Sheet1_populaiton": 39725, "Sheet1_income": 44651, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.349545485548646, 29.772873464124892 ], [ -95.366880698241545, 29.772873464124892 ], [ -95.389994315165396, 29.787742663063192 ], [ -95.389994315165396, 29.815002861116731 ], [ -95.349545485548646, 29.812524661293683 ], [ -95.349545485548646, 29.772873464124892 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77011", "state": "TX", "Sheet1_value": 816, "Sheet1_populaiton": 19442, "Sheet1_income": 26838, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.285983039008045, 29.75056966571745 ], [ -95.297539847469977, 29.728265867310004 ], [ -95.332210272855761, 29.7431350662483 ], [ -95.320653464393828, 29.755526065363547 ], [ -95.291761443239011, 29.748091465894397 ], [ -95.285983039008045, 29.75056966571745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77012", "state": "TX", "Sheet1_value": 780, "Sheet1_populaiton": 21868, "Sheet1_income": 34975, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.222420592467444, 29.725787667486955 ], [ -95.233977400929376, 29.70844026872561 ], [ -95.285983039008045, 29.698527469433412 ], [ -95.291761443239011, 29.715874868194756 ], [ -95.297539847469977, 29.728265867310004 ], [ -95.285983039008045, 29.75056966571745 ], [ -95.245534209391295, 29.720831267840857 ], [ -95.222420592467444, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77013", "state": "TX", "Sheet1_value": 806, "Sheet1_populaiton": 19246, "Sheet1_income": 36829, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.210863784005511, 29.805090061824536 ], [ -95.222420592467444, 29.770395264301843 ], [ -95.280204634777078, 29.802611862001484 ], [ -95.262869422084194, 29.810046461470634 ], [ -95.22819899669841, 29.82491566040893 ], [ -95.210863784005511, 29.805090061824536 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77014", "state": "TX", "Sheet1_value": 1914, "Sheet1_populaiton": 30665, "Sheet1_income": 40659, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418886336320213, 29.966173050322748 ], [ -95.482448782860814, 29.963694850499699 ], [ -95.499783995553713, 29.988476848730194 ], [ -95.465113570167929, 30.008302447314588 ], [ -95.418886336320213, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77015", "state": "TX", "Sheet1_value": 2428, "Sheet1_populaiton": 57096, "Sheet1_income": 44167, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.095295699386241, 29.753047865540498 ], [ -95.14730133746491, 29.73570046677915 ], [ -95.176193358619742, 29.748091465894397 ], [ -95.210863784005511, 29.725787667486955 ], [ -95.222420592467444, 29.760482465009645 ], [ -95.222420592467444, 29.770395264301843 ], [ -95.210863784005511, 29.805090061824536 ], [ -95.158858145926843, 29.810046461470634 ], [ -95.095295699386241, 29.753047865540498 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77016", "state": "TX", "Sheet1_value": 1282, "Sheet1_populaiton": 27010, "Sheet1_income": 31327, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332210272855761, 29.819959260762833 ], [ -95.30909665593191, 29.891827055631264 ], [ -95.257091017853227, 29.881914256339066 ], [ -95.285983039008045, 29.852175858462473 ], [ -95.332210272855761, 29.819959260762833 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77017", "state": "TX", "Sheet1_value": 1732, "Sheet1_populaiton": 33259, "Sheet1_income": 35586, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251312613622261, 29.651441672795471 ], [ -95.274426230546112, 29.678701870849014 ], [ -95.285983039008045, 29.698527469433412 ], [ -95.233977400929376, 29.70844026872561 ], [ -95.22819899669841, 29.691092869964262 ], [ -95.22819899669841, 29.671267271379868 ], [ -95.251312613622261, 29.651441672795471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77018", "state": "TX", "Sheet1_value": 1011, "Sheet1_populaiton": 26794, "Sheet1_income": 61980, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430443144782146, 29.812524661293683 ], [ -95.459335165936963, 29.842263059170278 ], [ -95.401551123627328, 29.842263059170278 ], [ -95.389994315165396, 29.815002861116731 ], [ -95.430443144782146, 29.812524661293683 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77019", "state": "TX", "Sheet1_value": 803, "Sheet1_populaiton": 19995, "Sheet1_income": 87394, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.401551123627328, 29.7431350662483 ], [ -95.430443144782146, 29.7431350662483 ], [ -95.44777835747503, 29.755526065363547 ], [ -95.372659102472511, 29.758004265186596 ], [ -95.378437506703477, 29.753047865540498 ], [ -95.401551123627328, 29.7431350662483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77020", "state": "TX", "Sheet1_value": 1100, "Sheet1_populaiton": 26889, "Sheet1_income": 29401, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.349545485548646, 29.765438864655746 ], [ -95.349545485548646, 29.772873464124892 ], [ -95.303318251700944, 29.792699062709289 ], [ -95.285983039008045, 29.800133662178435 ], [ -95.291761443239011, 29.748091465894397 ], [ -95.320653464393828, 29.755526065363547 ], [ -95.349545485548646, 29.765438864655746 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77021", "state": "TX", "Sheet1_value": 1296, "Sheet1_populaiton": 25479, "Sheet1_income": 31103, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.326431868624795, 29.691092869964262 ], [ -95.355323889779612, 29.683658270495116 ], [ -95.384215910934429, 29.673745471202917 ], [ -95.389994315165396, 29.698527469433412 ], [ -95.384215910934429, 29.713396668371708 ], [ -95.332210272855761, 29.713396668371708 ], [ -95.326431868624795, 29.696049269610363 ], [ -95.326431868624795, 29.691092869964262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77022", "state": "TX", "Sheet1_value": 1397, "Sheet1_populaiton": 28898, "Sheet1_income": 28810, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.389994315165396, 29.815002861116731 ], [ -95.401551123627328, 29.842263059170278 ], [ -95.401551123627328, 29.847219458816376 ], [ -95.361102294010578, 29.847219458816376 ], [ -95.349545485548646, 29.819959260762833 ], [ -95.349545485548646, 29.812524661293683 ], [ -95.389994315165396, 29.815002861116731 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77023", "state": "TX", "Sheet1_value": 1363, "Sheet1_populaiton": 29871, "Sheet1_income": 36033, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 29.730744067133053 ], [ -95.332210272855761, 29.7431350662483 ], [ -95.297539847469977, 29.728265867310004 ], [ -95.291761443239011, 29.715874868194756 ], [ -95.326431868624795, 29.696049269610363 ], [ -95.332210272855761, 29.713396668371708 ], [ -95.343767081317679, 29.730744067133053 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77024", "state": "TX", "Sheet1_value": 1496, "Sheet1_populaiton": 35367, "Sheet1_income": 111139, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557568037863348, 29.762960664832697 ], [ -95.563346442094314, 29.785264463240139 ], [ -95.546011229401415, 29.785264463240139 ], [ -95.436221549013112, 29.782786263417091 ], [ -95.453556761705997, 29.765438864655746 ], [ -95.459335165936963, 29.765438864655746 ], [ -95.476670378629848, 29.772873464124892 ], [ -95.499783995553713, 29.760482465009645 ], [ -95.546011229401415, 29.753047865540498 ], [ -95.557568037863348, 29.762960664832697 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77025", "state": "TX", "Sheet1_value": 1039, "Sheet1_populaiton": 26379, "Sheet1_income": 65828, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.44777835747503, 29.673745471202917 ], [ -95.44777835747503, 29.688614670141213 ], [ -95.44777835747503, 29.705962068902558 ], [ -95.424664740551179, 29.705962068902558 ], [ -95.413107932089247, 29.693571069787311 ], [ -95.441999953244078, 29.656398072441569 ], [ -95.44777835747503, 29.673745471202917 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77026", "state": "TX", "Sheet1_value": 1057, "Sheet1_populaiton": 22909, "Sheet1_income": 20024, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332210272855761, 29.819959260762833 ], [ -95.303318251700944, 29.792699062709289 ], [ -95.349545485548646, 29.772873464124892 ], [ -95.349545485548646, 29.812524661293683 ], [ -95.349545485548646, 29.819959260762833 ], [ -95.332210272855761, 29.819959260762833 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77027", "state": "TX", "Sheet1_value": 554, "Sheet1_populaiton": 15455, "Sheet1_income": 81661, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.44777835747503, 29.728265867310004 ], [ -95.453556761705997, 29.725787667486955 ], [ -95.459335165936963, 29.725787667486955 ], [ -95.459335165936963, 29.765438864655746 ], [ -95.453556761705997, 29.765438864655746 ], [ -95.44777835747503, 29.755526065363547 ], [ -95.430443144782146, 29.7431350662483 ], [ -95.430443144782146, 29.733222266956101 ], [ -95.430443144782146, 29.730744067133053 ], [ -95.430443144782146, 29.728265867310004 ], [ -95.44777835747503, 29.728265867310004 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77028", "state": "TX", "Sheet1_value": 766, "Sheet1_populaiton": 15682, "Sheet1_income": 29389, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.280204634777078, 29.802611862001484 ], [ -95.285983039008045, 29.800133662178435 ], [ -95.303318251700944, 29.792699062709289 ], [ -95.332210272855761, 29.819959260762833 ], [ -95.285983039008045, 29.852175858462473 ], [ -95.262869422084194, 29.810046461470634 ], [ -95.280204634777078, 29.802611862001484 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77029", "state": "TX", "Sheet1_value": 839, "Sheet1_populaiton": 18242, "Sheet1_income": 31715, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.285983039008045, 29.800133662178435 ], [ -95.280204634777078, 29.802611862001484 ], [ -95.222420592467444, 29.770395264301843 ], [ -95.222420592467444, 29.760482465009645 ], [ -95.245534209391295, 29.720831267840857 ], [ -95.285983039008045, 29.75056966571745 ], [ -95.291761443239011, 29.748091465894397 ], [ -95.285983039008045, 29.800133662178435 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77030", "state": "TX", "Sheet1_value": 328, "Sheet1_populaiton": 11031, "Sheet1_income": 68980, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.389994315165396, 29.698527469433412 ], [ -95.413107932089247, 29.693571069787311 ], [ -95.424664740551179, 29.705962068902558 ], [ -95.389994315165396, 29.723309467663903 ], [ -95.384215910934429, 29.713396668371708 ], [ -95.389994315165396, 29.698527469433412 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77031", "state": "TX", "Sheet1_value": 1024, "Sheet1_populaiton": 18079, "Sheet1_income": 39278, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.540232825170449, 29.641528873503276 ], [ -95.56912484632528, 29.648963472972422 ], [ -95.563346442094314, 29.658876272264621 ], [ -95.52867601670853, 29.673745471202917 ], [ -95.540232825170449, 29.641528873503276 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77032", "state": "TX", "Sheet1_value": 612, "Sheet1_populaiton": 13743, "Sheet1_income": 23389, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 29.983520449084093 ], [ -95.30909665593191, 29.919087253684808 ], [ -95.378437506703477, 29.933956452623107 ], [ -95.389994315165396, 29.966173050322748 ], [ -95.372659102472511, 29.998389648022389 ], [ -95.30909665593191, 29.983520449084093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77033", "state": "TX", "Sheet1_value": 1313, "Sheet1_populaiton": 27539, "Sheet1_income": 27272, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355323889779612, 29.648963472972422 ], [ -95.355323889779612, 29.683658270495116 ], [ -95.326431868624795, 29.691092869964262 ], [ -95.314875060162862, 29.656398072441569 ], [ -95.355323889779612, 29.648963472972422 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77034", "state": "TX", "Sheet1_value": 2113, "Sheet1_populaiton": 35514, "Sheet1_income": 43905, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 29.591964877042287 ], [ -95.164636550157809, 29.591964877042287 ], [ -95.181971762850694, 29.587008477396186 ], [ -95.222420592467444, 29.621703274918879 ], [ -95.251312613622261, 29.651441672795471 ], [ -95.210863784005511, 29.651441672795471 ], [ -95.170414954388775, 29.631616074211077 ], [ -95.153079741695876, 29.631616074211077 ], [ -95.153079741695876, 29.591964877042287 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77035", "state": "TX", "Sheet1_value": 1963, "Sheet1_populaiton": 35699, "Sheet1_income": 36345, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.517119208246598, 29.626659674564976 ], [ -95.505562399784679, 29.656398072441569 ], [ -95.44777835747503, 29.673745471202917 ], [ -95.441999953244078, 29.656398072441569 ], [ -95.465113570167929, 29.646485273149374 ], [ -95.517119208246598, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77036", "state": "TX", "Sheet1_value": 5327, "Sheet1_populaiton": 68373, "Sheet1_income": 28266, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557568037863348, 29.686136470318164 ], [ -95.557568037863348, 29.718353068017805 ], [ -95.540232825170449, 29.720831267840857 ], [ -95.499783995553713, 29.723309467663903 ], [ -95.494005591322747, 29.723309467663903 ], [ -95.557568037863348, 29.663832671910718 ], [ -95.557568037863348, 29.686136470318164 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77037", "state": "TX", "Sheet1_value": 996, "Sheet1_populaiton": 20152, "Sheet1_income": 35518, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372659102472511, 29.891827055631264 ], [ -95.366880698241545, 29.876957856692968 ], [ -95.40732952785828, 29.869523257223818 ], [ -95.413107932089247, 29.899261655100414 ], [ -95.413107932089247, 29.931478252800055 ], [ -95.372659102472511, 29.901739854923463 ], [ -95.372659102472511, 29.891827055631264 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77038", "state": "TX", "Sheet1_value": 1741, "Sheet1_populaiton": 28182, "Sheet1_income": 38160, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.899261655100414 ], [ -95.465113570167929, 29.938912852269205 ], [ -95.459335165936963, 29.938912852269205 ], [ -95.413107932089247, 29.941391052092253 ], [ -95.413107932089247, 29.931478252800055 ], [ -95.413107932089247, 29.899261655100414 ], [ -95.465113570167929, 29.899261655100414 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77039", "state": "TX", "Sheet1_value": 1200, "Sheet1_populaiton": 28151, "Sheet1_income": 38167, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372659102472511, 29.901739854923463 ], [ -95.378437506703477, 29.933956452623107 ], [ -95.30909665593191, 29.919087253684808 ], [ -95.297539847469977, 29.919087253684808 ], [ -95.30909665593191, 29.891827055631264 ], [ -95.372659102472511, 29.891827055631264 ], [ -95.372659102472511, 29.901739854923463 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77040", "state": "TX", "Sheet1_value": 2788, "Sheet1_populaiton": 44762, "Sheet1_income": 53194, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.48822718709178, 29.864566857577721 ], [ -95.505562399784679, 29.834828459701129 ], [ -95.586460059018165, 29.889348855808215 ], [ -95.586460059018165, 29.896783455277365 ], [ -95.499783995553713, 29.899261655100414 ], [ -95.48822718709178, 29.864566857577721 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77041", "state": "TX", "Sheet1_value": 2463, "Sheet1_populaiton": 36805, "Sheet1_income": 70608, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.505562399784679, 29.83235025987808 ], [ -95.546011229401415, 29.83235025987808 ], [ -95.574903250556247, 29.83235025987808 ], [ -95.626908888634915, 29.879436056516017 ], [ -95.621130484403949, 29.91413085403871 ], [ -95.586460059018165, 29.889348855808215 ], [ -95.505562399784679, 29.834828459701129 ], [ -95.505562399784679, 29.83235025987808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77042", "state": "TX", "Sheet1_value": 2598, "Sheet1_populaiton": 36583, "Sheet1_income": 46159, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557568037863348, 29.718353068017805 ], [ -95.56912484632528, 29.715874868194756 ], [ -95.574903250556247, 29.73570046677915 ], [ -95.574903250556247, 29.767917064478794 ], [ -95.557568037863348, 29.762960664832697 ], [ -95.546011229401415, 29.753047865540498 ], [ -95.540232825170449, 29.720831267840857 ], [ -95.557568037863348, 29.718353068017805 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77043", "state": "TX", "Sheet1_value": 1315, "Sheet1_populaiton": 23396, "Sheet1_income": 54359, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563346442094314, 29.785264463240139 ], [ -95.586460059018165, 29.79022086288624 ], [ -95.574903250556247, 29.83235025987808 ], [ -95.546011229401415, 29.83235025987808 ], [ -95.546011229401415, 29.795177262532338 ], [ -95.546011229401415, 29.785264463240139 ], [ -95.563346442094314, 29.785264463240139 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77044", "state": "TX", "Sheet1_value": 1653, "Sheet1_populaiton": 33672, "Sheet1_income": 72761, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.129966124772025, 29.988476848730194 ], [ -95.095295699386241, 29.879436056516017 ], [ -95.22819899669841, 29.82491566040893 ], [ -95.245534209391295, 29.891827055631264 ], [ -95.245534209391295, 29.92156545350786 ], [ -95.210863784005511, 29.933956452623107 ], [ -95.129966124772025, 29.988476848730194 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77045", "state": "TX", "Sheet1_value": 1927, "Sheet1_populaiton": 32650, "Sheet1_income": 36952, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.614268675449729 ], [ -95.465113570167929, 29.646485273149374 ], [ -95.441999953244078, 29.656398072441569 ], [ -95.395772719396362, 29.671267271379868 ], [ -95.389994315165396, 29.631616074211077 ], [ -95.418886336320213, 29.614268675449729 ], [ -95.465113570167929, 29.614268675449729 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77047", "state": "TX", "Sheet1_value": 1313, "Sheet1_populaiton": 22334, "Sheet1_income": 49246, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430443144782146, 29.582052077750088 ], [ -95.418886336320213, 29.614268675449729 ], [ -95.389994315165396, 29.631616074211077 ], [ -95.355323889779612, 29.648963472972422 ], [ -95.349545485548646, 29.584530277573137 ], [ -95.384215910934429, 29.587008477396186 ], [ -95.424664740551179, 29.582052077750088 ], [ -95.430443144782146, 29.582052077750088 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77048", "state": "TX", "Sheet1_value": 791, "Sheet1_populaiton": 16025, "Sheet1_income": 36818, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.297539847469977, 29.596921276688384 ], [ -95.349545485548646, 29.584530277573137 ], [ -95.355323889779612, 29.648963472972422 ], [ -95.314875060162862, 29.656398072441569 ], [ -95.303318251700944, 29.626659674564976 ], [ -95.297539847469977, 29.596921276688384 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77049", "state": "TX", "Sheet1_value": 1833, "Sheet1_populaiton": 29460, "Sheet1_income": 50348, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.077960486693343, 29.82491566040893 ], [ -95.158858145926843, 29.810046461470634 ], [ -95.210863784005511, 29.805090061824536 ], [ -95.22819899669841, 29.82491566040893 ], [ -95.095295699386241, 29.879436056516017 ], [ -95.095295699386241, 29.864566857577721 ], [ -95.077960486693343, 29.82491566040893 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77050", "state": "TX", "Sheet1_value": 196, "Sheet1_populaiton": 4188, "Sheet1_income": 44327, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.297539847469977, 29.919087253684808 ], [ -95.245534209391295, 29.92156545350786 ], [ -95.245534209391295, 29.891827055631264 ], [ -95.257091017853227, 29.881914256339066 ], [ -95.30909665593191, 29.891827055631264 ], [ -95.297539847469977, 29.919087253684808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77051", "state": "TX", "Sheet1_value": 800, "Sheet1_populaiton": 14782, "Sheet1_income": 22920, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.395772719396362, 29.671267271379868 ], [ -95.384215910934429, 29.673745471202917 ], [ -95.355323889779612, 29.683658270495116 ], [ -95.355323889779612, 29.648963472972422 ], [ -95.389994315165396, 29.631616074211077 ], [ -95.395772719396362, 29.671267271379868 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77053", "state": "TX", "Sheet1_value": 1916, "Sheet1_populaiton": 31701, "Sheet1_income": 46568, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.494005591322747, 29.579573877927039 ], [ -95.476670378629848, 29.604355876157534 ], [ -95.465113570167929, 29.614268675449729 ], [ -95.418886336320213, 29.614268675449729 ], [ -95.430443144782146, 29.582052077750088 ], [ -95.494005591322747, 29.579573877927039 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77054", "state": "TX", "Sheet1_value": 939, "Sheet1_populaiton": 21668, "Sheet1_income": 41694, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.413107932089247, 29.693571069787311 ], [ -95.389994315165396, 29.698527469433412 ], [ -95.384215910934429, 29.673745471202917 ], [ -95.395772719396362, 29.671267271379868 ], [ -95.441999953244078, 29.656398072441569 ], [ -95.413107932089247, 29.693571069787311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77055", "state": "TX", "Sheet1_value": 1875, "Sheet1_populaiton": 44281, "Sheet1_income": 46987, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436221549013112, 29.782786263417091 ], [ -95.546011229401415, 29.785264463240139 ], [ -95.546011229401415, 29.795177262532338 ], [ -95.494005591322747, 29.82491566040893 ], [ -95.44777835747503, 29.795177262532338 ], [ -95.436221549013112, 29.782786263417091 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77056", "state": "TX", "Sheet1_value": 871, "Sheet1_populaiton": 17263, "Sheet1_income": 93069, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.725787667486955 ], [ -95.476670378629848, 29.725787667486955 ], [ -95.476670378629848, 29.772873464124892 ], [ -95.459335165936963, 29.765438864655746 ], [ -95.459335165936963, 29.725787667486955 ], [ -95.465113570167929, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77057", "state": "TX", "Sheet1_value": 1821, "Sheet1_populaiton": 39903, "Sheet1_income": 54594, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.499783995553713, 29.723309467663903 ], [ -95.499783995553713, 29.760482465009645 ], [ -95.476670378629848, 29.772873464124892 ], [ -95.476670378629848, 29.725787667486955 ], [ -95.494005591322747, 29.723309467663903 ], [ -95.499783995553713, 29.723309467663903 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77058", "state": "TX", "Sheet1_value": 951, "Sheet1_populaiton": 16099, "Sheet1_income": 49589, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.129966124772025, 29.549835480050447 ], [ -95.101074103617208, 29.584530277573137 ], [ -95.089517295155275, 29.596921276688384 ], [ -95.095295699386241, 29.579573877927039 ], [ -95.054846869769491, 29.559748279342642 ], [ -95.066403678231424, 29.559748279342642 ], [ -95.095295699386241, 29.53000988146605 ], [ -95.129966124772025, 29.549835480050447 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77059", "state": "TX", "Sheet1_value": 653, "Sheet1_populaiton": 18867, "Sheet1_income": 136355, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.101074103617208, 29.584530277573137 ], [ -95.153079741695876, 29.591964877042287 ], [ -95.153079741695876, 29.631616074211077 ], [ -95.106852507848174, 29.634094274034126 ], [ -95.089517295155275, 29.596921276688384 ], [ -95.101074103617208, 29.584530277573137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77060", "state": "TX", "Sheet1_value": 1935, "Sheet1_populaiton": 44284, "Sheet1_income": 27750, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.413107932089247, 29.941391052092253 ], [ -95.418886336320213, 29.966173050322748 ], [ -95.389994315165396, 29.966173050322748 ], [ -95.378437506703477, 29.933956452623107 ], [ -95.372659102472511, 29.901739854923463 ], [ -95.413107932089247, 29.931478252800055 ], [ -95.413107932089247, 29.941391052092253 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77061", "state": "TX", "Sheet1_value": 1148, "Sheet1_populaiton": 24760, "Sheet1_income": 34566, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251312613622261, 29.651441672795471 ], [ -95.303318251700944, 29.626659674564976 ], [ -95.314875060162862, 29.656398072441569 ], [ -95.274426230546112, 29.678701870849014 ], [ -95.251312613622261, 29.651441672795471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77062", "state": "TX", "Sheet1_value": 1171, "Sheet1_populaiton": 25866, "Sheet1_income": 87960, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.129966124772025, 29.549835480050447 ], [ -95.164636550157809, 29.591964877042287 ], [ -95.153079741695876, 29.591964877042287 ], [ -95.101074103617208, 29.584530277573137 ], [ -95.129966124772025, 29.549835480050447 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77063", "state": "TX", "Sheet1_value": 2398, "Sheet1_populaiton": 35961, "Sheet1_income": 49873, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.546011229401415, 29.753047865540498 ], [ -95.499783995553713, 29.760482465009645 ], [ -95.499783995553713, 29.723309467663903 ], [ -95.540232825170449, 29.720831267840857 ], [ -95.546011229401415, 29.753047865540498 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77064", "state": "TX", "Sheet1_value": 3178, "Sheet1_populaiton": 45932, "Sheet1_income": 62610, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586460059018165, 29.896783455277365 ], [ -95.586460059018165, 29.933956452623107 ], [ -95.540232825170449, 29.966173050322748 ], [ -95.52867601670853, 29.943869251915302 ], [ -95.499783995553713, 29.899261655100414 ], [ -95.586460059018165, 29.896783455277365 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77065", "state": "TX", "Sheet1_value": 2359, "Sheet1_populaiton": 37344, "Sheet1_income": 54091, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586460059018165, 29.896783455277365 ], [ -95.586460059018165, 29.889348855808215 ], [ -95.621130484403949, 29.91413085403871 ], [ -95.626908888634915, 29.92156545350786 ], [ -95.586460059018165, 29.953782051207501 ], [ -95.586460059018165, 29.933956452623107 ], [ -95.586460059018165, 29.896783455277365 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77066", "state": "TX", "Sheet1_value": 2238, "Sheet1_populaiton": 31208, "Sheet1_income": 59855, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482448782860814, 29.963694850499699 ], [ -95.459335165936963, 29.938912852269205 ], [ -95.465113570167929, 29.938912852269205 ], [ -95.52867601670853, 29.943869251915302 ], [ -95.540232825170449, 29.966173050322748 ], [ -95.499783995553713, 29.988476848730194 ], [ -95.482448782860814, 29.963694850499699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77067", "state": "TX", "Sheet1_value": 1756, "Sheet1_populaiton": 30930, "Sheet1_income": 37309, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482448782860814, 29.963694850499699 ], [ -95.418886336320213, 29.966173050322748 ], [ -95.413107932089247, 29.941391052092253 ], [ -95.459335165936963, 29.938912852269205 ], [ -95.482448782860814, 29.963694850499699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77068", "state": "TX", "Sheet1_value": 713, "Sheet1_populaiton": 10306, "Sheet1_income": 67945, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.499783995553713, 29.988476848730194 ], [ -95.511340804015646, 30.005824247491539 ], [ -95.476670378629848, 30.023171646252884 ], [ -95.465113570167929, 30.008302447314588 ], [ -95.499783995553713, 29.988476848730194 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77069", "state": "TX", "Sheet1_value": 936, "Sheet1_populaiton": 16088, "Sheet1_income": 68495, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.540232825170449, 29.966173050322748 ], [ -95.551789633632382, 29.993433248376292 ], [ -95.511340804015646, 30.005824247491539 ], [ -95.499783995553713, 29.988476848730194 ], [ -95.540232825170449, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77070", "state": "TX", "Sheet1_value": 2567, "Sheet1_populaiton": 46640, "Sheet1_income": 69139, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586460059018165, 29.953782051207501 ], [ -95.603795271711064, 29.99591144819934 ], [ -95.56912484632528, 30.023171646252884 ], [ -95.551789633632382, 29.993433248376292 ], [ -95.540232825170449, 29.966173050322748 ], [ -95.586460059018165, 29.933956452623107 ], [ -95.586460059018165, 29.953782051207501 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77071", "state": "TX", "Sheet1_value": 2015, "Sheet1_populaiton": 26520, "Sheet1_income": 45941, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.517119208246598, 29.626659674564976 ], [ -95.540232825170449, 29.641528873503276 ], [ -95.52867601670853, 29.673745471202917 ], [ -95.511340804015646, 29.676223671025966 ], [ -95.505562399784679, 29.656398072441569 ], [ -95.517119208246598, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77072", "state": "TX", "Sheet1_value": 6129, "Sheet1_populaiton": 56199, "Sheet1_income": 35462, "Sheet1_percent": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.615352080172983, 29.683658270495116 ], [ -95.615352080172983, 29.713396668371708 ], [ -95.56912484632528, 29.715874868194756 ], [ -95.557568037863348, 29.718353068017805 ], [ -95.557568037863348, 29.686136470318164 ], [ -95.615352080172983, 29.683658270495116 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77073", "state": "TX", "Sheet1_value": 2191, "Sheet1_populaiton": 38406, "Sheet1_income": 51206, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418886336320213, 29.966173050322748 ], [ -95.430443144782146, 30.035562645368131 ], [ -95.384215910934429, 30.040519045014229 ], [ -95.372659102472511, 29.998389648022389 ], [ -95.389994315165396, 29.966173050322748 ], [ -95.418886336320213, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77074", "state": "TX", "Sheet1_value": 2529, "Sheet1_populaiton": 36939, "Sheet1_income": 36207, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.494005591322747, 29.723309467663903 ], [ -95.494005591322747, 29.688614670141213 ], [ -95.511340804015646, 29.676223671025966 ], [ -95.52867601670853, 29.673745471202917 ], [ -95.563346442094314, 29.658876272264621 ], [ -95.557568037863348, 29.663832671910718 ], [ -95.494005591322747, 29.723309467663903 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77075", "state": "TX", "Sheet1_value": 2442, "Sheet1_populaiton": 40010, "Sheet1_income": 45581, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.222420592467444, 29.621703274918879 ], [ -95.26864782631516, 29.594443076865335 ], [ -95.297539847469977, 29.596921276688384 ], [ -95.303318251700944, 29.626659674564976 ], [ -95.251312613622261, 29.651441672795471 ], [ -95.222420592467444, 29.621703274918879 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77076", "state": "TX", "Sheet1_value": 1547, "Sheet1_populaiton": 34851, "Sheet1_income": 31212, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.401551123627328, 29.847219458816376 ], [ -95.40732952785828, 29.869523257223818 ], [ -95.366880698241545, 29.876957856692968 ], [ -95.361102294010578, 29.847219458816376 ], [ -95.401551123627328, 29.847219458816376 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77077", "state": "TX", "Sheet1_value": 2992, "Sheet1_populaiton": 53158, "Sheet1_income": 59958, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644244101327814, 29.73570046677915 ], [ -95.644244101327814, 29.770395264301843 ], [ -95.574903250556247, 29.767917064478794 ], [ -95.574903250556247, 29.73570046677915 ], [ -95.644244101327814, 29.73570046677915 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77078", "state": "TX", "Sheet1_value": 631, "Sheet1_populaiton": 16753, "Sheet1_income": 30368, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.22819899669841, 29.82491566040893 ], [ -95.262869422084194, 29.810046461470634 ], [ -95.285983039008045, 29.852175858462473 ], [ -95.257091017853227, 29.881914256339066 ], [ -95.245534209391295, 29.891827055631264 ], [ -95.22819899669841, 29.82491566040893 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77079", "state": "TX", "Sheet1_value": 1478, "Sheet1_populaiton": 30669, "Sheet1_income": 95589, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557568037863348, 29.762960664832697 ], [ -95.574903250556247, 29.767917064478794 ], [ -95.644244101327814, 29.770395264301843 ], [ -95.644244101327814, 29.785264463240139 ], [ -95.586460059018165, 29.79022086288624 ], [ -95.563346442094314, 29.785264463240139 ], [ -95.557568037863348, 29.762960664832697 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77080", "state": "TX", "Sheet1_value": 2103, "Sheet1_populaiton": 48734, "Sheet1_income": 38159, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.546011229401415, 29.83235025987808 ], [ -95.505562399784679, 29.83235025987808 ], [ -95.494005591322747, 29.82491566040893 ], [ -95.546011229401415, 29.795177262532338 ], [ -95.546011229401415, 29.83235025987808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77081", "state": "TX", "Sheet1_value": 2720, "Sheet1_populaiton": 42725, "Sheet1_income": 26741, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.725787667486955 ], [ -95.482448782860814, 29.691092869964262 ], [ -95.494005591322747, 29.688614670141213 ], [ -95.494005591322747, 29.723309467663903 ], [ -95.476670378629848, 29.725787667486955 ], [ -95.465113570167929, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77082", "state": "TX", "Sheet1_value": 4328, "Sheet1_populaiton": 49920, "Sheet1_income": 50294, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.615352080172983, 29.713396668371708 ], [ -95.690471335175516, 29.70844026872561 ], [ -95.690471335175516, 29.710918468548659 ], [ -95.644244101327814, 29.73570046677915 ], [ -95.574903250556247, 29.73570046677915 ], [ -95.56912484632528, 29.715874868194756 ], [ -95.615352080172983, 29.713396668371708 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77083", "state": "TX", "Sheet1_value": 7882, "Sheet1_populaiton": 71810, "Sheet1_income": 53879, "Sheet1_percent": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.615352080172983, 29.683658270495116 ], [ -95.615352080172983, 29.671267271379868 ], [ -95.661579314020699, 29.676223671025966 ], [ -95.690471335175516, 29.70844026872561 ], [ -95.615352080172983, 29.713396668371708 ], [ -95.615352080172983, 29.683658270495116 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77084", "state": "TX", "Sheet1_value": 6820, "Sheet1_populaiton": 99266, "Sheet1_income": 62785, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719363356330334, 29.785264463240139 ], [ -95.68469293094455, 29.879436056516017 ], [ -95.626908888634915, 29.879436056516017 ], [ -95.574903250556247, 29.83235025987808 ], [ -95.586460059018165, 29.79022086288624 ], [ -95.644244101327814, 29.785264463240139 ], [ -95.719363356330334, 29.785264463240139 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77085", "state": "TX", "Sheet1_value": 1234, "Sheet1_populaiton": 16404, "Sheet1_income": 49466, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476670378629848, 29.604355876157534 ], [ -95.517119208246598, 29.626659674564976 ], [ -95.465113570167929, 29.646485273149374 ], [ -95.465113570167929, 29.614268675449729 ], [ -95.476670378629848, 29.604355876157534 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77086", "state": "TX", "Sheet1_value": 1832, "Sheet1_populaiton": 27720, "Sheet1_income": 42030, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.899261655100414 ], [ -95.499783995553713, 29.899261655100414 ], [ -95.52867601670853, 29.943869251915302 ], [ -95.465113570167929, 29.938912852269205 ], [ -95.465113570167929, 29.899261655100414 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77087", "state": "TX", "Sheet1_value": 1824, "Sheet1_populaiton": 38191, "Sheet1_income": 38707, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.274426230546112, 29.678701870849014 ], [ -95.314875060162862, 29.656398072441569 ], [ -95.326431868624795, 29.691092869964262 ], [ -95.326431868624795, 29.696049269610363 ], [ -95.291761443239011, 29.715874868194756 ], [ -95.285983039008045, 29.698527469433412 ], [ -95.274426230546112, 29.678701870849014 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77088", "state": "TX", "Sheet1_value": 3037, "Sheet1_populaiton": 52924, "Sheet1_income": 40896, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.499783995553713, 29.899261655100414 ], [ -95.465113570167929, 29.899261655100414 ], [ -95.413107932089247, 29.899261655100414 ], [ -95.40732952785828, 29.869523257223818 ], [ -95.48822718709178, 29.864566857577721 ], [ -95.499783995553713, 29.899261655100414 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77089", "state": "TX", "Sheet1_value": 3134, "Sheet1_populaiton": 51184, "Sheet1_income": 63141, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.181971762850694, 29.587008477396186 ], [ -95.216642188236477, 29.557270079519594 ], [ -95.26864782631516, 29.594443076865335 ], [ -95.222420592467444, 29.621703274918879 ], [ -95.181971762850694, 29.587008477396186 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77090", "state": "TX", "Sheet1_value": 2025, "Sheet1_populaiton": 34201, "Sheet1_income": 36138, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418886336320213, 29.966173050322748 ], [ -95.465113570167929, 30.008302447314588 ], [ -95.476670378629848, 30.023171646252884 ], [ -95.430443144782146, 30.035562645368131 ], [ -95.418886336320213, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77091", "state": "TX", "Sheet1_value": 1274, "Sheet1_populaiton": 23361, "Sheet1_income": 27903, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459335165936963, 29.842263059170278 ], [ -95.48822718709178, 29.864566857577721 ], [ -95.40732952785828, 29.869523257223818 ], [ -95.401551123627328, 29.847219458816376 ], [ -95.401551123627328, 29.842263059170278 ], [ -95.459335165936963, 29.842263059170278 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77092", "state": "TX", "Sheet1_value": 1562, "Sheet1_populaiton": 35332, "Sheet1_income": 37314, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430443144782146, 29.812524661293683 ], [ -95.44777835747503, 29.795177262532338 ], [ -95.494005591322747, 29.82491566040893 ], [ -95.505562399784679, 29.83235025987808 ], [ -95.505562399784679, 29.834828459701129 ], [ -95.48822718709178, 29.864566857577721 ], [ -95.459335165936963, 29.842263059170278 ], [ -95.430443144782146, 29.812524661293683 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77093", "state": "TX", "Sheet1_value": 2120, "Sheet1_populaiton": 42639, "Sheet1_income": 31725, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332210272855761, 29.819959260762833 ], [ -95.349545485548646, 29.819959260762833 ], [ -95.361102294010578, 29.847219458816376 ], [ -95.366880698241545, 29.876957856692968 ], [ -95.372659102472511, 29.891827055631264 ], [ -95.30909665593191, 29.891827055631264 ], [ -95.332210272855761, 29.819959260762833 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77094", "state": "TX", "Sheet1_value": 386, "Sheet1_populaiton": 8547, "Sheet1_income": 146518, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690471335175516, 29.710918468548659 ], [ -95.719363356330334, 29.785264463240139 ], [ -95.644244101327814, 29.785264463240139 ], [ -95.644244101327814, 29.770395264301843 ], [ -95.644244101327814, 29.73570046677915 ], [ -95.690471335175516, 29.710918468548659 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77095", "state": "TX", "Sheet1_value": 3732, "Sheet1_populaiton": 68458, "Sheet1_income": 89393, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.626908888634915, 29.879436056516017 ], [ -95.68469293094455, 29.879436056516017 ], [ -95.673136122482632, 29.953782051207501 ], [ -95.626908888634915, 29.92156545350786 ], [ -95.621130484403949, 29.91413085403871 ], [ -95.626908888634915, 29.879436056516017 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77096", "state": "TX", "Sheet1_value": 1696, "Sheet1_populaiton": 34891, "Sheet1_income": 63346, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.44777835747503, 29.673745471202917 ], [ -95.505562399784679, 29.656398072441569 ], [ -95.511340804015646, 29.676223671025966 ], [ -95.494005591322747, 29.688614670141213 ], [ -95.482448782860814, 29.691092869964262 ], [ -95.44777835747503, 29.688614670141213 ], [ -95.44777835747503, 29.673745471202917 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77098", "state": "TX", "Sheet1_value": 671, "Sheet1_populaiton": 12720, "Sheet1_income": 81907, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430443144782146, 29.7431350662483 ], [ -95.401551123627328, 29.7431350662483 ], [ -95.401551123627328, 29.725787667486955 ], [ -95.430443144782146, 29.728265867310004 ], [ -95.430443144782146, 29.730744067133053 ], [ -95.430443144782146, 29.733222266956101 ], [ -95.430443144782146, 29.7431350662483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOUSTON", "zip": "77099", "state": "TX", "Sheet1_value": 4204, "Sheet1_populaiton": 45234, "Sheet1_income": 35252, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563346442094314, 29.658876272264621 ], [ -95.56912484632528, 29.648963472972422 ], [ -95.598016867480098, 29.66135447208767 ], [ -95.615352080172983, 29.671267271379868 ], [ -95.615352080172983, 29.683658270495116 ], [ -95.557568037863348, 29.686136470318164 ], [ -95.557568037863348, 29.663832671910718 ], [ -95.563346442094314, 29.658876272264621 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77301", "state": "TX", "Sheet1_value": 1340, "Sheet1_populaiton": 31060, "Sheet1_income": 34097, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384215910934429, 30.293295426965273 ], [ -95.459335165936963, 30.266035228911726 ], [ -95.476670378629848, 30.33294662413406 ], [ -95.395772719396362, 30.325512024664913 ], [ -95.384215910934429, 30.293295426965273 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77302", "state": "TX", "Sheet1_value": 817, "Sheet1_populaiton": 17868, "Sheet1_income": 57758, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.274426230546112, 30.20903663298159 ], [ -95.285983039008045, 30.164429036166702 ], [ -95.372659102472511, 30.161950836343649 ], [ -95.459335165936963, 30.243731430504283 ], [ -95.459335165936963, 30.246209630327332 ], [ -95.459335165936963, 30.266035228911726 ], [ -95.384215910934429, 30.293295426965273 ], [ -95.274426230546112, 30.20903663298159 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77303", "state": "TX", "Sheet1_value": 755, "Sheet1_populaiton": 16929, "Sheet1_income": 45599, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 30.409770818648592 ], [ -95.291761443239011, 30.330468424311011 ], [ -95.395772719396362, 30.325512024664913 ], [ -95.476670378629848, 30.33294662413406 ], [ -95.48822718709178, 30.384988820418098 ], [ -95.476670378629848, 30.389945220064199 ], [ -95.30909665593191, 30.409770818648592 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77304", "state": "TX", "Sheet1_value": 984, "Sheet1_populaiton": 23192, "Sheet1_income": 58774, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.546011229401415, 30.261078829265628 ], [ -95.586460059018165, 30.355250422541506 ], [ -95.56912484632528, 30.360206822187607 ], [ -95.48822718709178, 30.384988820418098 ], [ -95.476670378629848, 30.33294662413406 ], [ -95.459335165936963, 30.266035228911726 ], [ -95.459335165936963, 30.246209630327332 ], [ -95.546011229401415, 30.261078829265628 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77306", "state": "TX", "Sheet1_value": 526, "Sheet1_populaiton": 11456, "Sheet1_income": 41596, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.26864782631516, 30.275948028203924 ], [ -95.251312613622261, 30.233818631212085 ], [ -95.274426230546112, 30.20903663298159 ], [ -95.384215910934429, 30.293295426965273 ], [ -95.395772719396362, 30.325512024664913 ], [ -95.291761443239011, 30.330468424311011 ], [ -95.26864782631516, 30.275948028203924 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MONTGOMERY", "zip": "77316", "state": "TX", "Sheet1_value": 825, "Sheet1_populaiton": 15465, "Sheet1_income": 72458, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.8060394197948, 30.246209630327332 ], [ -95.8060394197948, 30.352772222718457 ], [ -95.586460059018165, 30.355250422541506 ], [ -95.546011229401415, 30.261078829265628 ], [ -95.546011229401415, 30.258600629442579 ], [ -95.8060394197948, 30.246209630327332 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILLIS", "zip": "77318", "state": "TX", "Sheet1_value": 577, "Sheet1_populaiton": 13133, "Sheet1_income": 78194, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.56912484632528, 30.360206822187607 ], [ -95.598016867480098, 30.508898811570567 ], [ -95.494005591322747, 30.508898811570567 ], [ -95.476670378629848, 30.389945220064199 ], [ -95.48822718709178, 30.384988820418098 ], [ -95.56912484632528, 30.360206822187607 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUNTSVILLE", "zip": "77320", "state": "TX", "Sheet1_value": 659, "Sheet1_populaiton": 36855, "Sheet1_income": 44130, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.303318251700944, 30.870715985735785 ], [ -95.332210272855761, 30.826108388920893 ], [ -95.430443144782146, 30.684850999007079 ], [ -95.84648824941155, 30.761675193521612 ], [ -95.863823462104435, 30.863281386266635 ], [ -95.713584952099382, 30.910367182904576 ], [ -95.615352080172983, 30.930192781488969 ], [ -95.586460059018165, 30.954974779719464 ], [ -95.40732952785828, 30.927714581665921 ], [ -95.441999953244078, 30.855846786797489 ], [ -95.303318251700944, 30.870715985735785 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLEVELAND", "zip": "77327", "state": "TX", "Sheet1_value": 842, "Sheet1_populaiton": 20829, "Sheet1_income": 46936, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.106852507848174, 30.199123833689391 ], [ -95.26864782631516, 30.275948028203924 ], [ -95.291761443239011, 30.330468424311011 ], [ -95.30909665593191, 30.409770818648592 ], [ -95.291761443239011, 30.546071808916309 ], [ -95.285983039008045, 30.548550008739362 ], [ -95.141522933233944, 30.491551412809223 ], [ -95.072182082462376, 30.384988820418098 ], [ -94.846824317454789, 30.494029612632275 ], [ -94.731256232835506, 30.489073212986174 ], [ -94.667693786294905, 30.310642825726617 ], [ -94.823710700530938, 30.213993032627691 ], [ -95.072182082462376, 30.102474040590465 ], [ -95.083738890924309, 30.139647037936207 ], [ -95.106852507848174, 30.199123833689391 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLDSPRING", "zip": "77331", "state": "TX", "Sheet1_value": 207, "Sheet1_populaiton": 6219, "Sheet1_income": 41596, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.285983039008045, 30.548550008739362 ], [ -95.245534209391295, 30.632808802723041 ], [ -95.205085379774545, 30.719545796529772 ], [ -95.014398040152741, 30.632808802723041 ], [ -95.008619635921775, 30.627852403076943 ], [ -95.002841231690809, 30.580766606439003 ], [ -95.141522933233944, 30.491551412809223 ], [ -95.285983039008045, 30.548550008739362 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOODRICH", "zip": "77335", "state": "TX", "Sheet1_value": 102, "Sheet1_populaiton": 2447, "Sheet1_income": 23958, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.846824317454789, 30.546071808916309 ], [ -95.002841231690809, 30.580766606439003 ], [ -95.008619635921775, 30.627852403076943 ], [ -94.846824317454789, 30.546071808916309 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUFFMAN", "zip": "77336", "state": "TX", "Sheet1_value": 478, "Sheet1_populaiton": 12022, "Sheet1_income": 62995, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072182082462376, 30.102474040590465 ], [ -95.043290061307559, 30.028128045898981 ], [ -95.129966124772025, 29.990955048553243 ], [ -95.135744529002977, 30.050431844306427 ], [ -95.158858145926843, 30.080170242183023 ], [ -95.083738890924309, 30.139647037936207 ], [ -95.072182082462376, 30.102474040590465 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUMBLE", "zip": "77338", "state": "TX", "Sheet1_value": 1978, "Sheet1_populaiton": 34410, "Sheet1_income": 48046, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372659102472511, 29.998389648022389 ], [ -95.384215910934429, 30.040519045014229 ], [ -95.30909665593191, 30.033084445545082 ], [ -95.262869422084194, 30.033084445545082 ], [ -95.199306975543593, 30.025649846075932 ], [ -95.210863784005511, 29.981042249261044 ], [ -95.30909665593191, 29.983520449084093 ], [ -95.372659102472511, 29.998389648022389 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUMBLE", "zip": "77339", "state": "TX", "Sheet1_value": 1645, "Sheet1_populaiton": 39840, "Sheet1_income": 73135, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.176193358619742, 30.025649846075932 ], [ -95.199306975543593, 30.025649846075932 ], [ -95.262869422084194, 30.033084445545082 ], [ -95.18775016708166, 30.08512664182912 ], [ -95.176193358619742, 30.025649846075932 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUNTSVILLE", "zip": "77340", "state": "TX", "Sheet1_value": 645, "Sheet1_populaiton": 25784, "Sheet1_income": 30933, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.673136122482632, 30.548550008739362 ], [ -95.834931440949617, 30.677416399537929 ], [ -95.84648824941155, 30.761675193521612 ], [ -95.430443144782146, 30.684850999007079 ], [ -95.332210272855761, 30.826108388920893 ], [ -95.337988677086713, 30.746805994583312 ], [ -95.343767081317679, 30.66750360024573 ], [ -95.349545485548646, 30.578288406615954 ], [ -95.574903250556247, 30.617939603784745 ], [ -95.609573675942016, 30.516333411039717 ], [ -95.673136122482632, 30.548550008739362 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUMBLE", "zip": "77345", "state": "TX", "Sheet1_value": 763, "Sheet1_populaiton": 28239, "Sheet1_income": 119708, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.135744529002977, 30.050431844306427 ], [ -95.176193358619742, 30.025649846075932 ], [ -95.18775016708166, 30.08512664182912 ], [ -95.170414954388775, 30.092561241298267 ], [ -95.158858145926843, 30.080170242183023 ], [ -95.135744529002977, 30.050431844306427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUMBLE", "zip": "77346", "state": "TX", "Sheet1_value": 2250, "Sheet1_populaiton": 54627, "Sheet1_income": 86523, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.199306975543593, 30.025649846075932 ], [ -95.176193358619742, 30.025649846075932 ], [ -95.135744529002977, 30.050431844306427 ], [ -95.129966124772025, 29.990955048553243 ], [ -95.129966124772025, 29.988476848730194 ], [ -95.210863784005511, 29.933956452623107 ], [ -95.210863784005511, 29.981042249261044 ], [ -95.199306975543593, 30.025649846075932 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIVINGSTON", "zip": "77351", "state": "TX", "Sheet1_value": 972, "Sheet1_populaiton": 33044, "Sheet1_income": 39967, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.598352935523337, 30.751762394229413 ], [ -94.546347297444669, 30.526246210331916 ], [ -94.627244956678169, 30.491551412809223 ], [ -94.731256232835506, 30.489073212986174 ], [ -94.846824317454789, 30.494029612632275 ], [ -94.846824317454789, 30.546071808916309 ], [ -95.008619635921775, 30.627852403076943 ], [ -95.014398040152741, 30.632808802723041 ], [ -95.072182082462376, 30.84593398750529 ], [ -95.072182082462376, 30.88062878502798 ], [ -94.702364211680703, 30.900454383612377 ], [ -94.633023360909135, 30.902932583435426 ], [ -94.621466552447203, 30.858324986620538 ], [ -94.598352935523337, 30.751762394229413 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAGNOLIA", "zip": "77354", "state": "TX", "Sheet1_value": 1366, "Sheet1_populaiton": 32363, "Sheet1_income": 75269, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.522897612477564, 30.226384031742938 ], [ -95.551789633632382, 30.169385435812799 ], [ -95.626908888634915, 30.12725603882096 ], [ -95.707806547868415, 30.186732834574144 ], [ -95.8060394197948, 30.226384031742938 ], [ -95.8060394197948, 30.246209630327332 ], [ -95.546011229401415, 30.258600629442579 ], [ -95.522897612477564, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAGNOLIA", "zip": "77355", "state": "TX", "Sheet1_value": 1109, "Sheet1_populaiton": 25007, "Sheet1_income": 71326, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.655800909789733, 30.109908640059615 ], [ -95.736698569023233, 30.095039441121315 ], [ -95.8060394197948, 30.226384031742938 ], [ -95.707806547868415, 30.186732834574144 ], [ -95.655800909789733, 30.109908640059615 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MONTGOMERY", "zip": "77356", "state": "TX", "Sheet1_value": 1020, "Sheet1_populaiton": 24694, "Sheet1_income": 78353, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.8060394197948, 30.352772222718457 ], [ -95.811817824025752, 30.352772222718457 ], [ -95.817596228256718, 30.491551412809223 ], [ -95.817596228256718, 30.50394241192447 ], [ -95.673136122482632, 30.548550008739362 ], [ -95.609573675942016, 30.516333411039717 ], [ -95.598016867480098, 30.508898811570567 ], [ -95.56912484632528, 30.360206822187607 ], [ -95.586460059018165, 30.355250422541506 ], [ -95.8060394197948, 30.352772222718457 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW CANEY", "zip": "77357", "state": "TX", "Sheet1_value": 883, "Sheet1_populaiton": 19992, "Sheet1_income": 48979, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.170414954388775, 30.092561241298267 ], [ -95.285983039008045, 30.164429036166702 ], [ -95.274426230546112, 30.20903663298159 ], [ -95.251312613622261, 30.233818631212085 ], [ -95.106852507848174, 30.199123833689391 ], [ -95.083738890924309, 30.139647037936207 ], [ -95.158858145926843, 30.080170242183023 ], [ -95.170414954388775, 30.092561241298267 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW WAVERLY", "zip": "77358", "state": "TX", "Sheet1_value": 224, "Sheet1_populaiton": 5242, "Sheet1_income": 57656, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.609573675942016, 30.516333411039717 ], [ -95.574903250556247, 30.617939603784745 ], [ -95.349545485548646, 30.578288406615954 ], [ -95.343767081317679, 30.66750360024573 ], [ -95.26864782631516, 30.652634401307438 ], [ -95.245534209391295, 30.632808802723041 ], [ -95.285983039008045, 30.548550008739362 ], [ -95.291761443239011, 30.546071808916309 ], [ -95.494005591322747, 30.508898811570567 ], [ -95.598016867480098, 30.508898811570567 ], [ -95.609573675942016, 30.516333411039717 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OAKHURST", "zip": "77359", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36646, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.343767081317679, 30.66750360024573 ], [ -95.337988677086713, 30.746805994583312 ], [ -95.26864782631516, 30.652634401307438 ], [ -95.343767081317679, 30.66750360024573 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ONALASKA", "zip": "77360", "state": "TX", "Sheet1_value": 189, "Sheet1_populaiton": 4739, "Sheet1_income": 32380, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.18775016708166, 30.836021188213092 ], [ -95.164636550157809, 30.85336858697444 ], [ -95.112630912079126, 30.897976183789329 ], [ -95.072182082462376, 30.88062878502798 ], [ -95.072182082462376, 30.84593398750529 ], [ -95.083738890924309, 30.813717389805646 ], [ -95.106852507848174, 30.798848190867353 ], [ -95.18775016708166, 30.836021188213092 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PINEHURST", "zip": "77362", "state": "TX", "Sheet1_value": 225, "Sheet1_populaiton": 4841, "Sheet1_income": 59576, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.626908888634915, 30.12725603882096 ], [ -95.655800909789733, 30.109908640059615 ], [ -95.707806547868415, 30.186732834574144 ], [ -95.626908888634915, 30.12725603882096 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLANTERSVILLE", "zip": "77363", "state": "TX", "Sheet1_value": 149, "Sheet1_populaiton": 3251, "Sheet1_income": 46842, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.840709845180584, 30.243731430504283 ], [ -95.869601866335401, 30.241253230681231 ], [ -95.904272291721185, 30.362685022010655 ], [ -95.811817824025752, 30.352772222718457 ], [ -95.8060394197948, 30.352772222718457 ], [ -95.8060394197948, 30.246209630327332 ], [ -95.840709845180584, 30.243731430504283 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POINTBLANK", "zip": "77364", "state": "TX", "Sheet1_value": 75, "Sheet1_populaiton": 2062, "Sheet1_income": 44595, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.337988677086713, 30.746805994583312 ], [ -95.332210272855761, 30.826108388920893 ], [ -95.303318251700944, 30.870715985735785 ], [ -95.158858145926843, 30.796369991044301 ], [ -95.205085379774545, 30.719545796529772 ], [ -95.245534209391295, 30.632808802723041 ], [ -95.26864782631516, 30.652634401307438 ], [ -95.337988677086713, 30.746805994583312 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORTER", "zip": "77365", "state": "TX", "Sheet1_value": 1415, "Sheet1_populaiton": 26617, "Sheet1_income": 58109, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 30.033084445545082 ], [ -95.40732952785828, 30.092561241298267 ], [ -95.372659102472511, 30.161950836343649 ], [ -95.285983039008045, 30.164429036166702 ], [ -95.170414954388775, 30.092561241298267 ], [ -95.18775016708166, 30.08512664182912 ], [ -95.262869422084194, 30.033084445545082 ], [ -95.30909665593191, 30.033084445545082 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHEPHERD", "zip": "77371", "state": "TX", "Sheet1_value": 247, "Sheet1_populaiton": 8468, "Sheet1_income": 38595, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002841231690809, 30.580766606439003 ], [ -94.846824317454789, 30.546071808916309 ], [ -94.846824317454789, 30.494029612632275 ], [ -95.072182082462376, 30.384988820418098 ], [ -95.141522933233944, 30.491551412809223 ], [ -95.002841231690809, 30.580766606439003 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPLENDORA", "zip": "77372", "state": "TX", "Sheet1_value": 445, "Sheet1_populaiton": 12276, "Sheet1_income": 44896, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251312613622261, 30.233818631212085 ], [ -95.26864782631516, 30.275948028203924 ], [ -95.106852507848174, 30.199123833689391 ], [ -95.251312613622261, 30.233818631212085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77373", "state": "TX", "Sheet1_value": 2678, "Sheet1_populaiton": 55927, "Sheet1_income": 67742, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 30.033084445545082 ], [ -95.384215910934429, 30.040519045014229 ], [ -95.430443144782146, 30.035562645368131 ], [ -95.436221549013112, 30.08512664182912 ], [ -95.436221549013112, 30.109908640059615 ], [ -95.40732952785828, 30.092561241298267 ], [ -95.30909665593191, 30.033084445545082 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TOMBALL", "zip": "77375", "state": "TX", "Sheet1_value": 2106, "Sheet1_populaiton": 41919, "Sheet1_income": 60782, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52867601670853, 30.087604841652169 ], [ -95.56912484632528, 30.023171646252884 ], [ -95.603795271711064, 29.99591144819934 ], [ -95.777147398639983, 30.035562645368131 ], [ -95.736698569023233, 30.095039441121315 ], [ -95.655800909789733, 30.109908640059615 ], [ -95.626908888634915, 30.12725603882096 ], [ -95.551789633632382, 30.169385435812799 ], [ -95.540232825170449, 30.169385435812799 ], [ -95.52867601670853, 30.087604841652169 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILLIS", "zip": "77378", "state": "TX", "Sheet1_value": 654, "Sheet1_populaiton": 14151, "Sheet1_income": 48136, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.494005591322747, 30.508898811570567 ], [ -95.291761443239011, 30.546071808916309 ], [ -95.30909665593191, 30.409770818648592 ], [ -95.476670378629848, 30.389945220064199 ], [ -95.494005591322747, 30.508898811570567 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77379", "state": "TX", "Sheet1_value": 3814, "Sheet1_populaiton": 72579, "Sheet1_income": 97692, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.511340804015646, 30.005824247491539 ], [ -95.551789633632382, 29.993433248376292 ], [ -95.56912484632528, 30.023171646252884 ], [ -95.52867601670853, 30.087604841652169 ], [ -95.522897612477564, 30.08512664182912 ], [ -95.476670378629848, 30.023171646252884 ], [ -95.511340804015646, 30.005824247491539 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77380", "state": "TX", "Sheet1_value": 1100, "Sheet1_populaiton": 24771, "Sheet1_income": 67616, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.44777835747503, 30.156994436697552 ], [ -95.436221549013112, 30.109908640059615 ], [ -95.505562399784679, 30.147081637405357 ], [ -95.453556761705997, 30.179298235104998 ], [ -95.44777835747503, 30.156994436697552 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77381", "state": "TX", "Sheet1_value": 1183, "Sheet1_populaiton": 37028, "Sheet1_income": 101383, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.505562399784679, 30.147081637405357 ], [ -95.540232825170449, 30.169385435812799 ], [ -95.482448782860814, 30.191689234220245 ], [ -95.453556761705997, 30.186732834574144 ], [ -95.453556761705997, 30.179298235104998 ], [ -95.505562399784679, 30.147081637405357 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77382", "state": "TX", "Sheet1_value": 1191, "Sheet1_populaiton": 36764, "Sheet1_income": 131564, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.522897612477564, 30.226384031742938 ], [ -95.482448782860814, 30.191689234220245 ], [ -95.540232825170449, 30.169385435812799 ], [ -95.551789633632382, 30.169385435812799 ], [ -95.522897612477564, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77384", "state": "TX", "Sheet1_value": 531, "Sheet1_populaiton": 12443, "Sheet1_income": 80032, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.522897612477564, 30.226384031742938 ], [ -95.546011229401415, 30.258600629442579 ], [ -95.546011229401415, 30.261078829265628 ], [ -95.459335165936963, 30.246209630327332 ], [ -95.459335165936963, 30.243731430504283 ], [ -95.453556761705997, 30.186732834574144 ], [ -95.482448782860814, 30.191689234220245 ], [ -95.522897612477564, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONROE", "zip": "77385", "state": "TX", "Sheet1_value": 902, "Sheet1_populaiton": 19546, "Sheet1_income": 82175, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.453556761705997, 30.179298235104998 ], [ -95.453556761705997, 30.186732834574144 ], [ -95.459335165936963, 30.243731430504283 ], [ -95.372659102472511, 30.161950836343649 ], [ -95.44777835747503, 30.156994436697552 ], [ -95.453556761705997, 30.179298235104998 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77386", "state": "TX", "Sheet1_value": 1735, "Sheet1_populaiton": 42574, "Sheet1_income": 82747, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40732952785828, 30.092561241298267 ], [ -95.436221549013112, 30.109908640059615 ], [ -95.44777835747503, 30.156994436697552 ], [ -95.372659102472511, 30.161950836343649 ], [ -95.40732952785828, 30.092561241298267 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77388", "state": "TX", "Sheet1_value": 2239, "Sheet1_populaiton": 40175, "Sheet1_income": 82936, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476670378629848, 30.023171646252884 ], [ -95.522897612477564, 30.08512664182912 ], [ -95.436221549013112, 30.08512664182912 ], [ -95.430443144782146, 30.035562645368131 ], [ -95.476670378629848, 30.023171646252884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING", "zip": "77389", "state": "TX", "Sheet1_value": 1089, "Sheet1_populaiton": 24561, "Sheet1_income": 99702, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52867601670853, 30.087604841652169 ], [ -95.540232825170449, 30.169385435812799 ], [ -95.505562399784679, 30.147081637405357 ], [ -95.436221549013112, 30.109908640059615 ], [ -95.436221549013112, 30.08512664182912 ], [ -95.522897612477564, 30.08512664182912 ], [ -95.52867601670853, 30.087604841652169 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUMBLE", "zip": "77396", "state": "TX", "Sheet1_value": 2191, "Sheet1_populaiton": 45778, "Sheet1_income": 56575, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30909665593191, 29.983520449084093 ], [ -95.210863784005511, 29.981042249261044 ], [ -95.210863784005511, 29.933956452623107 ], [ -95.245534209391295, 29.92156545350786 ], [ -95.297539847469977, 29.919087253684808 ], [ -95.30909665593191, 29.919087253684808 ], [ -95.30909665593191, 29.983520449084093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BELLAIRE", "zip": "77401", "state": "TX", "Sheet1_value": 538, "Sheet1_populaiton": 17874, "Sheet1_income": 144821, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465113570167929, 29.725787667486955 ], [ -95.459335165936963, 29.725787667486955 ], [ -95.453556761705997, 29.725787667486955 ], [ -95.44777835747503, 29.728265867310004 ], [ -95.44777835747503, 29.705962068902558 ], [ -95.44777835747503, 29.688614670141213 ], [ -95.482448782860814, 29.691092869964262 ], [ -95.465113570167929, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAY CITY", "zip": "77414", "state": "TX", "Sheet1_value": 816, "Sheet1_populaiton": 23132, "Sheet1_income": 43186, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.002505163647569, 28.76176793632073 ], [ -95.996726759416603, 28.789028134374277 ], [ -96.025618780571421, 28.903025326234548 ], [ -96.014061972109488, 29.07154291420191 ], [ -95.777147398639983, 29.026935317387018 ], [ -95.702028143637449, 28.969936721456882 ], [ -95.505562399784679, 28.823722931896967 ], [ -95.777147398639983, 28.749376937205483 ], [ -95.811817824025752, 28.905503526057597 ], [ -96.002505163647569, 28.76176793632073 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEASLEY", "zip": "77417", "state": "TX", "Sheet1_value": 89, "Sheet1_populaiton": 2445, "Sheet1_income": 35833, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.921607504414069, 29.44822928730542 ], [ -95.944721121337935, 29.368926892967838 ], [ -95.967834738261786, 29.381317892083086 ], [ -96.060289205957204, 29.477967685182012 ], [ -95.985169950954685, 29.539922680758249 ], [ -95.921607504414069, 29.44822928730542 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BELLVILLE", "zip": "77418", "state": "TX", "Sheet1_value": 365, "Sheet1_populaiton": 9296, "Sheet1_income": 46250, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.30298218365769, 29.92156545350786 ], [ -96.372323034429257, 29.911652654215661 ], [ -96.447442289431791, 29.971129449968846 ], [ -96.435885480969858, 30.075213842536922 ], [ -96.291425375195757, 30.095039441121315 ], [ -96.146965269421671, 30.070257442890824 ], [ -96.112294844035887, 29.91413085403871 ], [ -96.106516439804921, 29.886870655985167 ], [ -96.30298218365769, 29.92156545350786 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLESSING", "zip": "77419", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 21857, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.152743673652623, 28.855939529596611 ], [ -96.158522077883589, 28.789028134374277 ], [ -96.314538992119623, 28.789028134374277 ], [ -96.308760587888656, 28.900547126411499 ], [ -96.198970907500339, 28.903025326234548 ], [ -96.152743673652623, 28.855939529596611 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOLING", "zip": "77420", "state": "TX", "Sheet1_value": 76, "Sheet1_populaiton": 1960, "Sheet1_income": 27660, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.944721121337935, 29.165714507477787 ], [ -96.037175589033353, 29.106237711724599 ], [ -96.100738035573954, 29.237582302346219 ], [ -95.950499525568887, 29.334232095445145 ], [ -95.84648824941155, 29.262364300576714 ], [ -95.840709845180584, 29.259886100753665 ], [ -95.875380270566367, 29.230147702877069 ], [ -95.944721121337935, 29.165714507477787 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRAZORIA", "zip": "77422", "state": "TX", "Sheet1_value": 406, "Sheet1_populaiton": 13227, "Sheet1_income": 49262, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476670378629848, 29.026935317387018 ], [ -95.551789633632382, 28.945154723226388 ], [ -95.436221549013112, 28.85841772941966 ], [ -95.505562399784679, 28.823722931896967 ], [ -95.702028143637449, 28.969936721456882 ], [ -95.68469293094455, 29.083933913317153 ], [ -95.615352080172983, 29.098803112255453 ], [ -95.557568037863348, 29.054195515440561 ], [ -95.476670378629848, 29.026935317387018 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROOKSHIRE", "zip": "77423", "state": "TX", "Sheet1_value": 556, "Sheet1_populaiton": 9587, "Sheet1_income": 36667, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.990948355185637, 29.725787667486955 ], [ -96.031397184802387, 29.728265867310004 ], [ -96.106516439804921, 29.886870655985167 ], [ -96.112294844035887, 29.91413085403871 ], [ -96.025618780571421, 29.916609053861759 ], [ -95.910050695952151, 29.929000052977006 ], [ -95.892715483259252, 29.787742663063192 ], [ -95.881158674797319, 29.723309467663903 ], [ -95.990948355185637, 29.725787667486955 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHAPPELL HILL", "zip": "77426", "state": "TX", "Sheet1_value": 82, "Sheet1_populaiton": 2103, "Sheet1_income": 56420, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.094959631342988, 30.223905831919886 ], [ -96.146965269421671, 30.070257442890824 ], [ -96.291425375195757, 30.095039441121315 ], [ -96.216306120193224, 30.295773626788318 ], [ -96.152743673652623, 30.362685022010655 ], [ -96.094959631342988, 30.223905831919886 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CYPRESS", "zip": "77429", "state": "TX", "Sheet1_value": 3375, "Sheet1_populaiton": 74313, "Sheet1_income": 96695, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.673136122482632, 29.953782051207501 ], [ -95.702028143637449, 29.973607649791894 ], [ -95.777147398639983, 30.035562645368131 ], [ -95.603795271711064, 29.99591144819934 ], [ -95.586460059018165, 29.953782051207501 ], [ -95.626908888634915, 29.92156545350786 ], [ -95.673136122482632, 29.953782051207501 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DAMON", "zip": "77430", "state": "TX", "Sheet1_value": 111, "Sheet1_populaiton": 2007, "Sheet1_income": 68889, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.84648824941155, 29.205365704646578 ], [ -95.875380270566367, 29.230147702877069 ], [ -95.840709845180584, 29.259886100753665 ], [ -95.719363356330334, 29.329275695799048 ], [ -95.546011229401415, 29.398665290844431 ], [ -95.563346442094314, 29.252451501284515 ], [ -95.563346442094314, 29.200409305000477 ], [ -95.84648824941155, 29.205365704646578 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CYPRESS", "zip": "77433", "state": "TX", "Sheet1_value": 3343, "Sheet1_populaiton": 55563, "Sheet1_income": 89258, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.759812185947084, 29.874479656869919 ], [ -95.8060394197948, 29.904218054746512 ], [ -95.702028143637449, 29.973607649791894 ], [ -95.673136122482632, 29.953782051207501 ], [ -95.68469293094455, 29.879436056516017 ], [ -95.759812185947084, 29.874479656869919 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EAGLE LAKE", "zip": "77434", "state": "TX", "Sheet1_value": 247, "Sheet1_populaiton": 4701, "Sheet1_income": 35105, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.458999097893724, 29.599399476511433 ], [ -96.482112714817575, 29.70844026872561 ], [ -96.297203779426724, 29.696049269610363 ], [ -96.198970907500339, 29.656398072441569 ], [ -96.175857290576488, 29.634094274034126 ], [ -96.349209417505406, 29.413534489782727 ], [ -96.458999097893724, 29.599399476511433 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EAST BERNARD", "zip": "77435", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 4462, "Sheet1_income": 49604, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.967834738261786, 29.381317892083086 ], [ -96.198970907500339, 29.336710295268198 ], [ -96.360766225967325, 29.401143490667479 ], [ -96.349209417505406, 29.413534489782727 ], [ -96.175857290576488, 29.634094274034126 ], [ -95.990948355185637, 29.539922680758249 ], [ -95.985169950954685, 29.539922680758249 ], [ -96.060289205957204, 29.477967685182012 ], [ -95.967834738261786, 29.381317892083086 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EL CAMPO", "zip": "77437", "state": "TX", "Sheet1_value": 581, "Sheet1_populaiton": 17007, "Sheet1_income": 43599, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.135408460959738, 29.056673715263614 ], [ -96.204749311731305, 29.017022518094819 ], [ -96.256754949809988, 28.98976232004128 ], [ -96.401215055584075, 29.378839692260037 ], [ -96.360766225967325, 29.401143490667479 ], [ -96.198970907500339, 29.336710295268198 ], [ -96.100738035573954, 29.237582302346219 ], [ -96.037175589033353, 29.106237711724599 ], [ -96.135408460959738, 29.056673715263614 ], [ -96.227862928655156, 29.101281312078502 ], [ -96.135408460959738, 29.056673715263614 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELMATON", "zip": "77440", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.152743673652623, 28.855939529596611 ], [ -96.025618780571421, 28.903025326234548 ], [ -95.996726759416603, 28.789028134374277 ], [ -96.158522077883589, 28.789028134374277 ], [ -96.152743673652623, 28.855939529596611 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FULSHEAR", "zip": "77441", "state": "TX", "Sheet1_value": 310, "Sheet1_populaiton": 5409, "Sheet1_income": 123703, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.881158674797319, 29.591964877042287 ], [ -95.904272291721185, 29.582052077750088 ], [ -95.990948355185637, 29.725787667486955 ], [ -95.881158674797319, 29.723309467663903 ], [ -95.84648824941155, 29.693571069787311 ], [ -95.881158674797319, 29.591964877042287 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARWOOD", "zip": "77442", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35208, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.66124324597746, 29.264842500399762 ], [ -96.563010374051061, 29.334232095445145 ], [ -96.707470479825162, 29.487880484474211 ], [ -96.545675161358176, 29.614268675449729 ], [ -96.458999097893724, 29.599399476511433 ], [ -96.349209417505406, 29.413534489782727 ], [ -96.360766225967325, 29.401143490667479 ], [ -96.401215055584075, 29.378839692260037 ], [ -96.638129629053594, 29.247495101638417 ], [ -96.66124324597746, 29.264842500399762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GUY", "zip": "77444", "state": "TX", "Sheet1_value": 60, "Sheet1_populaiton": 999, "Sheet1_income": 59808, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.840709845180584, 29.259886100753665 ], [ -95.84648824941155, 29.262364300576714 ], [ -95.719363356330334, 29.329275695799048 ], [ -95.840709845180584, 29.259886100753665 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEMPSTEAD", "zip": "77445", "state": "TX", "Sheet1_value": 547, "Sheet1_populaiton": 12526, "Sheet1_income": 43066, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.146965269421671, 30.070257442890824 ], [ -96.094959631342988, 30.223905831919886 ], [ -96.054510801726252, 30.231340431389036 ], [ -95.956277929799853, 30.144603437582305 ], [ -96.060289205957204, 30.047953644483378 ], [ -96.025618780571421, 29.916609053861759 ], [ -96.112294844035887, 29.91413085403871 ], [ -96.146965269421671, 30.070257442890824 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOCKLEY", "zip": "77447", "state": "TX", "Sheet1_value": 735, "Sheet1_populaiton": 13542, "Sheet1_income": 65682, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.875380270566367, 29.919087253684808 ], [ -95.840709845180584, 30.243731430504283 ], [ -95.8060394197948, 30.246209630327332 ], [ -95.8060394197948, 30.226384031742938 ], [ -95.736698569023233, 30.095039441121315 ], [ -95.777147398639983, 30.035562645368131 ], [ -95.702028143637449, 29.973607649791894 ], [ -95.8060394197948, 29.904218054746512 ], [ -95.875380270566367, 29.919087253684808 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KATY", "zip": "77449", "state": "TX", "Sheet1_value": 7149, "Sheet1_populaiton": 95615, "Sheet1_income": 65420, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719363356330334, 29.785264463240139 ], [ -95.777147398639983, 29.785264463240139 ], [ -95.759812185947084, 29.874479656869919 ], [ -95.68469293094455, 29.879436056516017 ], [ -95.719363356330334, 29.785264463240139 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KATY", "zip": "77450", "state": "TX", "Sheet1_value": 3718, "Sheet1_populaiton": 70538, "Sheet1_income": 100957, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690471335175516, 29.70844026872561 ], [ -95.759812185947084, 29.70100566925646 ], [ -95.777147398639983, 29.785264463240139 ], [ -95.719363356330334, 29.785264463240139 ], [ -95.690471335175516, 29.710918468548659 ], [ -95.690471335175516, 29.70844026872561 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOUISE", "zip": "77455", "state": "TX", "Sheet1_value": 67, "Sheet1_populaiton": 1850, "Sheet1_income": 50000, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.256754949809988, 28.98976232004128 ], [ -96.308760587888656, 28.962502121987733 ], [ -96.568788778282027, 29.185540106062181 ], [ -96.638129629053594, 29.247495101638417 ], [ -96.401215055584075, 29.378839692260037 ], [ -96.256754949809988, 28.98976232004128 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARKHAM", "zip": "77456", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44878, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.198970907500339, 28.903025326234548 ], [ -96.204749311731305, 29.017022518094819 ], [ -96.135408460959738, 29.056673715263614 ], [ -96.037175589033353, 29.106237711724599 ], [ -96.014061972109488, 29.07154291420191 ], [ -96.025618780571421, 28.903025326234548 ], [ -96.152743673652623, 28.855939529596611 ], [ -96.198970907500339, 28.903025326234548 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MATAGORDA", "zip": "77457", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41912, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.014061972109488, 28.645292544637407 ], [ -96.002505163647569, 28.76176793632073 ], [ -95.811817824025752, 28.905503526057597 ], [ -95.777147398639983, 28.749376937205483 ], [ -95.962056334030819, 28.627945145876062 ], [ -95.696249739406483, 28.724594938974988 ], [ -96.014061972109488, 28.645292544637407 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDFIELD", "zip": "77458", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 19934, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.198970907500339, 28.903025326234548 ], [ -96.308760587888656, 28.900547126411499 ], [ -96.308760587888656, 28.94019832358029 ], [ -96.308760587888656, 28.962502121987733 ], [ -96.256754949809988, 28.98976232004128 ], [ -96.204749311731305, 29.017022518094819 ], [ -96.198970907500339, 28.903025326234548 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MISSOURI CITY", "zip": "77459", "state": "TX", "Sheet1_value": 3655, "Sheet1_populaiton": 58197, "Sheet1_income": 104547, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557568037863348, 29.502749683412507 ], [ -95.580681654787213, 29.579573877927039 ], [ -95.580681654787213, 29.606834075980583 ], [ -95.540232825170449, 29.584530277573137 ], [ -95.511340804015646, 29.57213927845789 ], [ -95.499783995553713, 29.527531681643001 ], [ -95.534454420939497, 29.455663886774566 ], [ -95.557568037863348, 29.502749683412507 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEEDVILLE", "zip": "77461", "state": "TX", "Sheet1_value": 448, "Sheet1_populaiton": 9695, "Sheet1_income": 59220, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719363356330334, 29.329275695799048 ], [ -95.84648824941155, 29.262364300576714 ], [ -95.950499525568887, 29.334232095445145 ], [ -95.944721121337935, 29.368926892967838 ], [ -95.921607504414069, 29.44822928730542 ], [ -95.811817824025752, 29.480445885005061 ], [ -95.551789633632382, 29.401143490667479 ], [ -95.546011229401415, 29.398665290844431 ], [ -95.719363356330334, 29.329275695799048 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PALACIOS", "zip": "77465", "state": "TX", "Sheet1_value": 444, "Sheet1_populaiton": 7353, "Sheet1_income": 42623, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.320317396350589, 28.642814344814362 ], [ -96.314538992119623, 28.789028134374277 ], [ -96.158522077883589, 28.789028134374277 ], [ -95.996726759416603, 28.789028134374277 ], [ -96.002505163647569, 28.76176793632073 ], [ -96.014061972109488, 28.645292544637407 ], [ -96.227862928655156, 28.583337549061174 ], [ -96.175857290576488, 28.76176793632073 ], [ -96.320317396350589, 28.642814344814362 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLEDGER", "zip": "77468", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 17820, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.875380270566367, 29.230147702877069 ], [ -95.84648824941155, 29.205365704646578 ], [ -95.852266653642502, 29.190496505708282 ], [ -95.944721121337935, 29.165714507477787 ], [ -95.875380270566367, 29.230147702877069 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHMOND", "zip": "77469", "state": "TX", "Sheet1_value": 2344, "Sheet1_populaiton": 36305, "Sheet1_income": 67088, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.811817824025752, 29.480445885005061 ], [ -95.742476973254185, 29.542400880581297 ], [ -95.881158674797319, 29.591964877042287 ], [ -95.84648824941155, 29.693571069787311 ], [ -95.759812185947084, 29.70100566925646 ], [ -95.690471335175516, 29.70844026872561 ], [ -95.661579314020699, 29.676223671025966 ], [ -95.68469293094455, 29.601877676334482 ], [ -95.557568037863348, 29.502749683412507 ], [ -95.534454420939497, 29.455663886774566 ], [ -95.551789633632382, 29.401143490667479 ], [ -95.811817824025752, 29.480445885005061 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROSENBERG", "zip": "77471", "state": "TX", "Sheet1_value": 1716, "Sheet1_populaiton": 35184, "Sheet1_income": 43798, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.811817824025752, 29.480445885005061 ], [ -95.921607504414069, 29.44822928730542 ], [ -95.985169950954685, 29.539922680758249 ], [ -95.990948355185637, 29.539922680758249 ], [ -95.904272291721185, 29.582052077750088 ], [ -95.881158674797319, 29.591964877042287 ], [ -95.742476973254185, 29.542400880581297 ], [ -95.811817824025752, 29.480445885005061 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEALY", "zip": "77474", "state": "TX", "Sheet1_value": 575, "Sheet1_populaiton": 13015, "Sheet1_income": 56905, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.297203779426724, 29.696049269610363 ], [ -96.30298218365769, 29.92156545350786 ], [ -96.106516439804921, 29.886870655985167 ], [ -96.031397184802387, 29.728265867310004 ], [ -96.060289205957204, 29.636572473857175 ], [ -96.094959631342988, 29.725787667486955 ], [ -96.198970907500339, 29.656398072441569 ], [ -96.297203779426724, 29.696049269610363 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STAFFORD", "zip": "77477", "state": "TX", "Sheet1_value": 2703, "Sheet1_populaiton": 36043, "Sheet1_income": 54917, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.540232825170449, 29.641528873503276 ], [ -95.540232825170449, 29.584530277573137 ], [ -95.580681654787213, 29.606834075980583 ], [ -95.598016867480098, 29.66135447208767 ], [ -95.56912484632528, 29.648963472972422 ], [ -95.540232825170449, 29.641528873503276 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUGAR LAND", "zip": "77478", "state": "TX", "Sheet1_value": 1973, "Sheet1_populaiton": 23853, "Sheet1_income": 89549, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.661579314020699, 29.676223671025966 ], [ -95.615352080172983, 29.671267271379868 ], [ -95.598016867480098, 29.66135447208767 ], [ -95.580681654787213, 29.606834075980583 ], [ -95.580681654787213, 29.579573877927039 ], [ -95.68469293094455, 29.601877676334482 ], [ -95.661579314020699, 29.676223671025966 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUGAR LAND", "zip": "77479", "state": "TX", "Sheet1_value": 5854, "Sheet1_populaiton": 78289, "Sheet1_income": 123935, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.68469293094455, 29.601877676334482 ], [ -95.580681654787213, 29.579573877927039 ], [ -95.557568037863348, 29.502749683412507 ], [ -95.68469293094455, 29.601877676334482 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SWEENY", "zip": "77480", "state": "TX", "Sheet1_value": 274, "Sheet1_populaiton": 8074, "Sheet1_income": 53639, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.702028143637449, 28.969936721456882 ], [ -95.777147398639983, 29.026935317387018 ], [ -95.777147398639983, 29.051717315617513 ], [ -95.68469293094455, 29.083933913317153 ], [ -95.702028143637449, 28.969936721456882 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VAN VLECK", "zip": "77482", "state": "TX", "Sheet1_value": 88, "Sheet1_populaiton": 1963, "Sheet1_income": 51887, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.852266653642502, 29.190496505708282 ], [ -95.777147398639983, 29.051717315617513 ], [ -95.777147398639983, 29.026935317387018 ], [ -96.014061972109488, 29.07154291420191 ], [ -96.037175589033353, 29.106237711724599 ], [ -95.944721121337935, 29.165714507477787 ], [ -95.852266653642502, 29.190496505708282 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WALLER", "zip": "77484", "state": "TX", "Sheet1_value": 551, "Sheet1_populaiton": 10898, "Sheet1_income": 63045, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.054510801726252, 30.231340431389036 ], [ -95.869601866335401, 30.241253230681231 ], [ -95.840709845180584, 30.243731430504283 ], [ -95.875380270566367, 29.919087253684808 ], [ -95.910050695952151, 29.929000052977006 ], [ -96.025618780571421, 29.916609053861759 ], [ -96.060289205957204, 30.047953644483378 ], [ -95.956277929799853, 30.144603437582305 ], [ -96.054510801726252, 30.231340431389036 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WALLIS", "zip": "77485", "state": "TX", "Sheet1_value": 149, "Sheet1_populaiton": 3790, "Sheet1_income": 60900, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.904272291721185, 29.582052077750088 ], [ -95.990948355185637, 29.539922680758249 ], [ -96.175857290576488, 29.634094274034126 ], [ -96.198970907500339, 29.656398072441569 ], [ -96.094959631342988, 29.725787667486955 ], [ -96.060289205957204, 29.636572473857175 ], [ -96.031397184802387, 29.728265867310004 ], [ -95.990948355185637, 29.725787667486955 ], [ -95.904272291721185, 29.582052077750088 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEST COLUMBIA", "zip": "77486", "state": "TX", "Sheet1_value": 272, "Sheet1_populaiton": 6738, "Sheet1_income": 58049, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.68469293094455, 29.083933913317153 ], [ -95.777147398639983, 29.051717315617513 ], [ -95.852266653642502, 29.190496505708282 ], [ -95.84648824941155, 29.205365704646578 ], [ -95.563346442094314, 29.200409305000477 ], [ -95.615352080172983, 29.098803112255453 ], [ -95.68469293094455, 29.083933913317153 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHARTON", "zip": "77488", "state": "TX", "Sheet1_value": 643, "Sheet1_populaiton": 14797, "Sheet1_income": 36257, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.198970907500339, 29.336710295268198 ], [ -95.967834738261786, 29.381317892083086 ], [ -95.944721121337935, 29.368926892967838 ], [ -95.950499525568887, 29.334232095445145 ], [ -96.100738035573954, 29.237582302346219 ], [ -96.198970907500339, 29.336710295268198 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MISSOURI CITY", "zip": "77489", "state": "TX", "Sheet1_value": 2480, "Sheet1_populaiton": 35540, "Sheet1_income": 58315, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.494005591322747, 29.579573877927039 ], [ -95.511340804015646, 29.57213927845789 ], [ -95.540232825170449, 29.584530277573137 ], [ -95.540232825170449, 29.641528873503276 ], [ -95.517119208246598, 29.626659674564976 ], [ -95.476670378629848, 29.604355876157534 ], [ -95.494005591322747, 29.579573877927039 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KATY", "zip": "77493", "state": "TX", "Sheet1_value": 1354, "Sheet1_populaiton": 23628, "Sheet1_income": 78452, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.910050695952151, 29.929000052977006 ], [ -95.875380270566367, 29.919087253684808 ], [ -95.8060394197948, 29.904218054746512 ], [ -95.759812185947084, 29.874479656869919 ], [ -95.777147398639983, 29.785264463240139 ], [ -95.892715483259252, 29.787742663063192 ], [ -95.910050695952151, 29.929000052977006 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KATY", "zip": "77494", "state": "TX", "Sheet1_value": 3876, "Sheet1_populaiton": 71613, "Sheet1_income": 126425, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.84648824941155, 29.693571069787311 ], [ -95.881158674797319, 29.723309467663903 ], [ -95.892715483259252, 29.787742663063192 ], [ -95.777147398639983, 29.785264463240139 ], [ -95.759812185947084, 29.70100566925646 ], [ -95.84648824941155, 29.693571069787311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77502", "state": "TX", "Sheet1_value": 1961, "Sheet1_populaiton": 36712, "Sheet1_income": 43014, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.170414954388775, 29.666310871733767 ], [ -95.210863784005511, 29.663832671910718 ], [ -95.22819899669841, 29.671267271379868 ], [ -95.22819899669841, 29.691092869964262 ], [ -95.170414954388775, 29.691092869964262 ], [ -95.170414954388775, 29.666310871733767 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77503", "state": "TX", "Sheet1_value": 1157, "Sheet1_populaiton": 25103, "Sheet1_income": 44939, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.14730133746491, 29.73570046677915 ], [ -95.129966124772025, 29.663832671910718 ], [ -95.170414954388775, 29.666310871733767 ], [ -95.170414954388775, 29.691092869964262 ], [ -95.176193358619742, 29.748091465894397 ], [ -95.14730133746491, 29.73570046677915 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77504", "state": "TX", "Sheet1_value": 1069, "Sheet1_populaiton": 24922, "Sheet1_income": 40321, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.170414954388775, 29.666310871733767 ], [ -95.170414954388775, 29.631616074211077 ], [ -95.210863784005511, 29.651441672795471 ], [ -95.210863784005511, 29.663832671910718 ], [ -95.170414954388775, 29.666310871733767 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77505", "state": "TX", "Sheet1_value": 1062, "Sheet1_populaiton": 23550, "Sheet1_income": 72695, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153079741695876, 29.631616074211077 ], [ -95.170414954388775, 29.631616074211077 ], [ -95.170414954388775, 29.666310871733767 ], [ -95.129966124772025, 29.663832671910718 ], [ -95.118409316310093, 29.663832671910718 ], [ -95.112630912079126, 29.641528873503276 ], [ -95.106852507848174, 29.634094274034126 ], [ -95.153079741695876, 29.631616074211077 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77506", "state": "TX", "Sheet1_value": 1556, "Sheet1_populaiton": 35875, "Sheet1_income": 30617, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.170414954388775, 29.691092869964262 ], [ -95.22819899669841, 29.691092869964262 ], [ -95.233977400929376, 29.70844026872561 ], [ -95.222420592467444, 29.725787667486955 ], [ -95.210863784005511, 29.725787667486955 ], [ -95.176193358619742, 29.748091465894397 ], [ -95.170414954388775, 29.691092869964262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PASADENA", "zip": "77507", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.03173325284564, 29.604355876157534 ], [ -95.095295699386241, 29.579573877927039 ], [ -95.089517295155275, 29.596921276688384 ], [ -95.106852507848174, 29.634094274034126 ], [ -95.112630912079126, 29.641528873503276 ], [ -95.03173325284564, 29.604355876157534 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTA FE", "zip": "77510", "state": "TX", "Sheet1_value": 461, "Sheet1_populaiton": 13605, "Sheet1_income": 60074, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.129966124772025, 29.287146298807208 ], [ -95.118409316310093, 29.294580898276358 ], [ -95.101074103617208, 29.425925488897974 ], [ -95.054846869769491, 29.416012689605779 ], [ -95.049068465538525, 29.376361492436985 ], [ -95.095295699386241, 29.254929701107564 ], [ -95.129966124772025, 29.287146298807208 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALVIN", "zip": "77511", "state": "TX", "Sheet1_value": 2043, "Sheet1_populaiton": 46889, "Sheet1_income": 52507, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.135744529002977, 29.438316488013221 ], [ -95.118409316310093, 29.294580898276358 ], [ -95.129966124772025, 29.287146298807208 ], [ -95.291761443239011, 29.321841096329898 ], [ -95.361102294010578, 29.411056289959678 ], [ -95.326431868624795, 29.49531508394336 ], [ -95.262869422084194, 29.5225752819969 ], [ -95.222420592467444, 29.515140682527754 ], [ -95.176193358619742, 29.465576686066765 ], [ -95.135744529002977, 29.438316488013221 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANAHUAC", "zip": "77514", "state": "TX", "Sheet1_value": 176, "Sheet1_populaiton": 4315, "Sheet1_income": 44375, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.355659957822866, 29.693571069787311 ], [ -94.355659957822866, 29.559748279342642 ], [ -94.37299517051575, 29.554791879696545 ], [ -94.465449638211169, 29.557270079519594 ], [ -94.765926658221304, 29.520097082173852 ], [ -94.69080740321877, 29.755526065363547 ], [ -94.742813041297438, 29.83235025987808 ], [ -94.627244956678169, 29.859610457931623 ], [ -94.523233680520818, 29.889348855808215 ], [ -94.442336021287318, 29.889348855808215 ], [ -94.4134440001325, 29.886870655985167 ], [ -94.37299517051575, 29.733222266956101 ], [ -94.477006446673101, 29.673745471202917 ], [ -94.355659957822866, 29.693571069787311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANGLETON", "zip": "77515", "state": "TX", "Sheet1_value": 1016, "Sheet1_populaiton": 30036, "Sheet1_income": 55911, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314875060162862, 29.148367108716442 ], [ -95.361102294010578, 29.069064714378861 ], [ -95.413107932089247, 29.086412113140206 ], [ -95.557568037863348, 29.054195515440561 ], [ -95.615352080172983, 29.098803112255453 ], [ -95.563346442094314, 29.200409305000477 ], [ -95.563346442094314, 29.252451501284515 ], [ -95.355323889779612, 29.27723349951501 ], [ -95.314875060162862, 29.148367108716442 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTA FE", "zip": "77517", "state": "TX", "Sheet1_value": 197, "Sheet1_populaiton": 6235, "Sheet1_income": 83472, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.135744529002977, 29.438316488013221 ], [ -95.101074103617208, 29.425925488897974 ], [ -95.118409316310093, 29.294580898276358 ], [ -95.135744529002977, 29.438316488013221 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BACLIFF", "zip": "77518", "state": "TX", "Sheet1_value": 513, "Sheet1_populaiton": 7815, "Sheet1_income": 40612, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.997062827459857, 29.497793283766409 ], [ -95.002841231690809, 29.512662482704705 ], [ -95.002841231690809, 29.525053481819953 ], [ -94.95083559361214, 29.505227883235555 ], [ -94.997062827459857, 29.497793283766409 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BATSON", "zip": "77519", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36487, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.52901208475177, 30.171863635635848 ], [ -94.615688148216236, 30.164429036166702 ], [ -94.644580169371054, 30.253644229796478 ], [ -94.667693786294905, 30.310642825726617 ], [ -94.56946091436852, 30.256122429619531 ], [ -94.52901208475177, 30.171863635635848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAYTOWN", "zip": "77520", "state": "TX", "Sheet1_value": 1494, "Sheet1_populaiton": 37735, "Sheet1_income": 43409, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.979727614766958, 29.678701870849014 ], [ -95.077960486693343, 29.762960664832697 ], [ -95.083738890924309, 29.762960664832697 ], [ -95.060625274000458, 29.792699062709289 ], [ -95.043290061307559, 29.787742663063192 ], [ -94.921943572457323, 29.762960664832697 ], [ -94.968170806305039, 29.859610457931623 ], [ -94.979727614766958, 29.884392456162118 ], [ -94.760148253990337, 29.837306659524177 ], [ -94.742813041297438, 29.83235025987808 ], [ -94.69080740321877, 29.755526065363547 ], [ -94.979727614766958, 29.678701870849014 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAYTOWN", "zip": "77521", "state": "TX", "Sheet1_value": 1900, "Sheet1_populaiton": 50406, "Sheet1_income": 53726, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.043290061307559, 29.787742663063192 ], [ -94.99128442322889, 29.842263059170278 ], [ -94.968170806305039, 29.859610457931623 ], [ -94.921943572457323, 29.762960664832697 ], [ -95.043290061307559, 29.787742663063192 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHANNELVIEW", "zip": "77530", "state": "TX", "Sheet1_value": 1299, "Sheet1_populaiton": 30368, "Sheet1_income": 44786, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.083738890924309, 29.762960664832697 ], [ -95.095295699386241, 29.753047865540498 ], [ -95.158858145926843, 29.810046461470634 ], [ -95.077960486693343, 29.82491566040893 ], [ -95.060625274000458, 29.792699062709289 ], [ -95.083738890924309, 29.762960664832697 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLUTE", "zip": "77531", "state": "TX", "Sheet1_value": 600, "Sheet1_populaiton": 15358, "Sheet1_income": 47121, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.361102294010578, 29.069064714378861 ], [ -95.418886336320213, 28.999675119333475 ], [ -95.413107932089247, 29.086412113140206 ], [ -95.361102294010578, 29.069064714378861 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROSBY", "zip": "77532", "state": "TX", "Sheet1_value": 907, "Sheet1_populaiton": 27208, "Sheet1_income": 63236, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.968170806305039, 29.859610457931623 ], [ -94.99128442322889, 29.842263059170278 ], [ -95.095295699386241, 29.864566857577721 ], [ -95.095295699386241, 29.879436056516017 ], [ -95.129966124772025, 29.988476848730194 ], [ -95.129966124772025, 29.990955048553243 ], [ -95.043290061307559, 30.028128045898981 ], [ -94.979727614766958, 29.884392456162118 ], [ -94.968170806305039, 29.859610457931623 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DANBURY", "zip": "77534", "state": "TX", "Sheet1_value": 111, "Sheet1_populaiton": 2988, "Sheet1_income": 77045, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.210863784005511, 29.212800304115724 ], [ -95.314875060162862, 29.148367108716442 ], [ -95.355323889779612, 29.27723349951501 ], [ -95.314875060162862, 29.302015497745504 ], [ -95.205085379774545, 29.212800304115724 ], [ -95.210863784005511, 29.212800304115724 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DAYTON", "zip": "77535", "state": "TX", "Sheet1_value": 980, "Sheet1_populaiton": 31019, "Sheet1_income": 54553, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.043290061307559, 30.028128045898981 ], [ -95.072182082462376, 30.102474040590465 ], [ -94.823710700530938, 30.213993032627691 ], [ -94.858381125916722, 30.04547544466033 ], [ -94.737034637066472, 29.886870655985167 ], [ -94.760148253990337, 29.837306659524177 ], [ -94.979727614766958, 29.884392456162118 ], [ -95.043290061307559, 30.028128045898981 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEER PARK", "zip": "77536", "state": "TX", "Sheet1_value": 925, "Sheet1_populaiton": 31295, "Sheet1_income": 77824, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.077960486693343, 29.762960664832697 ], [ -95.118409316310093, 29.663832671910718 ], [ -95.129966124772025, 29.663832671910718 ], [ -95.14730133746491, 29.73570046677915 ], [ -95.095295699386241, 29.753047865540498 ], [ -95.083738890924309, 29.762960664832697 ], [ -95.077960486693343, 29.762960664832697 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEVERS", "zip": "77538", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.523233680520818, 29.889348855808215 ], [ -94.615688148216236, 29.889348855808215 ], [ -94.656136977832986, 29.889348855808215 ], [ -94.598352935523337, 30.028128045898981 ], [ -94.56946091436852, 30.112386839882664 ], [ -94.448114425518284, 30.112386839882664 ], [ -94.442336021287318, 29.889348855808215 ], [ -94.523233680520818, 29.889348855808215 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DICKINSON", "zip": "77539", "state": "TX", "Sheet1_value": 1823, "Sheet1_populaiton": 40368, "Sheet1_income": 66129, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.956613997843107, 29.470533085712866 ], [ -95.049068465538525, 29.418490889428828 ], [ -95.054846869769491, 29.416012689605779 ], [ -95.101074103617208, 29.425925488897974 ], [ -95.135744529002977, 29.438316488013221 ], [ -95.176193358619742, 29.465576686066765 ], [ -95.176193358619742, 29.468054885889813 ], [ -94.997062827459857, 29.497793283766409 ], [ -94.95083559361214, 29.505227883235555 ], [ -94.956613997843107, 29.470533085712866 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FREEPORT", "zip": "77541", "state": "TX", "Sheet1_value": 748, "Sheet1_populaiton": 17535, "Sheet1_income": 39304, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476670378629848, 29.026935317387018 ], [ -95.418886336320213, 28.999675119333475 ], [ -95.361102294010578, 29.069064714378861 ], [ -95.314875060162862, 29.148367108716442 ], [ -95.210863784005511, 29.212800304115724 ], [ -95.222420592467444, 29.014544318271771 ], [ -95.124187720541059, 29.074021114024958 ], [ -95.436221549013112, 28.85841772941966 ], [ -95.551789633632382, 28.945154723226388 ], [ -95.476670378629848, 29.026935317387018 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRESNO", "zip": "77545", "state": "TX", "Sheet1_value": 1272, "Sheet1_populaiton": 19868, "Sheet1_income": 67970, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.511340804015646, 29.57213927845789 ], [ -95.494005591322747, 29.579573877927039 ], [ -95.430443144782146, 29.582052077750088 ], [ -95.424664740551179, 29.582052077750088 ], [ -95.499783995553713, 29.527531681643001 ], [ -95.511340804015646, 29.57213927845789 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRIENDSWOOD", "zip": "77546", "state": "TX", "Sheet1_value": 2177, "Sheet1_populaiton": 49255, "Sheet1_income": 98442, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.158858145926843, 29.497793283766409 ], [ -95.176193358619742, 29.468054885889813 ], [ -95.176193358619742, 29.465576686066765 ], [ -95.222420592467444, 29.515140682527754 ], [ -95.216642188236477, 29.557270079519594 ], [ -95.181971762850694, 29.587008477396186 ], [ -95.158858145926843, 29.497793283766409 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GALENA PARK", "zip": "77547", "state": "TX", "Sheet1_value": 420, "Sheet1_populaiton": 9782, "Sheet1_income": 38692, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.222420592467444, 29.760482465009645 ], [ -95.210863784005511, 29.725787667486955 ], [ -95.222420592467444, 29.725787667486955 ], [ -95.245534209391295, 29.720831267840857 ], [ -95.222420592467444, 29.760482465009645 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GALVESTON", "zip": "77550", "state": "TX", "Sheet1_value": 1184, "Sheet1_populaiton": 22759, "Sheet1_income": 32447, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.812153892069006, 29.274755299691961 ], [ -94.823710700530938, 29.299537297922456 ], [ -94.806375487838039, 29.309450097214651 ], [ -94.725477828604554, 29.331753895622096 ], [ -94.812153892069006, 29.274755299691961 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GALVESTON", "zip": "77551", "state": "TX", "Sheet1_value": 929, "Sheet1_populaiton": 18649, "Sheet1_income": 42575, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.846824317454789, 29.254929701107564 ], [ -94.846824317454789, 29.269798900045863 ], [ -94.846824317454789, 29.287146298807208 ], [ -94.823710700530938, 29.299537297922456 ], [ -94.812153892069006, 29.274755299691961 ], [ -94.846824317454789, 29.254929701107564 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GALVESTON", "zip": "77554", "state": "TX", "Sheet1_value": 374, "Sheet1_populaiton": 8591, "Sheet1_income": 64583, "Sheet1_percent": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.806375487838039, 29.309450097214651 ], [ -94.823710700530938, 29.299537297922456 ], [ -94.846824317454789, 29.287146298807208 ], [ -94.806375487838039, 29.309450097214651 ] ] ], [ [ [ -94.846824317454789, 29.269798900045863 ], [ -94.846824317454789, 29.254929701107564 ], [ -95.112630912079126, 29.091368512786303 ], [ -94.846824317454789, 29.269798900045863 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "HANKAMER", "zip": "77560", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41463, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.627244956678169, 29.859610457931623 ], [ -94.615688148216236, 29.889348855808215 ], [ -94.523233680520818, 29.889348855808215 ], [ -94.627244956678169, 29.859610457931623 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HIGHLANDS", "zip": "77562", "state": "TX", "Sheet1_value": 322, "Sheet1_populaiton": 10751, "Sheet1_income": 57394, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.043290061307559, 29.787742663063192 ], [ -95.060625274000458, 29.792699062709289 ], [ -95.077960486693343, 29.82491566040893 ], [ -95.095295699386241, 29.864566857577721 ], [ -94.99128442322889, 29.842263059170278 ], [ -95.043290061307559, 29.787742663063192 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HITCHCOCK", "zip": "77563", "state": "TX", "Sheet1_value": 332, "Sheet1_populaiton": 9839, "Sheet1_income": 50498, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.054846869769491, 29.200409305000477 ], [ -95.095295699386241, 29.254929701107564 ], [ -95.049068465538525, 29.376361492436985 ], [ -94.904608359764438, 29.306971897391602 ], [ -95.054846869769491, 29.200409305000477 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HULL", "zip": "77564", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 1914, "Sheet1_income": 48657, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.598352935523337, 30.028128045898981 ], [ -94.737034637066472, 30.114865039705712 ], [ -94.644580169371054, 30.253644229796478 ], [ -94.615688148216236, 30.164429036166702 ], [ -94.56946091436852, 30.112386839882664 ], [ -94.598352935523337, 30.028128045898981 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KEMAH", "zip": "77565", "state": "TX", "Sheet1_value": 412, "Sheet1_populaiton": 5735, "Sheet1_income": 80000, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002841231690809, 29.512662482704705 ], [ -95.066403678231424, 29.559748279342642 ], [ -95.054846869769491, 29.559748279342642 ], [ -95.014398040152741, 29.547357280227395 ], [ -95.002841231690809, 29.525053481819953 ], [ -95.002841231690809, 29.512662482704705 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAKE JACKSON", "zip": "77566", "state": "TX", "Sheet1_value": 888, "Sheet1_populaiton": 28484, "Sheet1_income": 75066, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418886336320213, 28.999675119333475 ], [ -95.476670378629848, 29.026935317387018 ], [ -95.557568037863348, 29.054195515440561 ], [ -95.413107932089247, 29.086412113140206 ], [ -95.418886336320213, 28.999675119333475 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA MARQUE", "zip": "77568", "state": "TX", "Sheet1_value": 646, "Sheet1_populaiton": 14645, "Sheet1_income": 42196, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.049068465538525, 29.376361492436985 ], [ -95.054846869769491, 29.416012689605779 ], [ -95.049068465538525, 29.418490889428828 ], [ -94.95083559361214, 29.378839692260037 ], [ -94.904608359764438, 29.306971897391602 ], [ -95.049068465538525, 29.376361492436985 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA PORTE", "zip": "77571", "state": "TX", "Sheet1_value": 1138, "Sheet1_populaiton": 36116, "Sheet1_income": 68102, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985506018997924, 29.609312275803632 ], [ -95.03173325284564, 29.604355876157534 ], [ -95.112630912079126, 29.641528873503276 ], [ -95.118409316310093, 29.663832671910718 ], [ -95.077960486693343, 29.762960664832697 ], [ -94.979727614766958, 29.678701870849014 ], [ -94.985506018997924, 29.609312275803632 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEAGUE CITY", "zip": "77573", "state": "TX", "Sheet1_value": 3045, "Sheet1_populaiton": 73615, "Sheet1_income": 92559, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.158858145926843, 29.497793283766409 ], [ -95.095295699386241, 29.53000988146605 ], [ -95.066403678231424, 29.559748279342642 ], [ -95.002841231690809, 29.512662482704705 ], [ -94.997062827459857, 29.497793283766409 ], [ -95.176193358619742, 29.468054885889813 ], [ -95.158858145926843, 29.497793283766409 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIBERTY", "zip": "77575", "state": "TX", "Sheet1_value": 465, "Sheet1_populaiton": 15833, "Sheet1_income": 42765, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.656136977832986, 29.889348855808215 ], [ -94.737034637066472, 29.886870655985167 ], [ -94.858381125916722, 30.04547544466033 ], [ -94.823710700530938, 30.213993032627691 ], [ -94.667693786294905, 30.310642825726617 ], [ -94.644580169371054, 30.253644229796478 ], [ -94.737034637066472, 30.114865039705712 ], [ -94.598352935523337, 30.028128045898981 ], [ -94.656136977832986, 29.889348855808215 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIVERPOOL", "zip": "77577", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 52606, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314875060162862, 29.302015497745504 ], [ -95.291761443239011, 29.321841096329898 ], [ -95.129966124772025, 29.287146298807208 ], [ -95.095295699386241, 29.254929701107564 ], [ -95.054846869769491, 29.200409305000477 ], [ -95.205085379774545, 29.212800304115724 ], [ -95.314875060162862, 29.302015497745504 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MANVEL", "zip": "77578", "state": "TX", "Sheet1_value": 626, "Sheet1_populaiton": 14152, "Sheet1_income": 92826, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.361102294010578, 29.411056289959678 ], [ -95.389994315165396, 29.532488081289099 ], [ -95.326431868624795, 29.49531508394336 ], [ -95.361102294010578, 29.411056289959678 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PEARLAND", "zip": "77581", "state": "TX", "Sheet1_value": 1913, "Sheet1_populaiton": 41813, "Sheet1_income": 83709, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.262869422084194, 29.5225752819969 ], [ -95.349545485548646, 29.584530277573137 ], [ -95.297539847469977, 29.596921276688384 ], [ -95.26864782631516, 29.594443076865335 ], [ -95.216642188236477, 29.557270079519594 ], [ -95.222420592467444, 29.515140682527754 ], [ -95.262869422084194, 29.5225752819969 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROSHARON", "zip": "77583", "state": "TX", "Sheet1_value": 1109, "Sheet1_populaiton": 30837, "Sheet1_income": 68939, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314875060162862, 29.302015497745504 ], [ -95.355323889779612, 29.27723349951501 ], [ -95.563346442094314, 29.252451501284515 ], [ -95.546011229401415, 29.398665290844431 ], [ -95.551789633632382, 29.401143490667479 ], [ -95.534454420939497, 29.455663886774566 ], [ -95.499783995553713, 29.527531681643001 ], [ -95.424664740551179, 29.582052077750088 ], [ -95.384215910934429, 29.587008477396186 ], [ -95.389994315165396, 29.532488081289099 ], [ -95.361102294010578, 29.411056289959678 ], [ -95.291761443239011, 29.321841096329898 ], [ -95.314875060162862, 29.302015497745504 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PEARLAND", "zip": "77584", "state": "TX", "Sheet1_value": 3249, "Sheet1_populaiton": 74761, "Sheet1_income": 94103, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.326431868624795, 29.49531508394336 ], [ -95.389994315165396, 29.532488081289099 ], [ -95.384215910934429, 29.587008477396186 ], [ -95.349545485548646, 29.584530277573137 ], [ -95.262869422084194, 29.5225752819969 ], [ -95.326431868624795, 29.49531508394336 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SARATOGA", "zip": "77585", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37299, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.627244956678169, 30.491551412809223 ], [ -94.465449638211169, 30.389945220064199 ], [ -94.436557617056351, 30.275948028203924 ], [ -94.56946091436852, 30.256122429619531 ], [ -94.667693786294905, 30.310642825726617 ], [ -94.731256232835506, 30.489073212986174 ], [ -94.627244956678169, 30.491551412809223 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEABROOK", "zip": "77586", "state": "TX", "Sheet1_value": 909, "Sheet1_populaiton": 22044, "Sheet1_income": 86786, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.014398040152741, 29.547357280227395 ], [ -95.054846869769491, 29.559748279342642 ], [ -95.095295699386241, 29.579573877927039 ], [ -95.03173325284564, 29.604355876157534 ], [ -94.985506018997924, 29.609312275803632 ], [ -95.014398040152741, 29.547357280227395 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SOUTH HOUSTON", "zip": "77587", "state": "TX", "Sheet1_value": 912, "Sheet1_populaiton": 16734, "Sheet1_income": 36083, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.210863784005511, 29.651441672795471 ], [ -95.251312613622261, 29.651441672795471 ], [ -95.22819899669841, 29.671267271379868 ], [ -95.210863784005511, 29.663832671910718 ], [ -95.210863784005511, 29.651441672795471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEXAS CITY", "zip": "77590", "state": "TX", "Sheet1_value": 1072, "Sheet1_populaiton": 29980, "Sheet1_income": 45343, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.904608359764438, 29.306971897391602 ], [ -94.95083559361214, 29.378839692260037 ], [ -94.956613997843107, 29.425925488897974 ], [ -94.812153892069006, 29.36644869314479 ], [ -94.893051551302506, 29.309450097214651 ], [ -94.904608359764438, 29.306971897391602 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEXAS CITY", "zip": "77591", "state": "TX", "Sheet1_value": 644, "Sheet1_populaiton": 13906, "Sheet1_income": 46096, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.95083559361214, 29.378839692260037 ], [ -95.049068465538525, 29.418490889428828 ], [ -94.956613997843107, 29.470533085712866 ], [ -94.956613997843107, 29.425925488897974 ], [ -94.95083559361214, 29.378839692260037 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WALLISVILLE", "zip": "77597", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 81125, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.737034637066472, 29.886870655985167 ], [ -94.656136977832986, 29.889348855808215 ], [ -94.615688148216236, 29.889348855808215 ], [ -94.627244956678169, 29.859610457931623 ], [ -94.742813041297438, 29.83235025987808 ], [ -94.760148253990337, 29.837306659524177 ], [ -94.737034637066472, 29.886870655985167 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEBSTER", "zip": "77598", "state": "TX", "Sheet1_value": 1328, "Sheet1_populaiton": 23738, "Sheet1_income": 46682, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.158858145926843, 29.497793283766409 ], [ -95.181971762850694, 29.587008477396186 ], [ -95.164636550157809, 29.591964877042287 ], [ -95.129966124772025, 29.549835480050447 ], [ -95.095295699386241, 29.53000988146605 ], [ -95.158858145926843, 29.497793283766409 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRIDGE CITY", "zip": "77611", "state": "TX", "Sheet1_value": 266, "Sheet1_populaiton": 8415, "Sheet1_income": 63640, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.858717193959961, 29.968651250145797 ], [ -93.870274002421894, 29.981042249261044 ], [ -93.754705917802625, 30.015737046783734 ], [ -93.789376343188394, 29.988476848730194 ], [ -93.858717193959961, 29.968651250145797 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BUNA", "zip": "77612", "state": "TX", "Sheet1_value": 218, "Sheet1_populaiton": 9157, "Sheet1_income": 50144, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.887609215114793, 30.437031016702136 ], [ -93.899166023576711, 30.243731430504283 ], [ -93.91650123626961, 30.241253230681231 ], [ -94.095631767429495, 30.256122429619531 ], [ -94.07251815050563, 30.526246210331916 ], [ -94.078296554736596, 30.546071808916309 ], [ -93.910722832038644, 30.588201205908149 ], [ -93.887609215114793, 30.437031016702136 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEWEYVILLE", "zip": "77614", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 49960, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.702700279723942, 30.29081722714222 ], [ -93.899166023576711, 30.243731430504283 ], [ -93.887609215114793, 30.437031016702136 ], [ -93.760484322033577, 30.384988820418098 ], [ -93.702700279723942, 30.29081722714222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRED", "zip": "77616", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50921, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.251648681665515, 30.526246210331916 ], [ -94.263205490127433, 30.526246210331916 ], [ -94.292097511282265, 30.603070404846449 ], [ -94.303654319744183, 30.684850999007079 ], [ -94.176529426662981, 30.692285598476225 ], [ -94.089853363198529, 30.679894599360978 ], [ -94.078296554736596, 30.546071808916309 ], [ -94.07251815050563, 30.526246210331916 ], [ -94.251648681665515, 30.526246210331916 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KOUNTZE", "zip": "77625", "state": "TX", "Sheet1_value": 249, "Sheet1_populaiton": 8253, "Sheet1_income": 45515, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.205421447817798, 30.305686426080516 ], [ -94.240091873203582, 30.221427632096837 ], [ -94.52901208475177, 30.171863635635848 ], [ -94.56946091436852, 30.256122429619531 ], [ -94.436557617056351, 30.275948028203924 ], [ -94.465449638211169, 30.389945220064199 ], [ -94.627244956678169, 30.491551412809223 ], [ -94.546347297444669, 30.526246210331916 ], [ -94.263205490127433, 30.526246210331916 ], [ -94.251648681665515, 30.526246210331916 ], [ -94.205421447817798, 30.305686426080516 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEDERLAND", "zip": "77627", "state": "TX", "Sheet1_value": 651, "Sheet1_populaiton": 21368, "Sheet1_income": 59701, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.974285278579245, 29.966173050322748 ], [ -93.99162049127213, 29.946347451738351 ], [ -94.003177299734062, 29.953782051207501 ], [ -94.03206932088888, 30.028128045898981 ], [ -93.962728470117312, 30.013258846960689 ], [ -93.974285278579245, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ORANGE", "zip": "77630", "state": "TX", "Sheet1_value": 804, "Sheet1_populaiton": 26851, "Sheet1_income": 42131, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.899166023576711, 29.983520449084093 ], [ -93.962728470117312, 30.013258846960689 ], [ -94.03206932088888, 30.028128045898981 ], [ -94.03206932088888, 30.057866443775577 ], [ -93.91650123626961, 30.129734238644009 ], [ -93.702700279723942, 30.12725603882096 ], [ -93.720035492416827, 30.050431844306427 ], [ -93.754705917802625, 30.015737046783734 ], [ -93.870274002421894, 29.981042249261044 ], [ -93.899166023576711, 29.983520449084093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ORANGE", "zip": "77632", "state": "TX", "Sheet1_value": 544, "Sheet1_populaiton": 24158, "Sheet1_income": 64694, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.702700279723942, 30.29081722714222 ], [ -93.708478683954908, 30.226384031742938 ], [ -93.702700279723942, 30.12725603882096 ], [ -93.91650123626961, 30.129734238644009 ], [ -93.91650123626961, 30.241253230681231 ], [ -93.899166023576711, 30.243731430504283 ], [ -93.702700279723942, 30.29081722714222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT ARTHUR", "zip": "77640", "state": "TX", "Sheet1_value": 605, "Sheet1_populaiton": 16409, "Sheet1_income": 29096, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.355659957822866, 29.693571069787311 ], [ -94.234313468972616, 29.758004265186596 ], [ -94.003177299734062, 29.953782051207501 ], [ -93.99162049127213, 29.946347451738351 ], [ -93.922279640500562, 29.867045057400773 ], [ -93.841381981267077, 29.676223671025966 ], [ -94.355659957822866, 29.559748279342642 ], [ -94.355659957822866, 29.693571069787311 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT ARTHUR", "zip": "77642", "state": "TX", "Sheet1_value": 1505, "Sheet1_populaiton": 37724, "Sheet1_income": 32039, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.899166023576711, 29.983520449084093 ], [ -93.870274002421894, 29.981042249261044 ], [ -93.858717193959961, 29.968651250145797 ], [ -93.922279640500562, 29.867045057400773 ], [ -93.99162049127213, 29.946347451738351 ], [ -93.974285278579245, 29.966173050322748 ], [ -93.951171661655394, 29.9488256515614 ], [ -93.928058044731529, 29.971129449968846 ], [ -93.899166023576711, 29.983520449084093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT NECHES", "zip": "77651", "state": "TX", "Sheet1_value": 308, "Sheet1_populaiton": 12931, "Sheet1_income": 61363, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.974285278579245, 29.966173050322748 ], [ -93.962728470117312, 30.013258846960689 ], [ -93.899166023576711, 29.983520449084093 ], [ -93.928058044731529, 29.971129449968846 ], [ -93.951171661655394, 29.9488256515614 ], [ -93.974285278579245, 29.966173050322748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SILSBEE", "zip": "77656", "state": "TX", "Sheet1_value": 528, "Sheet1_populaiton": 17513, "Sheet1_income": 45851, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.095631767429495, 30.256122429619531 ], [ -94.118745384353346, 30.241253230681231 ], [ -94.205421447817798, 30.305686426080516 ], [ -94.251648681665515, 30.526246210331916 ], [ -94.07251815050563, 30.526246210331916 ], [ -94.095631767429495, 30.256122429619531 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUMBERTON", "zip": "77657", "state": "TX", "Sheet1_value": 559, "Sheet1_populaiton": 20829, "Sheet1_income": 61609, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.234313468972616, 30.166907235989751 ], [ -94.240091873203582, 30.221427632096837 ], [ -94.205421447817798, 30.305686426080516 ], [ -94.118745384353346, 30.241253230681231 ], [ -94.11296698012238, 30.161950836343649 ], [ -94.15341580973913, 30.169385435812799 ], [ -94.234313468972616, 30.166907235989751 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SOUR LAKE", "zip": "77659", "state": "TX", "Sheet1_value": 127, "Sheet1_populaiton": 4459, "Sheet1_income": 68901, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.56946091436852, 30.112386839882664 ], [ -94.615688148216236, 30.164429036166702 ], [ -94.52901208475177, 30.171863635635848 ], [ -94.240091873203582, 30.221427632096837 ], [ -94.234313468972616, 30.166907235989751 ], [ -94.448114425518284, 30.112386839882664 ], [ -94.56946091436852, 30.112386839882664 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPURGER", "zip": "77660", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37857, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.089853363198529, 30.679894599360978 ], [ -94.176529426662981, 30.692285598476225 ], [ -94.222756660510697, 30.860803186443587 ], [ -94.199643043586832, 30.85336858697444 ], [ -94.141859001277197, 30.779022592282956 ], [ -94.089853363198529, 30.679894599360978 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VIDOR", "zip": "77662", "state": "TX", "Sheet1_value": 742, "Sheet1_populaiton": 26765, "Sheet1_income": 43826, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.078296554736596, 30.077692042359971 ], [ -94.095631767429495, 30.13469063829011 ], [ -94.11296698012238, 30.161950836343649 ], [ -94.118745384353346, 30.241253230681231 ], [ -94.095631767429495, 30.256122429619531 ], [ -93.91650123626961, 30.241253230681231 ], [ -93.91650123626961, 30.129734238644009 ], [ -94.03206932088888, 30.057866443775577 ], [ -94.078296554736596, 30.077692042359971 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WARREN", "zip": "77664", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 2705, "Sheet1_income": 43425, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.598352935523337, 30.751762394229413 ], [ -94.390330383208649, 30.660069000776584 ], [ -94.37299517051575, 30.650156201484386 ], [ -94.292097511282265, 30.603070404846449 ], [ -94.263205490127433, 30.526246210331916 ], [ -94.546347297444669, 30.526246210331916 ], [ -94.598352935523337, 30.751762394229413 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINNIE", "zip": "77665", "state": "TX", "Sheet1_value": 198, "Sheet1_populaiton": 5391, "Sheet1_income": 50149, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.234313468972616, 29.758004265186596 ], [ -94.355659957822866, 29.693571069787311 ], [ -94.477006446673101, 29.673745471202917 ], [ -94.37299517051575, 29.733222266956101 ], [ -94.4134440001325, 29.886870655985167 ], [ -94.315211128206116, 29.891827055631264 ], [ -94.280540702820332, 29.879436056516017 ], [ -94.263205490127433, 29.83235025987808 ], [ -94.234313468972616, 29.758004265186596 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77701", "state": "TX", "Sheet1_value": 542, "Sheet1_populaiton": 15345, "Sheet1_income": 30316, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.136080597046231, 30.075213842536922 ], [ -94.118745384353346, 30.095039441121315 ], [ -94.095631767429495, 30.132212438467057 ], [ -94.095631767429495, 30.13469063829011 ], [ -94.078296554736596, 30.077692042359971 ], [ -94.141859001277197, 30.055388243952528 ], [ -94.136080597046231, 30.075213842536922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77702", "state": "TX", "Sheet1_value": 130, "Sheet1_populaiton": 2470, "Sheet1_income": 37783, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.136080597046231, 30.075213842536922 ], [ -94.136080597046231, 30.08512664182912 ], [ -94.136080597046231, 30.097517640944368 ], [ -94.118745384353346, 30.095039441121315 ], [ -94.136080597046231, 30.075213842536922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77703", "state": "TX", "Sheet1_value": 563, "Sheet1_populaiton": 16358, "Sheet1_income": 24829, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.136080597046231, 30.097517640944368 ], [ -94.147637405508164, 30.117343239528761 ], [ -94.095631767429495, 30.132212438467057 ], [ -94.118745384353346, 30.095039441121315 ], [ -94.136080597046231, 30.097517640944368 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77705", "state": "TX", "Sheet1_value": 940, "Sheet1_populaiton": 40901, "Sheet1_income": 34356, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.315211128206116, 29.891827055631264 ], [ -94.338324745129967, 29.985998648907142 ], [ -94.176529426662981, 30.020693446429835 ], [ -94.141859001277197, 30.055388243952528 ], [ -94.078296554736596, 30.077692042359971 ], [ -94.03206932088888, 30.057866443775577 ], [ -94.03206932088888, 30.028128045898981 ], [ -94.003177299734062, 29.953782051207501 ], [ -94.234313468972616, 29.758004265186596 ], [ -94.263205490127433, 29.83235025987808 ], [ -94.280540702820332, 29.879436056516017 ], [ -94.315211128206116, 29.891827055631264 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77706", "state": "TX", "Sheet1_value": 964, "Sheet1_populaiton": 28088, "Sheet1_income": 55900, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.211199852048765, 30.075213842536922 ], [ -94.182307830893947, 30.13469063829011 ], [ -94.147637405508164, 30.117343239528761 ], [ -94.136080597046231, 30.097517640944368 ], [ -94.136080597046231, 30.08512664182912 ], [ -94.211199852048765, 30.075213842536922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77707", "state": "TX", "Sheet1_value": 663, "Sheet1_populaiton": 16379, "Sheet1_income": 50051, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.176529426662981, 30.020693446429835 ], [ -94.211199852048765, 30.075213842536922 ], [ -94.136080597046231, 30.08512664182912 ], [ -94.136080597046231, 30.075213842536922 ], [ -94.141859001277197, 30.055388243952528 ], [ -94.176529426662981, 30.020693446429835 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77708", "state": "TX", "Sheet1_value": 506, "Sheet1_populaiton": 11237, "Sheet1_income": 41205, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.095631767429495, 30.132212438467057 ], [ -94.147637405508164, 30.117343239528761 ], [ -94.182307830893947, 30.13469063829011 ], [ -94.15341580973913, 30.169385435812799 ], [ -94.11296698012238, 30.161950836343649 ], [ -94.095631767429495, 30.13469063829011 ], [ -94.095631767429495, 30.132212438467057 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEAUMONT", "zip": "77713", "state": "TX", "Sheet1_value": 463, "Sheet1_populaiton": 12368, "Sheet1_income": 60800, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.448114425518284, 30.112386839882664 ], [ -94.234313468972616, 30.166907235989751 ], [ -94.15341580973913, 30.169385435812799 ], [ -94.182307830893947, 30.13469063829011 ], [ -94.211199852048765, 30.075213842536922 ], [ -94.176529426662981, 30.020693446429835 ], [ -94.338324745129967, 29.985998648907142 ], [ -94.315211128206116, 29.891827055631264 ], [ -94.4134440001325, 29.886870655985167 ], [ -94.442336021287318, 29.889348855808215 ], [ -94.448114425518284, 30.112386839882664 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYAN", "zip": "77801", "state": "TX", "Sheet1_value": 314, "Sheet1_populaiton": 14197, "Sheet1_income": 23162, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.354987821736358, 30.622896003430842 ], [ -96.378101438660224, 30.625374203253891 ], [ -96.38387984289119, 30.645199801838288 ], [ -96.366544630198291, 30.657590800953535 ], [ -96.34343101327444, 30.632808802723041 ], [ -96.354987821736358, 30.620417803607793 ], [ -96.354987821736358, 30.622896003430842 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYAN", "zip": "77802", "state": "TX", "Sheet1_value": 601, "Sheet1_populaiton": 24125, "Sheet1_income": 51801, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.366544630198291, 30.657590800953535 ], [ -96.34343101327444, 30.679894599360978 ], [ -96.291425375195757, 30.687329198830128 ], [ -96.308760587888656, 30.640243402192191 ], [ -96.34343101327444, 30.632808802723041 ], [ -96.366544630198291, 30.657590800953535 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYAN", "zip": "77803", "state": "TX", "Sheet1_value": 760, "Sheet1_populaiton": 30759, "Sheet1_income": 34420, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.38387984289119, 30.645199801838288 ], [ -96.41855026827696, 30.722023996352817 ], [ -96.34343101327444, 30.679894599360978 ], [ -96.366544630198291, 30.657590800953535 ], [ -96.38387984289119, 30.645199801838288 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYAN", "zip": "77807", "state": "TX", "Sheet1_value": 279, "Sheet1_populaiton": 10882, "Sheet1_income": 42154, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.378101438660224, 30.625374203253891 ], [ -96.41855026827696, 30.585723006085104 ], [ -96.545675161358176, 30.627852403076943 ], [ -96.568788778282027, 30.694763798299277 ], [ -96.458999097893724, 30.746805994583312 ], [ -96.41855026827696, 30.722023996352817 ], [ -96.38387984289119, 30.645199801838288 ], [ -96.378101438660224, 30.625374203253891 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRYAN", "zip": "77808", "state": "TX", "Sheet1_value": 426, "Sheet1_populaiton": 10990, "Sheet1_income": 60981, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.34343101327444, 30.679894599360978 ], [ -96.41855026827696, 30.722023996352817 ], [ -96.458999097893724, 30.746805994583312 ], [ -96.441663885200825, 30.769109792990758 ], [ -96.239419737117089, 30.974800378303861 ], [ -96.170078886345522, 30.823630189097845 ], [ -96.175857290576488, 30.622896003430842 ], [ -96.291425375195757, 30.687329198830128 ], [ -96.34343101327444, 30.679894599360978 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANDERSON", "zip": "77830", "state": "TX", "Sheet1_value": 80, "Sheet1_populaiton": 2966, "Sheet1_income": 46979, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.817596228256718, 30.491551412809223 ], [ -96.135408460959738, 30.481638613517028 ], [ -96.181635694807454, 30.608026804492546 ], [ -95.973613142492752, 30.665025400422682 ], [ -95.904272291721185, 30.625374203253891 ], [ -95.817596228256718, 30.50394241192447 ], [ -95.817596228256718, 30.491551412809223 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEDIAS", "zip": "77831", "state": "TX", "Sheet1_value": 101, "Sheet1_populaiton": 3591, "Sheet1_income": 34228, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.973613142492752, 30.665025400422682 ], [ -96.014061972109488, 30.843455787682242 ], [ -95.996726759416603, 30.843455787682242 ], [ -95.863823462104435, 30.863281386266635 ], [ -95.84648824941155, 30.761675193521612 ], [ -95.834931440949617, 30.677416399537929 ], [ -95.904272291721185, 30.625374203253891 ], [ -95.973613142492752, 30.665025400422682 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRENHAM", "zip": "77833", "state": "TX", "Sheet1_value": 925, "Sheet1_populaiton": 27984, "Sheet1_income": 44612, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.528339948665277, 30.042997244837281 ], [ -96.522561544434325, 30.065301043244723 ], [ -96.545675161358176, 30.318077425195764 ], [ -96.297203779426724, 30.380032420772 ], [ -96.26253335404094, 30.370119621479802 ], [ -96.216306120193224, 30.295773626788318 ], [ -96.291425375195757, 30.095039441121315 ], [ -96.435885480969858, 30.075213842536922 ], [ -96.482112714817575, 30.03804084519118 ], [ -96.487891119048527, 30.030606245722034 ], [ -96.528339948665277, 30.042997244837281 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURTON", "zip": "77835", "state": "TX", "Sheet1_value": 81, "Sheet1_populaiton": 2313, "Sheet1_income": 48750, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.522561544434325, 30.065301043244723 ], [ -96.620794416360695, 30.04547544466033 ], [ -96.655464841746493, 30.129734238644009 ], [ -96.742140905210945, 30.144603437582305 ], [ -96.638129629053594, 30.295773626788318 ], [ -96.545675161358176, 30.318077425195764 ], [ -96.522561544434325, 30.065301043244723 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CALDWELL", "zip": "77836", "state": "TX", "Sheet1_value": 374, "Sheet1_populaiton": 11459, "Sheet1_income": 52348, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.545675161358176, 30.627852403076943 ], [ -96.53989675712721, 30.424640017586889 ], [ -96.655464841746493, 30.451900215640432 ], [ -96.742140905210945, 30.320555625018812 ], [ -96.869265798292147, 30.434552816879087 ], [ -96.961720265987566, 30.555984608208508 ], [ -96.875044202523114, 30.600592205023396 ], [ -96.620794416360695, 30.731936795645016 ], [ -96.568788778282027, 30.694763798299277 ], [ -96.545675161358176, 30.627852403076943 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CALVERT", "zip": "77837", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 1865, "Sheet1_income": 22904, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.568788778282027, 30.97727857812691 ], [ -96.730584096749013, 30.900454383612377 ], [ -96.771032926365763, 31.002060576357405 ], [ -96.615016012129743, 31.121014167863777 ], [ -96.568788778282027, 30.97727857812691 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLLEGE STATION", "zip": "77840", "state": "TX", "Sheet1_value": 875, "Sheet1_populaiton": 56154, "Sheet1_income": 19011, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.360766225967325, 30.598114005200348 ], [ -96.354987821736358, 30.620417803607793 ], [ -96.34343101327444, 30.632808802723041 ], [ -96.308760587888656, 30.640243402192191 ], [ -96.360766225967325, 30.598114005200348 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLLEGE STATION", "zip": "77843", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.360766225967325, 30.598114005200348 ], [ -96.354987821736358, 30.622896003430842 ], [ -96.354987821736358, 30.620417803607793 ], [ -96.360766225967325, 30.598114005200348 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLLEGE STATION", "zip": "77845", "state": "TX", "Sheet1_value": 1642, "Sheet1_populaiton": 50799, "Sheet1_income": 70400, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.378101438660224, 30.625374203253891 ], [ -96.354987821736358, 30.622896003430842 ], [ -96.360766225967325, 30.598114005200348 ], [ -96.308760587888656, 30.640243402192191 ], [ -96.291425375195757, 30.687329198830128 ], [ -96.175857290576488, 30.622896003430842 ], [ -96.181635694807454, 30.608026804492546 ], [ -96.135408460959738, 30.481638613517028 ], [ -96.285646970964791, 30.446943815994334 ], [ -96.41855026827696, 30.585723006085104 ], [ -96.378101438660224, 30.625374203253891 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONCORD", "zip": "77850", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.083402822881055, 31.244924159016247 ], [ -96.135408460959738, 31.254836958308445 ], [ -96.141186865190704, 31.289531755831135 ], [ -96.100738035573954, 31.282097156361989 ], [ -96.083402822881055, 31.244924159016247 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DIME BOX", "zip": "77853", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53911, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.828816968675397, 30.308164625903565 ], [ -96.892379415215999, 30.417205418117742 ], [ -96.869265798292147, 30.434552816879087 ], [ -96.742140905210945, 30.320555625018812 ], [ -96.828816968675397, 30.308164625903565 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRANKLIN", "zip": "77856", "state": "TX", "Sheet1_value": 192, "Sheet1_populaiton": 4520, "Sheet1_income": 56667, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.26253335404094, 31.076406571048885 ], [ -96.239419737117089, 30.974800378303861 ], [ -96.441663885200825, 30.769109792990758 ], [ -96.568788778282027, 30.97727857812691 ], [ -96.615016012129743, 31.121014167863777 ], [ -96.505226331741426, 31.158187165209519 ], [ -96.53989675712721, 31.247402358839295 ], [ -96.412771864046007, 31.311835554238581 ], [ -96.320317396350589, 31.356443151053469 ], [ -96.314538992119623, 31.277140756715887 ], [ -96.26253335404094, 31.076406571048885 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEARNE", "zip": "77859", "state": "TX", "Sheet1_value": 182, "Sheet1_populaiton": 6683, "Sheet1_income": 35625, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.678578458670344, 30.843455787682242 ], [ -96.730584096749013, 30.900454383612377 ], [ -96.568788778282027, 30.97727857812691 ], [ -96.441663885200825, 30.769109792990758 ], [ -96.458999097893724, 30.746805994583312 ], [ -96.568788778282027, 30.694763798299277 ], [ -96.620794416360695, 30.731936795645016 ], [ -96.678578458670344, 30.843455787682242 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IOLA", "zip": "77861", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 2965, "Sheet1_income": 66397, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.175857290576488, 30.622896003430842 ], [ -96.170078886345522, 30.823630189097845 ], [ -96.014061972109488, 30.843455787682242 ], [ -95.973613142492752, 30.665025400422682 ], [ -96.181635694807454, 30.608026804492546 ], [ -96.175857290576488, 30.622896003430842 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MADISONVILLE", "zip": "77864", "state": "TX", "Sheet1_value": 203, "Sheet1_populaiton": 6761, "Sheet1_income": 37880, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.863823462104435, 30.863281386266635 ], [ -95.996726759416603, 30.843455787682242 ], [ -95.996726759416603, 31.081362970694983 ], [ -95.979391546723718, 31.091275769987181 ], [ -95.886937079028286, 31.09375396981023 ], [ -95.713584952099382, 30.910367182904576 ], [ -95.863823462104435, 30.863281386266635 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARQUEZ", "zip": "77865", "state": "TX", "Sheet1_value": 69, "Sheet1_populaiton": 1531, "Sheet1_income": 54338, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.135408460959738, 31.254836958308445 ], [ -96.26253335404094, 31.076406571048885 ], [ -96.314538992119623, 31.277140756715887 ], [ -96.141186865190704, 31.289531755831135 ], [ -96.135408460959738, 31.254836958308445 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NAVASOTA", "zip": "77868", "state": "TX", "Sheet1_value": 370, "Sheet1_populaiton": 14262, "Sheet1_income": 41000, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.869601866335401, 30.241253230681231 ], [ -96.054510801726252, 30.231340431389036 ], [ -96.094959631342988, 30.223905831919886 ], [ -96.152743673652623, 30.362685022010655 ], [ -96.26253335404094, 30.370119621479802 ], [ -96.297203779426724, 30.380032420772 ], [ -96.285646970964791, 30.446943815994334 ], [ -96.135408460959738, 30.481638613517028 ], [ -95.817596228256718, 30.491551412809223 ], [ -95.811817824025752, 30.352772222718457 ], [ -95.904272291721185, 30.362685022010655 ], [ -95.869601866335401, 30.241253230681231 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NORMANGEE", "zip": "77871", "state": "TX", "Sheet1_value": 152, "Sheet1_populaiton": 3146, "Sheet1_income": 43047, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.135408460959738, 31.254836958308445 ], [ -96.083402822881055, 31.244924159016247 ], [ -96.008283567878536, 31.18296916344001 ], [ -95.979391546723718, 31.091275769987181 ], [ -95.996726759416603, 31.081362970694983 ], [ -96.239419737117089, 30.974800378303861 ], [ -96.26253335404094, 31.076406571048885 ], [ -96.135408460959738, 31.254836958308445 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NORTH ZULCH", "zip": "77872", "state": "TX", "Sheet1_value": 62, "Sheet1_populaiton": 1437, "Sheet1_income": 44704, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.239419737117089, 30.974800378303861 ], [ -95.996726759416603, 31.081362970694983 ], [ -95.996726759416603, 30.843455787682242 ], [ -96.014061972109488, 30.843455787682242 ], [ -96.170078886345522, 30.823630189097845 ], [ -96.239419737117089, 30.974800378303861 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RICHARDS", "zip": "77873", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1481, "Sheet1_income": 47159, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.904272291721185, 30.625374203253891 ], [ -95.834931440949617, 30.677416399537929 ], [ -95.673136122482632, 30.548550008739362 ], [ -95.817596228256718, 30.50394241192447 ], [ -95.904272291721185, 30.625374203253891 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SOMERVILLE", "zip": "77879", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 4842, "Sheet1_income": 41368, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.545675161358176, 30.318077425195764 ], [ -96.638129629053594, 30.295773626788318 ], [ -96.742140905210945, 30.320555625018812 ], [ -96.655464841746493, 30.451900215640432 ], [ -96.53989675712721, 30.424640017586889 ], [ -96.545675161358176, 30.627852403076943 ], [ -96.41855026827696, 30.585723006085104 ], [ -96.285646970964791, 30.446943815994334 ], [ -96.297203779426724, 30.380032420772 ], [ -96.545675161358176, 30.318077425195764 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WASHINGTON", "zip": "77880", "state": "TX", "Sheet1_value": 78, "Sheet1_populaiton": 1637, "Sheet1_income": 38672, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.26253335404094, 30.370119621479802 ], [ -96.152743673652623, 30.362685022010655 ], [ -96.216306120193224, 30.295773626788318 ], [ -96.26253335404094, 30.370119621479802 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VICTORIA", "zip": "77904", "state": "TX", "Sheet1_value": 665, "Sheet1_populaiton": 26187, "Sheet1_income": 61286, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 28.969936721456882 ], [ -96.996390691373364, 29.088890312963255 ], [ -96.938606649063715, 29.06410831473276 ], [ -96.817260160213479, 28.984805920395178 ], [ -96.863487394061195, 28.865852328888806 ], [ -96.950163457525647, 28.823722931896967 ], [ -97.031061116759133, 28.831157531366117 ], [ -97.15818600984035, 28.969936721456882 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VICTORIA", "zip": "77905", "state": "TX", "Sheet1_value": 408, "Sheet1_populaiton": 14453, "Sheet1_income": 61967, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 28.553599151184581 ], [ -97.187078030995167, 28.833635731189165 ], [ -97.308424519845403, 28.865852328888806 ], [ -97.15818600984035, 28.969936721456882 ], [ -97.031061116759133, 28.831157531366117 ], [ -96.950163457525647, 28.823722931896967 ], [ -96.863487394061195, 28.865852328888806 ], [ -96.851930585599263, 28.873286928357956 ], [ -96.771032926365763, 28.724594938974988 ], [ -96.961720265987566, 28.667596343044853 ], [ -96.932828244832749, 28.585815748884222 ], [ -96.892379415215999, 28.506513354546641 ], [ -97.042617925221066, 28.531295352777136 ], [ -97.15818600984035, 28.553599151184581 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLOOMINGTON", "zip": "77951", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 2282, "Sheet1_income": 34811, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.66124324597746, 28.702291140567546 ], [ -96.932828244832749, 28.585815748884222 ], [ -96.961720265987566, 28.667596343044853 ], [ -96.771032926365763, 28.724594938974988 ], [ -96.851930585599263, 28.873286928357956 ], [ -96.730584096749013, 28.870808728534904 ], [ -96.643908033284561, 28.712203939859744 ], [ -96.66124324597746, 28.702291140567546 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CUERO", "zip": "77954", "state": "TX", "Sheet1_value": 318, "Sheet1_populaiton": 11393, "Sheet1_income": 47448, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 28.969936721456882 ], [ -97.314202924076369, 29.150845308539488 ], [ -97.233305264842869, 29.205365704646578 ], [ -96.996390691373364, 29.088890312963255 ], [ -97.15818600984035, 28.969936721456882 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDNA", "zip": "77957", "state": "TX", "Sheet1_value": 262, "Sheet1_populaiton": 8299, "Sheet1_income": 45798, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.730584096749013, 28.870808728534904 ], [ -96.817260160213479, 28.984805920395178 ], [ -96.938606649063715, 29.06410831473276 ], [ -96.846152181368296, 29.128541510132045 ], [ -96.66124324597746, 29.264842500399762 ], [ -96.638129629053594, 29.247495101638417 ], [ -96.568788778282027, 29.185540106062181 ], [ -96.528339948665277, 28.952589322695538 ], [ -96.574567182512993, 28.697334740921448 ], [ -96.643908033284561, 28.712203939859744 ], [ -96.730584096749013, 28.870808728534904 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GANADO", "zip": "77962", "state": "TX", "Sheet1_value": 115, "Sheet1_populaiton": 3597, "Sheet1_income": 61607, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.308760587888656, 28.94019832358029 ], [ -96.528339948665277, 28.952589322695538 ], [ -96.568788778282027, 29.185540106062181 ], [ -96.308760587888656, 28.962502121987733 ], [ -96.308760587888656, 28.94019832358029 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOLIAD", "zip": "77963", "state": "TX", "Sheet1_value": 169, "Sheet1_populaiton": 5817, "Sheet1_income": 48858, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.15818600984035, 28.553599151184581 ], [ -97.37776537061697, 28.387559763040269 ], [ -97.776475262553475, 28.667596343044853 ], [ -97.65512877370324, 28.756811536674633 ], [ -97.57423111446974, 28.813810132604768 ], [ -97.429771008695653, 28.915416325349796 ], [ -97.383543774847936, 28.915416325349796 ], [ -97.308424519845403, 28.865852328888806 ], [ -97.187078030995167, 28.833635731189165 ], [ -97.15818600984035, 28.553599151184581 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HALLETTSVILLE", "zip": "77964", "state": "TX", "Sheet1_value": 294, "Sheet1_populaiton": 8038, "Sheet1_income": 42349, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.66124324597746, 29.264842500399762 ], [ -96.846152181368296, 29.128541510132045 ], [ -96.846152181368296, 29.314406496860752 ], [ -97.065731542144931, 29.378839692260037 ], [ -97.071509946375883, 29.490358684297259 ], [ -96.909714627908897, 29.534966281112148 ], [ -96.903936223677931, 29.631616074211077 ], [ -96.875044202523114, 29.631616074211077 ], [ -96.707470479825162, 29.487880484474211 ], [ -96.563010374051061, 29.334232095445145 ], [ -96.66124324597746, 29.264842500399762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "INEZ", "zip": "77968", "state": "TX", "Sheet1_value": 84, "Sheet1_populaiton": 2528, "Sheet1_income": 72593, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.817260160213479, 28.984805920395178 ], [ -96.730584096749013, 28.870808728534904 ], [ -96.851930585599263, 28.873286928357956 ], [ -96.863487394061195, 28.865852328888806 ], [ -96.817260160213479, 28.984805920395178 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOLITA", "zip": "77971", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 64896, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.574567182512993, 28.697334740921448 ], [ -96.528339948665277, 28.952589322695538 ], [ -96.308760587888656, 28.94019832358029 ], [ -96.308760587888656, 28.900547126411499 ], [ -96.314538992119623, 28.789028134374277 ], [ -96.320317396350589, 28.642814344814362 ], [ -96.430107076738892, 28.707247540213643 ], [ -96.586123990974926, 28.660161743575706 ], [ -96.574567182512993, 28.697334740921448 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOULTON", "zip": "77975", "state": "TX", "Sheet1_value": 62, "Sheet1_populaiton": 1935, "Sheet1_income": 56696, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.071509946375883, 29.490358684297259 ], [ -97.210191647919018, 29.477967685182012 ], [ -97.1986348394571, 29.584530277573137 ], [ -97.140850797147451, 29.626659674564976 ], [ -97.048396329452032, 29.629137874388029 ], [ -96.903936223677931, 29.631616074211077 ], [ -96.909714627908897, 29.534966281112148 ], [ -97.071509946375883, 29.490358684297259 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT LAVACA", "zip": "77979", "state": "TX", "Sheet1_value": 489, "Sheet1_populaiton": 17238, "Sheet1_income": 46296, "Sheet1_percent": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.586123990974926, 28.660161743575706 ], [ -96.430107076738892, 28.707247540213643 ], [ -96.372323034429257, 28.627945145876062 ], [ -96.487891119048527, 28.568468350122878 ], [ -96.458999097893724, 28.665118143221804 ], [ -96.586123990974926, 28.660161743575706 ] ] ], [ [ [ -96.788368139058662, 28.447036558793457 ], [ -96.892379415215999, 28.506513354546641 ], [ -96.932828244832749, 28.585815748884222 ], [ -96.66124324597746, 28.702291140567546 ], [ -96.638129629053594, 28.573424749768975 ], [ -96.401215055584075, 28.449514758616505 ], [ -96.58034558674396, 28.365255964632826 ], [ -96.655464841746493, 28.479253156493098 ], [ -96.747919309441912, 28.409863561447715 ], [ -96.788368139058662, 28.447036558793457 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT O CONNOR", "zip": "77982", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 1244, "Sheet1_income": 52188, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.846152181368296, 28.065393786043845 ], [ -96.79992494752058, 28.186825577373266 ], [ -96.401215055584075, 28.370212364278924 ], [ -96.846152181368296, 28.065393786043845 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEADRIFT", "zip": "77983", "state": "TX", "Sheet1_value": 108, "Sheet1_populaiton": 2259, "Sheet1_income": 51250, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.747919309441912, 28.409863561447715 ], [ -96.655464841746493, 28.479253156493098 ], [ -96.58034558674396, 28.365255964632826 ], [ -96.747919309441912, 28.409863561447715 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHINER", "zip": "77984", "state": "TX", "Sheet1_value": 145, "Sheet1_populaiton": 4127, "Sheet1_income": 46307, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065731542144931, 29.378839692260037 ], [ -97.239083669073835, 29.383796091906135 ], [ -97.210191647919018, 29.477967685182012 ], [ -97.071509946375883, 29.490358684297259 ], [ -97.065731542144931, 29.378839692260037 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TIVOLI", "zip": "77990", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.788368139058662, 28.318170167994886 ], [ -97.111958775992633, 28.276040771003046 ], [ -97.042617925221066, 28.531295352777136 ], [ -96.892379415215999, 28.506513354546641 ], [ -96.788368139058662, 28.447036558793457 ], [ -96.857708989830229, 28.407385361624666 ], [ -96.788368139058662, 28.318170167994886 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WESTHOFF", "zip": "77994", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44545, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.383543774847936, 28.915416325349796 ], [ -97.556895901776855, 29.150845308539488 ], [ -97.452884625619504, 29.230147702877069 ], [ -97.291089307152518, 29.349101294383445 ], [ -97.314202924076369, 29.150845308539488 ], [ -97.15818600984035, 28.969936721456882 ], [ -97.308424519845403, 28.865852328888806 ], [ -97.383543774847936, 28.915416325349796 ] ] ] } },
{ "type": "Feature", "properties": { "name": "YOAKUM", "zip": "77995", "state": "TX", "Sheet1_value": 307, "Sheet1_populaiton": 8777, "Sheet1_income": 44986, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314202924076369, 29.150845308539488 ], [ -97.291089307152518, 29.349101294383445 ], [ -97.239083669073835, 29.383796091906135 ], [ -97.065731542144931, 29.378839692260037 ], [ -96.846152181368296, 29.314406496860752 ], [ -96.846152181368296, 29.128541510132045 ], [ -96.938606649063715, 29.06410831473276 ], [ -96.996390691373364, 29.088890312963255 ], [ -97.233305264842869, 29.205365704646578 ], [ -97.314202924076369, 29.150845308539488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ATASCOSA", "zip": "78002", "state": "TX", "Sheet1_value": 517, "Sheet1_populaiton": 9199, "Sheet1_income": 48545, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.747247173355419, 29.230147702877069 ], [ -98.787696002972154, 29.289624498630257 ], [ -98.781917598741188, 29.321841096329898 ], [ -98.666349514121919, 29.294580898276358 ], [ -98.68946313104577, 29.23510410252317 ], [ -98.747247173355419, 29.230147702877069 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BANDERA", "zip": "78003", "state": "TX", "Sheet1_value": 380, "Sheet1_populaiton": 8053, "Sheet1_income": 43780, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.961048129901073, 29.802611862001484 ], [ -98.984161746824924, 29.624181474741928 ], [ -99.174849086446741, 29.624181474741928 ], [ -99.215297916063491, 29.676223671025966 ], [ -99.105508235675174, 29.864566857577721 ], [ -98.961048129901073, 29.802611862001484 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BERGHEIM", "zip": "78004", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 124592, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.550781429502649, 29.82491566040893 ], [ -98.556559833733601, 29.876957856692968 ], [ -98.487218982962034, 29.876957856692968 ], [ -98.550781429502649, 29.82491566040893 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BIGFOOT", "zip": "78005", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 24088, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 29.034369916856168 ], [ -98.903264087591438, 29.091368512786303 ], [ -98.805031215665053, 29.091368512786303 ], [ -98.805031215665053, 29.034369916856168 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOERNE", "zip": "78006", "state": "TX", "Sheet1_value": 1160, "Sheet1_populaiton": 27971, "Sheet1_income": 73417, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.539224621040717, 29.815002861116731 ], [ -98.620122280274217, 29.765438864655746 ], [ -98.701019939507702, 29.785264463240139 ], [ -98.637457492967101, 29.676223671025966 ], [ -98.695241535276736, 29.668789071556816 ], [ -98.776139194510236, 29.720831267840857 ], [ -98.914820896053371, 29.782786263417091 ], [ -98.920599300284323, 29.812524661293683 ], [ -98.799252811434087, 29.953782051207501 ], [ -98.77036079027927, 29.985998648907142 ], [ -98.72991196066252, 30.139647037936207 ], [ -98.660571109890952, 30.139647037936207 ], [ -98.585451854888419, 30.139647037936207 ], [ -98.53344621680975, 30.072735642713873 ], [ -98.556559833733601, 29.876957856692968 ], [ -98.550781429502649, 29.82491566040893 ], [ -98.539224621040717, 29.815002861116731 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CALLIHAM", "zip": "78007", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.336980472956981, 28.057959186574699 ], [ -98.498775791423967, 28.057959186574699 ], [ -98.521889408347818, 28.057959186574699 ], [ -98.510332599885899, 28.642814344814362 ], [ -98.336980472956981, 28.613075946937766 ], [ -98.336980472956981, 28.580859349238125 ], [ -98.331202068726014, 28.266127971710848 ], [ -98.336980472956981, 28.057959186574699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CAMPBELLTON", "zip": "78008", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63286, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.100065899487461, 28.786549934551225 ], [ -98.221412388337697, 28.697334740921448 ], [ -98.308088451802163, 28.632901545522163 ], [ -98.360094089880832, 28.751855137028535 ], [ -98.348537281418913, 28.860895929242709 ], [ -98.250304409492514, 28.942676523403339 ], [ -98.19252036718288, 28.883199727650151 ], [ -98.128957920642279, 28.816288332427817 ], [ -98.100065899487461, 28.786549934551225 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CASTROVILLE", "zip": "78009", "state": "TX", "Sheet1_value": 338, "Sheet1_populaiton": 8347, "Sheet1_income": 63361, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.961048129901073, 29.309450097214651 ], [ -98.943712917208188, 29.440794687836274 ], [ -98.903264087591438, 29.443272887659319 ], [ -98.885928874898553, 29.440794687836274 ], [ -98.805031215665053, 29.430881888544075 ], [ -98.799252811434087, 29.36644869314479 ], [ -98.805031215665053, 29.356535893852591 ], [ -98.874372066436621, 29.287146298807208 ], [ -98.961048129901073, 29.309450097214651 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CENTER POINT", "zip": "78010", "state": "TX", "Sheet1_value": 145, "Sheet1_populaiton": 2930, "Sheet1_income": 45500, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.914820896053371, 29.782786263417091 ], [ -98.961048129901073, 29.802611862001484 ], [ -99.105508235675174, 29.864566857577721 ], [ -99.047724193365539, 30.015737046783734 ], [ -98.920599300284323, 29.988476848730194 ], [ -98.920599300284323, 29.812524661293683 ], [ -98.914820896053371, 29.782786263417091 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHARLOTTE", "zip": "78011", "state": "TX", "Sheet1_value": 109, "Sheet1_populaiton": 1944, "Sheet1_income": 27941, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.608565471812284, 28.640336144991309 ], [ -98.776139194510236, 28.63785794516826 ], [ -98.799252811434087, 28.63785794516826 ], [ -98.799252811434087, 28.647770744460459 ], [ -98.805031215665053, 28.868330528711859 ], [ -98.805031215665053, 29.034369916856168 ], [ -98.695241535276736, 28.987284120218227 ], [ -98.61434387604325, 28.957545722341635 ], [ -98.712576747969635, 28.843548530481364 ], [ -98.585451854888419, 28.808853732958671 ], [ -98.608565471812284, 28.640336144991309 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COMFORT", "zip": "78013", "state": "TX", "Sheet1_value": 255, "Sheet1_populaiton": 5665, "Sheet1_income": 49533, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.920599300284323, 29.812524661293683 ], [ -98.920599300284323, 29.988476848730194 ], [ -98.920599300284323, 30.139647037936207 ], [ -98.72991196066252, 30.139647037936207 ], [ -98.77036079027927, 29.985998648907142 ], [ -98.799252811434087, 29.953782051207501 ], [ -98.920599300284323, 29.812524661293683 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COTULLA", "zip": "78014", "state": "TX", "Sheet1_value": 230, "Sheet1_populaiton": 5413, "Sheet1_income": 26179, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.394428447223362, 28.189303777196315 ], [ -99.394428447223362, 28.204172976134615 ], [ -99.394428447223362, 28.427210960209059 ], [ -99.394428447223362, 28.640336144991309 ], [ -99.053502597596491, 28.645292544637407 ], [ -98.799252811434087, 28.647770744460459 ], [ -98.799252811434087, 28.63785794516826 ], [ -98.897485683360472, 28.501556954900543 ], [ -98.799252811434087, 28.444558358970404 ], [ -98.805031215665053, 28.102566783389587 ], [ -99.013053767979756, 28.119914182150932 ], [ -99.15173546952289, 28.273562571179998 ], [ -99.394428447223362, 28.189303777196315 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOERNE", "zip": "78015", "state": "TX", "Sheet1_value": 385, "Sheet1_populaiton": 9965, "Sheet1_income": 118306, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.61434387604325, 29.740656866425251 ], [ -98.637457492967101, 29.676223671025966 ], [ -98.701019939507702, 29.785264463240139 ], [ -98.620122280274217, 29.765438864655746 ], [ -98.61434387604325, 29.740656866425251 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEVINE", "zip": "78016", "state": "TX", "Sheet1_value": 469, "Sheet1_populaiton": 9672, "Sheet1_income": 47306, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.903264087591438, 29.091368512786303 ], [ -99.093951427213241, 29.091368512786303 ], [ -99.065059406058424, 29.168192707300836 ], [ -98.961048129901073, 29.309450097214651 ], [ -98.874372066436621, 29.287146298807208 ], [ -98.862815257974688, 29.27723349951501 ], [ -98.805031215665053, 29.106237711724599 ], [ -98.805031215665053, 29.091368512786303 ], [ -98.903264087591438, 29.091368512786303 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DILLEY", "zip": "78017", "state": "TX", "Sheet1_value": 224, "Sheet1_populaiton": 4560, "Sheet1_income": 38789, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.394428447223362, 28.640336144991309 ], [ -99.411763659916261, 28.640336144991309 ], [ -99.411763659916261, 28.818766532250869 ], [ -99.411763659916261, 28.838592130835263 ], [ -99.053502597596491, 28.645292544637407 ], [ -99.394428447223362, 28.640336144991309 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ENCINAL", "zip": "78019", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1374, "Sheet1_income": 26232, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 28.057959186574699 ], [ -99.382871638761443, 28.030698988521152 ], [ -99.394428447223362, 28.189303777196315 ], [ -99.15173546952289, 28.273562571179998 ], [ -99.013053767979756, 28.119914182150932 ], [ -98.805031215665053, 28.102566783389587 ], [ -98.805031215665053, 28.057959186574699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FOWLERTON", "zip": "78021", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.799252811434087, 28.63785794516826 ], [ -98.776139194510236, 28.63785794516826 ], [ -98.799252811434087, 28.444558358970404 ], [ -98.897485683360472, 28.501556954900543 ], [ -98.799252811434087, 28.63785794516826 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GEORGE WEST", "zip": "78022", "state": "TX", "Sheet1_value": 175, "Sheet1_populaiton": 4543, "Sheet1_income": 43924, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.331202068726014, 28.266127971710848 ], [ -98.065395474101678, 28.394994362509419 ], [ -97.863151326017942, 28.280997170649144 ], [ -97.944048985251442, 28.223998574719008 ], [ -98.105844303718413, 28.189303777196315 ], [ -98.094287495256495, 28.057959186574699 ], [ -98.23296919679963, 28.057959186574699 ], [ -98.336980472956981, 28.057959186574699 ], [ -98.331202068726014, 28.266127971710848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HELOTES", "zip": "78023", "state": "TX", "Sheet1_value": 975, "Sheet1_populaiton": 26373, "Sheet1_income": 106014, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.695241535276736, 29.668789071556816 ], [ -98.64901430142902, 29.569661078634841 ], [ -98.666349514121919, 29.552313679873496 ], [ -98.805031215665053, 29.614268675449729 ], [ -98.851258449512756, 29.641528873503276 ], [ -98.776139194510236, 29.720831267840857 ], [ -98.695241535276736, 29.668789071556816 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUNT", "zip": "78024", "state": "TX", "Sheet1_value": 98, "Sheet1_populaiton": 1123, "Sheet1_income": 50288, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.68912706300253, 30.065301043244723 ], [ -99.405985255685295, 30.055388243952528 ], [ -99.423320468378193, 29.90669625456956 ], [ -99.492661319149761, 29.90669625456956 ], [ -99.602450999538064, 29.90669625456956 ], [ -99.68912706300253, 29.909174454392613 ], [ -99.68912706300253, 30.065301043244723 ] ] ] } },
{ "type": "Feature", "properties": { "name": "INGRAM", "zip": "78025", "state": "TX", "Sheet1_value": 216, "Sheet1_populaiton": 4860, "Sheet1_income": 41547, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.68912706300253, 30.065301043244723 ], [ -99.758467913774098, 30.075213842536922 ], [ -99.752689509543131, 30.29081722714222 ], [ -99.400206851454328, 30.288339027319171 ], [ -99.301973979527943, 30.184254634751095 ], [ -99.215297916063491, 30.13469063829011 ], [ -99.325087596451795, 29.904218054746512 ], [ -99.423320468378193, 29.90669625456956 ], [ -99.405985255685295, 30.055388243952528 ], [ -99.68912706300253, 30.065301043244723 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JOURDANTON", "zip": "78026", "state": "TX", "Sheet1_value": 295, "Sheet1_populaiton": 6141, "Sheet1_income": 47820, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.308088451802163, 28.632901545522163 ], [ -98.336980472956981, 28.613075946937766 ], [ -98.510332599885899, 28.642814344814362 ], [ -98.608565471812284, 28.640336144991309 ], [ -98.585451854888419, 28.808853732958671 ], [ -98.712576747969635, 28.843548530481364 ], [ -98.61434387604325, 28.957545722341635 ], [ -98.695241535276736, 28.987284120218227 ], [ -98.539224621040717, 28.994718719687377 ], [ -98.504554195654933, 28.796462733843423 ], [ -98.394764515266615, 28.798940933666472 ], [ -98.360094089880832, 28.751855137028535 ], [ -98.308088451802163, 28.632901545522163 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KENDALIA", "zip": "78027", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 98333, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.412099727959514, 29.938912852269205 ], [ -98.487218982962034, 29.876957856692968 ], [ -98.556559833733601, 29.876957856692968 ], [ -98.53344621680975, 30.072735642713873 ], [ -98.412099727959514, 29.938912852269205 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KERRVILLE", "zip": "78028", "state": "TX", "Sheet1_value": 1479, "Sheet1_populaiton": 39160, "Sheet1_income": 43343, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.215297916063491, 30.13469063829011 ], [ -99.209519511832525, 30.13469063829011 ], [ -98.920599300284323, 30.139647037936207 ], [ -98.920599300284323, 29.988476848730194 ], [ -99.047724193365539, 30.015737046783734 ], [ -99.105508235675174, 29.864566857577721 ], [ -99.325087596451795, 29.904218054746512 ], [ -99.215297916063491, 30.13469063829011 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA COSTE", "zip": "78039", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 1499, "Sheet1_income": 50625, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.787696002972154, 29.289624498630257 ], [ -98.833923236819871, 29.279711699338058 ], [ -98.862815257974688, 29.27723349951501 ], [ -98.874372066436621, 29.287146298807208 ], [ -98.805031215665053, 29.356535893852591 ], [ -98.781917598741188, 29.321841096329898 ], [ -98.787696002972154, 29.289624498630257 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAREDO", "zip": "78040", "state": "TX", "Sheet1_value": 1450, "Sheet1_populaiton": 41851, "Sheet1_income": 23199, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.481104510687828, 27.490451427096382 ], [ -99.481104510687828, 27.485495027450284 ], [ -99.521553340304578, 27.530102624265172 ], [ -99.481104510687828, 27.530102624265172 ], [ -99.481104510687828, 27.490451427096382 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAREDO", "zip": "78041", "state": "TX", "Sheet1_value": 2210, "Sheet1_populaiton": 44823, "Sheet1_income": 42178, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.515774936073612, 27.569753821433963 ], [ -99.400206851454328, 27.604448618956653 ], [ -99.452212489533011, 27.688707412940335 ], [ -99.874035998393367, 27.797748205154509 ], [ -100.214961848020238, 28.196738376665465 ], [ -100.116728976093853, 28.199216576488514 ], [ -99.989604083012651, 28.199216576488514 ], [ -99.394428447223362, 28.204172976134615 ], [ -99.394428447223362, 28.189303777196315 ], [ -99.382871638761443, 28.030698988521152 ], [ -98.805031215665053, 28.057959186574699 ], [ -98.805031215665053, 27.792791805508411 ], [ -99.481104510687828, 27.530102624265172 ], [ -99.521553340304578, 27.530102624265172 ], [ -99.515774936073612, 27.569753821433963 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAREDO", "zip": "78043", "state": "TX", "Sheet1_value": 1630, "Sheet1_populaiton": 45547, "Sheet1_income": 32188, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.417542064147227, 27.289717241429379 ], [ -99.377093234530477, 27.421061832050999 ], [ -99.481104510687828, 27.490451427096382 ], [ -99.481104510687828, 27.530102624265172 ], [ -98.805031215665053, 27.792791805508411 ], [ -98.799252811434087, 27.45327842975064 ], [ -98.903264087591438, 27.455756629573688 ], [ -99.145957065291924, 27.458234829396737 ], [ -98.914820896053371, 27.401236233466602 ], [ -98.799252811434087, 27.331846638421219 ], [ -99.15173546952289, 27.272369842668034 ], [ -99.417542064147227, 27.289717241429379 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAREDO", "zip": "78045", "state": "TX", "Sheet1_value": 3256, "Sheet1_populaiton": 57801, "Sheet1_income": 63938, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.874035998393367, 27.797748205154509 ], [ -99.452212489533011, 27.688707412940335 ], [ -99.400206851454328, 27.604448618956653 ], [ -99.515774936073612, 27.569753821433963 ], [ -99.874035998393367, 27.797748205154509 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAREDO", "zip": "78046", "state": "TX", "Sheet1_value": 2434, "Sheet1_populaiton": 63240, "Sheet1_income": 34399, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.481104510687828, 27.485495027450284 ], [ -99.481104510687828, 27.490451427096382 ], [ -99.377093234530477, 27.421061832050999 ], [ -99.417542064147227, 27.289717241429379 ], [ -99.452212489533011, 27.264935243198885 ], [ -99.538888552997463, 27.319455639305971 ], [ -99.481104510687828, 27.485495027450284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LYTLE", "zip": "78052", "state": "TX", "Sheet1_value": 384, "Sheet1_populaiton": 6710, "Sheet1_income": 58869, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.747247173355419, 29.230147702877069 ], [ -98.72991196066252, 29.160758107831686 ], [ -98.805031215665053, 29.173149106946934 ], [ -98.833923236819871, 29.279711699338058 ], [ -98.787696002972154, 29.289624498630257 ], [ -98.747247173355419, 29.230147702877069 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC COY", "zip": "78053", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.394764515266615, 28.798940933666472 ], [ -98.348537281418913, 28.860895929242709 ], [ -98.360094089880832, 28.751855137028535 ], [ -98.394764515266615, 28.798940933666472 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MEDINA", "zip": "78055", "state": "TX", "Sheet1_value": 66, "Sheet1_populaiton": 1943, "Sheet1_income": 47464, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 29.626659674564976 ], [ -99.492661319149761, 29.626659674564976 ], [ -99.492661319149761, 29.90669625456956 ], [ -99.423320468378193, 29.90669625456956 ], [ -99.325087596451795, 29.904218054746512 ], [ -99.105508235675174, 29.864566857577721 ], [ -99.215297916063491, 29.676223671025966 ], [ -99.261525149911193, 29.626659674564976 ], [ -99.411763659916261, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MICO", "zip": "78056", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 98102, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.828144832588904, 29.515140682527754 ], [ -98.943712917208188, 29.525053481819953 ], [ -98.903264087591438, 29.443272887659319 ], [ -98.943712917208188, 29.440794687836274 ], [ -99.036167384903607, 29.510184282881653 ], [ -98.961048129901073, 29.559748279342642 ], [ -98.851258449512756, 29.641528873503276 ], [ -98.805031215665053, 29.614268675449729 ], [ -98.805031215665053, 29.5225752819969 ], [ -98.828144832588904, 29.515140682527754 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOORE", "zip": "78057", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 822, "Sheet1_income": 44189, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 28.868330528711859 ], [ -99.122843448368059, 29.091368512786303 ], [ -99.093951427213241, 29.091368512786303 ], [ -98.903264087591438, 29.091368512786303 ], [ -98.805031215665053, 29.034369916856168 ], [ -98.805031215665053, 28.868330528711859 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOUNTAIN HOME", "zip": "78058", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 836, "Sheet1_income": 42500, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.400206851454328, 30.288339027319171 ], [ -99.301973979527943, 30.285860827496123 ], [ -99.301973979527943, 30.184254634751095 ], [ -99.400206851454328, 30.288339027319171 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NATALIA", "zip": "78059", "state": "TX", "Sheet1_value": 280, "Sheet1_populaiton": 5301, "Sheet1_income": 51652, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 29.173149106946934 ], [ -98.805031215665053, 29.106237711724599 ], [ -98.862815257974688, 29.27723349951501 ], [ -98.833923236819871, 29.279711699338058 ], [ -98.805031215665053, 29.173149106946934 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OAKVILLE", "zip": "78060", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.007611431792043, 28.521382553484937 ], [ -97.95560579371336, 28.429689160032108 ], [ -98.065395474101678, 28.394994362509419 ], [ -98.140514729104211, 28.454471158262603 ], [ -98.007611431792043, 28.521382553484937 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PEARSALL", "zip": "78061", "state": "TX", "Sheet1_value": 487, "Sheet1_populaiton": 11909, "Sheet1_income": 33838, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.799252811434087, 28.647770744460459 ], [ -99.053502597596491, 28.645292544637407 ], [ -99.411763659916261, 28.838592130835263 ], [ -99.411763659916261, 29.091368512786303 ], [ -99.197962703370592, 29.091368512786303 ], [ -99.122843448368059, 29.091368512786303 ], [ -98.805031215665053, 28.868330528711859 ], [ -98.799252811434087, 28.647770744460459 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PIPE CREEK", "zip": "78063", "state": "TX", "Sheet1_value": 405, "Sheet1_populaiton": 9524, "Sheet1_income": 55000, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.961048129901073, 29.802611862001484 ], [ -98.914820896053371, 29.782786263417091 ], [ -98.776139194510236, 29.720831267840857 ], [ -98.851258449512756, 29.641528873503276 ], [ -98.961048129901073, 29.559748279342642 ], [ -98.984161746824924, 29.624181474741928 ], [ -98.961048129901073, 29.802611862001484 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLEASANTON", "zip": "78064", "state": "TX", "Sheet1_value": 635, "Sheet1_populaiton": 13705, "Sheet1_income": 55417, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.348537281418913, 28.860895929242709 ], [ -98.394764515266615, 28.798940933666472 ], [ -98.504554195654933, 28.796462733843423 ], [ -98.539224621040717, 28.994718719687377 ], [ -98.498775791423967, 29.133497909778143 ], [ -98.406321323728548, 29.113672311193749 ], [ -98.27341802641638, 28.97489312110298 ], [ -98.250304409492514, 28.942676523403339 ], [ -98.348537281418913, 28.860895929242709 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POTEET", "zip": "78065", "state": "TX", "Sheet1_value": 574, "Sheet1_populaiton": 11764, "Sheet1_income": 43750, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 29.091368512786303 ], [ -98.805031215665053, 29.106237711724599 ], [ -98.805031215665053, 29.173149106946934 ], [ -98.72991196066252, 29.160758107831686 ], [ -98.643235897198068, 29.155801708185589 ], [ -98.5738950464265, 29.170670907123885 ], [ -98.498775791423967, 29.133497909778143 ], [ -98.539224621040717, 28.994718719687377 ], [ -98.695241535276736, 28.987284120218227 ], [ -98.805031215665053, 29.034369916856168 ], [ -98.805031215665053, 29.091368512786303 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIO MEDINA", "zip": "78066", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63583, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.903264087591438, 29.443272887659319 ], [ -98.943712917208188, 29.525053481819953 ], [ -98.828144832588904, 29.515140682527754 ], [ -98.885928874898553, 29.440794687836274 ], [ -98.903264087591438, 29.443272887659319 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN YGNACIO", "zip": "78067", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 26641, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.128621852599025, 27.24015324496839 ], [ -99.382871638761443, 26.979942263548203 ], [ -99.452212489533011, 27.264935243198885 ], [ -99.417542064147227, 27.289717241429379 ], [ -99.15173546952289, 27.272369842668034 ], [ -99.128621852599025, 27.24015324496839 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SOMERSET", "zip": "78069", "state": "TX", "Sheet1_value": 317, "Sheet1_populaiton": 5485, "Sheet1_income": 37560, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.68946313104577, 29.23510410252317 ], [ -98.643235897198068, 29.155801708185589 ], [ -98.72991196066252, 29.160758107831686 ], [ -98.747247173355419, 29.230147702877069 ], [ -98.68946313104577, 29.23510410252317 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRING BRANCH", "zip": "78070", "state": "TX", "Sheet1_value": 636, "Sheet1_populaiton": 14615, "Sheet1_income": 75805, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.336980472956981, 29.941391052092253 ], [ -98.336980472956981, 29.810046461470634 ], [ -98.348537281418913, 29.805090061824536 ], [ -98.539224621040717, 29.815002861116731 ], [ -98.550781429502649, 29.82491566040893 ], [ -98.487218982962034, 29.876957856692968 ], [ -98.412099727959514, 29.938912852269205 ], [ -98.354315685649865, 29.985998648907142 ], [ -98.336980472956981, 29.941391052092253 ] ] ] } },
{ "type": "Feature", "properties": { "name": "THREE RIVERS", "zip": "78071", "state": "TX", "Sheet1_value": 119, "Sheet1_populaiton": 4408, "Sheet1_income": 51852, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.065395474101678, 28.394994362509419 ], [ -98.331202068726014, 28.266127971710848 ], [ -98.336980472956981, 28.580859349238125 ], [ -98.186741962951913, 28.583337549061174 ], [ -98.221412388337697, 28.697334740921448 ], [ -98.100065899487461, 28.786549934551225 ], [ -98.030725048715894, 28.717160339505842 ], [ -98.007611431792043, 28.689900141452298 ], [ -98.088509091025529, 28.657683543752654 ], [ -98.007611431792043, 28.521382553484937 ], [ -98.140514729104211, 28.454471158262603 ], [ -98.065395474101678, 28.394994362509419 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TILDEN", "zip": "78072", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42083, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 28.102566783389587 ], [ -98.799252811434087, 28.444558358970404 ], [ -98.776139194510236, 28.63785794516826 ], [ -98.608565471812284, 28.640336144991309 ], [ -98.510332599885899, 28.642814344814362 ], [ -98.521889408347818, 28.057959186574699 ], [ -98.805031215665053, 28.057959186574699 ], [ -98.805031215665053, 28.102566783389587 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VON ORMY", "zip": "78073", "state": "TX", "Sheet1_value": 546, "Sheet1_populaiton": 7308, "Sheet1_income": 46191, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.5738950464265, 29.274755299691961 ], [ -98.5738950464265, 29.170670907123885 ], [ -98.643235897198068, 29.155801708185589 ], [ -98.68946313104577, 29.23510410252317 ], [ -98.666349514121919, 29.294580898276358 ], [ -98.625900684505169, 29.339188495091246 ], [ -98.61434387604325, 29.319362896506849 ], [ -98.568116642195534, 29.319362896506849 ], [ -98.5738950464265, 29.274755299691961 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITSETT", "zip": "78075", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 27222, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.336980472956981, 28.613075946937766 ], [ -98.308088451802163, 28.632901545522163 ], [ -98.221412388337697, 28.697334740921448 ], [ -98.186741962951913, 28.583337549061174 ], [ -98.336980472956981, 28.580859349238125 ], [ -98.336980472956981, 28.613075946937766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ZAPATA", "zip": "78076", "state": "TX", "Sheet1_value": 406, "Sheet1_populaiton": 13637, "Sheet1_income": 32222, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.955269725670121, 26.786642677350347 ], [ -99.169070682215775, 26.571039292745048 ], [ -99.382871638761443, 26.979942263548203 ], [ -99.128621852599025, 27.24015324496839 ], [ -99.140178661060958, 27.01959346071699 ], [ -98.955269725670121, 27.086504855939324 ], [ -98.955269725670121, 26.786642677350347 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ADKINS", "zip": "78101", "state": "TX", "Sheet1_value": 301, "Sheet1_populaiton": 8970, "Sheet1_income": 64878, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.279196430647346, 29.264842500399762 ], [ -98.267639622185413, 29.282189899161111 ], [ -98.27341802641638, 29.433360088367124 ], [ -98.186741962951913, 29.378839692260037 ], [ -98.175185154489981, 29.304493697568553 ], [ -98.279196430647346, 29.264842500399762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BEEVILLE", "zip": "78102", "state": "TX", "Sheet1_value": 638, "Sheet1_populaiton": 27701, "Sheet1_income": 42951, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.065395474101678, 28.394994362509419 ], [ -97.95560579371336, 28.429689160032108 ], [ -98.007611431792043, 28.521382553484937 ], [ -98.088509091025529, 28.657683543752654 ], [ -98.007611431792043, 28.689900141452298 ], [ -97.776475262553475, 28.667596343044853 ], [ -97.37776537061697, 28.387559763040269 ], [ -97.406657391771788, 28.345430366048429 ], [ -97.53956068908397, 28.16452177896582 ], [ -97.568452710238773, 28.280997170649144 ], [ -97.851594517556009, 28.258693372241702 ], [ -97.863151326017942, 28.280997170649144 ], [ -98.065395474101678, 28.394994362509419 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CIBOLO", "zip": "78108", "state": "TX", "Sheet1_value": 951, "Sheet1_populaiton": 30204, "Sheet1_income": 83743, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.256082813723481, 29.520097082173852 ], [ -98.284974834878298, 29.544879080404346 ], [ -98.27341802641638, 29.549835480050447 ], [ -98.267639622185413, 29.609312275803632 ], [ -98.198298771413846, 29.629137874388029 ], [ -98.186741962951913, 29.500271483589458 ], [ -98.256082813723481, 29.520097082173852 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONVERSE", "zip": "78109", "state": "TX", "Sheet1_value": 1886, "Sheet1_populaiton": 36384, "Sheet1_income": 63942, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.319645260264082, 29.458142086597618 ], [ -98.360094089880832, 29.445751087482371 ], [ -98.331202068726014, 29.510184282881653 ], [ -98.354315685649865, 29.53000988146605 ], [ -98.331202068726014, 29.534966281112148 ], [ -98.302310047571197, 29.532488081289099 ], [ -98.256082813723481, 29.520097082173852 ], [ -98.186741962951913, 29.500271483589458 ], [ -98.215633984106731, 29.470533085712866 ], [ -98.27341802641638, 29.433360088367124 ], [ -98.319645260264082, 29.458142086597618 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELMENDORF", "zip": "78112", "state": "TX", "Sheet1_value": 588, "Sheet1_populaiton": 7557, "Sheet1_income": 46974, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.302310047571197, 29.237582302346219 ], [ -98.383207706804683, 29.14588890889339 ], [ -98.464105366038183, 29.220234903584874 ], [ -98.464105366038183, 29.269798900045863 ], [ -98.429434940652399, 29.274755299691961 ], [ -98.302310047571197, 29.237582302346219 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FALLS CITY", "zip": "78113", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 2569, "Sheet1_income": 60988, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.932492176789509, 29.012066118448722 ], [ -98.059617069870711, 28.878243328004054 ], [ -98.128957920642279, 28.816288332427817 ], [ -98.19252036718288, 28.883199727650151 ], [ -97.944048985251442, 29.061630114909711 ], [ -97.938270581020475, 29.069064714378861 ], [ -97.932492176789509, 29.012066118448722 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLORESVILLE", "zip": "78114", "state": "TX", "Sheet1_value": 761, "Sheet1_populaiton": 20039, "Sheet1_income": 58024, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.406321323728548, 29.113672311193749 ], [ -98.383207706804683, 29.14588890889339 ], [ -98.302310047571197, 29.237582302346219 ], [ -98.279196430647346, 29.264842500399762 ], [ -98.175185154489981, 29.304493697568553 ], [ -98.11162270794938, 29.282189899161111 ], [ -98.053838665639745, 29.230147702877069 ], [ -97.99605462333011, 29.170670907123885 ], [ -98.27341802641638, 28.97489312110298 ], [ -98.406321323728548, 29.113672311193749 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GILLETT", "zip": "78116", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 70357, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.903600155634678, 28.942676523403339 ], [ -97.932492176789509, 29.012066118448722 ], [ -97.938270581020475, 29.069064714378861 ], [ -97.730248028705773, 29.222713103407923 ], [ -97.61467994408649, 29.108715911547648 ], [ -97.724469624474807, 29.029413517210067 ], [ -97.747583241398658, 29.014544318271771 ], [ -97.741804837167706, 28.992240519864328 ], [ -97.834259304863124, 28.937720123757238 ], [ -97.903600155634678, 28.942676523403339 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HOBSON", "zip": "78117", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 84643, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.903600155634678, 28.942676523403339 ], [ -98.059617069870711, 28.878243328004054 ], [ -97.932492176789509, 29.012066118448722 ], [ -97.903600155634678, 28.942676523403339 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KARNES CITY", "zip": "78118", "state": "TX", "Sheet1_value": 165, "Sheet1_populaiton": 3972, "Sheet1_income": 40385, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.128957920642279, 28.816288332427817 ], [ -98.059617069870711, 28.878243328004054 ], [ -97.903600155634678, 28.942676523403339 ], [ -97.834259304863124, 28.937720123757238 ], [ -97.805367283708307, 28.917894525172844 ], [ -98.030725048715894, 28.717160339505842 ], [ -98.100065899487461, 28.786549934551225 ], [ -98.128957920642279, 28.816288332427817 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KENEDY", "zip": "78119", "state": "TX", "Sheet1_value": 176, "Sheet1_populaiton": 7377, "Sheet1_income": 38527, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.776475262553475, 28.667596343044853 ], [ -98.007611431792043, 28.689900141452298 ], [ -98.030725048715894, 28.717160339505842 ], [ -97.805367283708307, 28.917894525172844 ], [ -97.65512877370324, 28.756811536674633 ], [ -97.776475262553475, 28.667596343044853 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA VERNIA", "zip": "78121", "state": "TX", "Sheet1_value": 410, "Sheet1_populaiton": 10709, "Sheet1_income": 83892, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.048060261408779, 29.284668098984159 ], [ -98.11162270794938, 29.282189899161111 ], [ -98.175185154489981, 29.304493697568553 ], [ -98.186741962951913, 29.378839692260037 ], [ -98.123179516411312, 29.453185686951517 ], [ -97.95560579371336, 29.378839692260037 ], [ -98.048060261408779, 29.284668098984159 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEESVILLE", "zip": "78122", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30610, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.805367283708307, 29.418490889428828 ], [ -97.730248028705773, 29.356535893852591 ], [ -97.811145687939259, 29.413534489782727 ], [ -97.805367283708307, 29.418490889428828 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARION", "zip": "78124", "state": "TX", "Sheet1_value": 201, "Sheet1_populaiton": 5688, "Sheet1_income": 52337, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.065395474101678, 29.594443076865335 ], [ -98.128957920642279, 29.480445885005061 ], [ -98.215633984106731, 29.470533085712866 ], [ -98.186741962951913, 29.500271483589458 ], [ -98.198298771413846, 29.629137874388029 ], [ -98.15207153756613, 29.656398072441569 ], [ -98.065395474101678, 29.594443076865335 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW BRAUNFELS", "zip": "78130", "state": "TX", "Sheet1_value": 3071, "Sheet1_populaiton": 61293, "Sheet1_income": 54672, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.065395474101678, 29.594443076865335 ], [ -98.15207153756613, 29.656398072441569 ], [ -98.019168240253961, 29.810046461470634 ], [ -97.99605462333011, 29.748091465894397 ], [ -98.048060261408779, 29.61922507509583 ], [ -98.065395474101678, 29.594443076865335 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW BRAUNFELS", "zip": "78132", "state": "TX", "Sheet1_value": 853, "Sheet1_populaiton": 20370, "Sheet1_income": 82917, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.198298771413846, 29.629137874388029 ], [ -98.267639622185413, 29.609312275803632 ], [ -98.267639622185413, 29.636572473857175 ], [ -98.302310047571197, 29.718353068017805 ], [ -98.348537281418913, 29.805090061824536 ], [ -98.336980472956981, 29.810046461470634 ], [ -98.123179516411312, 29.899261655100414 ], [ -98.019168240253961, 29.810046461470634 ], [ -98.15207153756613, 29.656398072441569 ], [ -98.198298771413846, 29.629137874388029 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CANYON LAKE", "zip": "78133", "state": "TX", "Sheet1_value": 862, "Sheet1_populaiton": 15895, "Sheet1_income": 59710, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.336980472956981, 29.941391052092253 ], [ -98.221412388337697, 29.9488256515614 ], [ -98.123179516411312, 29.899261655100414 ], [ -98.336980472956981, 29.810046461470634 ], [ -98.336980472956981, 29.941391052092253 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NIXON", "zip": "78140", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 3341, "Sheet1_income": 31793, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.591566327162639, 29.351579494206494 ], [ -97.591566327162639, 29.339188495091246 ], [ -97.73602643293674, 29.22766950305402 ], [ -97.886264942941793, 29.376361492436985 ], [ -97.811145687939259, 29.413534489782727 ], [ -97.730248028705773, 29.356535893852591 ], [ -97.805367283708307, 29.418490889428828 ], [ -97.741804837167706, 29.510184282881653 ], [ -97.730248028705773, 29.525053481819953 ], [ -97.585787922931672, 29.487880484474211 ], [ -97.608901539855523, 29.463098486243716 ], [ -97.591566327162639, 29.396187091021382 ], [ -97.591566327162639, 29.351579494206494 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NORDHEIM", "zip": "78141", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38304, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.57423111446974, 28.813810132604768 ], [ -97.678242390627091, 28.925329124641994 ], [ -97.429771008695653, 28.915416325349796 ], [ -97.57423111446974, 28.813810132604768 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POTH", "zip": "78147", "state": "TX", "Sheet1_value": 81, "Sheet1_populaiton": 1855, "Sheet1_income": 57931, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.19252036718288, 28.883199727650151 ], [ -98.250304409492514, 28.942676523403339 ], [ -98.27341802641638, 28.97489312110298 ], [ -97.99605462333011, 29.170670907123885 ], [ -97.944048985251442, 29.061630114909711 ], [ -98.19252036718288, 28.883199727650151 ] ] ] } },
{ "type": "Feature", "properties": { "name": "UNIVERSAL CITY", "zip": "78148", "state": "TX", "Sheet1_value": 764, "Sheet1_populaiton": 20354, "Sheet1_income": 54691, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.331202068726014, 29.534966281112148 ], [ -98.331202068726014, 29.567182878811792 ], [ -98.27341802641638, 29.549835480050447 ], [ -98.284974834878298, 29.544879080404346 ], [ -98.302310047571197, 29.532488081289099 ], [ -98.331202068726014, 29.534966281112148 ] ] ] } },
{ "type": "Feature", "properties": { "name": "UNIVERSAL CITY", "zip": "78150", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.302310047571197, 29.532488081289099 ], [ -98.284974834878298, 29.544879080404346 ], [ -98.256082813723481, 29.520097082173852 ], [ -98.302310047571197, 29.532488081289099 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RUNGE", "zip": "78151", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34183, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.57423111446974, 28.813810132604768 ], [ -97.65512877370324, 28.756811536674633 ], [ -97.805367283708307, 28.917894525172844 ], [ -97.834259304863124, 28.937720123757238 ], [ -97.741804837167706, 28.992240519864328 ], [ -97.678242390627091, 28.925329124641994 ], [ -97.57423111446974, 28.813810132604768 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAINT HEDWIG", "zip": "78152", "state": "TX", "Sheet1_value": 80, "Sheet1_populaiton": 2514, "Sheet1_income": 74131, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.186741962951913, 29.378839692260037 ], [ -98.27341802641638, 29.433360088367124 ], [ -98.215633984106731, 29.470533085712866 ], [ -98.128957920642279, 29.480445885005061 ], [ -98.123179516411312, 29.453185686951517 ], [ -98.186741962951913, 29.378839692260037 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SCHERTZ", "zip": "78154", "state": "TX", "Sheet1_value": 1066, "Sheet1_populaiton": 31779, "Sheet1_income": 71432, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.331202068726014, 29.567182878811792 ], [ -98.354315685649865, 29.591964877042287 ], [ -98.267639622185413, 29.636572473857175 ], [ -98.267639622185413, 29.609312275803632 ], [ -98.27341802641638, 29.549835480050447 ], [ -98.331202068726014, 29.567182878811792 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEGUIN", "zip": "78155", "state": "TX", "Sheet1_value": 1671, "Sheet1_populaiton": 46816, "Sheet1_income": 49399, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.811145687939259, 29.413534489782727 ], [ -97.886264942941793, 29.376361492436985 ], [ -97.95560579371336, 29.378839692260037 ], [ -98.123179516411312, 29.453185686951517 ], [ -98.128957920642279, 29.480445885005061 ], [ -98.065395474101678, 29.594443076865335 ], [ -98.048060261408779, 29.61922507509583 ], [ -97.99605462333011, 29.748091465894397 ], [ -97.949827389482394, 29.75056966571745 ], [ -97.741804837167706, 29.510184282881653 ], [ -97.805367283708307, 29.418490889428828 ], [ -97.811145687939259, 29.413534489782727 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SMILEY", "zip": "78159", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 31630, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.556895901776855, 29.150845308539488 ], [ -97.61467994408649, 29.108715911547648 ], [ -97.730248028705773, 29.222713103407923 ], [ -97.73602643293674, 29.22766950305402 ], [ -97.591566327162639, 29.339188495091246 ], [ -97.452884625619504, 29.230147702877069 ], [ -97.556895901776855, 29.150845308539488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STOCKDALE", "zip": "78160", "state": "TX", "Sheet1_value": 182, "Sheet1_populaiton": 5058, "Sheet1_income": 52059, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.938270581020475, 29.069064714378861 ], [ -97.944048985251442, 29.061630114909711 ], [ -97.99605462333011, 29.170670907123885 ], [ -98.053838665639745, 29.230147702877069 ], [ -98.048060261408779, 29.284668098984159 ], [ -97.95560579371336, 29.378839692260037 ], [ -97.886264942941793, 29.376361492436985 ], [ -97.73602643293674, 29.22766950305402 ], [ -97.730248028705773, 29.222713103407923 ], [ -97.938270581020475, 29.069064714378861 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUTHERLAND SPRINGS", "zip": "78161", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.11162270794938, 29.282189899161111 ], [ -98.048060261408779, 29.284668098984159 ], [ -98.053838665639745, 29.230147702877069 ], [ -98.11162270794938, 29.282189899161111 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BULVERDE", "zip": "78163", "state": "TX", "Sheet1_value": 416, "Sheet1_populaiton": 10278, "Sheet1_income": 92560, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.302310047571197, 29.718353068017805 ], [ -98.348537281418913, 29.728265867310004 ], [ -98.446770153345284, 29.718353068017805 ], [ -98.516111004116851, 29.7431350662483 ], [ -98.61434387604325, 29.740656866425251 ], [ -98.620122280274217, 29.765438864655746 ], [ -98.539224621040717, 29.815002861116731 ], [ -98.348537281418913, 29.805090061824536 ], [ -98.302310047571197, 29.718353068017805 ] ] ] } },
{ "type": "Feature", "properties": { "name": "YORKTOWN", "zip": "78164", "state": "TX", "Sheet1_value": 147, "Sheet1_populaiton": 4381, "Sheet1_income": 45737, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.383543774847936, 28.915416325349796 ], [ -97.429771008695653, 28.915416325349796 ], [ -97.678242390627091, 28.925329124641994 ], [ -97.741804837167706, 28.992240519864328 ], [ -97.747583241398658, 29.014544318271771 ], [ -97.724469624474807, 29.029413517210067 ], [ -97.61467994408649, 29.108715911547648 ], [ -97.556895901776855, 29.150845308539488 ], [ -97.383543774847936, 28.915416325349796 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78201", "state": "TX", "Sheet1_value": 3151, "Sheet1_populaiton": 42759, "Sheet1_income": 35282, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.539224621040717, 29.445751087482371 ], [ -98.568116642195534, 29.490358684297259 ], [ -98.550781429502649, 29.502749683412507 ], [ -98.510332599885899, 29.487880484474211 ], [ -98.504554195654933, 29.440794687836274 ], [ -98.539224621040717, 29.445751087482371 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78202", "state": "TX", "Sheet1_value": 695, "Sheet1_populaiton": 13165, "Sheet1_income": 24369, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 29.435838288190173 ], [ -98.440991749114332, 29.420969089251876 ], [ -98.475662174500115, 29.420969089251876 ], [ -98.481440578731082, 29.428403688721026 ], [ -98.475662174500115, 29.435838288190173 ], [ -98.440991749114332, 29.435838288190173 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78203", "state": "TX", "Sheet1_value": 387, "Sheet1_populaiton": 5807, "Sheet1_income": 24846, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 29.420969089251876 ], [ -98.440991749114332, 29.408578090136629 ], [ -98.481440578731082, 29.413534489782727 ], [ -98.475662174500115, 29.420969089251876 ], [ -98.440991749114332, 29.420969089251876 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78204", "state": "TX", "Sheet1_value": 733, "Sheet1_populaiton": 11035, "Sheet1_income": 30800, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.492997387193, 29.413534489782727 ], [ -98.498775791423967, 29.388752491552232 ], [ -98.510332599885899, 29.388752491552232 ], [ -98.527667812578784, 29.398665290844431 ], [ -98.498775791423967, 29.423447289074925 ], [ -98.492997387193, 29.413534489782727 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78205", "state": "TX", "Sheet1_value": 74, "Sheet1_populaiton": 1025, "Sheet1_income": 25903, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.498775791423967, 29.423447289074925 ], [ -98.498775791423967, 29.430881888544075 ], [ -98.492997387193, 29.435838288190173 ], [ -98.481440578731082, 29.428403688721026 ], [ -98.475662174500115, 29.420969089251876 ], [ -98.481440578731082, 29.413534489782727 ], [ -98.492997387193, 29.413534489782727 ], [ -98.498775791423967, 29.423447289074925 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78207", "state": "TX", "Sheet1_value": 2917, "Sheet1_populaiton": 53946, "Sheet1_income": 22605, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.527667812578784, 29.398665290844431 ], [ -98.53344621680975, 29.396187091021382 ], [ -98.550781429502649, 29.398665290844431 ], [ -98.545003025271683, 29.438316488013221 ], [ -98.539224621040717, 29.445751087482371 ], [ -98.504554195654933, 29.440794687836274 ], [ -98.498775791423967, 29.430881888544075 ], [ -98.498775791423967, 29.423447289074925 ], [ -98.527667812578784, 29.398665290844431 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78208", "state": "TX", "Sheet1_value": 300, "Sheet1_populaiton": 3436, "Sheet1_income": 22866, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 29.440794687836274 ], [ -98.440991749114332, 29.435838288190173 ], [ -98.475662174500115, 29.435838288190173 ], [ -98.475662174500115, 29.44822928730542 ], [ -98.440991749114332, 29.440794687836274 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78209", "state": "TX", "Sheet1_value": 1651, "Sheet1_populaiton": 40298, "Sheet1_income": 62525, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 29.455663886774566 ], [ -98.487218982962034, 29.490358684297259 ], [ -98.469883770269149, 29.520097082173852 ], [ -98.435213344883365, 29.515140682527754 ], [ -98.429434940652399, 29.485402284651162 ], [ -98.469883770269149, 29.450707487128469 ], [ -98.475662174500115, 29.455663886774566 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78210", "state": "TX", "Sheet1_value": 2242, "Sheet1_populaiton": 37627, "Sheet1_income": 32676, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.429434940652399, 29.398665290844431 ], [ -98.429434940652399, 29.383796091906135 ], [ -98.475662174500115, 29.373883292613936 ], [ -98.498775791423967, 29.388752491552232 ], [ -98.492997387193, 29.413534489782727 ], [ -98.481440578731082, 29.413534489782727 ], [ -98.440991749114332, 29.408578090136629 ], [ -98.429434940652399, 29.398665290844431 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78211", "state": "TX", "Sheet1_value": 2020, "Sheet1_populaiton": 34415, "Sheet1_income": 32985, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.61434387604325, 29.319362896506849 ], [ -98.5738950464265, 29.361492293498692 ], [ -98.539224621040717, 29.381317892083086 ], [ -98.510332599885899, 29.378839692260037 ], [ -98.516111004116851, 29.368926892967838 ], [ -98.521889408347818, 29.361492293498692 ], [ -98.568116642195534, 29.319362896506849 ], [ -98.61434387604325, 29.319362896506849 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78212", "state": "TX", "Sheet1_value": 1638, "Sheet1_populaiton": 28615, "Sheet1_income": 36613, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 29.455663886774566 ], [ -98.492997387193, 29.435838288190173 ], [ -98.498775791423967, 29.430881888544075 ], [ -98.504554195654933, 29.440794687836274 ], [ -98.510332599885899, 29.487880484474211 ], [ -98.510332599885899, 29.492836884120308 ], [ -98.487218982962034, 29.490358684297259 ], [ -98.475662174500115, 29.455663886774566 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78213", "state": "TX", "Sheet1_value": 2673, "Sheet1_populaiton": 42263, "Sheet1_income": 40727, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.510332599885899, 29.487880484474211 ], [ -98.550781429502649, 29.502749683412507 ], [ -98.527667812578784, 29.544879080404346 ], [ -98.516111004116851, 29.554791879696545 ], [ -98.510332599885899, 29.492836884120308 ], [ -98.510332599885899, 29.487880484474211 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78214", "state": "TX", "Sheet1_value": 1429, "Sheet1_populaiton": 23611, "Sheet1_income": 27222, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 29.373883292613936 ], [ -98.429434940652399, 29.274755299691961 ], [ -98.464105366038183, 29.269798900045863 ], [ -98.516111004116851, 29.368926892967838 ], [ -98.510332599885899, 29.378839692260037 ], [ -98.510332599885899, 29.388752491552232 ], [ -98.498775791423967, 29.388752491552232 ], [ -98.475662174500115, 29.373883292613936 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78215", "state": "TX", "Sheet1_value": 84, "Sheet1_populaiton": 1155, "Sheet1_income": 34836, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.475662174500115, 29.455663886774566 ], [ -98.469883770269149, 29.450707487128469 ], [ -98.475662174500115, 29.44822928730542 ], [ -98.475662174500115, 29.435838288190173 ], [ -98.481440578731082, 29.428403688721026 ], [ -98.492997387193, 29.435838288190173 ], [ -98.475662174500115, 29.455663886774566 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78216", "state": "TX", "Sheet1_value": 2388, "Sheet1_populaiton": 38846, "Sheet1_income": 41792, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.516111004116851, 29.554791879696545 ], [ -98.521889408347818, 29.562226479165695 ], [ -98.510332599885899, 29.579573877927039 ], [ -98.469883770269149, 29.552313679873496 ], [ -98.440991749114332, 29.542400880581297 ], [ -98.469883770269149, 29.520097082173852 ], [ -98.487218982962034, 29.490358684297259 ], [ -98.510332599885899, 29.492836884120308 ], [ -98.516111004116851, 29.554791879696545 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78217", "state": "TX", "Sheet1_value": 2012, "Sheet1_populaiton": 32596, "Sheet1_income": 45224, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 29.542400880581297 ], [ -98.383207706804683, 29.567182878811792 ], [ -98.394764515266615, 29.5225752819969 ], [ -98.394764515266615, 29.520097082173852 ], [ -98.435213344883365, 29.515140682527754 ], [ -98.469883770269149, 29.520097082173852 ], [ -98.440991749114332, 29.542400880581297 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78218", "state": "TX", "Sheet1_value": 1956, "Sheet1_populaiton": 32206, "Sheet1_income": 38812, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.354315685649865, 29.49531508394336 ], [ -98.377429302573717, 29.477967685182012 ], [ -98.406321323728548, 29.465576686066765 ], [ -98.429434940652399, 29.485402284651162 ], [ -98.435213344883365, 29.515140682527754 ], [ -98.394764515266615, 29.520097082173852 ], [ -98.354315685649865, 29.49531508394336 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78219", "state": "TX", "Sheet1_value": 915, "Sheet1_populaiton": 15141, "Sheet1_income": 38512, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.319645260264082, 29.458142086597618 ], [ -98.331202068726014, 29.425925488897974 ], [ -98.440991749114332, 29.420969089251876 ], [ -98.440991749114332, 29.435838288190173 ], [ -98.440991749114332, 29.440794687836274 ], [ -98.406321323728548, 29.465576686066765 ], [ -98.377429302573717, 29.477967685182012 ], [ -98.360094089880832, 29.445751087482371 ], [ -98.319645260264082, 29.458142086597618 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78220", "state": "TX", "Sheet1_value": 909, "Sheet1_populaiton": 16752, "Sheet1_income": 30605, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.331202068726014, 29.425925488897974 ], [ -98.360094089880832, 29.391230691375284 ], [ -98.429434940652399, 29.398665290844431 ], [ -98.440991749114332, 29.408578090136629 ], [ -98.440991749114332, 29.420969089251876 ], [ -98.331202068726014, 29.425925488897974 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78221", "state": "TX", "Sheet1_value": 2209, "Sheet1_populaiton": 37086, "Sheet1_income": 38036, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.464105366038183, 29.220234903584874 ], [ -98.492997387193, 29.264842500399762 ], [ -98.521889408347818, 29.361492293498692 ], [ -98.516111004116851, 29.368926892967838 ], [ -98.464105366038183, 29.269798900045863 ], [ -98.464105366038183, 29.220234903584874 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78222", "state": "TX", "Sheet1_value": 954, "Sheet1_populaiton": 21220, "Sheet1_income": 46000, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.360094089880832, 29.391230691375284 ], [ -98.331202068726014, 29.289624498630257 ], [ -98.429434940652399, 29.383796091906135 ], [ -98.429434940652399, 29.398665290844431 ], [ -98.360094089880832, 29.391230691375284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78223", "state": "TX", "Sheet1_value": 2639, "Sheet1_populaiton": 50536, "Sheet1_income": 37019, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.279196430647346, 29.264842500399762 ], [ -98.302310047571197, 29.237582302346219 ], [ -98.429434940652399, 29.274755299691961 ], [ -98.475662174500115, 29.373883292613936 ], [ -98.429434940652399, 29.383796091906135 ], [ -98.331202068726014, 29.289624498630257 ], [ -98.267639622185413, 29.282189899161111 ], [ -98.279196430647346, 29.264842500399762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78224", "state": "TX", "Sheet1_value": 1050, "Sheet1_populaiton": 18121, "Sheet1_income": 40028, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.492997387193, 29.264842500399762 ], [ -98.5738950464265, 29.274755299691961 ], [ -98.568116642195534, 29.319362896506849 ], [ -98.521889408347818, 29.361492293498692 ], [ -98.492997387193, 29.264842500399762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78225", "state": "TX", "Sheet1_value": 790, "Sheet1_populaiton": 14076, "Sheet1_income": 32234, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.539224621040717, 29.381317892083086 ], [ -98.550781429502649, 29.383796091906135 ], [ -98.53344621680975, 29.396187091021382 ], [ -98.527667812578784, 29.398665290844431 ], [ -98.510332599885899, 29.388752491552232 ], [ -98.510332599885899, 29.378839692260037 ], [ -98.539224621040717, 29.381317892083086 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78226", "state": "TX", "Sheet1_value": 349, "Sheet1_populaiton": 6003, "Sheet1_income": 27936, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.550781429502649, 29.383796091906135 ], [ -98.568116642195534, 29.398665290844431 ], [ -98.550781429502649, 29.398665290844431 ], [ -98.53344621680975, 29.396187091021382 ], [ -98.550781429502649, 29.383796091906135 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78227", "state": "TX", "Sheet1_value": 2597, "Sheet1_populaiton": 46489, "Sheet1_income": 36980, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.585451854888419, 29.391230691375284 ], [ -98.625900684505169, 29.36644869314479 ], [ -98.631679088736135, 29.361492293498692 ], [ -98.660571109890952, 29.393708891198333 ], [ -98.637457492967101, 29.443272887659319 ], [ -98.597008663350351, 29.435838288190173 ], [ -98.585451854888419, 29.433360088367124 ], [ -98.585451854888419, 29.40609989031358 ], [ -98.585451854888419, 29.391230691375284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78228", "state": "TX", "Sheet1_value": 3817, "Sheet1_populaiton": 58783, "Sheet1_income": 34992, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.597008663350351, 29.435838288190173 ], [ -98.591230259119385, 29.485402284651162 ], [ -98.568116642195534, 29.490358684297259 ], [ -98.539224621040717, 29.445751087482371 ], [ -98.545003025271683, 29.438316488013221 ], [ -98.585451854888419, 29.433360088367124 ], [ -98.597008663350351, 29.435838288190173 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78229", "state": "TX", "Sheet1_value": 1732, "Sheet1_populaiton": 29591, "Sheet1_income": 35344, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.591230259119385, 29.485402284651162 ], [ -98.597008663350351, 29.490358684297259 ], [ -98.562338237964568, 29.53000988146605 ], [ -98.550781429502649, 29.502749683412507 ], [ -98.568116642195534, 29.490358684297259 ], [ -98.591230259119385, 29.485402284651162 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78230", "state": "TX", "Sheet1_value": 2182, "Sheet1_populaiton": 40063, "Sheet1_income": 55936, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.550781429502649, 29.502749683412507 ], [ -98.562338237964568, 29.53000988146605 ], [ -98.585451854888419, 29.547357280227395 ], [ -98.562338237964568, 29.579573877927039 ], [ -98.527667812578784, 29.544879080404346 ], [ -98.550781429502649, 29.502749683412507 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78231", "state": "TX", "Sheet1_value": 395, "Sheet1_populaiton": 8190, "Sheet1_income": 83696, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.516111004116851, 29.554791879696545 ], [ -98.527667812578784, 29.544879080404346 ], [ -98.562338237964568, 29.579573877927039 ], [ -98.568116642195534, 29.596921276688384 ], [ -98.539224621040717, 29.601877676334482 ], [ -98.521889408347818, 29.562226479165695 ], [ -98.516111004116851, 29.554791879696545 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78232", "state": "TX", "Sheet1_value": 1597, "Sheet1_populaiton": 37279, "Sheet1_income": 64741, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.435213344883365, 29.599399476511433 ], [ -98.469883770269149, 29.552313679873496 ], [ -98.510332599885899, 29.579573877927039 ], [ -98.510332599885899, 29.609312275803632 ], [ -98.469883770269149, 29.609312275803632 ], [ -98.435213344883365, 29.599399476511433 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78233", "state": "TX", "Sheet1_value": 2631, "Sheet1_populaiton": 45987, "Sheet1_income": 54399, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.354315685649865, 29.53000988146605 ], [ -98.394764515266615, 29.5225752819969 ], [ -98.383207706804683, 29.567182878811792 ], [ -98.354315685649865, 29.591964877042287 ], [ -98.331202068726014, 29.567182878811792 ], [ -98.331202068726014, 29.534966281112148 ], [ -98.354315685649865, 29.53000988146605 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78234", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 59665, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.440991749114332, 29.440794687836274 ], [ -98.475662174500115, 29.44822928730542 ], [ -98.469883770269149, 29.450707487128469 ], [ -98.429434940652399, 29.485402284651162 ], [ -98.406321323728548, 29.465576686066765 ], [ -98.440991749114332, 29.440794687836274 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78236", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 60250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.579673450657452, 29.363970493321737 ], [ -98.625900684505169, 29.36644869314479 ], [ -98.585451854888419, 29.391230691375284 ], [ -98.579673450657452, 29.363970493321737 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78237", "state": "TX", "Sheet1_value": 2476, "Sheet1_populaiton": 37719, "Sheet1_income": 26702, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.550781429502649, 29.398665290844431 ], [ -98.568116642195534, 29.398665290844431 ], [ -98.585451854888419, 29.40609989031358 ], [ -98.585451854888419, 29.433360088367124 ], [ -98.545003025271683, 29.438316488013221 ], [ -98.550781429502649, 29.398665290844431 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78238", "state": "TX", "Sheet1_value": 1389, "Sheet1_populaiton": 24711, "Sheet1_income": 44005, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.637457492967101, 29.443272887659319 ], [ -98.631679088736135, 29.455663886774566 ], [ -98.631679088736135, 29.482924084828113 ], [ -98.631679088736135, 29.510184282881653 ], [ -98.597008663350351, 29.490358684297259 ], [ -98.591230259119385, 29.485402284651162 ], [ -98.597008663350351, 29.435838288190173 ], [ -98.637457492967101, 29.443272887659319 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78239", "state": "TX", "Sheet1_value": 1598, "Sheet1_populaiton": 27787, "Sheet1_income": 53868, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.331202068726014, 29.510184282881653 ], [ -98.354315685649865, 29.49531508394336 ], [ -98.394764515266615, 29.520097082173852 ], [ -98.394764515266615, 29.5225752819969 ], [ -98.354315685649865, 29.53000988146605 ], [ -98.331202068726014, 29.510184282881653 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78240", "state": "TX", "Sheet1_value": 2655, "Sheet1_populaiton": 53145, "Sheet1_income": 48281, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.631679088736135, 29.510184282881653 ], [ -98.637457492967101, 29.520097082173852 ], [ -98.654792705659986, 29.542400880581297 ], [ -98.585451854888419, 29.547357280227395 ], [ -98.562338237964568, 29.53000988146605 ], [ -98.597008663350351, 29.490358684297259 ], [ -98.631679088736135, 29.510184282881653 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78241", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.585451854888419, 29.391230691375284 ], [ -98.585451854888419, 29.40609989031358 ], [ -98.568116642195534, 29.398665290844431 ], [ -98.550781429502649, 29.383796091906135 ], [ -98.539224621040717, 29.381317892083086 ], [ -98.5738950464265, 29.361492293498692 ], [ -98.579673450657452, 29.363970493321737 ], [ -98.585451854888419, 29.391230691375284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78242", "state": "TX", "Sheet1_value": 2048, "Sheet1_populaiton": 32786, "Sheet1_income": 35451, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.625900684505169, 29.339188495091246 ], [ -98.631679088736135, 29.361492293498692 ], [ -98.625900684505169, 29.36644869314479 ], [ -98.579673450657452, 29.363970493321737 ], [ -98.5738950464265, 29.361492293498692 ], [ -98.61434387604325, 29.319362896506849 ], [ -98.625900684505169, 29.339188495091246 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78244", "state": "TX", "Sheet1_value": 1706, "Sheet1_populaiton": 30527, "Sheet1_income": 56946, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.360094089880832, 29.445751087482371 ], [ -98.377429302573717, 29.477967685182012 ], [ -98.354315685649865, 29.49531508394336 ], [ -98.331202068726014, 29.510184282881653 ], [ -98.360094089880832, 29.445751087482371 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78245", "state": "TX", "Sheet1_value": 3123, "Sheet1_populaiton": 60333, "Sheet1_income": 59785, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.660571109890952, 29.393708891198333 ], [ -98.799252811434087, 29.36644869314479 ], [ -98.805031215665053, 29.430881888544075 ], [ -98.712576747969635, 29.435838288190173 ], [ -98.631679088736135, 29.455663886774566 ], [ -98.637457492967101, 29.443272887659319 ], [ -98.660571109890952, 29.393708891198333 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78247", "state": "TX", "Sheet1_value": 2495, "Sheet1_populaiton": 49514, "Sheet1_income": 65921, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.435213344883365, 29.599399476511433 ], [ -98.365872494111798, 29.601877676334482 ], [ -98.354315685649865, 29.591964877042287 ], [ -98.383207706804683, 29.567182878811792 ], [ -98.440991749114332, 29.542400880581297 ], [ -98.469883770269149, 29.552313679873496 ], [ -98.435213344883365, 29.599399476511433 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78248", "state": "TX", "Sheet1_value": 527, "Sheet1_populaiton": 14405, "Sheet1_income": 105987, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.521889408347818, 29.562226479165695 ], [ -98.539224621040717, 29.601877676334482 ], [ -98.510332599885899, 29.609312275803632 ], [ -98.510332599885899, 29.579573877927039 ], [ -98.521889408347818, 29.562226479165695 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78249", "state": "TX", "Sheet1_value": 2468, "Sheet1_populaiton": 50491, "Sheet1_income": 70689, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.585451854888419, 29.547357280227395 ], [ -98.654792705659986, 29.542400880581297 ], [ -98.666349514121919, 29.552313679873496 ], [ -98.64901430142902, 29.569661078634841 ], [ -98.625900684505169, 29.587008477396186 ], [ -98.597008663350351, 29.591964877042287 ], [ -98.568116642195534, 29.596921276688384 ], [ -98.562338237964568, 29.579573877927039 ], [ -98.585451854888419, 29.547357280227395 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78250", "state": "TX", "Sheet1_value": 2693, "Sheet1_populaiton": 55723, "Sheet1_income": 60726, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.631679088736135, 29.482924084828113 ], [ -98.706798343738669, 29.492836884120308 ], [ -98.637457492967101, 29.520097082173852 ], [ -98.631679088736135, 29.510184282881653 ], [ -98.631679088736135, 29.482924084828113 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78251", "state": "TX", "Sheet1_value": 2393, "Sheet1_populaiton": 51767, "Sheet1_income": 62482, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.712576747969635, 29.435838288190173 ], [ -98.706798343738669, 29.49531508394336 ], [ -98.706798343738669, 29.492836884120308 ], [ -98.631679088736135, 29.482924084828113 ], [ -98.631679088736135, 29.455663886774566 ], [ -98.712576747969635, 29.435838288190173 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78252", "state": "TX", "Sheet1_value": 407, "Sheet1_populaiton": 7627, "Sheet1_income": 44143, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 29.356535893852591 ], [ -98.799252811434087, 29.36644869314479 ], [ -98.660571109890952, 29.393708891198333 ], [ -98.631679088736135, 29.361492293498692 ], [ -98.625900684505169, 29.339188495091246 ], [ -98.666349514121919, 29.294580898276358 ], [ -98.781917598741188, 29.321841096329898 ], [ -98.805031215665053, 29.356535893852591 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78253", "state": "TX", "Sheet1_value": 1409, "Sheet1_populaiton": 31061, "Sheet1_income": 85508, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.712576747969635, 29.435838288190173 ], [ -98.805031215665053, 29.430881888544075 ], [ -98.885928874898553, 29.440794687836274 ], [ -98.828144832588904, 29.515140682527754 ], [ -98.805031215665053, 29.5225752819969 ], [ -98.706798343738669, 29.49531508394336 ], [ -98.712576747969635, 29.435838288190173 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78254", "state": "TX", "Sheet1_value": 2049, "Sheet1_populaiton": 47019, "Sheet1_income": 76649, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.805031215665053, 29.5225752819969 ], [ -98.805031215665053, 29.614268675449729 ], [ -98.666349514121919, 29.552313679873496 ], [ -98.654792705659986, 29.542400880581297 ], [ -98.637457492967101, 29.520097082173852 ], [ -98.706798343738669, 29.492836884120308 ], [ -98.706798343738669, 29.49531508394336 ], [ -98.805031215665053, 29.5225752819969 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78255", "state": "TX", "Sheet1_value": 528, "Sheet1_populaiton": 12152, "Sheet1_income": 111307, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.64901430142902, 29.569661078634841 ], [ -98.695241535276736, 29.668789071556816 ], [ -98.637457492967101, 29.676223671025966 ], [ -98.631679088736135, 29.663832671910718 ], [ -98.625900684505169, 29.587008477396186 ], [ -98.64901430142902, 29.569661078634841 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78256", "state": "TX", "Sheet1_value": 267, "Sheet1_populaiton": 7115, "Sheet1_income": 69649, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.631679088736135, 29.663832671910718 ], [ -98.597008663350351, 29.591964877042287 ], [ -98.625900684505169, 29.587008477396186 ], [ -98.631679088736135, 29.663832671910718 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78257", "state": "TX", "Sheet1_value": 255, "Sheet1_populaiton": 4005, "Sheet1_income": 112202, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.539224621040717, 29.601877676334482 ], [ -98.568116642195534, 29.596921276688384 ], [ -98.597008663350351, 29.591964877042287 ], [ -98.631679088736135, 29.663832671910718 ], [ -98.637457492967101, 29.676223671025966 ], [ -98.61434387604325, 29.740656866425251 ], [ -98.516111004116851, 29.7431350662483 ], [ -98.516111004116851, 29.713396668371708 ], [ -98.539224621040717, 29.601877676334482 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78258", "state": "TX", "Sheet1_value": 2167, "Sheet1_populaiton": 41864, "Sheet1_income": 107479, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.510332599885899, 29.609312275803632 ], [ -98.539224621040717, 29.601877676334482 ], [ -98.516111004116851, 29.713396668371708 ], [ -98.45254855757625, 29.671267271379868 ], [ -98.45254855757625, 29.66135447208767 ], [ -98.469883770269149, 29.609312275803632 ], [ -98.510332599885899, 29.609312275803632 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78259", "state": "TX", "Sheet1_value": 1072, "Sheet1_populaiton": 22614, "Sheet1_income": 98669, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.469883770269149, 29.609312275803632 ], [ -98.45254855757625, 29.66135447208767 ], [ -98.388986111035649, 29.644007073326325 ], [ -98.365872494111798, 29.601877676334482 ], [ -98.435213344883365, 29.599399476511433 ], [ -98.469883770269149, 29.609312275803632 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78260", "state": "TX", "Sheet1_value": 1178, "Sheet1_populaiton": 25685, "Sheet1_income": 106182, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.446770153345284, 29.718353068017805 ], [ -98.45254855757625, 29.671267271379868 ], [ -98.516111004116851, 29.713396668371708 ], [ -98.516111004116851, 29.7431350662483 ], [ -98.446770153345284, 29.718353068017805 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78261", "state": "TX", "Sheet1_value": 696, "Sheet1_populaiton": 13780, "Sheet1_income": 98729, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.348537281418913, 29.728265867310004 ], [ -98.388986111035649, 29.644007073326325 ], [ -98.45254855757625, 29.66135447208767 ], [ -98.45254855757625, 29.671267271379868 ], [ -98.446770153345284, 29.718353068017805 ], [ -98.348537281418913, 29.728265867310004 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78263", "state": "TX", "Sheet1_value": 176, "Sheet1_populaiton": 4109, "Sheet1_income": 76118, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.360094089880832, 29.391230691375284 ], [ -98.331202068726014, 29.425925488897974 ], [ -98.319645260264082, 29.458142086597618 ], [ -98.27341802641638, 29.433360088367124 ], [ -98.267639622185413, 29.282189899161111 ], [ -98.331202068726014, 29.289624498630257 ], [ -98.360094089880832, 29.391230691375284 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78264", "state": "TX", "Sheet1_value": 900, "Sheet1_populaiton": 12973, "Sheet1_income": 43200, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.5738950464265, 29.170670907123885 ], [ -98.5738950464265, 29.274755299691961 ], [ -98.492997387193, 29.264842500399762 ], [ -98.464105366038183, 29.220234903584874 ], [ -98.383207706804683, 29.14588890889339 ], [ -98.406321323728548, 29.113672311193749 ], [ -98.498775791423967, 29.133497909778143 ], [ -98.5738950464265, 29.170670907123885 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ANTONIO", "zip": "78266", "state": "TX", "Sheet1_value": 199, "Sheet1_populaiton": 5859, "Sheet1_income": 105536, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.388986111035649, 29.644007073326325 ], [ -98.348537281418913, 29.728265867310004 ], [ -98.302310047571197, 29.718353068017805 ], [ -98.267639622185413, 29.636572473857175 ], [ -98.354315685649865, 29.591964877042287 ], [ -98.365872494111798, 29.601877676334482 ], [ -98.388986111035649, 29.644007073326325 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALICE", "zip": "78332", "state": "TX", "Sheet1_value": 1061, "Sheet1_populaiton": 28128, "Sheet1_income": 39114, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.23296919679963, 27.460713029219789 ], [ -98.23296919679963, 27.656490815240691 ], [ -98.23296919679963, 27.86961600002294 ], [ -97.932492176789509, 27.859703200730745 ], [ -97.938270581020475, 27.686229213117286 ], [ -97.944048985251442, 27.636665216656297 ], [ -98.059617069870711, 27.6317088170102 ], [ -98.059617069870711, 27.458234829396737 ], [ -98.23296919679963, 27.460713029219789 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARANSAS PASS", "zip": "78336", "state": "TX", "Sheet1_value": 497, "Sheet1_populaiton": 11546, "Sheet1_income": 39705, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.233305264842869, 27.891919798430386 ], [ -97.215970052149984, 28.005916990290661 ], [ -97.215970052149984, 28.010873389936759 ], [ -97.187078030995167, 27.973700392591017 ], [ -97.15818600984035, 27.996004190998462 ], [ -97.100401967530701, 27.953874794006623 ], [ -97.169742818302268, 27.859703200730745 ], [ -97.233305264842869, 27.891919798430386 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ARMSTRONG", "zip": "78338", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.447106221388538, 26.600777690621641 ], [ -97.528003880622038, 26.600777690621641 ], [ -97.764918454091557, 26.598299490798592 ], [ -97.95560579371336, 26.610690489913839 ], [ -97.984497814868178, 26.781686277704249 ], [ -97.984497814868178, 27.079070256470178 ], [ -97.510668667929139, 26.987376863017349 ], [ -97.580009518700706, 26.851075872749632 ], [ -97.447106221388538, 26.600777690621641 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAYSIDE", "zip": "78340", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45114, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262197285997701, 28.077784785159093 ], [ -97.285310902921552, 28.097610383743486 ], [ -97.175521222533234, 28.119914182150932 ], [ -97.262197285997701, 28.077784785159093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BISHOP", "zip": "78343", "state": "TX", "Sheet1_value": 160, "Sheet1_populaiton": 4572, "Sheet1_income": 42875, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.585787922931672, 27.65896901506374 ], [ -97.487555051005288, 27.559841022141764 ], [ -97.944048985251442, 27.636665216656297 ], [ -97.938270581020475, 27.686229213117286 ], [ -97.585787922931672, 27.65896901506374 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRUNI", "zip": "78344", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 81667, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.799252811434087, 27.354150436828665 ], [ -98.799252811434087, 27.331846638421219 ], [ -98.914820896053371, 27.401236233466602 ], [ -98.903264087591438, 27.455756629573688 ], [ -98.799252811434087, 27.45327842975064 ], [ -98.799252811434087, 27.354150436828665 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONCEPCION", "zip": "78349", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 22944, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.406321323728548, 27.264935243198885 ], [ -98.591230259119385, 27.758097007985718 ], [ -98.423656536421433, 27.782879006216213 ], [ -98.23296919679963, 27.656490815240691 ], [ -98.23296919679963, 27.460713029219789 ], [ -98.23296919679963, 27.262457043375836 ], [ -98.406321323728548, 27.264935243198885 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ENCINO", "zip": "78353", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 16827, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.319645260264082, 26.784164477527298 ], [ -98.423656536421433, 26.784164477527298 ], [ -98.492997387193, 27.175720049569104 ], [ -97.984497814868178, 27.170763649923007 ], [ -97.984497814868178, 27.079070256470178 ], [ -97.984497814868178, 26.781686277704249 ], [ -98.319645260264082, 26.784164477527298 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FALFURRIAS", "zip": "78355", "state": "TX", "Sheet1_value": 395, "Sheet1_populaiton": 6832, "Sheet1_income": 23222, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.492997387193, 27.175720049569104 ], [ -98.521889408347818, 27.264935243198885 ], [ -98.406321323728548, 27.264935243198885 ], [ -98.23296919679963, 27.262457043375836 ], [ -98.059617069870711, 27.259978843552787 ], [ -97.984497814868178, 27.207936647268749 ], [ -97.984497814868178, 27.170763649923007 ], [ -98.492997387193, 27.175720049569104 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FREER", "zip": "78357", "state": "TX", "Sheet1_value": 116, "Sheet1_populaiton": 2950, "Sheet1_income": 51051, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.498775791423967, 28.057959186574699 ], [ -98.423656536421433, 27.782879006216213 ], [ -98.591230259119385, 27.758097007985718 ], [ -98.805031215665053, 27.792791805508411 ], [ -98.805031215665053, 28.057959186574699 ], [ -98.521889408347818, 28.057959186574699 ], [ -98.498775791423967, 28.057959186574699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GUERRA", "zip": "78360", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.955269725670121, 27.086504855939324 ], [ -98.822366428357952, 27.06915745717798 ], [ -98.799252811434087, 26.784164477527298 ], [ -98.851258449512756, 26.786642677350347 ], [ -98.955269725670121, 26.786642677350347 ], [ -98.955269725670121, 27.086504855939324 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEBBRONVILLE", "zip": "78361", "state": "TX", "Sheet1_value": 143, "Sheet1_populaiton": 5320, "Sheet1_income": 35928, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.591230259119385, 26.784164477527298 ], [ -98.799252811434087, 26.784164477527298 ], [ -98.822366428357952, 27.06915745717798 ], [ -98.955269725670121, 27.086504855939324 ], [ -99.140178661060958, 27.01959346071699 ], [ -99.128621852599025, 27.24015324496839 ], [ -99.15173546952289, 27.272369842668034 ], [ -98.799252811434087, 27.331846638421219 ], [ -98.799252811434087, 27.354150436828665 ], [ -98.585451854888419, 27.361585036297811 ], [ -98.521889408347818, 27.264935243198885 ], [ -98.492997387193, 27.175720049569104 ], [ -98.423656536421433, 26.784164477527298 ], [ -98.446770153345284, 26.784164477527298 ], [ -98.591230259119385, 26.784164477527298 ] ] ] } },
{ "type": "Feature", "properties": { "name": "INGLESIDE", "zip": "78362", "state": "TX", "Sheet1_value": 344, "Sheet1_populaiton": 9578, "Sheet1_income": 57458, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244862073304802, 27.867137800199892 ], [ -97.233305264842869, 27.891919798430386 ], [ -97.169742818302268, 27.859703200730745 ], [ -97.244862073304802, 27.867137800199892 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KINGSVILLE", "zip": "78363", "state": "TX", "Sheet1_value": 857, "Sheet1_populaiton": 30443, "Sheet1_income": 40413, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.059617069870711, 27.391323434174403 ], [ -98.059617069870711, 27.458234829396737 ], [ -98.059617069870711, 27.6317088170102 ], [ -97.944048985251442, 27.636665216656297 ], [ -97.487555051005288, 27.559841022141764 ], [ -97.325759732538302, 27.562319221964813 ], [ -97.493333455236254, 27.279804442137181 ], [ -97.470219838312403, 27.455756629573688 ], [ -97.591566327162639, 27.292195441252428 ], [ -97.770696858322509, 27.448322030104542 ], [ -97.747583241398658, 27.369019635766961 ], [ -98.059617069870711, 27.391323434174403 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MATHIS", "zip": "78368", "state": "TX", "Sheet1_value": 385, "Sheet1_populaiton": 9108, "Sheet1_income": 35191, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.637793561010341, 28.142217980558378 ], [ -97.608901539855523, 27.963787593298818 ], [ -97.620458348317456, 27.891919798430386 ], [ -97.660907177934206, 27.874572399669042 ], [ -97.799588879477341, 27.996004190998462 ], [ -97.944048985251442, 28.223998574719008 ], [ -97.863151326017942, 28.280997170649144 ], [ -97.851594517556009, 28.258693372241702 ], [ -97.788032071015408, 28.17195637843497 ], [ -97.718691220243841, 28.157087179496674 ], [ -97.637793561010341, 28.142217980558378 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIRANDO CITY", "zip": "78369", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43125, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.903264087591438, 27.455756629573688 ], [ -98.914820896053371, 27.401236233466602 ], [ -99.145957065291924, 27.458234829396737 ], [ -98.903264087591438, 27.455756629573688 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ODEM", "zip": "78370", "state": "TX", "Sheet1_value": 187, "Sheet1_populaiton": 4170, "Sheet1_income": 54942, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.556895901776855, 27.859703200730745 ], [ -97.620458348317456, 27.891919798430386 ], [ -97.608901539855523, 27.963787593298818 ], [ -97.516447072160105, 27.924136396130031 ], [ -97.504890263698172, 27.884485198961237 ], [ -97.487555051005288, 27.839877602146348 ], [ -97.556895901776855, 27.859703200730745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ORANGE GROVE", "zip": "78372", "state": "TX", "Sheet1_value": 185, "Sheet1_populaiton": 5523, "Sheet1_income": 52208, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.857372921786975, 27.948918394360522 ], [ -97.932492176789509, 27.859703200730745 ], [ -98.23296919679963, 27.86961600002294 ], [ -98.23296919679963, 28.057959186574699 ], [ -98.094287495256495, 28.057959186574699 ], [ -97.857372921786975, 27.948918394360522 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT ARANSAS", "zip": "78373", "state": "TX", "Sheet1_value": 310, "Sheet1_populaiton": 3717, "Sheet1_income": 42500, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.152407605609383, 27.696142012409481 ], [ -97.175521222533234, 27.711011211347781 ], [ -97.042617925221066, 27.834921202500251 ], [ -97.152407605609383, 27.696142012409481 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORTLAND", "zip": "78374", "state": "TX", "Sheet1_value": 580, "Sheet1_populaiton": 16608, "Sheet1_income": 66236, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.37776537061697, 27.874572399669042 ], [ -97.215970052149984, 28.005916990290661 ], [ -97.233305264842869, 27.891919798430386 ], [ -97.244862073304802, 27.867137800199892 ], [ -97.37776537061697, 27.874572399669042 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PREMONT", "zip": "78375", "state": "TX", "Sheet1_value": 196, "Sheet1_populaiton": 3163, "Sheet1_income": 31864, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.059617069870711, 27.391323434174403 ], [ -98.059617069870711, 27.259978843552787 ], [ -98.23296919679963, 27.262457043375836 ], [ -98.23296919679963, 27.460713029219789 ], [ -98.059617069870711, 27.458234829396737 ], [ -98.059617069870711, 27.391323434174403 ] ] ] } },
{ "type": "Feature", "properties": { "name": "REALITOS", "zip": "78376", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 19205, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.799252811434087, 27.354150436828665 ], [ -98.799252811434087, 27.45327842975064 ], [ -98.805031215665053, 27.792791805508411 ], [ -98.591230259119385, 27.758097007985718 ], [ -98.406321323728548, 27.264935243198885 ], [ -98.521889408347818, 27.264935243198885 ], [ -98.585451854888419, 27.361585036297811 ], [ -98.799252811434087, 27.354150436828665 ] ] ] } },
{ "type": "Feature", "properties": { "name": "REFUGIO", "zip": "78377", "state": "TX", "Sheet1_value": 110, "Sheet1_populaiton": 3647, "Sheet1_income": 44861, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.111958775992633, 28.276040771003046 ], [ -97.0368395209901, 28.201694776311562 ], [ -97.175521222533234, 28.162043579142772 ], [ -97.406657391771788, 28.345430366048429 ], [ -97.37776537061697, 28.387559763040269 ], [ -97.15818600984035, 28.553599151184581 ], [ -97.042617925221066, 28.531295352777136 ], [ -97.111958775992633, 28.276040771003046 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIVIERA", "zip": "78379", "state": "TX", "Sheet1_value": 79, "Sheet1_populaiton": 1489, "Sheet1_income": 40735, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.770696858322509, 27.282282641960229 ], [ -97.984497814868178, 27.207936647268749 ], [ -98.059617069870711, 27.259978843552787 ], [ -98.059617069870711, 27.391323434174403 ], [ -97.747583241398658, 27.369019635766961 ], [ -97.65512877370324, 27.294673641075477 ], [ -97.770696858322509, 27.282282641960229 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROBSTOWN", "zip": "78380", "state": "TX", "Sheet1_value": 641, "Sheet1_populaiton": 23303, "Sheet1_income": 39922, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.932492176789509, 27.859703200730745 ], [ -97.857372921786975, 27.948918394360522 ], [ -97.799588879477341, 27.996004190998462 ], [ -97.660907177934206, 27.874572399669042 ], [ -97.551117497545889, 27.785357206039262 ], [ -97.522225476391071, 27.728358610109126 ], [ -97.585787922931672, 27.65896901506374 ], [ -97.938270581020475, 27.686229213117286 ], [ -97.932492176789509, 27.859703200730745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKPORT", "zip": "78382", "state": "TX", "Sheet1_value": 919, "Sheet1_populaiton": 20500, "Sheet1_income": 45732, "Sheet1_percent": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -97.0368395209901, 28.201694776311562 ], [ -97.111958775992633, 28.276040771003046 ], [ -96.788368139058662, 28.318170167994886 ], [ -96.927049840601796, 28.127348781620082 ], [ -96.915493032139864, 28.271084371356949 ], [ -96.979055478680465, 28.129826981443131 ], [ -97.0368395209901, 28.201694776311562 ] ] ], [ [ [ -97.100401967530701, 27.953874794006623 ], [ -97.15818600984035, 27.996004190998462 ], [ -97.025282712528181, 28.114957782504835 ], [ -97.100401967530701, 27.953874794006623 ] ] ], [ [ [ -97.215970052149984, 28.010873389936759 ], [ -97.262197285997701, 28.075306585336044 ], [ -97.187078030995167, 27.973700392591017 ], [ -97.215970052149984, 28.010873389936759 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANDIA", "zip": "78383", "state": "TX", "Sheet1_value": 151, "Sheet1_populaiton": 4024, "Sheet1_income": 51029, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.857372921786975, 27.948918394360522 ], [ -98.094287495256495, 28.057959186574699 ], [ -98.105844303718413, 28.189303777196315 ], [ -97.944048985251442, 28.223998574719008 ], [ -97.799588879477341, 27.996004190998462 ], [ -97.857372921786975, 27.948918394360522 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN DIEGO", "zip": "78384", "state": "TX", "Sheet1_value": 169, "Sheet1_populaiton": 6329, "Sheet1_income": 26542, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.498775791423967, 28.057959186574699 ], [ -98.336980472956981, 28.057959186574699 ], [ -98.23296919679963, 28.057959186574699 ], [ -98.23296919679963, 27.86961600002294 ], [ -98.23296919679963, 27.656490815240691 ], [ -98.423656536421433, 27.782879006216213 ], [ -98.498775791423967, 28.057959186574699 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SARITA", "zip": "78385", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36736, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.984497814868178, 27.170763649923007 ], [ -97.984497814868178, 27.207936647268749 ], [ -97.770696858322509, 27.282282641960229 ], [ -97.429771008695653, 27.262457043375836 ], [ -97.510668667929139, 26.987376863017349 ], [ -97.984497814868178, 27.079070256470178 ], [ -97.984497814868178, 27.170763649923007 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SINTON", "zip": "78387", "state": "TX", "Sheet1_value": 330, "Sheet1_populaiton": 10414, "Sheet1_income": 45855, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.429771008695653, 28.127348781620082 ], [ -97.516447072160105, 27.924136396130031 ], [ -97.608901539855523, 27.963787593298818 ], [ -97.637793561010341, 28.142217980558378 ], [ -97.53956068908397, 28.16452177896582 ], [ -97.429771008695653, 28.127348781620082 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SKIDMORE", "zip": "78389", "state": "TX", "Sheet1_value": 87, "Sheet1_populaiton": 1631, "Sheet1_income": 50577, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.851594517556009, 28.258693372241702 ], [ -97.568452710238773, 28.280997170649144 ], [ -97.53956068908397, 28.16452177896582 ], [ -97.637793561010341, 28.142217980558378 ], [ -97.718691220243841, 28.157087179496674 ], [ -97.788032071015408, 28.17195637843497 ], [ -97.851594517556009, 28.258693372241702 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TAFT", "zip": "78390", "state": "TX", "Sheet1_value": 209, "Sheet1_populaiton": 5828, "Sheet1_income": 41149, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.516447072160105, 27.924136396130031 ], [ -97.429771008695653, 28.127348781620082 ], [ -97.285310902921552, 28.097610383743486 ], [ -97.262197285997701, 28.077784785159093 ], [ -97.262197285997701, 28.075306585336044 ], [ -97.215970052149984, 28.010873389936759 ], [ -97.215970052149984, 28.005916990290661 ], [ -97.37776537061697, 27.874572399669042 ], [ -97.504890263698172, 27.884485198961237 ], [ -97.516447072160105, 27.924136396130031 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOODSBORO", "zip": "78393", "state": "TX", "Sheet1_value": 71, "Sheet1_populaiton": 2431, "Sheet1_income": 44457, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175521222533234, 28.119914182150932 ], [ -97.285310902921552, 28.097610383743486 ], [ -97.429771008695653, 28.127348781620082 ], [ -97.53956068908397, 28.16452177896582 ], [ -97.406657391771788, 28.345430366048429 ], [ -97.175521222533234, 28.162043579142772 ], [ -97.175521222533234, 28.119914182150932 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78401", "state": "TX", "Sheet1_value": 117, "Sheet1_populaiton": 4728, "Sheet1_income": 22226, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 27.785357206039262 ], [ -97.406657391771788, 27.78783540586231 ], [ -97.412435796002754, 27.797748205154509 ], [ -97.395100583309869, 27.812617404092805 ], [ -97.395100583309869, 27.810139204269756 ], [ -97.389322179078903, 27.780400806393164 ], [ -97.412435796002754, 27.785357206039262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78402", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 51958, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 27.810139204269756 ], [ -97.395100583309869, 27.812617404092805 ], [ -97.452884625619504, 27.820052003561955 ], [ -97.452884625619504, 27.827486603031101 ], [ -97.395100583309869, 27.810139204269756 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78404", "state": "TX", "Sheet1_value": 538, "Sheet1_populaiton": 15862, "Sheet1_income": 38862, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395100583309869, 27.753140608339621 ], [ -97.41821420023372, 27.765531607454868 ], [ -97.412435796002754, 27.785357206039262 ], [ -97.389322179078903, 27.780400806393164 ], [ -97.37776537061697, 27.760575207808767 ], [ -97.395100583309869, 27.753140608339621 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78405", "state": "TX", "Sheet1_value": 429, "Sheet1_populaiton": 14638, "Sheet1_income": 27247, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.41821420023372, 27.763053407631816 ], [ -97.45866302985047, 27.755618808162669 ], [ -97.470219838312403, 27.750662408516568 ], [ -97.470219838312403, 27.785357206039262 ], [ -97.406657391771788, 27.78783540586231 ], [ -97.412435796002754, 27.785357206039262 ], [ -97.41821420023372, 27.765531607454868 ], [ -97.41821420023372, 27.763053407631816 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78406", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45781, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.470219838312403, 27.750662408516568 ], [ -97.487555051005288, 27.735793209578272 ], [ -97.522225476391071, 27.728358610109126 ], [ -97.551117497545889, 27.785357206039262 ], [ -97.545339093314922, 27.785357206039262 ], [ -97.470219838312403, 27.785357206039262 ], [ -97.470219838312403, 27.750662408516568 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78407", "state": "TX", "Sheet1_value": 99, "Sheet1_populaiton": 2712, "Sheet1_income": 30179, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 27.797748205154509 ], [ -97.475998242543355, 27.805182804623655 ], [ -97.452884625619504, 27.820052003561955 ], [ -97.395100583309869, 27.812617404092805 ], [ -97.412435796002754, 27.797748205154509 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78408", "state": "TX", "Sheet1_value": 431, "Sheet1_populaiton": 12503, "Sheet1_income": 28137, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.470219838312403, 27.785357206039262 ], [ -97.475998242543355, 27.805182804623655 ], [ -97.412435796002754, 27.797748205154509 ], [ -97.406657391771788, 27.78783540586231 ], [ -97.470219838312403, 27.785357206039262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78409", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 3032, "Sheet1_income": 47105, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.470219838312403, 27.785357206039262 ], [ -97.545339093314922, 27.785357206039262 ], [ -97.556895901776855, 27.859703200730745 ], [ -97.487555051005288, 27.839877602146348 ], [ -97.452884625619504, 27.827486603031101 ], [ -97.452884625619504, 27.820052003561955 ], [ -97.475998242543355, 27.805182804623655 ], [ -97.470219838312403, 27.785357206039262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78410", "state": "TX", "Sheet1_value": 684, "Sheet1_populaiton": 25894, "Sheet1_income": 66739, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.551117497545889, 27.785357206039262 ], [ -97.660907177934206, 27.874572399669042 ], [ -97.620458348317456, 27.891919798430386 ], [ -97.556895901776855, 27.859703200730745 ], [ -97.545339093314922, 27.785357206039262 ], [ -97.551117497545889, 27.785357206039262 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78411", "state": "TX", "Sheet1_value": 929, "Sheet1_populaiton": 27129, "Sheet1_income": 40349, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.366208562155037, 27.738271409401321 ], [ -97.37776537061697, 27.698620212232534 ], [ -97.406657391771788, 27.711011211347781 ], [ -97.395100583309869, 27.753140608339621 ], [ -97.37776537061697, 27.760575207808767 ], [ -97.366208562155037, 27.738271409401321 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78412", "state": "TX", "Sheet1_value": 1205, "Sheet1_populaiton": 38957, "Sheet1_income": 45708, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314202924076369, 27.663925414709841 ], [ -97.37776537061697, 27.698620212232534 ], [ -97.366208562155037, 27.738271409401321 ], [ -97.308424519845403, 27.708533011524729 ], [ -97.302646115614436, 27.701098412055583 ], [ -97.29686771138347, 27.688707412940335 ], [ -97.314202924076369, 27.663925414709841 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78413", "state": "TX", "Sheet1_value": 1186, "Sheet1_populaiton": 36816, "Sheet1_income": 64159, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.400878987540835, 27.656490815240691 ], [ -97.406657391771788, 27.711011211347781 ], [ -97.37776537061697, 27.698620212232534 ], [ -97.400878987540835, 27.656490815240691 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78414", "state": "TX", "Sheet1_value": 985, "Sheet1_populaiton": 33033, "Sheet1_income": 75971, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314202924076369, 27.663925414709841 ], [ -97.343094945231186, 27.6317088170102 ], [ -97.400878987540835, 27.656490815240691 ], [ -97.37776537061697, 27.698620212232534 ], [ -97.314202924076369, 27.663925414709841 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78415", "state": "TX", "Sheet1_value": 1347, "Sheet1_populaiton": 40627, "Sheet1_income": 39915, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.343094945231186, 27.6317088170102 ], [ -97.29686771138347, 27.609405018602754 ], [ -97.325759732538302, 27.562319221964813 ], [ -97.487555051005288, 27.559841022141764 ], [ -97.585787922931672, 27.65896901506374 ], [ -97.522225476391071, 27.728358610109126 ], [ -97.487555051005288, 27.735793209578272 ], [ -97.429771008695653, 27.733315009755223 ], [ -97.41821420023372, 27.763053407631816 ], [ -97.41821420023372, 27.765531607454868 ], [ -97.395100583309869, 27.753140608339621 ], [ -97.406657391771788, 27.711011211347781 ], [ -97.400878987540835, 27.656490815240691 ], [ -97.343094945231186, 27.6317088170102 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78416", "state": "TX", "Sheet1_value": 414, "Sheet1_populaiton": 15216, "Sheet1_income": 27854, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.429771008695653, 27.733315009755223 ], [ -97.45866302985047, 27.755618808162669 ], [ -97.41821420023372, 27.763053407631816 ], [ -97.429771008695653, 27.733315009755223 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78417", "state": "TX", "Sheet1_value": 161, "Sheet1_populaiton": 4362, "Sheet1_income": 50069, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.429771008695653, 27.733315009755223 ], [ -97.487555051005288, 27.735793209578272 ], [ -97.470219838312403, 27.750662408516568 ], [ -97.45866302985047, 27.755618808162669 ], [ -97.429771008695653, 27.733315009755223 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CORPUS CHRISTI", "zip": "78418", "state": "TX", "Sheet1_value": 1010, "Sheet1_populaiton": 32129, "Sheet1_income": 55487, "Sheet1_percent": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -97.314202924076369, 27.663925414709841 ], [ -97.29686771138347, 27.688707412940335 ], [ -97.302646115614436, 27.701098412055583 ], [ -97.308424519845403, 27.708533011524729 ], [ -97.29686771138347, 27.609405018602754 ], [ -97.343094945231186, 27.6317088170102 ], [ -97.314202924076369, 27.663925414709841 ] ] ], [ [ [ -97.221748456380951, 27.577188420903109 ], [ -97.250640477535768, 27.579666620726162 ], [ -97.262197285997701, 27.656490815240691 ], [ -97.221748456380951, 27.577188420903109 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "MCALLEN", "zip": "78501", "state": "TX", "Sheet1_value": 3148, "Sheet1_populaiton": 61827, "Sheet1_income": 31214, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.279196430647346, 26.194352919641538 ], [ -98.27341802641638, 26.241438716279475 ], [ -98.204077175644812, 26.236482316633378 ], [ -98.204077175644812, 26.196831119464587 ], [ -98.279196430647346, 26.194352919641538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MCALLEN", "zip": "78503", "state": "TX", "Sheet1_value": 1246, "Sheet1_populaiton": 21739, "Sheet1_income": 35660, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.204077175644812, 26.196831119464587 ], [ -98.227190792568663, 26.110094125657856 ], [ -98.267639622185413, 26.117528725127006 ], [ -98.279196430647346, 26.117528725127006 ], [ -98.279196430647346, 26.194352919641538 ], [ -98.204077175644812, 26.196831119464587 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MCALLEN", "zip": "78504", "state": "TX", "Sheet1_value": 2678, "Sheet1_populaiton": 49936, "Sheet1_income": 61277, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.204077175644812, 26.251351515571674 ], [ -98.204077175644812, 26.236482316633378 ], [ -98.27341802641638, 26.241438716279475 ], [ -98.250304409492514, 26.323219310440106 ], [ -98.204077175644812, 26.251351515571674 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALAMO", "zip": "78516", "state": "TX", "Sheet1_value": 1278, "Sheet1_populaiton": 38277, "Sheet1_income": 32977, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.071173878332644, 26.263742514686921 ], [ -98.128957920642279, 26.1423107233575 ], [ -98.123179516411312, 26.241438716279475 ], [ -98.071173878332644, 26.263742514686921 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNSVILLE", "zip": "78520", "state": "TX", "Sheet1_value": 2930, "Sheet1_populaiton": 61328, "Sheet1_income": 29835, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 26.028313531497226 ], [ -97.504890263698172, 25.949011137159644 ], [ -97.493333455236254, 25.884577941760359 ], [ -97.666685582165172, 26.030791731320274 ], [ -97.580009518700706, 26.080355727781264 ], [ -97.562674306007821, 26.055573729550769 ], [ -97.53956068908397, 26.035748130966375 ], [ -97.528003880622038, 26.028313531497226 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNSVILLE", "zip": "78521", "state": "TX", "Sheet1_value": 4598, "Sheet1_populaiton": 90446, "Sheet1_income": 26684, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.504890263698172, 25.949011137159644 ], [ -97.41821420023372, 25.956445736628794 ], [ -97.343094945231186, 25.929185538575251 ], [ -97.371986966386004, 25.839970344945471 ], [ -97.493333455236254, 25.884577941760359 ], [ -97.504890263698172, 25.949011137159644 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNSVILLE", "zip": "78526", "state": "TX", "Sheet1_value": 2500, "Sheet1_populaiton": 45360, "Sheet1_income": 44672, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 26.028313531497226 ], [ -97.441327817157571, 25.978749535036236 ], [ -97.41821420023372, 25.956445736628794 ], [ -97.504890263698172, 25.949011137159644 ], [ -97.528003880622038, 26.028313531497226 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DELMITA", "zip": "78536", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.412099727959514, 26.600777690621641 ], [ -98.435213344883365, 26.680080084959222 ], [ -98.371650898342764, 26.680080084959222 ], [ -98.412099727959514, 26.600777690621641 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DONNA", "zip": "78537", "state": "TX", "Sheet1_value": 1350, "Sheet1_populaiton": 37256, "Sheet1_income": 25338, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.163628346028062, 26.065486528842968 ], [ -98.163628346028062, 26.082833927604312 ], [ -98.128957920642279, 26.1423107233575 ], [ -98.071173878332644, 26.263742514686921 ], [ -98.03650345294686, 26.271177114156067 ], [ -98.07695228256361, 26.035748130966375 ], [ -98.163628346028062, 26.065486528842968 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDCOUCH", "zip": "78538", "state": "TX", "Sheet1_value": 365, "Sheet1_populaiton": 11941, "Sheet1_income": 25806, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.863151326017942, 26.310828311324858 ], [ -97.863151326017942, 26.229047717164228 ], [ -97.961384197944327, 26.229047717164228 ], [ -98.03650345294686, 26.288524512917416 ], [ -98.024946644484928, 26.370305107078046 ], [ -97.863151326017942, 26.385174306016342 ], [ -97.863151326017942, 26.372783306901095 ], [ -97.863151326017942, 26.3480013086706 ], [ -97.863151326017942, 26.310828311324858 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EDINBURG", "zip": "78539", "state": "TX", "Sheet1_value": 1377, "Sheet1_populaiton": 33495, "Sheet1_income": 52167, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.250304409492514, 26.323219310440106 ], [ -98.290753239109264, 26.412434504069886 ], [ -98.059617069870711, 26.442172901946478 ], [ -98.024946644484928, 26.370305107078046 ], [ -98.03650345294686, 26.288524512917416 ], [ -98.03650345294686, 26.271177114156067 ], [ -98.071173878332644, 26.263742514686921 ], [ -98.123179516411312, 26.241438716279475 ], [ -98.157849941797096, 26.246395115925573 ], [ -98.204077175644812, 26.251351515571674 ], [ -98.250304409492514, 26.323219310440106 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GARCIASVILLE", "zip": "78547", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.61434387604325, 26.335610309555353 ], [ -98.706798343738669, 26.382696106193293 ], [ -98.579673450657452, 26.514040696814909 ], [ -98.61434387604325, 26.335610309555353 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRULLA", "zip": "78548", "state": "TX", "Sheet1_value": 67, "Sheet1_populaiton": 604, "Sheet1_income": 25962, "Sheet1_percent": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.568116642195534, 26.295959112386562 ], [ -98.585451854888419, 26.256307915217771 ], [ -98.631679088736135, 26.253829715394723 ], [ -98.61434387604325, 26.335610309555353 ], [ -98.579673450657452, 26.514040696814909 ], [ -98.464105366038183, 26.494215098230516 ], [ -98.568116642195534, 26.295959112386562 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARGILL", "zip": "78549", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 22599, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.059617069870711, 26.442172901946478 ], [ -97.99605462333011, 26.491736898407467 ], [ -97.886264942941793, 26.432260102654279 ], [ -97.863151326017942, 26.385174306016342 ], [ -98.024946644484928, 26.370305107078046 ], [ -98.059617069870711, 26.442172901946478 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARLINGEN", "zip": "78550", "state": "TX", "Sheet1_value": 2036, "Sheet1_populaiton": 52238, "Sheet1_income": 33780, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 26.154701722472748 ], [ -97.712912816012874, 26.248873315748625 ], [ -97.626236752548422, 26.256307915217771 ], [ -97.672463986396139, 26.154701722472748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARLINGEN", "zip": "78552", "state": "TX", "Sheet1_value": 1337, "Sheet1_populaiton": 36331, "Sheet1_income": 39602, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.863151326017942, 26.070442928489065 ], [ -97.863151326017942, 26.129919724242253 ], [ -97.799588879477341, 26.234004116810326 ], [ -97.863151326017942, 26.310828311324858 ], [ -97.863151326017942, 26.3480013086706 ], [ -97.782253666784442, 26.335610309555353 ], [ -97.712912816012874, 26.248873315748625 ], [ -97.672463986396139, 26.154701722472748 ], [ -97.764918454091557, 26.04566093025857 ], [ -97.863151326017942, 26.070442928489065 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HIDALGO", "zip": "78557", "state": "TX", "Sheet1_value": 905, "Sheet1_populaiton": 12544, "Sheet1_income": 39033, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.267639622185413, 26.117528725127006 ], [ -98.227190792568663, 26.110094125657856 ], [ -98.261861217954447, 26.082833927604312 ], [ -98.267639622185413, 26.117528725127006 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA FERIA", "zip": "78559", "state": "TX", "Sheet1_value": 459, "Sheet1_populaiton": 12410, "Sheet1_income": 31901, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.863151326017942, 26.129919724242253 ], [ -97.863151326017942, 26.229047717164228 ], [ -97.799588879477341, 26.234004116810326 ], [ -97.863151326017942, 26.129919724242253 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LINN", "zip": "78563", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30809, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.059617069870711, 26.442172901946478 ], [ -98.290753239109264, 26.412434504069886 ], [ -98.464105366038183, 26.494215098230516 ], [ -98.412099727959514, 26.600777690621641 ], [ -98.371650898342764, 26.680080084959222 ], [ -98.319645260264082, 26.784164477527298 ], [ -97.984497814868178, 26.781686277704249 ], [ -97.95560579371336, 26.610690489913839 ], [ -97.99605462333011, 26.491736898407467 ], [ -98.059617069870711, 26.442172901946478 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOS FRESNOS", "zip": "78566", "state": "TX", "Sheet1_value": 703, "Sheet1_populaiton": 17280, "Sheet1_income": 39361, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.580009518700706, 26.080355727781264 ], [ -97.464441434081436, 26.17700552088019 ], [ -97.383543774847936, 26.194352919641538 ], [ -97.441327817157571, 25.978749535036236 ], [ -97.528003880622038, 26.028313531497226 ], [ -97.53956068908397, 26.035748130966375 ], [ -97.562674306007821, 26.055573729550769 ], [ -97.580009518700706, 26.080355727781264 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LYFORD", "zip": "78569", "state": "TX", "Sheet1_value": 211, "Sheet1_populaiton": 3817, "Sheet1_income": 36750, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.597344731393605, 26.395087105308541 ], [ -97.863151326017942, 26.372783306901095 ], [ -97.863151326017942, 26.385174306016342 ], [ -97.886264942941793, 26.432260102654279 ], [ -97.689799199089023, 26.452085701238676 ], [ -97.597344731393605, 26.395087105308541 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERCEDES", "zip": "78570", "state": "TX", "Sheet1_value": 1113, "Sheet1_populaiton": 31747, "Sheet1_income": 25445, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.949827389482394, 26.063008329019919 ], [ -97.961384197944327, 26.229047717164228 ], [ -97.863151326017942, 26.229047717164228 ], [ -97.863151326017942, 26.129919724242253 ], [ -97.863151326017942, 26.070442928489065 ], [ -97.949827389482394, 26.063008329019919 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MISSION", "zip": "78572", "state": "TX", "Sheet1_value": 3915, "Sheet1_populaiton": 73998, "Sheet1_income": 37735, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.279196430647346, 26.194352919641538 ], [ -98.279196430647346, 26.117528725127006 ], [ -98.550781429502649, 26.246395115925573 ], [ -98.568116642195534, 26.295959112386562 ], [ -98.464105366038183, 26.494215098230516 ], [ -98.290753239109264, 26.412434504069886 ], [ -98.250304409492514, 26.323219310440106 ], [ -98.27341802641638, 26.241438716279475 ], [ -98.279196430647346, 26.194352919641538 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PHARR", "zip": "78577", "state": "TX", "Sheet1_value": 3456, "Sheet1_populaiton": 72047, "Sheet1_income": 32054, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.157849941797096, 26.246395115925573 ], [ -98.163628346028062, 26.082833927604312 ], [ -98.163628346028062, 26.065486528842968 ], [ -98.261861217954447, 26.082833927604312 ], [ -98.227190792568663, 26.110094125657856 ], [ -98.204077175644812, 26.196831119464587 ], [ -98.204077175644812, 26.236482316633378 ], [ -98.204077175644812, 26.251351515571674 ], [ -98.157849941797096, 26.246395115925573 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT ISABEL", "zip": "78578", "state": "TX", "Sheet1_value": 485, "Sheet1_populaiton": 11312, "Sheet1_income": 35523, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.441327817157571, 25.978749535036236 ], [ -97.383543774847936, 26.194352919641538 ], [ -97.331538136769268, 26.234004116810326 ], [ -97.146629201378417, 25.951489336982693 ], [ -97.343094945231186, 25.929185538575251 ], [ -97.41821420023372, 25.956445736628794 ], [ -97.441327817157571, 25.978749535036236 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RAYMONDVILLE", "zip": "78580", "state": "TX", "Sheet1_value": 530, "Sheet1_populaiton": 15613, "Sheet1_income": 28106, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.886264942941793, 26.432260102654279 ], [ -97.99605462333011, 26.491736898407467 ], [ -97.95560579371336, 26.610690489913839 ], [ -97.764918454091557, 26.598299490798592 ], [ -97.689799199089023, 26.452085701238676 ], [ -97.886264942941793, 26.432260102654279 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIO GRANDE CITY", "zip": "78582", "state": "TX", "Sheet1_value": 1893, "Sheet1_populaiton": 41646, "Sheet1_income": 27337, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.926377704515289, 26.395087105308541 ], [ -98.851258449512756, 26.786642677350347 ], [ -98.799252811434087, 26.784164477527298 ], [ -98.591230259119385, 26.784164477527298 ], [ -98.510332599885899, 26.719731282128013 ], [ -98.435213344883365, 26.680080084959222 ], [ -98.412099727959514, 26.600777690621641 ], [ -98.464105366038183, 26.494215098230516 ], [ -98.579673450657452, 26.514040696814909 ], [ -98.706798343738669, 26.382696106193293 ], [ -98.61434387604325, 26.335610309555353 ], [ -98.631679088736135, 26.253829715394723 ], [ -98.926377704515289, 26.395087105308541 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIO HONDO", "zip": "78583", "state": "TX", "Sheet1_value": 299, "Sheet1_populaiton": 5799, "Sheet1_income": 34324, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.464441434081436, 26.17700552088019 ], [ -97.603123135624571, 26.199309319287636 ], [ -97.57423111446974, 26.305871911678761 ], [ -97.412435796002754, 26.375261506724144 ], [ -97.331538136769268, 26.234004116810326 ], [ -97.383543774847936, 26.194352919641538 ], [ -97.464441434081436, 26.17700552088019 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROMA", "zip": "78584", "state": "TX", "Sheet1_value": 1012, "Sheet1_populaiton": 17893, "Sheet1_income": 19881, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.169070682215775, 26.571039292745048 ], [ -98.955269725670121, 26.786642677350347 ], [ -98.851258449512756, 26.786642677350347 ], [ -98.926377704515289, 26.395087105308541 ], [ -99.082394618751323, 26.400043504954638 ], [ -99.169070682215775, 26.571039292745048 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN BENITO", "zip": "78586", "state": "TX", "Sheet1_value": 2075, "Sheet1_populaiton": 58144, "Sheet1_income": 31303, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 26.154701722472748 ], [ -97.626236752548422, 26.256307915217771 ], [ -97.712912816012874, 26.248873315748625 ], [ -97.782253666784442, 26.335610309555353 ], [ -97.57423111446974, 26.305871911678761 ], [ -97.603123135624571, 26.199309319287636 ], [ -97.464441434081436, 26.17700552088019 ], [ -97.580009518700706, 26.080355727781264 ], [ -97.666685582165172, 26.030791731320274 ], [ -97.764918454091557, 26.04566093025857 ], [ -97.672463986396139, 26.154701722472748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN ISIDRO", "zip": "78588", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 25500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.510332599885899, 26.719731282128013 ], [ -98.446770153345284, 26.784164477527298 ], [ -98.423656536421433, 26.784164477527298 ], [ -98.319645260264082, 26.784164477527298 ], [ -98.371650898342764, 26.680080084959222 ], [ -98.435213344883365, 26.680080084959222 ], [ -98.510332599885899, 26.719731282128013 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN JUAN", "zip": "78589", "state": "TX", "Sheet1_value": 1765, "Sheet1_populaiton": 37773, "Sheet1_income": 33648, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.163628346028062, 26.082833927604312 ], [ -98.157849941797096, 26.246395115925573 ], [ -98.123179516411312, 26.241438716279475 ], [ -98.128957920642279, 26.1423107233575 ], [ -98.163628346028062, 26.082833927604312 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN PERLITA", "zip": "78590", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 32083, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412435796002754, 26.375261506724144 ], [ -97.57423111446974, 26.305871911678761 ], [ -97.597344731393605, 26.395087105308541 ], [ -97.689799199089023, 26.452085701238676 ], [ -97.764918454091557, 26.598299490798592 ], [ -97.528003880622038, 26.600777690621641 ], [ -97.556895901776855, 26.511562496991861 ], [ -97.435549412926605, 26.491736898407467 ], [ -97.412435796002754, 26.375261506724144 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTA ELENA", "zip": "78591", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.591230259119385, 26.784164477527298 ], [ -98.446770153345284, 26.784164477527298 ], [ -98.510332599885899, 26.719731282128013 ], [ -98.591230259119385, 26.784164477527298 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SANTA ROSA", "zip": "78593", "state": "TX", "Sheet1_value": 270, "Sheet1_populaiton": 5726, "Sheet1_income": 24073, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.863151326017942, 26.310828311324858 ], [ -97.799588879477341, 26.234004116810326 ], [ -97.863151326017942, 26.229047717164228 ], [ -97.863151326017942, 26.310828311324858 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEBASTIAN", "zip": "78594", "state": "TX", "Sheet1_value": 132, "Sheet1_populaiton": 1590, "Sheet1_income": 14565, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.57423111446974, 26.305871911678761 ], [ -97.782253666784442, 26.335610309555353 ], [ -97.863151326017942, 26.3480013086706 ], [ -97.863151326017942, 26.372783306901095 ], [ -97.597344731393605, 26.395087105308541 ], [ -97.57423111446974, 26.305871911678761 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SULLIVAN CITY", "zip": "78595", "state": "TX", "Sheet1_value": 245, "Sheet1_populaiton": 6087, "Sheet1_income": 24464, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.585451854888419, 26.256307915217771 ], [ -98.568116642195534, 26.295959112386562 ], [ -98.550781429502649, 26.246395115925573 ], [ -98.585451854888419, 26.256307915217771 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WESLACO", "zip": "78596", "state": "TX", "Sheet1_value": 2352, "Sheet1_populaiton": 66125, "Sheet1_income": 34297, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.07695228256361, 26.035748130966375 ], [ -98.03650345294686, 26.271177114156067 ], [ -98.03650345294686, 26.288524512917416 ], [ -97.961384197944327, 26.229047717164228 ], [ -97.949827389482394, 26.063008329019919 ], [ -98.07695228256361, 26.035748130966375 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PORT MANSFIELD", "zip": "78598", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 9143, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 26.600777690621641 ], [ -97.447106221388538, 26.600777690621641 ], [ -97.435549412926605, 26.491736898407467 ], [ -97.556895901776855, 26.511562496991861 ], [ -97.528003880622038, 26.600777690621641 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BASTROP", "zip": "78602", "state": "TX", "Sheet1_value": 1146, "Sheet1_populaiton": 26278, "Sheet1_income": 50376, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.45866302985047, 30.013258846960689 ], [ -97.389322179078903, 30.082648442006068 ], [ -97.470219838312403, 30.184254634751095 ], [ -97.354651753693119, 30.164429036166702 ], [ -97.273754094459619, 30.295773626788318 ], [ -97.227526860611917, 30.199123833689391 ], [ -97.187078030995167, 30.112386839882664 ], [ -97.348873349462153, 29.968651250145797 ], [ -97.45866302985047, 30.013258846960689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BERTRAM", "zip": "78605", "state": "TX", "Sheet1_value": 250, "Sheet1_populaiton": 5011, "Sheet1_income": 52277, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.082730686794562, 30.603070404846449 ], [ -98.094287495256495, 30.843455787682242 ], [ -97.926713772558543, 30.818673789451747 ], [ -97.972941006406245, 30.766631593167709 ], [ -98.048060261408779, 30.622896003430842 ], [ -98.065395474101678, 30.59315760555425 ], [ -98.082730686794562, 30.603070404846449 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLANCO", "zip": "78606", "state": "TX", "Sheet1_value": 321, "Sheet1_populaiton": 5379, "Sheet1_income": 48438, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.296531643340231, 30.03804084519118 ], [ -98.354315685649865, 29.985998648907142 ], [ -98.412099727959514, 29.938912852269205 ], [ -98.53344621680975, 30.072735642713873 ], [ -98.585451854888419, 30.139647037936207 ], [ -98.585451854888419, 30.186732834574144 ], [ -98.492997387193, 30.171863635635848 ], [ -98.238747601030596, 30.194167434043294 ], [ -98.250304409492514, 30.154516236874503 ], [ -98.296531643340231, 30.03804084519118 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRIGGS", "zip": "78608", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56727, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.094287495256495, 30.843455787682242 ], [ -98.163628346028062, 31.031798974233997 ], [ -98.140514729104211, 31.031798974233997 ], [ -97.909378559865644, 31.034277174057046 ], [ -97.828480900632158, 30.910367182904576 ], [ -97.926713772558543, 30.818673789451747 ], [ -98.094287495256495, 30.843455787682242 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BUCHANAN DAM", "zip": "78609", "state": "TX", "Sheet1_value": 101, "Sheet1_populaiton": 1560, "Sheet1_income": 39779, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.406321323728548, 30.816195589628698 ], [ -98.412099727959514, 30.697241998122326 ], [ -98.475662174500115, 30.692285598476225 ], [ -98.579673450657452, 30.811239189982597 ], [ -98.545003025271683, 30.821151989274796 ], [ -98.45254855757625, 30.828586588743946 ], [ -98.406321323728548, 30.816195589628698 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BUDA", "zip": "78610", "state": "TX", "Sheet1_value": 1419, "Sheet1_populaiton": 25580, "Sheet1_income": 79049, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.649350369472273, 30.070257442890824 ], [ -97.684020794858057, 30.042997244837281 ], [ -97.712912816012874, 30.023171646252884 ], [ -97.978719410637211, 30.060344643598626 ], [ -98.007611431792043, 30.132212438467057 ], [ -97.897821751403725, 30.129734238644009 ], [ -97.816924092170225, 30.097517640944368 ], [ -97.69557760331999, 30.075213842536922 ], [ -97.649350369472273, 30.070257442890824 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BURNET", "zip": "78611", "state": "TX", "Sheet1_value": 606, "Sheet1_populaiton": 13226, "Sheet1_income": 48409, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.429434940652399, 30.657590800953535 ], [ -98.412099727959514, 30.697241998122326 ], [ -98.406321323728548, 30.816195589628698 ], [ -98.446770153345284, 30.922758182019823 ], [ -98.440991749114332, 31.029320774410948 ], [ -98.163628346028062, 31.031798974233997 ], [ -98.094287495256495, 30.843455787682242 ], [ -98.082730686794562, 30.603070404846449 ], [ -98.429434940652399, 30.657590800953535 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CEDAR CREEK", "zip": "78612", "state": "TX", "Sheet1_value": 655, "Sheet1_populaiton": 10807, "Sheet1_income": 63144, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.45866302985047, 30.013258846960689 ], [ -97.516447072160105, 30.000867847845441 ], [ -97.57423111446974, 30.072735642713873 ], [ -97.522225476391071, 30.199123833689391 ], [ -97.493333455236254, 30.211514832804639 ], [ -97.470219838312403, 30.184254634751095 ], [ -97.389322179078903, 30.082648442006068 ], [ -97.45866302985047, 30.013258846960689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CEDAR PARK", "zip": "78613", "state": "TX", "Sheet1_value": 3713, "Sheet1_populaiton": 68426, "Sheet1_income": 81928, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.799588879477341, 30.466769414578728 ], [ -97.828480900632158, 30.454378415463481 ], [ -97.845816113325043, 30.464291214755679 ], [ -97.764918454091557, 30.541115409270212 ], [ -97.741804837167706, 30.518811610862766 ], [ -97.799588879477341, 30.466769414578728 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COST", "zip": "78614", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 78958, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.585787922931672, 29.487880484474211 ], [ -97.499111859467206, 29.465576686066765 ], [ -97.591566327162639, 29.351579494206494 ], [ -97.591566327162639, 29.396187091021382 ], [ -97.608901539855523, 29.463098486243716 ], [ -97.585787922931672, 29.487880484474211 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COUPLAND", "zip": "78615", "state": "TX", "Sheet1_value": 76, "Sheet1_populaiton": 818, "Sheet1_income": 65625, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.441327817157571, 30.414727218294694 ], [ -97.487555051005288, 30.471725814224829 ], [ -97.291089307152518, 30.541115409270212 ], [ -97.192856435226133, 30.446943815994334 ], [ -97.262197285997701, 30.427118217409941 ], [ -97.441327817157571, 30.414727218294694 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALE", "zip": "78616", "state": "TX", "Sheet1_value": 368, "Sheet1_populaiton": 5645, "Sheet1_income": 50848, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.435549412926605, 29.889348855808215 ], [ -97.423992604464686, 29.725787667486955 ], [ -97.510668667929139, 29.678701870849014 ], [ -97.562674306007821, 29.810046461470634 ], [ -97.684020794858057, 30.042997244837281 ], [ -97.649350369472273, 30.070257442890824 ], [ -97.649350369472273, 30.067779243067775 ], [ -97.57423111446974, 30.072735642713873 ], [ -97.516447072160105, 30.000867847845441 ], [ -97.435549412926605, 29.889348855808215 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEL VALLE", "zip": "78617", "state": "TX", "Sheet1_value": 1216, "Sheet1_populaiton": 21096, "Sheet1_income": 45212, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.57423111446974, 30.072735642713873 ], [ -97.649350369472273, 30.067779243067775 ], [ -97.672463986396139, 30.221427632096837 ], [ -97.649350369472273, 30.236296831035133 ], [ -97.53956068908397, 30.226384031742938 ], [ -97.522225476391071, 30.199123833689391 ], [ -97.57423111446974, 30.072735642713873 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DOSS", "zip": "78618", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63393, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.128621852599025, 30.498986012278372 ], [ -99.163292277984809, 30.42959641723299 ], [ -99.26730355414216, 30.498986012278372 ], [ -99.128621852599025, 30.498986012278372 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DRIFTWOOD", "zip": "78619", "state": "TX", "Sheet1_value": 194, "Sheet1_populaiton": 3446, "Sheet1_income": 87228, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.978719410637211, 30.060344643598626 ], [ -97.990276219099144, 30.047953644483378 ], [ -98.088509091025529, 30.109908640059615 ], [ -98.007611431792043, 30.154516236874503 ], [ -98.007611431792043, 30.132212438467057 ], [ -97.978719410637211, 30.060344643598626 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DRIPPING SPRINGS", "zip": "78620", "state": "TX", "Sheet1_value": 916, "Sheet1_populaiton": 14660, "Sheet1_income": 89899, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.013389836022995, 30.241253230681231 ], [ -98.007611431792043, 30.154516236874503 ], [ -98.088509091025529, 30.109908640059615 ], [ -98.250304409492514, 30.154516236874503 ], [ -98.238747601030596, 30.194167434043294 ], [ -98.163628346028062, 30.37259782130285 ], [ -98.082730686794562, 30.327990224487962 ], [ -98.019168240253961, 30.29081722714222 ], [ -98.013389836022995, 30.241253230681231 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ELGIN", "zip": "78621", "state": "TX", "Sheet1_value": 986, "Sheet1_populaiton": 21863, "Sheet1_income": 52471, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.493333455236254, 30.211514832804639 ], [ -97.441327817157571, 30.414727218294694 ], [ -97.262197285997701, 30.427118217409941 ], [ -97.250640477535768, 30.362685022010655 ], [ -97.273754094459619, 30.295773626788318 ], [ -97.354651753693119, 30.164429036166702 ], [ -97.470219838312403, 30.184254634751095 ], [ -97.493333455236254, 30.211514832804639 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FISCHER", "zip": "78623", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63487, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.354315685649865, 29.985998648907142 ], [ -98.296531643340231, 30.03804084519118 ], [ -98.19252036718288, 29.963694850499699 ], [ -98.221412388337697, 29.9488256515614 ], [ -98.336980472956981, 29.941391052092253 ], [ -98.354315685649865, 29.985998648907142 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FREDERICKSBURG", "zip": "78624", "state": "TX", "Sheet1_value": 1323, "Sheet1_populaiton": 21850, "Sheet1_income": 54286, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.72991196066252, 30.139647037936207 ], [ -98.920599300284323, 30.139647037936207 ], [ -99.209519511832525, 30.13469063829011 ], [ -99.163292277984809, 30.42959641723299 ], [ -99.128621852599025, 30.498986012278372 ], [ -98.966826534132039, 30.551028208562411 ], [ -98.68946313104577, 30.498986012278372 ], [ -98.735690364893486, 30.414727218294694 ], [ -98.591230259119385, 30.42959641723299 ], [ -98.591230259119385, 30.392423419887248 ], [ -98.591230259119385, 30.266035228911726 ], [ -98.660571109890952, 30.139647037936207 ], [ -98.72991196066252, 30.139647037936207 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GEORGETOWN", "zip": "78626", "state": "TX", "Sheet1_value": 1173, "Sheet1_populaiton": 27346, "Sheet1_income": 57787, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.689799199089023, 30.558462808031557 ], [ -97.69557760331999, 30.578288406615954 ], [ -97.632015156779389, 30.774066192636859 ], [ -97.53956068908397, 30.774066192636859 ], [ -97.545339093314922, 30.751762394229413 ], [ -97.470219838312403, 30.635287002546089 ], [ -97.522225476391071, 30.630330602899992 ], [ -97.603123135624571, 30.533680809801062 ], [ -97.689799199089023, 30.558462808031557 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GEORGETOWN", "zip": "78628", "state": "TX", "Sheet1_value": 993, "Sheet1_populaiton": 24603, "Sheet1_income": 80363, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.69557760331999, 30.578288406615954 ], [ -97.782253666784442, 30.578288406615954 ], [ -97.857372921786975, 30.647678001661337 ], [ -97.863151326017942, 30.707154797414525 ], [ -97.851594517556009, 30.803804590513451 ], [ -97.724469624474807, 30.759196993698559 ], [ -97.632015156779389, 30.774066192636859 ], [ -97.69557760331999, 30.578288406615954 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GONZALES", "zip": "78629", "state": "TX", "Sheet1_value": 398, "Sheet1_populaiton": 12018, "Sheet1_income": 42807, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.591566327162639, 29.351579494206494 ], [ -97.499111859467206, 29.465576686066765 ], [ -97.585787922931672, 29.487880484474211 ], [ -97.730248028705773, 29.525053481819953 ], [ -97.684020794858057, 29.579573877927039 ], [ -97.562674306007821, 29.651441672795471 ], [ -97.41821420023372, 29.681180070672063 ], [ -97.1986348394571, 29.584530277573137 ], [ -97.210191647919018, 29.477967685182012 ], [ -97.239083669073835, 29.383796091906135 ], [ -97.291089307152518, 29.349101294383445 ], [ -97.452884625619504, 29.230147702877069 ], [ -97.591566327162639, 29.339188495091246 ], [ -97.591566327162639, 29.351579494206494 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARPER", "zip": "78631", "state": "TX", "Sheet1_value": 120, "Sheet1_populaiton": 2227, "Sheet1_income": 43340, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.209519511832525, 30.13469063829011 ], [ -99.215297916063491, 30.13469063829011 ], [ -99.301973979527943, 30.184254634751095 ], [ -99.301973979527943, 30.285860827496123 ], [ -99.301973979527943, 30.498986012278372 ], [ -99.26730355414216, 30.498986012278372 ], [ -99.163292277984809, 30.42959641723299 ], [ -99.209519511832525, 30.13469063829011 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARWOOD", "zip": "78632", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41573, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.562674306007821, 29.651441672795471 ], [ -97.510668667929139, 29.678701870849014 ], [ -97.423992604464686, 29.725787667486955 ], [ -97.412435796002754, 29.73570046677915 ], [ -97.41821420023372, 29.681180070672063 ], [ -97.562674306007821, 29.651441672795471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HUTTO", "zip": "78634", "state": "TX", "Sheet1_value": 1345, "Sheet1_populaiton": 24306, "Sheet1_income": 73729, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.528003880622038, 30.474204014047878 ], [ -97.580009518700706, 30.498986012278372 ], [ -97.603123135624571, 30.533680809801062 ], [ -97.522225476391071, 30.630330602899992 ], [ -97.499111859467206, 30.476682213870927 ], [ -97.528003880622038, 30.474204014047878 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HYE", "zip": "78635", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.585451854888419, 30.186732834574144 ], [ -98.585451854888419, 30.238775030858182 ], [ -98.492997387193, 30.171863635635848 ], [ -98.585451854888419, 30.186732834574144 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JOHNSON CITY", "zip": "78636", "state": "TX", "Sheet1_value": 149, "Sheet1_populaiton": 4014, "Sheet1_income": 47660, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.238747601030596, 30.194167434043294 ], [ -98.492997387193, 30.171863635635848 ], [ -98.585451854888419, 30.238775030858182 ], [ -98.591230259119385, 30.266035228911726 ], [ -98.591230259119385, 30.392423419887248 ], [ -98.354315685649865, 30.392423419887248 ], [ -98.342758877187947, 30.484116813340076 ], [ -98.169406750259029, 30.437031016702136 ], [ -98.163628346028062, 30.37259782130285 ], [ -98.238747601030596, 30.194167434043294 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KINGSBURY", "zip": "78638", "state": "TX", "Sheet1_value": 106, "Sheet1_populaiton": 2272, "Sheet1_income": 44708, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.730248028705773, 29.525053481819953 ], [ -97.741804837167706, 29.510184282881653 ], [ -97.949827389482394, 29.75056966571745 ], [ -97.845816113325043, 29.787742663063192 ], [ -97.753361645629624, 29.715874868194756 ], [ -97.684020794858057, 29.579573877927039 ], [ -97.730248028705773, 29.525053481819953 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KINGSLAND", "zip": "78639", "state": "TX", "Sheet1_value": 372, "Sheet1_populaiton": 7334, "Sheet1_income": 32865, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.429434940652399, 30.657590800953535 ], [ -98.429434940652399, 30.655112601130483 ], [ -98.475662174500115, 30.692285598476225 ], [ -98.412099727959514, 30.697241998122326 ], [ -98.429434940652399, 30.657590800953535 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KYLE", "zip": "78640", "state": "TX", "Sheet1_value": 2517, "Sheet1_populaiton": 43427, "Sheet1_income": 64137, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.712912816012874, 30.023171646252884 ], [ -97.793810475246374, 29.92156545350786 ], [ -97.851594517556009, 29.916609053861759 ], [ -97.938270581020475, 30.013258846960689 ], [ -97.990276219099144, 30.047953644483378 ], [ -97.978719410637211, 30.060344643598626 ], [ -97.712912816012874, 30.023171646252884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEANDER", "zip": "78641", "state": "TX", "Sheet1_value": 2628, "Sheet1_populaiton": 48854, "Sheet1_income": 71885, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.845816113325043, 30.464291214755679 ], [ -97.874708134479874, 30.434552816879087 ], [ -97.909378559865644, 30.42216181776384 ], [ -97.920935368327576, 30.432074617056038 ], [ -97.978719410637211, 30.496507812455324 ], [ -98.065395474101678, 30.59315760555425 ], [ -98.048060261408779, 30.622896003430842 ], [ -97.857372921786975, 30.647678001661337 ], [ -97.782253666784442, 30.578288406615954 ], [ -97.764918454091557, 30.541115409270212 ], [ -97.845816113325043, 30.464291214755679 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIBERTY HILL", "zip": "78642", "state": "TX", "Sheet1_value": 540, "Sheet1_populaiton": 9341, "Sheet1_income": 75375, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.972941006406245, 30.766631593167709 ], [ -97.863151326017942, 30.707154797414525 ], [ -97.857372921786975, 30.647678001661337 ], [ -98.048060261408779, 30.622896003430842 ], [ -97.972941006406245, 30.766631593167709 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LLANO", "zip": "78643", "state": "TX", "Sheet1_value": 276, "Sheet1_populaiton": 6081, "Sheet1_income": 42939, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.429434940652399, 30.655112601130483 ], [ -98.464105366038183, 30.501464212101421 ], [ -98.591230259119385, 30.498986012278372 ], [ -98.68946313104577, 30.498986012278372 ], [ -98.966826534132039, 30.551028208562411 ], [ -98.966826534132039, 30.635287002546089 ], [ -98.885928874898553, 30.751762394229413 ], [ -98.695241535276736, 30.769109792990758 ], [ -98.718355152200587, 30.920279982196774 ], [ -98.625900684505169, 30.920279982196774 ], [ -98.579673450657452, 30.811239189982597 ], [ -98.475662174500115, 30.692285598476225 ], [ -98.429434940652399, 30.655112601130483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOCKHART", "zip": "78644", "state": "TX", "Sheet1_value": 748, "Sheet1_populaiton": 17542, "Sheet1_income": 46967, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.562674306007821, 29.810046461470634 ], [ -97.73602643293674, 29.787742663063192 ], [ -97.764918454091557, 29.879436056516017 ], [ -97.793810475246374, 29.92156545350786 ], [ -97.712912816012874, 30.023171646252884 ], [ -97.684020794858057, 30.042997244837281 ], [ -97.562674306007821, 29.810046461470634 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEANDER", "zip": "78645", "state": "TX", "Sheet1_value": 631, "Sheet1_populaiton": 10148, "Sheet1_income": 73601, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.920935368327576, 30.432074617056038 ], [ -98.001833027561077, 30.37259782130285 ], [ -98.001833027561077, 30.474204014047878 ], [ -97.978719410637211, 30.496507812455324 ], [ -97.920935368327576, 30.432074617056038 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LULING", "zip": "78648", "state": "TX", "Sheet1_value": 297, "Sheet1_populaiton": 7866, "Sheet1_income": 34903, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.562674306007821, 29.651441672795471 ], [ -97.684020794858057, 29.579573877927039 ], [ -97.753361645629624, 29.715874868194756 ], [ -97.73602643293674, 29.787742663063192 ], [ -97.562674306007821, 29.810046461470634 ], [ -97.510668667929139, 29.678701870849014 ], [ -97.562674306007821, 29.651441672795471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC DADE", "zip": "78650", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 1746, "Sheet1_income": 54474, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.273754094459619, 30.295773626788318 ], [ -97.250640477535768, 30.362685022010655 ], [ -97.135072392916499, 30.295773626788318 ], [ -97.227526860611917, 30.199123833689391 ], [ -97.273754094459619, 30.295773626788318 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MANCHACA", "zip": "78652", "state": "TX", "Sheet1_value": 262, "Sheet1_populaiton": 5117, "Sheet1_income": 76604, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.799588879477341, 30.13469063829011 ], [ -97.816924092170225, 30.097517640944368 ], [ -97.897821751403725, 30.129734238644009 ], [ -97.926713772558543, 30.181776434928047 ], [ -97.845816113325043, 30.142125237759256 ], [ -97.799588879477341, 30.13469063829011 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MANOR", "zip": "78653", "state": "TX", "Sheet1_value": 1024, "Sheet1_populaiton": 16917, "Sheet1_income": 59763, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.53956068908397, 30.226384031742938 ], [ -97.562674306007821, 30.248687830150381 ], [ -97.603123135624571, 30.335424823957112 ], [ -97.637793561010341, 30.402336219179446 ], [ -97.528003880622038, 30.474204014047878 ], [ -97.499111859467206, 30.476682213870927 ], [ -97.487555051005288, 30.471725814224829 ], [ -97.441327817157571, 30.414727218294694 ], [ -97.493333455236254, 30.211514832804639 ], [ -97.522225476391071, 30.199123833689391 ], [ -97.53956068908397, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARBLE FALLS", "zip": "78654", "state": "TX", "Sheet1_value": 841, "Sheet1_populaiton": 16916, "Sheet1_income": 46086, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.001833027561077, 30.474204014047878 ], [ -98.128957920642279, 30.541115409270212 ], [ -98.169406750259029, 30.437031016702136 ], [ -98.342758877187947, 30.484116813340076 ], [ -98.464105366038183, 30.501464212101421 ], [ -98.429434940652399, 30.655112601130483 ], [ -98.429434940652399, 30.657590800953535 ], [ -98.082730686794562, 30.603070404846449 ], [ -98.065395474101678, 30.59315760555425 ], [ -97.978719410637211, 30.496507812455324 ], [ -98.001833027561077, 30.474204014047878 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARTINDALE", "zip": "78655", "state": "TX", "Sheet1_value": 123, "Sheet1_populaiton": 3917, "Sheet1_income": 46823, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.753361645629624, 29.715874868194756 ], [ -97.845816113325043, 29.787742663063192 ], [ -97.845816113325043, 29.839784859347226 ], [ -97.764918454091557, 29.879436056516017 ], [ -97.73602643293674, 29.787742663063192 ], [ -97.753361645629624, 29.715874868194756 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAXWELL", "zip": "78656", "state": "TX", "Sheet1_value": 81, "Sheet1_populaiton": 2118, "Sheet1_income": 43922, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.845816113325043, 29.839784859347226 ], [ -97.851594517556009, 29.916609053861759 ], [ -97.793810475246374, 29.92156545350786 ], [ -97.764918454091557, 29.879436056516017 ], [ -97.845816113325043, 29.839784859347226 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PAIGE", "zip": "78659", "state": "TX", "Sheet1_value": 141, "Sheet1_populaiton": 3140, "Sheet1_income": 68452, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.048396329452032, 30.137168838113158 ], [ -97.187078030995167, 30.112386839882664 ], [ -97.227526860611917, 30.199123833689391 ], [ -97.135072392916499, 30.295773626788318 ], [ -96.996390691373364, 30.226384031742938 ], [ -96.961720265987566, 30.142125237759256 ], [ -97.048396329452032, 30.137168838113158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PFLUGERVILLE", "zip": "78660", "state": "TX", "Sheet1_value": 4286, "Sheet1_populaiton": 75038, "Sheet1_income": 76007, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.643571965241307, 30.407292618825544 ], [ -97.672463986396139, 30.424640017586889 ], [ -97.672463986396139, 30.471725814224829 ], [ -97.580009518700706, 30.498986012278372 ], [ -97.528003880622038, 30.474204014047878 ], [ -97.637793561010341, 30.402336219179446 ], [ -97.643571965241307, 30.407292618825544 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RED ROCK", "zip": "78662", "state": "TX", "Sheet1_value": 120, "Sheet1_populaiton": 3266, "Sheet1_income": 75050, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.354651753693119, 29.953782051207501 ], [ -97.435549412926605, 29.889348855808215 ], [ -97.516447072160105, 30.000867847845441 ], [ -97.45866302985047, 30.013258846960689 ], [ -97.348873349462153, 29.968651250145797 ], [ -97.354651753693119, 29.953782051207501 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROUND MOUNTAIN", "zip": "78663", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 71971, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.591230259119385, 30.42959641723299 ], [ -98.591230259119385, 30.498986012278372 ], [ -98.464105366038183, 30.501464212101421 ], [ -98.342758877187947, 30.484116813340076 ], [ -98.354315685649865, 30.392423419887248 ], [ -98.591230259119385, 30.392423419887248 ], [ -98.591230259119385, 30.42959641723299 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROUND ROCK", "zip": "78664", "state": "TX", "Sheet1_value": 2977, "Sheet1_populaiton": 57806, "Sheet1_income": 61401, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 30.471725814224829 ], [ -97.672463986396139, 30.479160413693975 ], [ -97.689799199089023, 30.558462808031557 ], [ -97.603123135624571, 30.533680809801062 ], [ -97.580009518700706, 30.498986012278372 ], [ -97.672463986396139, 30.471725814224829 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SAN MARCOS", "zip": "78666", "state": "TX", "Sheet1_value": 2917, "Sheet1_populaiton": 66027, "Sheet1_income": 33827, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.845816113325043, 29.787742663063192 ], [ -97.949827389482394, 29.75056966571745 ], [ -97.99605462333011, 29.748091465894397 ], [ -98.019168240253961, 29.810046461470634 ], [ -98.123179516411312, 29.899261655100414 ], [ -98.221412388337697, 29.9488256515614 ], [ -98.19252036718288, 29.963694850499699 ], [ -97.938270581020475, 30.013258846960689 ], [ -97.851594517556009, 29.916609053861759 ], [ -97.845816113325043, 29.839784859347226 ], [ -97.845816113325043, 29.787742663063192 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPICEWOOD", "zip": "78669", "state": "TX", "Sheet1_value": 611, "Sheet1_populaiton": 8418, "Sheet1_income": 83024, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.001833027561077, 30.37259782130285 ], [ -98.001833027561077, 30.370119621479802 ], [ -98.082730686794562, 30.327990224487962 ], [ -98.163628346028062, 30.37259782130285 ], [ -98.169406750259029, 30.437031016702136 ], [ -98.128957920642279, 30.541115409270212 ], [ -98.001833027561077, 30.474204014047878 ], [ -98.001833027561077, 30.37259782130285 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STONEWALL", "zip": "78671", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 739, "Sheet1_income": 55479, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.660571109890952, 30.139647037936207 ], [ -98.591230259119385, 30.266035228911726 ], [ -98.585451854888419, 30.238775030858182 ], [ -98.585451854888419, 30.186732834574144 ], [ -98.585451854888419, 30.139647037936207 ], [ -98.660571109890952, 30.139647037936207 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TOW", "zip": "78672", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30521, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.579673450657452, 30.811239189982597 ], [ -98.625900684505169, 30.920279982196774 ], [ -98.602787067581318, 30.922758182019823 ], [ -98.446770153345284, 30.922758182019823 ], [ -98.406321323728548, 30.816195589628698 ], [ -98.45254855757625, 30.828586588743946 ], [ -98.545003025271683, 30.821151989274796 ], [ -98.579673450657452, 30.811239189982597 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILLOW CITY", "zip": "78675", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54773, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.68946313104577, 30.498986012278372 ], [ -98.591230259119385, 30.498986012278372 ], [ -98.591230259119385, 30.42959641723299 ], [ -98.735690364893486, 30.414727218294694 ], [ -98.68946313104577, 30.498986012278372 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WIMBERLEY", "zip": "78676", "state": "TX", "Sheet1_value": 905, "Sheet1_populaiton": 12453, "Sheet1_income": 66050, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.938270581020475, 30.013258846960689 ], [ -98.19252036718288, 29.963694850499699 ], [ -98.296531643340231, 30.03804084519118 ], [ -98.250304409492514, 30.154516236874503 ], [ -98.088509091025529, 30.109908640059615 ], [ -97.990276219099144, 30.047953644483378 ], [ -97.938270581020475, 30.013258846960689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROUND ROCK", "zip": "78681", "state": "TX", "Sheet1_value": 2281, "Sheet1_populaiton": 54141, "Sheet1_income": 92453, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.759140049860591, 30.476682213870927 ], [ -97.741804837167706, 30.518811610862766 ], [ -97.764918454091557, 30.541115409270212 ], [ -97.782253666784442, 30.578288406615954 ], [ -97.69557760331999, 30.578288406615954 ], [ -97.689799199089023, 30.558462808031557 ], [ -97.672463986396139, 30.479160413693975 ], [ -97.724469624474807, 30.456856615286533 ], [ -97.759140049860591, 30.476682213870927 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78701", "state": "TX", "Sheet1_value": 459, "Sheet1_populaiton": 5915, "Sheet1_income": 86541, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.753361645629624, 30.266035228911726 ], [ -97.753361645629624, 30.283382627673074 ], [ -97.73602643293674, 30.280904427850025 ], [ -97.730248028705773, 30.278426228026973 ], [ -97.73602643293674, 30.25116602997343 ], [ -97.753361645629624, 30.266035228911726 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78702", "state": "TX", "Sheet1_value": 1912, "Sheet1_populaiton": 21655, "Sheet1_income": 36197, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.73602643293674, 30.25116602997343 ], [ -97.730248028705773, 30.278426228026973 ], [ -97.701356007550942, 30.283382627673074 ], [ -97.689799199089023, 30.246209630327332 ], [ -97.73602643293674, 30.25116602997343 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78703", "state": "TX", "Sheet1_value": 1125, "Sheet1_populaiton": 19860, "Sheet1_income": 80569, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.753361645629624, 30.266035228911726 ], [ -97.759140049860591, 30.266035228911726 ], [ -97.776475262553475, 30.313121025549666 ], [ -97.747583241398658, 30.305686426080516 ], [ -97.753361645629624, 30.283382627673074 ], [ -97.753361645629624, 30.266035228911726 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78704", "state": "TX", "Sheet1_value": 3753, "Sheet1_populaiton": 41999, "Sheet1_income": 50930, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.799588879477341, 30.233818631212085 ], [ -97.799588879477341, 30.243731430504283 ], [ -97.759140049860591, 30.266035228911726 ], [ -97.753361645629624, 30.266035228911726 ], [ -97.73602643293674, 30.25116602997343 ], [ -97.753361645629624, 30.21647123245074 ], [ -97.799588879477341, 30.233818631212085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78705", "state": "TX", "Sheet1_value": 790, "Sheet1_populaiton": 31282, "Sheet1_income": 12143, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.730248028705773, 30.278426228026973 ], [ -97.73602643293674, 30.280904427850025 ], [ -97.753361645629624, 30.283382627673074 ], [ -97.747583241398658, 30.305686426080516 ], [ -97.747583241398658, 30.308164625903565 ], [ -97.741804837167706, 30.305686426080516 ], [ -97.718691220243841, 30.293295426965273 ], [ -97.730248028705773, 30.278426228026973 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78717", "state": "TX", "Sheet1_value": 1297, "Sheet1_populaiton": 24099, "Sheet1_income": 93701, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.741804837167706, 30.518811610862766 ], [ -97.759140049860591, 30.476682213870927 ], [ -97.799588879477341, 30.466769414578728 ], [ -97.741804837167706, 30.518811610862766 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78719", "state": "TX", "Sheet1_value": 129, "Sheet1_populaiton": 1746, "Sheet1_income": 38305, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.69557760331999, 30.075213842536922 ], [ -97.69557760331999, 30.144603437582305 ], [ -97.684020794858057, 30.21647123245074 ], [ -97.672463986396139, 30.221427632096837 ], [ -97.649350369472273, 30.067779243067775 ], [ -97.649350369472273, 30.070257442890824 ], [ -97.69557760331999, 30.075213842536922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78721", "state": "TX", "Sheet1_value": 822, "Sheet1_populaiton": 11482, "Sheet1_income": 33798, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.701356007550942, 30.283382627673074 ], [ -97.666685582165172, 30.285860827496123 ], [ -97.672463986396139, 30.25116602997343 ], [ -97.689799199089023, 30.246209630327332 ], [ -97.701356007550942, 30.283382627673074 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78722", "state": "TX", "Sheet1_value": 684, "Sheet1_populaiton": 6355, "Sheet1_income": 50923, "Sheet1_percent": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.730248028705773, 30.278426228026973 ], [ -97.718691220243841, 30.293295426965273 ], [ -97.712912816012874, 30.303208226257468 ], [ -97.701356007550942, 30.283382627673074 ], [ -97.730248028705773, 30.278426228026973 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78723", "state": "TX", "Sheet1_value": 1921, "Sheet1_populaiton": 31234, "Sheet1_income": 42939, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.701356007550942, 30.283382627673074 ], [ -97.712912816012874, 30.303208226257468 ], [ -97.707134411781908, 30.323033824841865 ], [ -97.672463986396139, 30.325512024664913 ], [ -97.666685582165172, 30.285860827496123 ], [ -97.701356007550942, 30.283382627673074 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78724", "state": "TX", "Sheet1_value": 1100, "Sheet1_populaiton": 21454, "Sheet1_income": 38479, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.562674306007821, 30.248687830150381 ], [ -97.666685582165172, 30.285860827496123 ], [ -97.672463986396139, 30.325512024664913 ], [ -97.603123135624571, 30.335424823957112 ], [ -97.562674306007821, 30.248687830150381 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78725", "state": "TX", "Sheet1_value": 358, "Sheet1_populaiton": 8169, "Sheet1_income": 52381, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.53956068908397, 30.226384031742938 ], [ -97.649350369472273, 30.236296831035133 ], [ -97.672463986396139, 30.25116602997343 ], [ -97.666685582165172, 30.285860827496123 ], [ -97.562674306007821, 30.248687830150381 ], [ -97.53956068908397, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78726", "state": "TX", "Sheet1_value": 789, "Sheet1_populaiton": 13181, "Sheet1_income": 67466, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.828480900632158, 30.454378415463481 ], [ -97.845816113325043, 30.392423419887248 ], [ -97.851594517556009, 30.402336219179446 ], [ -97.874708134479874, 30.434552816879087 ], [ -97.845816113325043, 30.464291214755679 ], [ -97.828480900632158, 30.454378415463481 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78727", "state": "TX", "Sheet1_value": 1624, "Sheet1_populaiton": 28563, "Sheet1_income": 69570, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.678242390627091, 30.427118217409941 ], [ -97.684020794858057, 30.409770818648592 ], [ -97.707134411781908, 30.419683617940791 ], [ -97.770696858322509, 30.434552816879087 ], [ -97.724469624474807, 30.454378415463481 ], [ -97.678242390627091, 30.427118217409941 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78728", "state": "TX", "Sheet1_value": 1526, "Sheet1_populaiton": 20817, "Sheet1_income": 48612, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.724469624474807, 30.454378415463481 ], [ -97.724469624474807, 30.456856615286533 ], [ -97.672463986396139, 30.479160413693975 ], [ -97.672463986396139, 30.471725814224829 ], [ -97.672463986396139, 30.424640017586889 ], [ -97.678242390627091, 30.427118217409941 ], [ -97.724469624474807, 30.454378415463481 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78729", "state": "TX", "Sheet1_value": 2010, "Sheet1_populaiton": 26906, "Sheet1_income": 60690, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.770696858322509, 30.434552816879087 ], [ -97.799588879477341, 30.466769414578728 ], [ -97.759140049860591, 30.476682213870927 ], [ -97.724469624474807, 30.456856615286533 ], [ -97.724469624474807, 30.454378415463481 ], [ -97.770696858322509, 30.434552816879087 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78730", "state": "TX", "Sheet1_value": 386, "Sheet1_populaiton": 8916, "Sheet1_income": 120568, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.788032071015408, 30.360206822187607 ], [ -97.799588879477341, 30.350294022895408 ], [ -97.845816113325043, 30.327990224487962 ], [ -97.863151326017942, 30.352772222718457 ], [ -97.851594517556009, 30.402336219179446 ], [ -97.845816113325043, 30.392423419887248 ], [ -97.788032071015408, 30.360206822187607 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78731", "state": "TX", "Sheet1_value": 1241, "Sheet1_populaiton": 25575, "Sheet1_income": 75269, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.747583241398658, 30.335424823957112 ], [ -97.747583241398658, 30.308164625903565 ], [ -97.747583241398658, 30.305686426080516 ], [ -97.776475262553475, 30.313121025549666 ], [ -97.799588879477341, 30.350294022895408 ], [ -97.788032071015408, 30.360206822187607 ], [ -97.770696858322509, 30.384988820418098 ], [ -97.741804837167706, 30.360206822187607 ], [ -97.747583241398658, 30.335424823957112 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78732", "state": "TX", "Sheet1_value": 667, "Sheet1_populaiton": 15097, "Sheet1_income": 131216, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.932492176789509, 30.335424823957112 ], [ -97.909378559865644, 30.42216181776384 ], [ -97.874708134479874, 30.434552816879087 ], [ -97.851594517556009, 30.402336219179446 ], [ -97.863151326017942, 30.352772222718457 ], [ -97.932492176789509, 30.335424823957112 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78733", "state": "TX", "Sheet1_value": 460, "Sheet1_populaiton": 9475, "Sheet1_income": 122860, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.909378559865644, 30.305686426080516 ], [ -97.967162602175293, 30.327990224487962 ], [ -97.932492176789509, 30.335424823957112 ], [ -97.863151326017942, 30.352772222718457 ], [ -97.845816113325043, 30.327990224487962 ], [ -97.863151326017942, 30.300730026434419 ], [ -97.909378559865644, 30.305686426080516 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78734", "state": "TX", "Sheet1_value": 1292, "Sheet1_populaiton": 18290, "Sheet1_income": 87300, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.932492176789509, 30.335424823957112 ], [ -97.967162602175293, 30.327990224487962 ], [ -98.001833027561077, 30.370119621479802 ], [ -98.001833027561077, 30.37259782130285 ], [ -97.920935368327576, 30.432074617056038 ], [ -97.909378559865644, 30.42216181776384 ], [ -97.932492176789509, 30.335424823957112 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78735", "state": "TX", "Sheet1_value": 774, "Sheet1_populaiton": 17118, "Sheet1_income": 79984, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.874708134479874, 30.233818631212085 ], [ -97.920935368327576, 30.29081722714222 ], [ -97.909378559865644, 30.305686426080516 ], [ -97.863151326017942, 30.300730026434419 ], [ -97.799588879477341, 30.243731430504283 ], [ -97.799588879477341, 30.233818631212085 ], [ -97.816924092170225, 30.233818631212085 ], [ -97.874708134479874, 30.233818631212085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78736", "state": "TX", "Sheet1_value": 544, "Sheet1_populaiton": 6599, "Sheet1_income": 84940, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.874708134479874, 30.233818631212085 ], [ -97.886264942941793, 30.228862231565984 ], [ -98.013389836022995, 30.241253230681231 ], [ -98.019168240253961, 30.29081722714222 ], [ -97.920935368327576, 30.29081722714222 ], [ -97.874708134479874, 30.233818631212085 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78737", "state": "TX", "Sheet1_value": 814, "Sheet1_populaiton": 13539, "Sheet1_income": 121094, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.007611431792043, 30.154516236874503 ], [ -98.013389836022995, 30.241253230681231 ], [ -97.886264942941793, 30.228862231565984 ], [ -97.903600155634678, 30.20903663298159 ], [ -97.926713772558543, 30.181776434928047 ], [ -97.897821751403725, 30.129734238644009 ], [ -98.007611431792043, 30.132212438467057 ], [ -98.007611431792043, 30.154516236874503 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78738", "state": "TX", "Sheet1_value": 892, "Sheet1_populaiton": 13141, "Sheet1_income": 118795, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.920935368327576, 30.29081722714222 ], [ -98.019168240253961, 30.29081722714222 ], [ -98.082730686794562, 30.327990224487962 ], [ -98.001833027561077, 30.370119621479802 ], [ -97.967162602175293, 30.327990224487962 ], [ -97.909378559865644, 30.305686426080516 ], [ -97.920935368327576, 30.29081722714222 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78739", "state": "TX", "Sheet1_value": 782, "Sheet1_populaiton": 17198, "Sheet1_income": 128597, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.851594517556009, 30.176820035281949 ], [ -97.845816113325043, 30.142125237759256 ], [ -97.926713772558543, 30.181776434928047 ], [ -97.903600155634678, 30.20903663298159 ], [ -97.851594517556009, 30.176820035281949 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78741", "state": "TX", "Sheet1_value": 2874, "Sheet1_populaiton": 48654, "Sheet1_income": 30871, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.73602643293674, 30.25116602997343 ], [ -97.689799199089023, 30.246209630327332 ], [ -97.684020794858057, 30.221427632096837 ], [ -97.753361645629624, 30.21647123245074 ], [ -97.73602643293674, 30.25116602997343 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78742", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 19688, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 30.221427632096837 ], [ -97.684020794858057, 30.21647123245074 ], [ -97.684020794858057, 30.221427632096837 ], [ -97.689799199089023, 30.246209630327332 ], [ -97.672463986396139, 30.25116602997343 ], [ -97.649350369472273, 30.236296831035133 ], [ -97.672463986396139, 30.221427632096837 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78744", "state": "TX", "Sheet1_value": 2564, "Sheet1_populaiton": 44375, "Sheet1_income": 41721, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.788032071015408, 30.164429036166702 ], [ -97.788032071015408, 30.166907235989751 ], [ -97.753361645629624, 30.21647123245074 ], [ -97.684020794858057, 30.221427632096837 ], [ -97.684020794858057, 30.21647123245074 ], [ -97.69557760331999, 30.144603437582305 ], [ -97.788032071015408, 30.164429036166702 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78745", "state": "TX", "Sheet1_value": 4293, "Sheet1_populaiton": 57559, "Sheet1_income": 50672, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.788032071015408, 30.166907235989751 ], [ -97.840037709094076, 30.194167434043294 ], [ -97.816924092170225, 30.233818631212085 ], [ -97.799588879477341, 30.233818631212085 ], [ -97.753361645629624, 30.21647123245074 ], [ -97.788032071015408, 30.166907235989751 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78746", "state": "TX", "Sheet1_value": 1202, "Sheet1_populaiton": 27506, "Sheet1_income": 128936, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.759140049860591, 30.266035228911726 ], [ -97.799588879477341, 30.243731430504283 ], [ -97.863151326017942, 30.300730026434419 ], [ -97.845816113325043, 30.327990224487962 ], [ -97.799588879477341, 30.350294022895408 ], [ -97.776475262553475, 30.313121025549666 ], [ -97.759140049860591, 30.266035228911726 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78747", "state": "TX", "Sheet1_value": 993, "Sheet1_populaiton": 15919, "Sheet1_income": 61599, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.69557760331999, 30.075213842536922 ], [ -97.816924092170225, 30.097517640944368 ], [ -97.799588879477341, 30.13469063829011 ], [ -97.788032071015408, 30.164429036166702 ], [ -97.69557760331999, 30.144603437582305 ], [ -97.69557760331999, 30.075213842536922 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78748", "state": "TX", "Sheet1_value": 3008, "Sheet1_populaiton": 41710, "Sheet1_income": 66309, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.851594517556009, 30.176820035281949 ], [ -97.840037709094076, 30.194167434043294 ], [ -97.788032071015408, 30.166907235989751 ], [ -97.788032071015408, 30.164429036166702 ], [ -97.799588879477341, 30.13469063829011 ], [ -97.845816113325043, 30.142125237759256 ], [ -97.851594517556009, 30.176820035281949 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78749", "state": "TX", "Sheet1_value": 1960, "Sheet1_populaiton": 34392, "Sheet1_income": 84907, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.840037709094076, 30.194167434043294 ], [ -97.851594517556009, 30.176820035281949 ], [ -97.903600155634678, 30.20903663298159 ], [ -97.886264942941793, 30.228862231565984 ], [ -97.874708134479874, 30.233818631212085 ], [ -97.816924092170225, 30.233818631212085 ], [ -97.840037709094076, 30.194167434043294 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78750", "state": "TX", "Sheet1_value": 1580, "Sheet1_populaiton": 27012, "Sheet1_income": 76236, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.770696858322509, 30.434552816879087 ], [ -97.770696858322509, 30.384988820418098 ], [ -97.788032071015408, 30.360206822187607 ], [ -97.845816113325043, 30.392423419887248 ], [ -97.828480900632158, 30.454378415463481 ], [ -97.799588879477341, 30.466769414578728 ], [ -97.770696858322509, 30.434552816879087 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78751", "state": "TX", "Sheet1_value": 1172, "Sheet1_populaiton": 14045, "Sheet1_income": 39032, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.718691220243841, 30.293295426965273 ], [ -97.741804837167706, 30.305686426080516 ], [ -97.724469624474807, 30.325512024664913 ], [ -97.707134411781908, 30.323033824841865 ], [ -97.712912816012874, 30.303208226257468 ], [ -97.718691220243841, 30.293295426965273 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78752", "state": "TX", "Sheet1_value": 1110, "Sheet1_populaiton": 18381, "Sheet1_income": 34716, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.684020794858057, 30.33294662413406 ], [ -97.672463986396139, 30.325512024664913 ], [ -97.707134411781908, 30.323033824841865 ], [ -97.724469624474807, 30.325512024664913 ], [ -97.724469624474807, 30.327990224487962 ], [ -97.712912816012874, 30.347815823072359 ], [ -97.684020794858057, 30.33294662413406 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78753", "state": "TX", "Sheet1_value": 3543, "Sheet1_populaiton": 52674, "Sheet1_income": 38884, "Sheet1_percent": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.712912816012874, 30.347815823072359 ], [ -97.684020794858057, 30.409770818648592 ], [ -97.678242390627091, 30.427118217409941 ], [ -97.672463986396139, 30.424640017586889 ], [ -97.643571965241307, 30.407292618825544 ], [ -97.684020794858057, 30.33294662413406 ], [ -97.712912816012874, 30.347815823072359 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78754", "state": "TX", "Sheet1_value": 1309, "Sheet1_populaiton": 15109, "Sheet1_income": 54896, "Sheet1_percent": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.672463986396139, 30.325512024664913 ], [ -97.684020794858057, 30.33294662413406 ], [ -97.643571965241307, 30.407292618825544 ], [ -97.637793561010341, 30.402336219179446 ], [ -97.603123135624571, 30.335424823957112 ], [ -97.672463986396139, 30.325512024664913 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78756", "state": "TX", "Sheet1_value": 654, "Sheet1_populaiton": 8125, "Sheet1_income": 59854, "Sheet1_percent": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.741804837167706, 30.305686426080516 ], [ -97.747583241398658, 30.308164625903565 ], [ -97.747583241398658, 30.335424823957112 ], [ -97.724469624474807, 30.327990224487962 ], [ -97.724469624474807, 30.325512024664913 ], [ -97.741804837167706, 30.305686426080516 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78757", "state": "TX", "Sheet1_value": 1404, "Sheet1_populaiton": 22655, "Sheet1_income": 57429, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.724469624474807, 30.327990224487962 ], [ -97.747583241398658, 30.335424823957112 ], [ -97.741804837167706, 30.360206822187607 ], [ -97.73602643293674, 30.380032420772 ], [ -97.712912816012874, 30.347815823072359 ], [ -97.724469624474807, 30.327990224487962 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78758", "state": "TX", "Sheet1_value": 2774, "Sheet1_populaiton": 45623, "Sheet1_income": 43537, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.712912816012874, 30.347815823072359 ], [ -97.73602643293674, 30.380032420772 ], [ -97.707134411781908, 30.419683617940791 ], [ -97.684020794858057, 30.409770818648592 ], [ -97.712912816012874, 30.347815823072359 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AUSTIN", "zip": "78759", "state": "TX", "Sheet1_value": 2329, "Sheet1_populaiton": 39895, "Sheet1_income": 66828, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.741804837167706, 30.360206822187607 ], [ -97.770696858322509, 30.384988820418098 ], [ -97.770696858322509, 30.434552816879087 ], [ -97.707134411781908, 30.419683617940791 ], [ -97.73602643293674, 30.380032420772 ], [ -97.741804837167706, 30.360206822187607 ] ] ] } },
{ "type": "Feature", "properties": { "name": "UVALDE", "zip": "78801", "state": "TX", "Sheet1_value": 1016, "Sheet1_populaiton": 21761, "Sheet1_income": 33306, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.683348658771564, 29.237582302346219 ], [ -99.596672595307098, 29.088890312963255 ], [ -99.816251956083732, 29.088890312963255 ], [ -100.110950571862887, 29.086412113140206 ], [ -100.110950571862887, 29.624181474741928 ], [ -100.012717699936502, 29.624181474741928 ], [ -99.937598444933968, 29.624181474741928 ], [ -99.856700785700482, 29.624181474741928 ], [ -99.752689509543131, 29.624181474741928 ], [ -99.729575892619266, 29.542400880581297 ], [ -99.666013446078665, 29.445751087482371 ], [ -99.654456637616747, 29.329275695799048 ], [ -99.683348658771564, 29.237582302346219 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ASHERTON", "zip": "78827", "state": "TX", "Sheet1_value": 65, "Sheet1_populaiton": 1775, "Sheet1_income": 24310, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.989604083012651, 28.199216576488514 ], [ -99.960712061857834, 28.412341761270763 ], [ -99.683348658771564, 28.501556954900543 ], [ -99.394428447223362, 28.427210960209059 ], [ -99.394428447223362, 28.204172976134615 ], [ -99.989604083012651, 28.199216576488514 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BARKSDALE", "zip": "78828", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 33462, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.110950571862887, 29.624181474741928 ], [ -100.261189081867954, 29.624181474741928 ], [ -100.232297060713137, 29.872001457046871 ], [ -100.024274508398435, 29.827393860231979 ], [ -100.012717699936502, 29.624181474741928 ], [ -100.110950571862887, 29.624181474741928 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BATESVILLE", "zip": "78829", "state": "TX", "Sheet1_value": 67, "Sheet1_populaiton": 1151, "Sheet1_income": 20536, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 28.818766532250869 ], [ -99.793138339159881, 28.813810132604768 ], [ -99.816251956083732, 29.088890312963255 ], [ -99.596672595307098, 29.088890312963255 ], [ -99.411763659916261, 29.091368512786303 ], [ -99.411763659916261, 28.838592130835263 ], [ -99.411763659916261, 28.818766532250869 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BIG WELLS", "zip": "78830", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 24861, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.394428447223362, 28.427210960209059 ], [ -99.683348658771564, 28.501556954900543 ], [ -99.781581530697949, 28.642814344814362 ], [ -99.411763659916261, 28.640336144991309 ], [ -99.394428447223362, 28.640336144991309 ], [ -99.394428447223362, 28.427210960209059 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRACKETTVILLE", "zip": "78832", "state": "TX", "Sheet1_value": 88, "Sheet1_populaiton": 3589, "Sheet1_income": 33257, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.110950571862887, 29.086412113140206 ], [ -100.665677378035426, 29.083933913317153 ], [ -100.792802271116628, 29.242538701992316 ], [ -100.700347803421209, 29.624181474741928 ], [ -100.261189081867954, 29.624181474741928 ], [ -100.110950571862887, 29.624181474741928 ], [ -100.110950571862887, 29.086412113140206 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CAMP WOOD", "zip": "78833", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29180, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.012717699936502, 29.624181474741928 ], [ -100.024274508398435, 29.827393860231979 ], [ -100.018496104167468, 29.864566857577721 ], [ -99.902928019548199, 29.765438864655746 ], [ -99.937598444933968, 29.624181474741928 ], [ -100.012717699936502, 29.624181474741928 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARRIZO SPRINGS", "zip": "78834", "state": "TX", "Sheet1_value": 358, "Sheet1_populaiton": 7634, "Sheet1_income": 42222, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.116728976093853, 28.199216576488514 ], [ -100.116728976093853, 28.647770744460459 ], [ -99.781581530697949, 28.642814344814362 ], [ -99.683348658771564, 28.501556954900543 ], [ -99.960712061857834, 28.412341761270763 ], [ -99.989604083012651, 28.199216576488514 ], [ -100.116728976093853, 28.199216576488514 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COMSTOCK", "zip": "78837", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30556, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.070165674202897, 30.288339027319171 ], [ -101.179955354591215, 30.047953644483378 ], [ -101.058608865740965, 29.455663886774566 ], [ -101.243517801131816, 29.525053481819953 ], [ -101.405313119598802, 29.758004265186596 ], [ -101.763574181918557, 29.782786263417091 ], [ -101.757795777687591, 30.288339027319171 ], [ -101.070165674202897, 30.288339027319171 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CONCAN", "zip": "78838", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 51667, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.729575892619266, 29.542400880581297 ], [ -99.666013446078665, 29.49531508394336 ], [ -99.666013446078665, 29.445751087482371 ], [ -99.729575892619266, 29.542400880581297 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CRYSTAL CITY", "zip": "78839", "state": "TX", "Sheet1_value": 336, "Sheet1_populaiton": 8747, "Sheet1_income": 25560, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 28.640336144991309 ], [ -99.781581530697949, 28.642814344814362 ], [ -100.116728976093853, 28.647770744460459 ], [ -100.110950571862887, 28.927807324465043 ], [ -99.891371211086266, 28.930285524288092 ], [ -99.793138339159881, 28.813810132604768 ], [ -99.411763659916261, 28.818766532250869 ], [ -99.411763659916261, 28.640336144991309 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DEL RIO", "zip": "78840", "state": "TX", "Sheet1_value": 2090, "Sheet1_populaiton": 48325, "Sheet1_income": 40533, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.058608865740965, 29.455663886774566 ], [ -101.179955354591215, 30.047953644483378 ], [ -101.070165674202897, 30.288339027319171 ], [ -100.96037599381458, 30.288339027319171 ], [ -100.648342165342527, 30.288339027319171 ], [ -100.700347803421209, 29.624181474741928 ], [ -100.792802271116628, 29.242538701992316 ], [ -101.058608865740965, 29.455663886774566 ] ] ] } },
{ "type": "Feature", "properties": { "name": "D HANIS", "zip": "78850", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 29.091368512786303 ], [ -99.411763659916261, 29.502749683412507 ], [ -99.411763659916261, 29.626659674564976 ], [ -99.261525149911193, 29.626659674564976 ], [ -99.359758021837592, 29.520097082173852 ], [ -99.197962703370592, 29.215278503938777 ], [ -99.197962703370592, 29.091368512786303 ], [ -99.411763659916261, 29.091368512786303 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DRYDEN", "zip": "78851", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.318300988091096, 29.879436056516017 ], [ -102.566772370022534, 30.052910044129476 ], [ -102.566772370022534, 30.268513428734778 ], [ -102.358749817707846, 30.283382627673074 ], [ -102.347193009245913, 30.583244806262051 ], [ -102.191176095009894, 30.598114005200348 ], [ -101.769352586149523, 30.652634401307438 ], [ -101.636449288837355, 30.558462808031557 ], [ -101.757795777687591, 30.288339027319171 ], [ -101.763574181918557, 29.782786263417091 ], [ -102.318300988091096, 29.879436056516017 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EAGLE PASS", "zip": "78852", "state": "TX", "Sheet1_value": 2542, "Sheet1_populaiton": 53600, "Sheet1_income": 31214, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.550109293416142, 28.826201131720016 ], [ -100.434541208796873, 28.741942337736337 ], [ -100.110950571862887, 28.927807324465043 ], [ -100.116728976093853, 28.647770744460459 ], [ -100.116728976093853, 28.199216576488514 ], [ -100.214961848020238, 28.196738376665465 ], [ -100.550109293416142, 28.826201131720016 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HONDO", "zip": "78861", "state": "TX", "Sheet1_value": 591, "Sheet1_populaiton": 13006, "Sheet1_income": 45118, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.261525149911193, 29.626659674564976 ], [ -99.174849086446741, 29.624181474741928 ], [ -98.984161746824924, 29.624181474741928 ], [ -98.961048129901073, 29.559748279342642 ], [ -99.036167384903607, 29.510184282881653 ], [ -98.943712917208188, 29.440794687836274 ], [ -98.961048129901073, 29.309450097214651 ], [ -99.065059406058424, 29.168192707300836 ], [ -99.197962703370592, 29.215278503938777 ], [ -99.359758021837592, 29.520097082173852 ], [ -99.261525149911193, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KNIPPA", "zip": "78870", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 977, "Sheet1_income": 37500, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.654456637616747, 29.329275695799048 ], [ -99.573558978383247, 29.257407900930616 ], [ -99.683348658771564, 29.237582302346219 ], [ -99.654456637616747, 29.329275695799048 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA PRYOR", "zip": "78872", "state": "TX", "Sheet1_value": 68, "Sheet1_populaiton": 2079, "Sheet1_income": 31050, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.793138339159881, 28.813810132604768 ], [ -99.891371211086266, 28.930285524288092 ], [ -100.110950571862887, 28.927807324465043 ], [ -100.110950571862887, 29.086412113140206 ], [ -99.816251956083732, 29.088890312963255 ], [ -99.793138339159881, 28.813810132604768 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEAKEY", "zip": "78873", "state": "TX", "Sheet1_value": 112, "Sheet1_populaiton": 1731, "Sheet1_income": 38594, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.694905467233497, 29.626659674564976 ], [ -99.787359934928915, 29.728265867310004 ], [ -99.856700785700482, 29.624181474741928 ], [ -99.937598444933968, 29.624181474741928 ], [ -99.902928019548199, 29.765438864655746 ], [ -100.018496104167468, 29.864566857577721 ], [ -99.972268870319752, 30.082648442006068 ], [ -99.758467913774098, 30.075213842536922 ], [ -99.68912706300253, 30.065301043244723 ], [ -99.68912706300253, 29.909174454392613 ], [ -99.602450999538064, 29.90669625456956 ], [ -99.602450999538064, 29.626659674564976 ], [ -99.694905467233497, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUEMADO", "zip": "78877", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.665677378035426, 29.083933913317153 ], [ -100.110950571862887, 29.086412113140206 ], [ -100.110950571862887, 28.927807324465043 ], [ -100.434541208796873, 28.741942337736337 ], [ -100.550109293416142, 28.826201131720016 ], [ -100.665677378035426, 29.083933913317153 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RIO FRIO", "zip": "78879", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36806, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.694905467233497, 29.626659674564976 ], [ -99.752689509543131, 29.624181474741928 ], [ -99.856700785700482, 29.624181474741928 ], [ -99.787359934928915, 29.728265867310004 ], [ -99.694905467233497, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCKSPRINGS", "zip": "78880", "state": "TX", "Sheet1_value": 75, "Sheet1_populaiton": 1842, "Sheet1_income": 47083, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.648342165342527, 30.288339027319171 ], [ -100.116728976093853, 30.29081722714222 ], [ -99.908706423779151, 30.29081722714222 ], [ -99.752689509543131, 30.29081722714222 ], [ -99.758467913774098, 30.075213842536922 ], [ -99.972268870319752, 30.082648442006068 ], [ -100.018496104167468, 29.864566857577721 ], [ -100.024274508398435, 29.827393860231979 ], [ -100.232297060713137, 29.872001457046871 ], [ -100.261189081867954, 29.624181474741928 ], [ -100.700347803421209, 29.624181474741928 ], [ -100.648342165342527, 30.288339027319171 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SABINAL", "zip": "78881", "state": "TX", "Sheet1_value": 105, "Sheet1_populaiton": 2039, "Sheet1_income": 34250, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 29.091368512786303 ], [ -99.596672595307098, 29.088890312963255 ], [ -99.683348658771564, 29.237582302346219 ], [ -99.573558978383247, 29.257407900930616 ], [ -99.654456637616747, 29.329275695799048 ], [ -99.666013446078665, 29.445751087482371 ], [ -99.666013446078665, 29.49531508394336 ], [ -99.411763659916261, 29.502749683412507 ], [ -99.411763659916261, 29.091368512786303 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TARPLEY", "zip": "78883", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44231, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.261525149911193, 29.626659674564976 ], [ -99.215297916063491, 29.676223671025966 ], [ -99.174849086446741, 29.624181474741928 ], [ -99.261525149911193, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "UTOPIA", "zip": "78884", "state": "TX", "Sheet1_value": 55, "Sheet1_populaiton": 915, "Sheet1_income": 46389, "Sheet1_percent": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.411763659916261, 29.502749683412507 ], [ -99.666013446078665, 29.49531508394336 ], [ -99.729575892619266, 29.542400880581297 ], [ -99.752689509543131, 29.624181474741928 ], [ -99.694905467233497, 29.626659674564976 ], [ -99.602450999538064, 29.626659674564976 ], [ -99.492661319149761, 29.626659674564976 ], [ -99.411763659916261, 29.626659674564976 ], [ -99.411763659916261, 29.502749683412507 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VANDERPOOL", "zip": "78885", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 80417, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.602450999538064, 29.626659674564976 ], [ -99.602450999538064, 29.90669625456956 ], [ -99.492661319149761, 29.90669625456956 ], [ -99.492661319149761, 29.626659674564976 ], [ -99.602450999538064, 29.626659674564976 ] ] ] } },
{ "type": "Feature", "properties": { "name": "YANCEY", "zip": "78886", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 74196, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.197962703370592, 29.215278503938777 ], [ -99.065059406058424, 29.168192707300836 ], [ -99.093951427213241, 29.091368512786303 ], [ -99.122843448368059, 29.091368512786303 ], [ -99.197962703370592, 29.091368512786303 ], [ -99.197962703370592, 29.215278503938777 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLEIBLERVILLE", "zip": "78931", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 67917, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.470555906355642, 29.968651250145797 ], [ -96.482112714817575, 30.03804084519118 ], [ -96.435885480969858, 30.075213842536922 ], [ -96.447442289431791, 29.971129449968846 ], [ -96.470555906355642, 29.968651250145797 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CARMINE", "zip": "78932", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36548, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.655464841746493, 30.129734238644009 ], [ -96.742140905210945, 30.099995840767416 ], [ -96.742140905210945, 30.144603437582305 ], [ -96.655464841746493, 30.129734238644009 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CAT SPRING", "zip": "78933", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 59974, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.482112714817575, 29.70844026872561 ], [ -96.482112714817575, 29.713396668371708 ], [ -96.464777502124676, 29.797655462355387 ], [ -96.372323034429257, 29.911652654215661 ], [ -96.30298218365769, 29.92156545350786 ], [ -96.297203779426724, 29.696049269610363 ], [ -96.482112714817575, 29.70844026872561 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLUMBUS", "zip": "78934", "state": "TX", "Sheet1_value": 285, "Sheet1_populaiton": 6349, "Sheet1_income": 46350, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.545675161358176, 29.614268675449729 ], [ -96.66124324597746, 29.733222266956101 ], [ -96.58034558674396, 29.745613266071349 ], [ -96.49944792751046, 29.730744067133053 ], [ -96.482112714817575, 29.713396668371708 ], [ -96.482112714817575, 29.70844026872561 ], [ -96.458999097893724, 29.599399476511433 ], [ -96.545675161358176, 29.614268675449729 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ALLEYTON", "zip": "78935", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 82391, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.49944792751046, 29.730744067133053 ], [ -96.464777502124676, 29.797655462355387 ], [ -96.482112714817575, 29.713396668371708 ], [ -96.49944792751046, 29.730744067133053 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FAYETTEVILLE", "zip": "78940", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 2383, "Sheet1_income": 51905, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.528339948665277, 30.042997244837281 ], [ -96.58034558674396, 29.745613266071349 ], [ -96.66124324597746, 29.733222266956101 ], [ -96.747919309441912, 29.807568261647585 ], [ -96.805703351751546, 29.990955048553243 ], [ -96.620794416360695, 30.04547544466033 ], [ -96.522561544434325, 30.065301043244723 ], [ -96.528339948665277, 30.042997244837281 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLATONIA", "zip": "78941", "state": "TX", "Sheet1_value": 102, "Sheet1_populaiton": 2754, "Sheet1_income": 40304, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065731542144931, 29.730744067133053 ], [ -97.048396329452032, 29.629137874388029 ], [ -97.140850797147451, 29.626659674564976 ], [ -97.267975690228667, 29.829872060055031 ], [ -97.244862073304802, 29.869523257223818 ], [ -97.146629201378417, 29.941391052092253 ], [ -97.140850797147451, 29.889348855808215 ], [ -97.065731542144931, 29.730744067133053 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GIDDINGS", "zip": "78942", "state": "TX", "Sheet1_value": 299, "Sheet1_populaiton": 8486, "Sheet1_income": 43798, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.025282712528181, 30.050431844306427 ], [ -97.048396329452032, 30.137168838113158 ], [ -96.961720265987566, 30.142125237759256 ], [ -96.996390691373364, 30.226384031742938 ], [ -96.863487394061195, 30.236296831035133 ], [ -96.79992494752058, 30.154516236874503 ], [ -96.892379415215999, 30.095039441121315 ], [ -97.025282712528181, 30.050431844306427 ] ] ] } },
{ "type": "Feature", "properties": { "name": "INDUSTRY", "zip": "78944", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 47083, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.470555906355642, 29.968651250145797 ], [ -96.487891119048527, 30.030606245722034 ], [ -96.482112714817575, 30.03804084519118 ], [ -96.470555906355642, 29.968651250145797 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LA GRANGE", "zip": "78945", "state": "TX", "Sheet1_value": 392, "Sheet1_populaiton": 10465, "Sheet1_income": 49351, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.747919309441912, 29.807568261647585 ], [ -96.811481755982513, 29.696049269610363 ], [ -96.817260160213479, 29.79022086288624 ], [ -96.961720265987566, 29.787742663063192 ], [ -97.140850797147451, 29.889348855808215 ], [ -97.146629201378417, 29.941391052092253 ], [ -97.059953137913965, 29.95626025103055 ], [ -96.979055478680465, 29.919087253684808 ], [ -97.0368395209901, 29.983520449084093 ], [ -97.025282712528181, 30.050431844306427 ], [ -96.892379415215999, 30.095039441121315 ], [ -96.834595372906364, 30.040519045014229 ], [ -96.805703351751546, 29.990955048553243 ], [ -96.747919309441912, 29.807568261647585 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEDBETTER", "zip": "78946", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46719, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.863487394061195, 30.236296831035133 ], [ -96.828816968675397, 30.308164625903565 ], [ -96.742140905210945, 30.320555625018812 ], [ -96.638129629053594, 30.295773626788318 ], [ -96.742140905210945, 30.144603437582305 ], [ -96.742140905210945, 30.099995840767416 ], [ -96.834595372906364, 30.040519045014229 ], [ -96.892379415215999, 30.095039441121315 ], [ -96.79992494752058, 30.154516236874503 ], [ -96.863487394061195, 30.236296831035133 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEXINGTON", "zip": "78947", "state": "TX", "Sheet1_value": 184, "Sheet1_populaiton": 4631, "Sheet1_income": 64516, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262197285997701, 30.427118217409941 ], [ -97.192856435226133, 30.446943815994334 ], [ -97.152407605609383, 30.456856615286533 ], [ -97.048396329452032, 30.51137701139362 ], [ -96.961720265987566, 30.555984608208508 ], [ -96.869265798292147, 30.434552816879087 ], [ -96.892379415215999, 30.417205418117742 ], [ -97.135072392916499, 30.295773626788318 ], [ -97.250640477535768, 30.362685022010655 ], [ -97.262197285997701, 30.427118217409941 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LINCOLN", "zip": "78948", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 63029, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.996390691373364, 30.226384031742938 ], [ -97.135072392916499, 30.295773626788318 ], [ -96.892379415215999, 30.417205418117742 ], [ -96.828816968675397, 30.308164625903565 ], [ -96.863487394061195, 30.236296831035133 ], [ -96.996390691373364, 30.226384031742938 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MULDOON", "zip": "78949", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 58523, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140850797147451, 29.889348855808215 ], [ -96.961720265987566, 29.787742663063192 ], [ -97.065731542144931, 29.730744067133053 ], [ -97.140850797147451, 29.889348855808215 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NEW ULM", "zip": "78950", "state": "TX", "Sheet1_value": 87, "Sheet1_populaiton": 2591, "Sheet1_income": 49261, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.528339948665277, 30.042997244837281 ], [ -96.487891119048527, 30.030606245722034 ], [ -96.470555906355642, 29.968651250145797 ], [ -96.447442289431791, 29.971129449968846 ], [ -96.372323034429257, 29.911652654215661 ], [ -96.464777502124676, 29.797655462355387 ], [ -96.49944792751046, 29.730744067133053 ], [ -96.58034558674396, 29.745613266071349 ], [ -96.528339948665277, 30.042997244837281 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROSANKY", "zip": "78953", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44604, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.267975690228667, 29.829872060055031 ], [ -97.412435796002754, 29.73570046677915 ], [ -97.423992604464686, 29.725787667486955 ], [ -97.435549412926605, 29.889348855808215 ], [ -97.354651753693119, 29.953782051207501 ], [ -97.244862073304802, 29.869523257223818 ], [ -97.267975690228667, 29.829872060055031 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROUND TOP", "zip": "78954", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.834595372906364, 30.040519045014229 ], [ -96.742140905210945, 30.099995840767416 ], [ -96.655464841746493, 30.129734238644009 ], [ -96.620794416360695, 30.04547544466033 ], [ -96.805703351751546, 29.990955048553243 ], [ -96.834595372906364, 30.040519045014229 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SCHULENBURG", "zip": "78956", "state": "TX", "Sheet1_value": 199, "Sheet1_populaiton": 5270, "Sheet1_income": 39923, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.903936223677931, 29.631616074211077 ], [ -97.048396329452032, 29.629137874388029 ], [ -97.065731542144931, 29.730744067133053 ], [ -96.961720265987566, 29.787742663063192 ], [ -96.817260160213479, 29.79022086288624 ], [ -96.811481755982513, 29.696049269610363 ], [ -96.875044202523114, 29.631616074211077 ], [ -96.903936223677931, 29.631616074211077 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SMITHVILLE", "zip": "78957", "state": "TX", "Sheet1_value": 387, "Sheet1_populaiton": 8502, "Sheet1_income": 42994, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.146629201378417, 29.941391052092253 ], [ -97.244862073304802, 29.869523257223818 ], [ -97.354651753693119, 29.953782051207501 ], [ -97.348873349462153, 29.968651250145797 ], [ -97.187078030995167, 30.112386839882664 ], [ -97.048396329452032, 30.137168838113158 ], [ -97.025282712528181, 30.050431844306427 ], [ -97.0368395209901, 29.983520449084093 ], [ -97.059953137913965, 29.95626025103055 ], [ -97.146629201378417, 29.941391052092253 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WAELDER", "zip": "78959", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 2209, "Sheet1_income": 39648, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.1986348394571, 29.584530277573137 ], [ -97.41821420023372, 29.681180070672063 ], [ -97.412435796002754, 29.73570046677915 ], [ -97.267975690228667, 29.829872060055031 ], [ -97.140850797147451, 29.626659674564976 ], [ -97.1986348394571, 29.584530277573137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEIMAR", "zip": "78962", "state": "TX", "Sheet1_value": 224, "Sheet1_populaiton": 4803, "Sheet1_income": 45545, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.545675161358176, 29.614268675449729 ], [ -96.707470479825162, 29.487880484474211 ], [ -96.875044202523114, 29.631616074211077 ], [ -96.811481755982513, 29.696049269610363 ], [ -96.747919309441912, 29.807568261647585 ], [ -96.66124324597746, 29.733222266956101 ], [ -96.545675161358176, 29.614268675449729 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WEST POINT", "zip": "78963", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 70017, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.059953137913965, 29.95626025103055 ], [ -97.0368395209901, 29.983520449084093 ], [ -96.979055478680465, 29.919087253684808 ], [ -97.059953137913965, 29.95626025103055 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ADRIAN", "zip": "79001", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53214, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.560993965791582, 35.187740077487867 ], [ -103.040601516961573, 35.182783677841769 ], [ -103.040601516961573, 35.395908862624019 ], [ -103.040601516961573, 35.611512247229314 ], [ -103.040601516961573, 35.621425046521516 ], [ -102.745902901182419, 35.623903246344568 ], [ -102.560993965791582, 35.187740077487867 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOOKER", "zip": "79005", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 62750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.544330889185176, 36.216193004053373 ], [ -100.544330889185176, 36.498707783881009 ], [ -100.34208674110144, 36.498707783881009 ], [ -100.272745890329873, 36.238496802460816 ], [ -100.301637911484704, 36.233540402814718 ], [ -100.544330889185176, 36.216193004053373 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BORGER", "zip": "79007", "state": "TX", "Sheet1_value": 342, "Sheet1_populaiton": 14388, "Sheet1_income": 42613, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.295523439210484, 35.623903246344568 ], [ -101.49776758729422, 35.623903246344568 ], [ -101.468875566139403, 35.72303123926654 ], [ -101.087500886895782, 35.916330825464399 ], [ -101.087500886895782, 35.623903246344568 ], [ -101.295523439210484, 35.623903246344568 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BOVINA", "zip": "79009", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41552, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.740124496951452, 34.312935539951425 ], [ -102.745902901182419, 34.466583928980484 ], [ -103.046379921192539, 34.466583928980484 ], [ -103.040601516961573, 34.652448915709193 ], [ -102.526323540405798, 34.531017124379773 ], [ -102.526323540405798, 34.312935539951425 ], [ -102.61299960387025, 34.312935539951425 ], [ -102.740124496951452, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BRISCOE", "zip": "79011", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 71250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.001160891474569, 35.618946846698464 ], [ -100.001160891474569, 35.547079051830032 ], [ -100.001160891474569, 35.430603660146708 ], [ -100.290081103022771, 35.499993255192095 ], [ -100.34208674110144, 35.618946846698464 ], [ -100.001160891474569, 35.618946846698464 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CANADIAN", "zip": "79014", "state": "TX", "Sheet1_value": 104, "Sheet1_populaiton": 3956, "Sheet1_income": 55690, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.001160891474569, 36.055110015555158 ], [ -100.001160891474569, 35.881636027941703 ], [ -100.001160891474569, 35.745335037673982 ], [ -100.001160891474569, 35.618946846698464 ], [ -100.34208674110144, 35.618946846698464 ], [ -100.538552484954209, 35.618946846698464 ], [ -100.538552484954209, 36.055110015555158 ], [ -100.001160891474569, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CANYON", "zip": "79015", "state": "TX", "Sheet1_value": 453, "Sheet1_populaiton": 20629, "Sheet1_income": 51951, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.630670884606388, 34.746620508985075 ], [ -102.000488755388076, 34.74909870880812 ], [ -102.168062478086028, 34.746620508985075 ], [ -102.168062478086028, 35.031613488635756 ], [ -101.919591096154591, 35.058873686689296 ], [ -101.740460564994706, 35.058873686689296 ], [ -101.624892480375422, 34.934963695536823 ], [ -101.624892480375422, 34.887877898898886 ], [ -101.630670884606388, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHANNING", "zip": "79018", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40833, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.162284073855062, 35.626381446167613 ], [ -102.745902901182419, 35.623903246344568 ], [ -103.040601516961573, 35.621425046521516 ], [ -103.040601516961573, 35.651163444398108 ], [ -102.925033432342303, 35.732944038558742 ], [ -102.404977051555548, 35.705683840505195 ], [ -102.318300988091096, 36.055110015555158 ], [ -102.162284073855062, 36.055110015555158 ], [ -102.162284073855062, 35.626381446167613 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLAUDE", "zip": "79019", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 57202, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.491989183063254, 34.746620508985075 ], [ -101.41686992806072, 34.855661301199248 ], [ -101.624892480375422, 34.887877898898886 ], [ -101.624892480375422, 34.934963695536823 ], [ -101.624892480375422, 35.182783677841769 ], [ -101.330193864596268, 35.182783677841769 ], [ -101.087500886895782, 35.182783677841769 ], [ -101.093279291126748, 34.74909870880812 ], [ -101.278188226517599, 34.74909870880812 ], [ -101.468875566139403, 34.746620508985075 ], [ -101.491989183063254, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DALHART", "zip": "79022", "state": "TX", "Sheet1_value": 344, "Sheet1_populaiton": 11126, "Sheet1_income": 49521, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.318300988091096, 36.055110015555158 ], [ -103.040601516961573, 36.055110015555158 ], [ -103.040601516961573, 36.174063607061534 ], [ -103.040601516961573, 36.228584003168621 ], [ -102.873027794263635, 36.156716208300189 ], [ -102.786351730799169, 36.501185983704055 ], [ -102.641891625025067, 36.501185983704055 ], [ -102.243181733088562, 36.501185983704055 ], [ -102.162284073855062, 36.501185983704055 ], [ -102.162284073855062, 36.055110015555158 ], [ -102.318300988091096, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DIMMITT", "zip": "79027", "state": "TX", "Sheet1_value": 131, "Sheet1_populaiton": 5080, "Sheet1_income": 29805, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.289408966936278, 34.312935539951425 ], [ -102.364528221938798, 34.312935539951425 ], [ -102.526323540405798, 34.312935539951425 ], [ -102.526323540405798, 34.531017124379773 ], [ -102.526323540405798, 34.684665513408838 ], [ -102.439647476941332, 34.746620508985075 ], [ -102.168062478086028, 34.746620508985075 ], [ -102.000488755388076, 34.74909870880812 ], [ -102.000488755388076, 34.647492516063096 ], [ -102.000488755388076, 34.449236530219139 ], [ -102.000488755388076, 34.312935539951425 ], [ -102.092943223083495, 34.312935539951425 ], [ -102.289408966936278, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DUMAS", "zip": "79029", "state": "TX", "Sheet1_value": 347, "Sheet1_populaiton": 16333, "Sheet1_income": 51971, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 35.685858241920798 ], [ -102.029380776542894, 35.618946846698464 ], [ -102.162284073855062, 35.618946846698464 ], [ -102.162284073855062, 35.626381446167613 ], [ -102.162284073855062, 36.055110015555158 ], [ -101.954261521540374, 36.055110015555158 ], [ -101.624892480375422, 35.693292841389948 ], [ -101.624892480375422, 35.685858241920798 ] ] ] } },
{ "type": "Feature", "properties": { "name": "EARTH", "zip": "79031", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43688, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.422312264248447, 34.104766754815273 ], [ -102.416533860017481, 34.201416547914199 ], [ -102.61299960387025, 34.233633145613844 ], [ -102.61299960387025, 34.312935539951425 ], [ -102.526323540405798, 34.312935539951425 ], [ -102.364528221938798, 34.312935539951425 ], [ -102.306744179629163, 34.164243550568457 ], [ -102.31252258386013, 34.134505152691865 ], [ -102.324079392322062, 34.102288554992221 ], [ -102.422312264248447, 34.104766754815273 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FOLLETT", "zip": "79034", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 66023, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.001160891474569, 36.260800600868265 ], [ -100.243853869175055, 36.23601860263777 ], [ -100.272745890329873, 36.238496802460816 ], [ -100.34208674110144, 36.498707783881009 ], [ -100.324751528408555, 36.498707783881009 ], [ -100.001160891474569, 36.498707783881009 ], [ -100.001160891474569, 36.260800600868265 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRIONA", "zip": "79035", "state": "TX", "Sheet1_value": 106, "Sheet1_populaiton": 4989, "Sheet1_income": 46467, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.526323540405798, 34.531017124379773 ], [ -103.040601516961573, 34.652448915709193 ], [ -103.040601516961573, 34.744142309162022 ], [ -103.040601516961573, 34.746620508985075 ], [ -102.526323540405798, 34.746620508985075 ], [ -102.526323540405798, 34.684665513408838 ], [ -102.526323540405798, 34.531017124379773 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FRITCH", "zip": "79036", "state": "TX", "Sheet1_value": 96, "Sheet1_populaiton": 5287, "Sheet1_income": 51035, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.49776758729422, 35.623903246344568 ], [ -101.624892480375422, 35.623903246344568 ], [ -101.624892480375422, 35.678423642451648 ], [ -101.468875566139403, 35.72303123926654 ], [ -101.49776758729422, 35.623903246344568 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GROOM", "zip": "79039", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54122, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.330193864596268, 35.182783677841769 ], [ -101.312858651903383, 35.356257665455225 ], [ -101.087500886895782, 35.356257665455225 ], [ -101.087500886895782, 35.182783677841769 ], [ -101.330193864596268, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GRUVER", "zip": "79040", "state": "TX", "Sheet1_value": 70, "Sheet1_populaiton": 1583, "Sheet1_income": 57604, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 36.087326613254803 ], [ -101.624892480375422, 36.498707783881009 ], [ -101.509324395756153, 36.498707783881009 ], [ -101.359085885751085, 36.498707783881009 ], [ -101.087500886895782, 36.498707783881009 ], [ -101.087500886895782, 36.488794984588807 ], [ -101.468875566139403, 36.124499610600544 ], [ -101.624892480375422, 36.087326613254803 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HALE CENTER", "zip": "79041", "state": "TX", "Sheet1_value": 84, "Sheet1_populaiton": 3784, "Sheet1_income": 36667, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.763574181918557, 34.035377159769887 ], [ -101.763574181918557, 33.990769562954995 ], [ -102.087164818852543, 34.025464360477692 ], [ -102.087164818852543, 34.040333559415984 ], [ -102.087164818852543, 34.15928715092236 ], [ -101.838693436921091, 34.161765350745412 ], [ -101.763574181918557, 34.035377159769887 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HAPPY", "zip": "79042", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54821, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.468875566139403, 34.746620508985075 ], [ -101.468875566139403, 34.652448915709193 ], [ -102.000488755388076, 34.647492516063096 ], [ -102.000488755388076, 34.74909870880812 ], [ -101.630670884606388, 34.746620508985075 ], [ -101.491989183063254, 34.746620508985075 ], [ -101.468875566139403, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HARTLEY", "zip": "79044", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.040601516961573, 35.651163444398108 ], [ -103.040601516961573, 35.740378638027885 ], [ -103.040601516961573, 35.963416622102336 ], [ -103.040601516961573, 36.055110015555158 ], [ -102.318300988091096, 36.055110015555158 ], [ -102.404977051555548, 35.705683840505195 ], [ -102.925033432342303, 35.732944038558742 ], [ -103.040601516961573, 35.651163444398108 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEREFORD", "zip": "79045", "state": "TX", "Sheet1_value": 558, "Sheet1_populaiton": 19483, "Sheet1_income": 41975, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.040601516961573, 34.746620508985075 ], [ -103.040601516961573, 34.95478929412122 ], [ -103.040601516961573, 35.182783677841769 ], [ -102.560993965791582, 35.187740077487867 ], [ -102.364528221938798, 35.185261877664814 ], [ -102.168062478086028, 35.130741481557735 ], [ -102.168062478086028, 35.031613488635756 ], [ -102.168062478086028, 34.746620508985075 ], [ -102.439647476941332, 34.746620508985075 ], [ -102.526323540405798, 34.746620508985075 ], [ -103.040601516961573, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HIGGINS", "zip": "79046", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.538552484954209, 36.055110015555158 ], [ -100.544330889185176, 36.05758821537821 ], [ -100.544330889185176, 36.216193004053373 ], [ -100.301637911484704, 36.233540402814718 ], [ -100.243853869175055, 36.23601860263777 ], [ -100.001160891474569, 36.260800600868265 ], [ -100.001160891474569, 36.201323805115081 ], [ -100.001160891474569, 36.055110015555158 ], [ -100.538552484954209, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KRESS", "zip": "79052", "state": "TX", "Sheet1_value": 53, "Sheet1_populaiton": 1189, "Sheet1_income": 43250, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.468875566139403, 34.312935539951425 ], [ -101.567108438065787, 34.312935539951425 ], [ -102.000488755388076, 34.312935539951425 ], [ -102.000488755388076, 34.449236530219139 ], [ -101.468875566139403, 34.533495324202818 ], [ -101.468875566139403, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LIPSCOMB", "zip": "79056", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44375, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.301637911484704, 36.233540402814718 ], [ -100.272745890329873, 36.238496802460816 ], [ -100.243853869175055, 36.23601860263777 ], [ -100.301637911484704, 36.233540402814718 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MCLEAN", "zip": "79057", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.538552484954209, 35.182783677841769 ], [ -100.815915888040479, 35.182783677841769 ], [ -100.815915888040479, 35.281911670763748 ], [ -100.538552484954209, 35.388474263154869 ], [ -100.538552484954209, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MASTERSON", "zip": "79058", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 35.623903246344568 ], [ -101.624892480375422, 35.618946846698464 ], [ -101.884920670768807, 35.46777665749245 ], [ -102.012045563850009, 35.447951058908053 ], [ -102.029380776542894, 35.618946846698464 ], [ -101.624892480375422, 35.685858241920798 ], [ -101.624892480375422, 35.678423642451648 ], [ -101.624892480375422, 35.623903246344568 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIAMI", "zip": "79059", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 67404, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.538552484954209, 35.618946846698464 ], [ -101.087500886895782, 35.618946846698464 ], [ -101.087500886895782, 35.623903246344568 ], [ -101.087500886895782, 35.916330825464399 ], [ -101.087500886895782, 36.055110015555158 ], [ -101.087500886895782, 36.05758821537821 ], [ -100.544330889185176, 36.05758821537821 ], [ -100.538552484954209, 36.055110015555158 ], [ -100.538552484954209, 35.618946846698464 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MOBEETIE", "zip": "79061", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 60357, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.42298440033494, 35.398387062447071 ], [ -100.538552484954209, 35.388474263154869 ], [ -100.538552484954209, 35.618946846698464 ], [ -100.34208674110144, 35.618946846698464 ], [ -100.290081103022771, 35.499993255192095 ], [ -100.42298440033494, 35.398387062447071 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MORSE", "zip": "79062", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 61000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.468875566139403, 36.124499610600544 ], [ -101.445761949215552, 36.055110015555158 ], [ -101.624892480375422, 36.055110015555158 ], [ -101.624892480375422, 36.087326613254803 ], [ -101.468875566139403, 36.124499610600544 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OLTON", "zip": "79064", "state": "TX", "Sheet1_value": 108, "Sheet1_populaiton": 2405, "Sheet1_income": 37865, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.220068116164711, 34.057680958177329 ], [ -102.31252258386013, 34.134505152691865 ], [ -102.306744179629163, 34.164243550568457 ], [ -102.289408966936278, 34.312935539951425 ], [ -102.092943223083495, 34.312935539951425 ], [ -102.087164818852543, 34.15928715092236 ], [ -102.087164818852543, 34.040333559415984 ], [ -102.220068116164711, 34.057680958177329 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PAMPA", "zip": "79065", "state": "TX", "Sheet1_value": 480, "Sheet1_populaiton": 21431, "Sheet1_income": 43921, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.815915888040479, 35.182783677841769 ], [ -101.087500886895782, 35.182783677841769 ], [ -101.087500886895782, 35.356257665455225 ], [ -101.087500886895782, 35.487602256076848 ], [ -101.087500886895782, 35.618946846698464 ], [ -100.538552484954209, 35.618946846698464 ], [ -100.538552484954209, 35.388474263154869 ], [ -100.815915888040479, 35.281911670763748 ], [ -100.815915888040479, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PANHANDLE", "zip": "79068", "state": "TX", "Sheet1_value": 63, "Sheet1_populaiton": 2948, "Sheet1_income": 65050, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 35.182783677841769 ], [ -101.624892480375422, 35.222434875010556 ], [ -101.624892480375422, 35.618946846698464 ], [ -101.624892480375422, 35.623903246344568 ], [ -101.49776758729422, 35.623903246344568 ], [ -101.295523439210484, 35.623903246344568 ], [ -101.301301843441451, 35.487602256076848 ], [ -101.312858651903383, 35.356257665455225 ], [ -101.330193864596268, 35.182783677841769 ], [ -101.624892480375422, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PERRYTON", "zip": "79070", "state": "TX", "Sheet1_value": 291, "Sheet1_populaiton": 10312, "Sheet1_income": 49810, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.087500886895782, 36.05758821537821 ], [ -101.087500886895782, 36.488794984588807 ], [ -101.087500886895782, 36.498707783881009 ], [ -100.954597589583614, 36.498707783881009 ], [ -100.544330889185176, 36.498707783881009 ], [ -100.544330889185176, 36.216193004053373 ], [ -100.544330889185176, 36.05758821537821 ], [ -101.087500886895782, 36.05758821537821 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLAINVIEW", "zip": "79072", "state": "TX", "Sheet1_value": 738, "Sheet1_populaiton": 28073, "Sheet1_income": 40832, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.087164818852543, 34.15928715092236 ], [ -102.092943223083495, 34.312935539951425 ], [ -102.000488755388076, 34.312935539951425 ], [ -101.567108438065787, 34.312935539951425 ], [ -101.567108438065787, 34.060159158000381 ], [ -101.567108438065787, 34.020507960831594 ], [ -101.763574181918557, 34.035377159769887 ], [ -101.838693436921091, 34.161765350745412 ], [ -102.087164818852543, 34.15928715092236 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHAMROCK", "zip": "79079", "state": "TX", "Sheet1_value": 75, "Sheet1_populaiton": 2392, "Sheet1_income": 41625, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.001160891474569, 35.299259069525093 ], [ -100.001160891474569, 35.182783677841769 ], [ -100.538552484954209, 35.182783677841769 ], [ -100.538552484954209, 35.388474263154869 ], [ -100.42298440033494, 35.398387062447071 ], [ -100.284302698791805, 35.264564272002403 ], [ -100.001160891474569, 35.299259069525093 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SKELLYTOWN", "zip": "79080", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.087500886895782, 35.487602256076848 ], [ -101.301301843441451, 35.487602256076848 ], [ -101.295523439210484, 35.623903246344568 ], [ -101.087500886895782, 35.623903246344568 ], [ -101.087500886895782, 35.618946846698464 ], [ -101.087500886895782, 35.487602256076848 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPEARMAN", "zip": "79081", "state": "TX", "Sheet1_value": 111, "Sheet1_populaiton": 3988, "Sheet1_income": 47292, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.087500886895782, 36.055110015555158 ], [ -101.445761949215552, 36.055110015555158 ], [ -101.468875566139403, 36.124499610600544 ], [ -101.087500886895782, 36.488794984588807 ], [ -101.087500886895782, 36.05758821537821 ], [ -101.087500886895782, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPRINGLAKE", "zip": "79082", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54375, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.306744179629163, 34.164243550568457 ], [ -102.364528221938798, 34.312935539951425 ], [ -102.289408966936278, 34.312935539951425 ], [ -102.306744179629163, 34.164243550568457 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STINNETT", "zip": "79083", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 51141, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 35.693292841389948 ], [ -101.624892480375422, 36.055110015555158 ], [ -101.445761949215552, 36.055110015555158 ], [ -101.087500886895782, 36.055110015555158 ], [ -101.087500886895782, 35.916330825464399 ], [ -101.468875566139403, 35.72303123926654 ], [ -101.624892480375422, 35.678423642451648 ], [ -101.624892480375422, 35.685858241920798 ], [ -101.624892480375422, 35.693292841389948 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STRATFORD", "zip": "79084", "state": "TX", "Sheet1_value": 64, "Sheet1_populaiton": 2495, "Sheet1_income": 44417, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 36.055110015555158 ], [ -101.954261521540374, 36.055110015555158 ], [ -102.162284073855062, 36.055110015555158 ], [ -102.162284073855062, 36.501185983704055 ], [ -101.815579819997239, 36.498707783881009 ], [ -101.775130990380489, 36.501185983704055 ], [ -101.671119714223138, 36.498707783881009 ], [ -101.624892480375422, 36.498707783881009 ], [ -101.624892480375422, 36.087326613254803 ], [ -101.624892480375422, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUMMERFIELD", "zip": "79085", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.526323540405798, 34.684665513408838 ], [ -102.526323540405798, 34.746620508985075 ], [ -102.439647476941332, 34.746620508985075 ], [ -102.526323540405798, 34.684665513408838 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUNRAY", "zip": "79086", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53810, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.954261521540374, 36.055110015555158 ], [ -101.624892480375422, 36.055110015555158 ], [ -101.624892480375422, 35.693292841389948 ], [ -101.954261521540374, 36.055110015555158 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TEXLINE", "zip": "79087", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48375, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.040601516961573, 36.228584003168621 ], [ -103.040601516961573, 36.290538998744857 ], [ -103.000152687344837, 36.501185983704055 ], [ -102.786351730799169, 36.501185983704055 ], [ -102.873027794263635, 36.156716208300189 ], [ -103.040601516961573, 36.228584003168621 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TULIA", "zip": "79088", "state": "TX", "Sheet1_value": 89, "Sheet1_populaiton": 5707, "Sheet1_income": 34519, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.000488755388076, 34.647492516063096 ], [ -101.468875566139403, 34.652448915709193 ], [ -101.468875566139403, 34.533495324202818 ], [ -102.000488755388076, 34.449236530219139 ], [ -102.000488755388076, 34.647492516063096 ] ] ] } },
{ "type": "Feature", "properties": { "name": "VEGA", "zip": "79092", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44632, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.745902901182419, 35.623903246344568 ], [ -102.162284073855062, 35.626381446167613 ], [ -102.162284073855062, 35.618946846698464 ], [ -102.168062478086028, 35.314128268463385 ], [ -102.364528221938798, 35.185261877664814 ], [ -102.560993965791582, 35.187740077487867 ], [ -102.745902901182419, 35.623903246344568 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WAYSIDE", "zip": "79094", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 76190, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.630670884606388, 34.746620508985075 ], [ -101.624892480375422, 34.887877898898886 ], [ -101.41686992806072, 34.855661301199248 ], [ -101.491989183063254, 34.746620508985075 ], [ -101.630670884606388, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WELLINGTON", "zip": "79095", "state": "TX", "Sheet1_value": 58, "Sheet1_populaiton": 2685, "Sheet1_income": 40494, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.417205996103974, 34.746620508985075 ], [ -100.538552484954209, 34.746620508985075 ], [ -100.538552484954209, 34.816010104030454 ], [ -100.353643549563373, 34.843270302083994 ], [ -100.313194719946623, 34.989484091643916 ], [ -100.538552484954209, 34.994440491290014 ], [ -100.538552484954209, 35.182783677841769 ], [ -100.001160891474569, 35.182783677841769 ], [ -100.001160891474569, 35.143132480672975 ], [ -100.001160891474569, 35.029135288812704 ], [ -100.001160891474569, 34.813531904207409 ], [ -100.18606982686542, 34.746620508985075 ], [ -100.417205996103974, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHEELER", "zip": "79096", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.001160891474569, 35.430603660146708 ], [ -100.001160891474569, 35.299259069525093 ], [ -100.284302698791805, 35.264564272002403 ], [ -100.42298440033494, 35.398387062447071 ], [ -100.290081103022771, 35.499993255192095 ], [ -100.001160891474569, 35.430603660146708 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITE DEER", "zip": "79097", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 71429, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.312858651903383, 35.356257665455225 ], [ -101.301301843441451, 35.487602256076848 ], [ -101.087500886895782, 35.487602256076848 ], [ -101.087500886895782, 35.356257665455225 ], [ -101.312858651903383, 35.356257665455225 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILDORADO", "zip": "79098", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 54875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.168062478086028, 35.182783677841769 ], [ -102.168062478086028, 35.130741481557735 ], [ -102.364528221938798, 35.185261877664814 ], [ -102.168062478086028, 35.314128268463385 ], [ -102.168062478086028, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79101", "state": "TX", "Sheet1_value": 65, "Sheet1_populaiton": 2653, "Sheet1_income": 21250, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.821358224228192, 35.212522075718361 ], [ -101.85602864961399, 35.210043875895309 ], [ -101.844471841152057, 35.215000275541414 ], [ -101.821358224228192, 35.212522075718361 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79102", "state": "TX", "Sheet1_value": 269, "Sheet1_populaiton": 9689, "Sheet1_income": 40216, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.815579819997239, 35.192696477133964 ], [ -101.832915032690124, 35.192696477133964 ], [ -101.884920670768807, 35.190218277310919 ], [ -101.85602864961399, 35.210043875895309 ], [ -101.821358224228192, 35.212522075718361 ], [ -101.815579819997239, 35.210043875895309 ], [ -101.815579819997239, 35.192696477133964 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79103", "state": "TX", "Sheet1_value": 300, "Sheet1_populaiton": 11613, "Sheet1_income": 47308, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.844471841152057, 35.162958079257372 ], [ -101.832915032690124, 35.182783677841769 ], [ -101.832915032690124, 35.192696477133964 ], [ -101.815579819997239, 35.192696477133964 ], [ -101.775130990380489, 35.192696477133964 ], [ -101.844471841152057, 35.162958079257372 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79104", "state": "TX", "Sheet1_value": 183, "Sheet1_populaiton": 7191, "Sheet1_income": 27490, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.740460564994706, 35.195174676957016 ], [ -101.775130990380489, 35.192696477133964 ], [ -101.815579819997239, 35.192696477133964 ], [ -101.815579819997239, 35.210043875895309 ], [ -101.740460564994706, 35.217478475364459 ], [ -101.740460564994706, 35.195174676957016 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79106", "state": "TX", "Sheet1_value": 695, "Sheet1_populaiton": 28697, "Sheet1_income": 38685, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.954261521540374, 35.187740077487867 ], [ -101.867585458075908, 35.229869474479706 ], [ -101.844471841152057, 35.215000275541414 ], [ -101.85602864961399, 35.210043875895309 ], [ -101.884920670768807, 35.190218277310919 ], [ -101.919591096154591, 35.175349078372619 ], [ -101.954261521540374, 35.187740077487867 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79107", "state": "TX", "Sheet1_value": 730, "Sheet1_populaiton": 34436, "Sheet1_income": 32002, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.844471841152057, 35.215000275541414 ], [ -101.867585458075908, 35.229869474479706 ], [ -101.867585458075908, 35.237304073948856 ], [ -101.740460564994706, 35.217478475364459 ], [ -101.815579819997239, 35.210043875895309 ], [ -101.821358224228192, 35.212522075718361 ], [ -101.844471841152057, 35.215000275541414 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79108", "state": "TX", "Sheet1_value": 314, "Sheet1_populaiton": 16968, "Sheet1_income": 51746, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.867585458075908, 35.237304073948856 ], [ -101.884920670768807, 35.46777665749245 ], [ -101.624892480375422, 35.618946846698464 ], [ -101.624892480375422, 35.222434875010556 ], [ -101.740460564994706, 35.217478475364459 ], [ -101.867585458075908, 35.237304073948856 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79109", "state": "TX", "Sheet1_value": 1065, "Sheet1_populaiton": 42512, "Sheet1_income": 53945, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.919591096154591, 35.16047987943432 ], [ -101.919591096154591, 35.175349078372619 ], [ -101.884920670768807, 35.190218277310919 ], [ -101.832915032690124, 35.192696477133964 ], [ -101.832915032690124, 35.182783677841769 ], [ -101.902255883461692, 35.12578508191163 ], [ -101.919591096154591, 35.16047987943432 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79110", "state": "TX", "Sheet1_value": 483, "Sheet1_populaiton": 18635, "Sheet1_income": 47834, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.908034287692658, 35.115872282619435 ], [ -101.902255883461692, 35.12578508191163 ], [ -101.832915032690124, 35.182783677841769 ], [ -101.844471841152057, 35.162958079257372 ], [ -101.908034287692658, 35.115872282619435 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79111", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53850, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.624892480375422, 35.182783677841769 ], [ -101.740460564994706, 35.195174676957016 ], [ -101.740460564994706, 35.217478475364459 ], [ -101.624892480375422, 35.222434875010556 ], [ -101.624892480375422, 35.182783677841769 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79118", "state": "TX", "Sheet1_value": 610, "Sheet1_populaiton": 20026, "Sheet1_income": 62323, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.919591096154591, 35.058873686689296 ], [ -101.908034287692658, 35.115872282619435 ], [ -101.844471841152057, 35.162958079257372 ], [ -101.775130990380489, 35.192696477133964 ], [ -101.740460564994706, 35.195174676957016 ], [ -101.624892480375422, 35.182783677841769 ], [ -101.624892480375422, 34.934963695536823 ], [ -101.740460564994706, 35.058873686689296 ], [ -101.919591096154591, 35.058873686689296 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79119", "state": "TX", "Sheet1_value": 383, "Sheet1_populaiton": 12500, "Sheet1_income": 88370, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.919591096154591, 35.058873686689296 ], [ -102.168062478086028, 35.031613488635756 ], [ -102.168062478086028, 35.130741481557735 ], [ -102.168062478086028, 35.182783677841769 ], [ -101.971596734233259, 35.177827278195672 ], [ -101.919591096154591, 35.16047987943432 ], [ -101.902255883461692, 35.12578508191163 ], [ -101.908034287692658, 35.115872282619435 ], [ -101.919591096154591, 35.058873686689296 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79121", "state": "TX", "Sheet1_value": 128, "Sheet1_populaiton": 6688, "Sheet1_income": 69676, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.919591096154591, 35.16047987943432 ], [ -101.971596734233259, 35.177827278195672 ], [ -101.954261521540374, 35.187740077487867 ], [ -101.919591096154591, 35.175349078372619 ], [ -101.919591096154591, 35.16047987943432 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMARILLO", "zip": "79124", "state": "TX", "Sheet1_value": 180, "Sheet1_populaiton": 8766, "Sheet1_income": 78627, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.168062478086028, 35.314128268463385 ], [ -102.162284073855062, 35.618946846698464 ], [ -102.029380776542894, 35.618946846698464 ], [ -102.012045563850009, 35.447951058908053 ], [ -101.884920670768807, 35.46777665749245 ], [ -101.867585458075908, 35.237304073948856 ], [ -101.867585458075908, 35.229869474479706 ], [ -101.954261521540374, 35.187740077487867 ], [ -101.971596734233259, 35.177827278195672 ], [ -102.168062478086028, 35.182783677841769 ], [ -102.168062478086028, 35.314128268463385 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHILDRESS", "zip": "79201", "state": "TX", "Sheet1_value": 153, "Sheet1_populaiton": 7166, "Sheet1_income": 41607, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.370978762256271, 34.312935539951425 ], [ -100.417205996103974, 34.407107133227299 ], [ -100.417205996103974, 34.516147925441473 ], [ -100.417205996103974, 34.746620508985075 ], [ -100.18606982686542, 34.746620508985075 ], [ -100.001160891474569, 34.682187313585786 ], [ -99.995382487243617, 34.560755522256365 ], [ -99.995382487243617, 34.312935539951425 ], [ -100.370978762256271, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AFTON", "zip": "79220", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55781, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.625228548418676, 33.834642974102884 ], [ -100.607893335725777, 33.750384180119205 ], [ -100.84480790919531, 33.765253379057498 ], [ -100.84480790919531, 33.834642974102884 ], [ -100.625228548418676, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CHILLICOTHE", "zip": "79225", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48333, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.614007808, 34.082462956407824 ], [ -99.602450999538064, 34.374890535527655 ], [ -99.475326106456862, 34.397194333935104 ], [ -99.475326106456862, 34.084941156230876 ], [ -99.614007808, 34.082462956407824 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLARENDON", "zip": "79226", "state": "TX", "Sheet1_value": 71, "Sheet1_populaiton": 3048, "Sheet1_income": 38750, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.84480790919531, 34.74909870880812 ], [ -100.943040781121681, 34.74909870880812 ], [ -101.093279291126748, 34.74909870880812 ], [ -101.087500886895782, 35.182783677841769 ], [ -100.815915888040479, 35.182783677841769 ], [ -100.538552484954209, 35.182783677841769 ], [ -100.538552484954209, 34.994440491290014 ], [ -100.769688654192777, 34.979571292351714 ], [ -100.84480790919531, 34.74909870880812 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROWELL", "zip": "79227", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 33882, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.475326106456862, 33.834642974102884 ], [ -99.475326106456862, 33.703298383481268 ], [ -99.683348658771564, 33.703298383481268 ], [ -99.995382487243617, 33.834642974102884 ], [ -99.995382487243617, 34.223720346321642 ], [ -99.614007808, 34.082462956407824 ], [ -99.475326106456862, 34.084941156230876 ], [ -99.475326106456862, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DICKENS", "zip": "79229", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38068, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.573222910340007, 33.39847980524619 ], [ -100.619450144187709, 33.512476997106461 ], [ -101.04127365304808, 33.63143058861283 ], [ -101.04127365304808, 33.683472784896871 ], [ -100.84480790919531, 33.765253379057498 ], [ -100.607893335725777, 33.750384180119205 ], [ -100.625228548418676, 33.834642974102884 ], [ -100.521217272261325, 33.834642974102884 ], [ -100.515438868030358, 33.39847980524619 ], [ -100.573222910340007, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DODSON", "zip": "79230", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 59250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.18606982686542, 34.746620508985075 ], [ -100.001160891474569, 34.813531904207409 ], [ -100.001160891474569, 34.682187313585786 ], [ -100.18606982686542, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLOMOT", "zip": "79234", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.04127365304808, 34.238589545259941 ], [ -100.948819185352647, 34.164243550568457 ], [ -101.04127365304808, 34.174156349860652 ], [ -101.04127365304808, 34.238589545259941 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLOYDADA", "zip": "79235", "state": "TX", "Sheet1_value": 113, "Sheet1_populaiton": 3747, "Sheet1_income": 38808, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.335972268827234, 33.832164774279832 ], [ -101.468875566139403, 33.832164774279832 ], [ -101.561330033834821, 33.829686574456787 ], [ -101.567108438065787, 34.020507960831594 ], [ -101.567108438065787, 34.060159158000381 ], [ -101.04127365304808, 34.079984756584778 ], [ -101.04127365304808, 33.931292767201811 ], [ -101.04127365304808, 33.834642974102884 ], [ -101.335972268827234, 33.832164774279832 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HEDLEY", "zip": "79237", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 65000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.538552484954209, 34.746620508985075 ], [ -100.654120569573493, 34.74909870880812 ], [ -100.84480790919531, 34.74909870880812 ], [ -100.769688654192777, 34.979571292351714 ], [ -100.538552484954209, 34.994440491290014 ], [ -100.538552484954209, 34.816010104030454 ], [ -100.538552484954209, 34.746620508985075 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAKEVIEW", "zip": "79239", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 58929, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.654120569573493, 34.74909870880812 ], [ -100.596336527263858, 34.583059320663807 ], [ -100.943040781121681, 34.630145117301751 ], [ -100.943040781121681, 34.74909870880812 ], [ -100.84480790919531, 34.74909870880812 ], [ -100.654120569573493, 34.74909870880812 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOCKNEY", "zip": "79241", "state": "TX", "Sheet1_value": 87, "Sheet1_populaiton": 2512, "Sheet1_income": 47969, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.04127365304808, 34.174156349860652 ], [ -101.04127365304808, 34.079984756584778 ], [ -101.567108438065787, 34.060159158000381 ], [ -101.567108438065787, 34.312935539951425 ], [ -101.468875566139403, 34.312935539951425 ], [ -101.191512163053133, 34.312935539951425 ], [ -101.04127365304808, 34.312935539951425 ], [ -101.04127365304808, 34.238589545259941 ], [ -101.04127365304808, 34.174156349860652 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MCADOO", "zip": "79243", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 77981, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.04127365304808, 33.683472784896871 ], [ -101.04127365304808, 33.834642974102884 ], [ -100.84480790919531, 33.834642974102884 ], [ -100.84480790919531, 33.765253379057498 ], [ -101.04127365304808, 33.683472784896871 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MATADOR", "zip": "79244", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35000, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.515438868030358, 34.315413739774471 ], [ -100.515438868030358, 33.963509364901455 ], [ -101.04127365304808, 33.931292767201811 ], [ -101.04127365304808, 34.079984756584778 ], [ -101.04127365304808, 34.174156349860652 ], [ -100.948819185352647, 34.164243550568457 ], [ -101.04127365304808, 34.238589545259941 ], [ -101.04127365304808, 34.312935539951425 ], [ -100.943040781121681, 34.312935539951425 ], [ -100.515438868030358, 34.315413739774471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MEMPHIS", "zip": "79245", "state": "TX", "Sheet1_value": 78, "Sheet1_populaiton": 2262, "Sheet1_income": 31761, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.417205996103974, 34.516147925441473 ], [ -100.596336527263858, 34.583059320663807 ], [ -100.654120569573493, 34.74909870880812 ], [ -100.538552484954209, 34.746620508985075 ], [ -100.417205996103974, 34.746620508985075 ], [ -100.417205996103974, 34.516147925441473 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PADUCAH", "zip": "79248", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34361, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.521217272261325, 33.834642974102884 ], [ -100.515438868030358, 33.963509364901455 ], [ -100.515438868030358, 34.315413739774471 ], [ -100.417205996103974, 34.312935539951425 ], [ -100.370978762256271, 34.312935539951425 ], [ -99.995382487243617, 34.312935539951425 ], [ -99.995382487243617, 34.223720346321642 ], [ -99.995382487243617, 33.834642974102884 ], [ -99.989604083012651, 33.403436204892287 ], [ -99.989604083012651, 33.39847980524619 ], [ -100.34208674110144, 33.39847980524619 ], [ -100.515438868030358, 33.39847980524619 ], [ -100.521217272261325, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PETERSBURG", "zip": "79250", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42132, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.561330033834821, 33.829686574456787 ], [ -101.734682160763739, 33.829686574456787 ], [ -101.763574181918557, 33.990769562954995 ], [ -101.763574181918557, 34.035377159769887 ], [ -101.567108438065787, 34.020507960831594 ], [ -101.561330033834821, 33.829686574456787 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUAIL", "zip": "79251", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.538552484954209, 34.994440491290014 ], [ -100.313194719946623, 34.989484091643916 ], [ -100.353643549563373, 34.843270302083994 ], [ -100.538552484954209, 34.816010104030454 ], [ -100.538552484954209, 34.994440491290014 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUANAH", "zip": "79252", "state": "TX", "Sheet1_value": 134, "Sheet1_populaiton": 3213, "Sheet1_income": 35373, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.614007808, 34.082462956407824 ], [ -99.995382487243617, 34.223720346321642 ], [ -99.995382487243617, 34.312935539951425 ], [ -99.995382487243617, 34.560755522256365 ], [ -99.954933657626867, 34.575624721194657 ], [ -99.84514397723855, 34.506235126149278 ], [ -99.602450999538064, 34.374890535527655 ], [ -99.614007808, 34.082462956407824 ] ] ] } },
{ "type": "Feature", "properties": { "name": "QUITAQUE", "zip": "79255", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 29559, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.04127365304808, 34.312935539951425 ], [ -101.191512163053133, 34.312935539951425 ], [ -101.00082482343133, 34.620232318009549 ], [ -101.179955354591215, 34.625188717655647 ], [ -101.278188226517599, 34.74909870880812 ], [ -101.093279291126748, 34.74909870880812 ], [ -100.943040781121681, 34.74909870880812 ], [ -100.943040781121681, 34.630145117301751 ], [ -100.943040781121681, 34.312935539951425 ], [ -101.04127365304808, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROARING SPRINGS", "zip": "79256", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35208, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.84480790919531, 33.834642974102884 ], [ -101.04127365304808, 33.834642974102884 ], [ -101.04127365304808, 33.931292767201811 ], [ -100.515438868030358, 33.963509364901455 ], [ -100.521217272261325, 33.834642974102884 ], [ -100.625228548418676, 33.834642974102884 ], [ -100.84480790919531, 33.834642974102884 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SILVERTON", "zip": "79257", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39792, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.468875566139403, 34.533495324202818 ], [ -101.468875566139403, 34.652448915709193 ], [ -101.468875566139403, 34.746620508985075 ], [ -101.278188226517599, 34.74909870880812 ], [ -101.179955354591215, 34.625188717655647 ], [ -101.00082482343133, 34.620232318009549 ], [ -101.191512163053133, 34.312935539951425 ], [ -101.468875566139403, 34.312935539951425 ], [ -101.468875566139403, 34.533495324202818 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TELL", "zip": "79259", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 108047, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.417205996103974, 34.312935539951425 ], [ -100.417205996103974, 34.407107133227299 ], [ -100.370978762256271, 34.312935539951425 ], [ -100.417205996103974, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TURKEY", "zip": "79261", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37969, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.515438868030358, 34.315413739774471 ], [ -100.943040781121681, 34.312935539951425 ], [ -100.943040781121681, 34.630145117301751 ], [ -100.596336527263858, 34.583059320663807 ], [ -100.417205996103974, 34.516147925441473 ], [ -100.417205996103974, 34.407107133227299 ], [ -100.417205996103974, 34.312935539951425 ], [ -100.515438868030358, 34.315413739774471 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABERNATHY", "zip": "79311", "state": "TX", "Sheet1_value": 73, "Sheet1_populaiton": 3898, "Sheet1_income": 50690, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.908034287692658, 33.827208374633742 ], [ -102.087164818852543, 33.824730174810689 ], [ -102.087164818852543, 34.025464360477692 ], [ -101.763574181918557, 33.990769562954995 ], [ -101.734682160763739, 33.829686574456787 ], [ -101.752017373456638, 33.829686574456787 ], [ -101.908034287692658, 33.827208374633742 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AMHERST", "zip": "79312", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 37500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.324079392322062, 34.057680958177329 ], [ -102.399198647324596, 33.824730174810689 ], [ -102.549437157329649, 33.824730174810689 ], [ -102.61299960387025, 33.824730174810689 ], [ -102.61299960387025, 33.926336367555713 ], [ -102.61299960387025, 33.98829136313195 ], [ -102.422312264248447, 34.104766754815273 ], [ -102.324079392322062, 34.102288554992221 ], [ -102.324079392322062, 34.057680958177329 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANTON", "zip": "79313", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39097, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.081386414621576, 33.723123982065658 ], [ -102.283630562705312, 33.824730174810689 ], [ -102.087164818852543, 33.824730174810689 ], [ -102.081386414621576, 33.723123982065658 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BROWNFIELD", "zip": "79316", "state": "TX", "Sheet1_value": 275, "Sheet1_populaiton": 11120, "Sheet1_income": 36667, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.468539498096163, 32.959838436566443 ], [ -102.595664391177365, 32.959838436566443 ], [ -102.595664391177365, 33.096139426834156 ], [ -102.595664391177365, 33.269613414447619 ], [ -102.07560801039061, 33.269613414447619 ], [ -102.07560801039061, 33.066401028957564 ], [ -102.07560801039061, 32.959838436566443 ], [ -102.208511307702778, 32.959838436566443 ], [ -102.347193009245913, 32.959838436566443 ], [ -102.468539498096163, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BULA", "zip": "79320", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.61299960387025, 33.824730174810689 ], [ -102.705454071565669, 33.824730174810689 ], [ -102.705454071565669, 33.871815971448626 ], [ -102.61299960387025, 33.926336367555713 ], [ -102.61299960387025, 33.824730174810689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CROSBYTON", "zip": "79322", "state": "TX", "Sheet1_value": 72, "Sheet1_populaiton": 2077, "Sheet1_income": 39420, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.04127365304808, 33.63143058861283 ], [ -101.04127365304808, 33.396001605423137 ], [ -101.203068971515066, 33.396001605423137 ], [ -101.335972268827234, 33.832164774279832 ], [ -101.04127365304808, 33.834642974102884 ], [ -101.04127365304808, 33.683472784896871 ], [ -101.04127365304808, 33.63143058861283 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DENVER CITY", "zip": "79323", "state": "TX", "Sheet1_value": 139, "Sheet1_populaiton": 6192, "Sheet1_income": 54697, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.595664391177365, 32.959838436566443 ], [ -102.821022156184952, 32.959838436566443 ], [ -103.063715133885438, 32.959838436566443 ], [ -103.063715133885438, 33.066401028957564 ], [ -102.595664391177365, 33.096139426834156 ], [ -102.595664391177365, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ENOCHS", "zip": "79324", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.705454071565669, 33.824730174810689 ], [ -102.826800560415919, 33.824730174810689 ], [ -102.826800560415919, 33.874294171271679 ], [ -102.705454071565669, 33.871815971448626 ], [ -102.705454071565669, 33.824730174810689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FARWELL", "zip": "79325", "state": "TX", "Sheet1_value": 52, "Sheet1_populaiton": 2345, "Sheet1_income": 44559, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.740124496951452, 34.312935539951425 ], [ -103.046379921192539, 34.312935539951425 ], [ -103.046379921192539, 34.466583928980484 ], [ -102.745902901182419, 34.466583928980484 ], [ -102.740124496951452, 34.312935539951425 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FIELDTON", "zip": "79326", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.220068116164711, 34.057680958177329 ], [ -102.324079392322062, 34.057680958177329 ], [ -102.324079392322062, 34.102288554992221 ], [ -102.31252258386013, 34.134505152691865 ], [ -102.220068116164711, 34.057680958177329 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IDALOU", "zip": "79329", "state": "TX", "Sheet1_value": 65, "Sheet1_populaiton": 3552, "Sheet1_income": 62472, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.728903756532773, 33.549649994452203 ], [ -101.752017373456638, 33.829686574456787 ], [ -101.734682160763739, 33.829686574456787 ], [ -101.561330033834821, 33.829686574456787 ], [ -101.555551629603855, 33.455478401176322 ], [ -101.676898118454105, 33.542215394983053 ], [ -101.688454926916023, 33.544693594806105 ], [ -101.728903756532773, 33.549649994452203 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAMESA", "zip": "79331", "state": "TX", "Sheet1_value": 322, "Sheet1_populaiton": 13195, "Sheet1_income": 39847, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.688454926916023, 32.751669651430291 ], [ -101.948483117309408, 32.689714655854054 ], [ -101.896477479230725, 32.523675267709748 ], [ -102.202732903471812, 32.523675267709748 ], [ -102.202732903471812, 32.702105654969301 ], [ -101.965818330002293, 32.796277248245183 ], [ -102.017823968080975, 32.959838436566443 ], [ -101.694233331146989, 32.962316636389488 ], [ -101.688454926916023, 32.751669651430291 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LEVELLAND", "zip": "79336", "state": "TX", "Sheet1_value": 389, "Sheet1_populaiton": 16941, "Sheet1_income": 50843, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.081386414621576, 33.581866592151847 ], [ -102.081386414621576, 33.549649994452203 ], [ -102.318300988091096, 33.388567005953988 ], [ -102.595664391177365, 33.388567005953988 ], [ -102.607221199639284, 33.656212586843324 ], [ -102.61299960387025, 33.765253379057498 ], [ -102.549437157329649, 33.824730174810689 ], [ -102.399198647324596, 33.824730174810689 ], [ -102.283630562705312, 33.824730174810689 ], [ -102.081386414621576, 33.723123982065658 ], [ -102.081386414621576, 33.636386988258934 ], [ -102.081386414621576, 33.581866592151847 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LITTLEFIELD", "zip": "79339", "state": "TX", "Sheet1_value": 318, "Sheet1_populaiton": 7170, "Sheet1_income": 35487, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.399198647324596, 33.824730174810689 ], [ -102.324079392322062, 34.057680958177329 ], [ -102.220068116164711, 34.057680958177329 ], [ -102.087164818852543, 34.040333559415984 ], [ -102.087164818852543, 34.025464360477692 ], [ -102.087164818852543, 33.824730174810689 ], [ -102.283630562705312, 33.824730174810689 ], [ -102.399198647324596, 33.824730174810689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LOOP", "zip": "79342", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 61250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.347193009245913, 32.959838436566443 ], [ -102.341414605014947, 32.858232243821419 ], [ -102.468539498096163, 32.858232243821419 ], [ -102.468539498096163, 32.959838436566443 ], [ -102.347193009245913, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LORENZO", "zip": "79343", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42188, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.387977906905917, 33.396001605423137 ], [ -101.555551629603855, 33.396001605423137 ], [ -101.555551629603855, 33.455478401176322 ], [ -101.561330033834821, 33.829686574456787 ], [ -101.468875566139403, 33.832164774279832 ], [ -101.387977906905917, 33.396001605423137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MAPLE", "zip": "79344", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 30481, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.826800560415919, 33.824730174810689 ], [ -103.046379921192539, 33.824730174810689 ], [ -103.046379921192539, 33.879250570917776 ], [ -103.046379921192539, 33.901554369325218 ], [ -102.826800560415919, 33.874294171271679 ], [ -102.826800560415919, 33.824730174810689 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MEADOW", "zip": "79345", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 53281, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.07560801039061, 33.388567005953988 ], [ -102.07560801039061, 33.269613414447619 ], [ -102.595664391177365, 33.269613414447619 ], [ -102.595664391177365, 33.388567005953988 ], [ -102.318300988091096, 33.388567005953988 ], [ -102.07560801039061, 33.388567005953988 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MORTON", "zip": "79346", "state": "TX", "Sheet1_value": 55, "Sheet1_populaiton": 2387, "Sheet1_income": 37115, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.057936729654472, 33.388567005953988 ], [ -103.052158325423505, 33.571953792859645 ], [ -103.052158325423505, 33.73303678135786 ], [ -103.046379921192539, 33.824730174810689 ], [ -102.826800560415919, 33.824730174810689 ], [ -102.705454071565669, 33.824730174810689 ], [ -102.61299960387025, 33.824730174810689 ], [ -102.61299960387025, 33.765253379057498 ], [ -102.607221199639284, 33.656212586843324 ], [ -102.815243751953986, 33.601692190736244 ], [ -102.821022156184952, 33.388567005953988 ], [ -103.057936729654472, 33.388567005953988 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MULESHOE", "zip": "79347", "state": "TX", "Sheet1_value": 271, "Sheet1_populaiton": 7338, "Sheet1_income": 46406, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.705454071565669, 33.871815971448626 ], [ -102.826800560415919, 33.874294171271679 ], [ -103.046379921192539, 33.901554369325218 ], [ -103.046379921192539, 34.112201354284423 ], [ -103.046379921192539, 34.303022740659223 ], [ -103.046379921192539, 34.312935539951425 ], [ -102.740124496951452, 34.312935539951425 ], [ -102.61299960387025, 34.312935539951425 ], [ -102.61299960387025, 34.233633145613844 ], [ -102.61299960387025, 33.98829136313195 ], [ -102.61299960387025, 33.926336367555713 ], [ -102.705454071565669, 33.871815971448626 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ODONNELL", "zip": "79351", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 33274, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.017823968080975, 32.959838436566443 ], [ -102.07560801039061, 32.959838436566443 ], [ -102.07560801039061, 33.066401028957564 ], [ -101.555551629603855, 33.054010029842317 ], [ -101.555551629603855, 32.959838436566443 ], [ -101.694233331146989, 32.962316636389488 ], [ -102.017823968080975, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PEP", "zip": "79353", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.61299960387025, 33.765253379057498 ], [ -102.61299960387025, 33.824730174810689 ], [ -102.549437157329649, 33.824730174810689 ], [ -102.61299960387025, 33.765253379057498 ] ] ] } },
{ "type": "Feature", "properties": { "name": "PLAINS", "zip": "79355", "state": "TX", "Sheet1_value": 71, "Sheet1_populaiton": 2340, "Sheet1_income": 45640, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.595664391177365, 33.096139426834156 ], [ -103.063715133885438, 33.066401028957564 ], [ -103.063715133885438, 33.140747023649048 ], [ -103.057936729654472, 33.388567005953988 ], [ -102.821022156184952, 33.388567005953988 ], [ -102.595664391177365, 33.388567005953988 ], [ -102.595664391177365, 33.269613414447619 ], [ -102.595664391177365, 33.096139426834156 ] ] ] } },
{ "type": "Feature", "properties": { "name": "POST", "zip": "79356", "state": "TX", "Sheet1_value": 126, "Sheet1_populaiton": 6157, "Sheet1_income": 47627, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.093279291126748, 32.967273036035593 ], [ -101.439983544984585, 32.962316636389488 ], [ -101.555551629603855, 32.959838436566443 ], [ -101.555551629603855, 33.054010029842317 ], [ -101.555551629603855, 33.239875016571027 ], [ -101.555551629603855, 33.396001605423137 ], [ -101.387977906905917, 33.396001605423137 ], [ -101.203068971515066, 33.396001605423137 ], [ -101.04127365304808, 33.396001605423137 ], [ -101.093279291126748, 32.967273036035593 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RALLS", "zip": "79357", "state": "TX", "Sheet1_value": 77, "Sheet1_populaiton": 2480, "Sheet1_income": 34688, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.387977906905917, 33.396001605423137 ], [ -101.468875566139403, 33.832164774279832 ], [ -101.335972268827234, 33.832164774279832 ], [ -101.203068971515066, 33.396001605423137 ], [ -101.387977906905917, 33.396001605423137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROPESVILLE", "zip": "79358", "state": "TX", "Sheet1_value": 60, "Sheet1_populaiton": 1112, "Sheet1_income": 50809, "Sheet1_percent": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.318300988091096, 33.388567005953988 ], [ -102.081386414621576, 33.549649994452203 ], [ -102.081386414621576, 33.537258995336956 ], [ -102.07560801039061, 33.467869400291576 ], [ -102.07560801039061, 33.388567005953988 ], [ -102.318300988091096, 33.388567005953988 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEAGRAVES", "zip": "79359", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48042, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.347193009245913, 32.959838436566443 ], [ -102.208511307702778, 32.959838436566443 ], [ -102.202732903471812, 32.702105654969301 ], [ -102.722789284258567, 32.811146447183475 ], [ -102.821022156184952, 32.959838436566443 ], [ -102.595664391177365, 32.959838436566443 ], [ -102.468539498096163, 32.959838436566443 ], [ -102.468539498096163, 32.858232243821419 ], [ -102.341414605014947, 32.858232243821419 ], [ -102.347193009245913, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SEMINOLE", "zip": "79360", "state": "TX", "Sheet1_value": 242, "Sheet1_populaiton": 13914, "Sheet1_income": 52864, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.202732903471812, 32.523675267709748 ], [ -102.208511307702778, 32.523675267709748 ], [ -103.063715133885438, 32.521197067886696 ], [ -103.063715133885438, 32.563326464878536 ], [ -103.063715133885438, 32.754147851253343 ], [ -103.063715133885438, 32.900361640813259 ], [ -103.063715133885438, 32.959838436566443 ], [ -102.821022156184952, 32.959838436566443 ], [ -102.722789284258567, 32.811146447183475 ], [ -102.202732903471812, 32.702105654969301 ], [ -102.202732903471812, 32.523675267709748 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SHALLOWATER", "zip": "79363", "state": "TX", "Sheet1_value": 126, "Sheet1_populaiton": 5182, "Sheet1_income": 54601, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.908034287692658, 33.693385584189073 ], [ -101.925369500385557, 33.636386988258934 ], [ -102.081386414621576, 33.636386988258934 ], [ -102.081386414621576, 33.723123982065658 ], [ -102.087164818852543, 33.824730174810689 ], [ -101.908034287692658, 33.827208374633742 ], [ -101.908034287692658, 33.693385584189073 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SLATON", "zip": "79364", "state": "TX", "Sheet1_value": 219, "Sheet1_populaiton": 8234, "Sheet1_income": 40284, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.555551629603855, 33.396001605423137 ], [ -101.775130990380489, 33.393523405600092 ], [ -101.728903756532773, 33.549649994452203 ], [ -101.688454926916023, 33.544693594806105 ], [ -101.676898118454105, 33.542215394983053 ], [ -101.555551629603855, 33.455478401176322 ], [ -101.555551629603855, 33.396001605423137 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SPUR", "zip": "79370", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36208, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.787023866885662, 33.39847980524619 ], [ -101.04127365304808, 33.396001605423137 ], [ -101.04127365304808, 33.63143058861283 ], [ -100.619450144187709, 33.512476997106461 ], [ -100.573222910340007, 33.39847980524619 ], [ -100.579001314570974, 33.39847980524619 ], [ -100.787023866885662, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SUDAN", "zip": "79371", "state": "TX", "Sheet1_value": 51, "Sheet1_populaiton": 1415, "Sheet1_income": 37235, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.61299960387025, 33.98829136313195 ], [ -102.61299960387025, 34.233633145613844 ], [ -102.416533860017481, 34.201416547914199 ], [ -102.422312264248447, 34.104766754815273 ], [ -102.61299960387025, 33.98829136313195 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TAHOKA", "zip": "79373", "state": "TX", "Sheet1_value": 86, "Sheet1_populaiton": 3356, "Sheet1_income": 46875, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.07560801039061, 33.269613414447619 ], [ -102.07560801039061, 33.388567005953988 ], [ -101.896477479230725, 33.39104520577704 ], [ -101.809801415766273, 33.393523405600092 ], [ -101.555551629603855, 33.239875016571027 ], [ -101.555551629603855, 33.054010029842317 ], [ -102.07560801039061, 33.066401028957564 ], [ -102.07560801039061, 33.269613414447619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WELCH", "zip": "79377", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42292, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.202732903471812, 32.702105654969301 ], [ -102.208511307702778, 32.959838436566443 ], [ -102.07560801039061, 32.959838436566443 ], [ -102.017823968080975, 32.959838436566443 ], [ -101.965818330002293, 32.796277248245183 ], [ -102.202732903471812, 32.702105654969301 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WHITEFACE", "zip": "79379", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 42778, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.607221199639284, 33.656212586843324 ], [ -102.595664391177365, 33.388567005953988 ], [ -102.821022156184952, 33.388567005953988 ], [ -102.815243751953986, 33.601692190736244 ], [ -102.607221199639284, 33.656212586843324 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WILSON", "zip": "79381", "state": "TX", "Sheet1_value": 55, "Sheet1_populaiton": 1263, "Sheet1_income": 45789, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.555551629603855, 33.239875016571027 ], [ -101.809801415766273, 33.393523405600092 ], [ -101.775130990380489, 33.393523405600092 ], [ -101.555551629603855, 33.396001605423137 ], [ -101.555551629603855, 33.239875016571027 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WOLFFORTH", "zip": "79382", "state": "TX", "Sheet1_value": 238, "Sheet1_populaiton": 6052, "Sheet1_income": 61563, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.988931946926158, 33.522389796398656 ], [ -102.07560801039061, 33.467869400291576 ], [ -102.081386414621576, 33.537258995336956 ], [ -101.988931946926158, 33.522389796398656 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79401", "state": "TX", "Sheet1_value": 142, "Sheet1_populaiton": 7092, "Sheet1_income": 13450, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.844471841152057, 33.57691019250575 ], [ -101.85602864961399, 33.57691019250575 ], [ -101.873363862306874, 33.57691019250575 ], [ -101.873363862306874, 33.591779391444042 ], [ -101.85602864961399, 33.601692190736244 ], [ -101.838693436921091, 33.57691019250575 ], [ -101.844471841152057, 33.57691019250575 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79403", "state": "TX", "Sheet1_value": 430, "Sheet1_populaiton": 17888, "Sheet1_income": 33554, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.85602864961399, 33.601692190736244 ], [ -101.908034287692658, 33.693385584189073 ], [ -101.908034287692658, 33.827208374633742 ], [ -101.752017373456638, 33.829686574456787 ], [ -101.728903756532773, 33.549649994452203 ], [ -101.838693436921091, 33.57691019250575 ], [ -101.85602864961399, 33.601692190736244 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79404", "state": "TX", "Sheet1_value": 300, "Sheet1_populaiton": 10947, "Sheet1_income": 27434, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.809801415766273, 33.393523405600092 ], [ -101.896477479230725, 33.39104520577704 ], [ -101.896477479230725, 33.423261803476684 ], [ -101.844471841152057, 33.529824395867806 ], [ -101.844471841152057, 33.56204099356745 ], [ -101.844471841152057, 33.57691019250575 ], [ -101.838693436921091, 33.57691019250575 ], [ -101.728903756532773, 33.549649994452203 ], [ -101.775130990380489, 33.393523405600092 ], [ -101.809801415766273, 33.393523405600092 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79405", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.85602864961399, 33.56204099356745 ], [ -101.85602864961399, 33.57691019250575 ], [ -101.844471841152057, 33.57691019250575 ], [ -101.844471841152057, 33.56204099356745 ], [ -101.85602864961399, 33.56204099356745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79407", "state": "TX", "Sheet1_value": 588, "Sheet1_populaiton": 17485, "Sheet1_income": 40221, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.081386414621576, 33.549649994452203 ], [ -102.081386414621576, 33.581866592151847 ], [ -101.902255883461692, 33.57691019250575 ], [ -101.919591096154591, 33.564519193390495 ], [ -101.936926308847475, 33.552128194275255 ], [ -101.988931946926158, 33.522389796398656 ], [ -102.081386414621576, 33.537258995336956 ], [ -102.081386414621576, 33.549649994452203 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79409", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": null, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.873363862306874, 33.57691019250575 ], [ -101.902255883461692, 33.57691019250575 ], [ -101.896477479230725, 33.579388392328795 ], [ -101.873363862306874, 33.591779391444042 ], [ -101.873363862306874, 33.57691019250575 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79410", "state": "TX", "Sheet1_value": 243, "Sheet1_populaiton": 8863, "Sheet1_income": 36715, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.873363862306874, 33.57691019250575 ], [ -101.867585458075908, 33.56204099356745 ], [ -101.908034287692658, 33.56204099356745 ], [ -101.919591096154591, 33.564519193390495 ], [ -101.902255883461692, 33.57691019250575 ], [ -101.873363862306874, 33.57691019250575 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79411", "state": "TX", "Sheet1_value": 257, "Sheet1_populaiton": 9178, "Sheet1_income": 24244, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.85602864961399, 33.56204099356745 ], [ -101.867585458075908, 33.56204099356745 ], [ -101.873363862306874, 33.57691019250575 ], [ -101.85602864961399, 33.57691019250575 ], [ -101.85602864961399, 33.56204099356745 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79412", "state": "TX", "Sheet1_value": 577, "Sheet1_populaiton": 16052, "Sheet1_income": 33317, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.867585458075908, 33.529824395867806 ], [ -101.867585458075908, 33.56204099356745 ], [ -101.85602864961399, 33.56204099356745 ], [ -101.844471841152057, 33.56204099356745 ], [ -101.844471841152057, 33.529824395867806 ], [ -101.867585458075908, 33.529824395867806 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79413", "state": "TX", "Sheet1_value": 670, "Sheet1_populaiton": 20967, "Sheet1_income": 49384, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.867585458075908, 33.529824395867806 ], [ -101.908034287692658, 33.529824395867806 ], [ -101.908034287692658, 33.56204099356745 ], [ -101.867585458075908, 33.56204099356745 ], [ -101.867585458075908, 33.529824395867806 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79414", "state": "TX", "Sheet1_value": 582, "Sheet1_populaiton": 18259, "Sheet1_income": 34504, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.908034287692658, 33.529824395867806 ], [ -101.936926308847475, 33.552128194275255 ], [ -101.919591096154591, 33.564519193390495 ], [ -101.908034287692658, 33.56204099356745 ], [ -101.908034287692658, 33.529824395867806 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79415", "state": "TX", "Sheet1_value": 488, "Sheet1_populaiton": 17406, "Sheet1_income": 27270, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.896477479230725, 33.579388392328795 ], [ -101.925369500385557, 33.636386988258934 ], [ -101.908034287692658, 33.693385584189073 ], [ -101.85602864961399, 33.601692190736244 ], [ -101.873363862306874, 33.591779391444042 ], [ -101.896477479230725, 33.579388392328795 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79416", "state": "TX", "Sheet1_value": 910, "Sheet1_populaiton": 32772, "Sheet1_income": 45937, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.902255883461692, 33.57691019250575 ], [ -102.081386414621576, 33.581866592151847 ], [ -102.081386414621576, 33.636386988258934 ], [ -101.925369500385557, 33.636386988258934 ], [ -101.896477479230725, 33.579388392328795 ], [ -101.902255883461692, 33.57691019250575 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79423", "state": "TX", "Sheet1_value": 1085, "Sheet1_populaiton": 33809, "Sheet1_income": 54784, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.896477479230725, 33.423261803476684 ], [ -101.908034287692658, 33.529824395867806 ], [ -101.867585458075908, 33.529824395867806 ], [ -101.844471841152057, 33.529824395867806 ], [ -101.896477479230725, 33.423261803476684 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUBBOCK", "zip": "79424", "state": "TX", "Sheet1_value": 1429, "Sheet1_populaiton": 40114, "Sheet1_income": 75921, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.896477479230725, 33.39104520577704 ], [ -102.07560801039061, 33.388567005953988 ], [ -102.07560801039061, 33.467869400291576 ], [ -101.988931946926158, 33.522389796398656 ], [ -101.936926308847475, 33.552128194275255 ], [ -101.908034287692658, 33.529824395867806 ], [ -101.896477479230725, 33.423261803476684 ], [ -101.896477479230725, 33.39104520577704 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANSON", "zip": "79501", "state": "TX", "Sheet1_value": 99, "Sheet1_populaiton": 3126, "Sheet1_income": 41757, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.070501742246137, 32.674845456915762 ], [ -100.082058550708069, 32.759104250899441 ], [ -99.954933657626867, 32.865666843290562 ], [ -99.764246318005064, 32.838406645237022 ], [ -99.712240679926381, 32.80866824736043 ], [ -99.712240679926381, 32.731844052845894 ], [ -99.729575892619266, 32.707062054615399 ], [ -99.978047274550718, 32.662454457800514 ], [ -100.070501742246137, 32.674845456915762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ASPERMONT", "zip": "79502", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41190, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.318973124177589, 32.962316636389488 ], [ -100.521217272261325, 32.962316636389488 ], [ -100.515438868030358, 33.135790624002951 ], [ -100.515438868030358, 33.39847980524619 ], [ -100.34208674110144, 33.39847980524619 ], [ -100.313194719946623, 33.207658418871382 ], [ -99.989604083012651, 33.083748427718916 ], [ -99.989604083012651, 32.959838436566443 ], [ -100.318973124177589, 32.962316636389488 ] ] ] } },
{ "type": "Feature", "properties": { "name": "AVOCA", "zip": "79503", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 55326, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.764246318005064, 32.838406645237022 ], [ -99.741132701081199, 32.957360236743391 ], [ -99.625564616461929, 32.957360236743391 ], [ -99.712240679926381, 32.80866824736043 ], [ -99.764246318005064, 32.838406645237022 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BAIRD", "zip": "79504", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 2933, "Sheet1_income": 41406, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.417542064147227, 32.206465690359423 ], [ -99.394428447223362, 32.516240668240599 ], [ -99.342422809144693, 32.516240668240599 ], [ -99.117065044137107, 32.516240668240599 ], [ -99.117065044137107, 32.251073287174307 ], [ -99.38865004299241, 32.288246284520049 ], [ -99.417542064147227, 32.206465690359423 ] ] ] } },
{ "type": "Feature", "properties": { "name": "BLACKWELL", "zip": "79506", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 39500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.151399401479637, 32.179205492305876 ], [ -100.238075464944103, 32.057773700976455 ], [ -100.521217272261325, 32.030513502922915 ], [ -100.538552484954209, 32.082555699206949 ], [ -100.411427591873007, 32.082555699206949 ], [ -100.446098017258791, 32.21142209000552 ], [ -100.359421953794339, 32.241160487882112 ], [ -100.324751528408555, 32.25355148699736 ], [ -100.278524294560839, 32.251073287174307 ], [ -100.151399401479637, 32.228769488766865 ], [ -100.151399401479637, 32.179205492305876 ] ] ] } },
{ "type": "Feature", "properties": { "name": "CLYDE", "zip": "79510", "state": "TX", "Sheet1_value": 200, "Sheet1_populaiton": 7973, "Sheet1_income": 46555, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.573558978383247, 32.080077499383897 ], [ -99.631343020692896, 32.080077499383897 ], [ -99.631343020692896, 32.144510694783186 ], [ -99.631343020692896, 32.21142209000552 ], [ -99.631343020692896, 32.429503674433867 ], [ -99.562002169921328, 32.513762468417546 ], [ -99.394428447223362, 32.516240668240599 ], [ -99.417542064147227, 32.206465690359423 ], [ -99.423320468378193, 32.080077499383897 ], [ -99.573558978383247, 32.080077499383897 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COAHOMA", "zip": "79511", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 62500, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.174176950360248, 32.528631667355846 ], [ -101.179955354591215, 32.213900289828565 ], [ -101.359085885751085, 32.268420685935652 ], [ -101.2608530138247, 32.523675267709748 ], [ -101.359085885751085, 32.523675267709748 ], [ -101.226182588438917, 32.59554306257818 ], [ -101.174176950360248, 32.528631667355846 ] ] ] } },
{ "type": "Feature", "properties": { "name": "COLORADO CITY", "zip": "79512", "state": "TX", "Sheet1_value": 140, "Sheet1_populaiton": 8171, "Sheet1_income": 47954, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.781245462654709, 32.526153467532794 ], [ -100.758131845730844, 32.392330677088125 ], [ -100.873699930350128, 32.278333485227854 ], [ -101.029716844586147, 32.528631667355846 ], [ -100.971932802276513, 32.526153467532794 ], [ -100.867921526119162, 32.526153467532794 ], [ -100.781245462654709, 32.526153467532794 ] ] ] } },
{ "type": "Feature", "properties": { "name": "FLUVANNA", "zip": "79517", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 76875, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.174176950360248, 32.707062054615399 ], [ -101.214625779976984, 32.749191451607246 ], [ -101.439983544984585, 32.962316636389488 ], [ -101.093279291126748, 32.967273036035593 ], [ -101.052830461509998, 32.714496654084549 ], [ -101.174176950360248, 32.707062054615399 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GIRARD", "zip": "79518", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 52917, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.706126207652176, 33.311742811439458 ], [ -100.787023866885662, 33.39847980524619 ], [ -100.579001314570974, 33.39847980524619 ], [ -100.706126207652176, 33.311742811439458 ] ] ] } },
{ "type": "Feature", "properties": { "name": "GOLDSBORO", "zip": "79519", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 43750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.712240679926381, 32.015644303984615 ], [ -99.735354296850232, 32.082555699206949 ], [ -99.631343020692896, 32.080077499383897 ], [ -99.573558978383247, 32.080077499383897 ], [ -99.712240679926381, 32.015644303984615 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HAMLIN", "zip": "79520", "state": "TX", "Sheet1_value": 91, "Sheet1_populaiton": 2254, "Sheet1_income": 33864, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.082058550708069, 32.759104250899441 ], [ -100.14562099724867, 32.754147851253343 ], [ -100.14562099724867, 32.840884845060074 ], [ -100.313194719946623, 32.845841244706165 ], [ -100.318973124177589, 32.962316636389488 ], [ -99.989604083012651, 32.959838436566443 ], [ -99.949155253395901, 32.959838436566443 ], [ -99.954933657626867, 32.865666843290562 ], [ -100.082058550708069, 32.759104250899441 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HASKELL", "zip": "79521", "state": "TX", "Sheet1_value": 147, "Sheet1_populaiton": 3737, "Sheet1_income": 39479, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.469547702225896, 33.091183027188059 ], [ -99.735354296850232, 33.034184431257927 ], [ -99.839365573007584, 33.096139426834156 ], [ -99.8046951476218, 33.262178814978469 ], [ -99.723797488388314, 33.252266015686274 ], [ -99.469547702225896, 33.321655610731653 ], [ -99.469547702225896, 33.091183027188059 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HAWLEY", "zip": "79525", "state": "TX", "Sheet1_value": 94, "Sheet1_populaiton": 2409, "Sheet1_income": 38787, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.770024722236016, 32.521197067886696 ], [ -99.798916743390834, 32.521197067886696 ], [ -99.978047274550718, 32.662454457800514 ], [ -99.729575892619266, 32.707062054615399 ], [ -99.770024722236016, 32.521197067886696 ] ] ] } },
{ "type": "Feature", "properties": { "name": "HERMLEIGH", "zip": "79526", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 71250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.867921526119162, 32.526153467532794 ], [ -100.91992716419783, 32.602977662047323 ], [ -100.659898973804459, 32.736800452491991 ], [ -100.659898973804459, 32.734322252668946 ], [ -100.659898973804459, 32.573239264170731 ], [ -100.659898973804459, 32.526153467532794 ], [ -100.781245462654709, 32.526153467532794 ], [ -100.867921526119162, 32.526153467532794 ] ] ] } },
{ "type": "Feature", "properties": { "name": "IRA", "zip": "79527", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 50688, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.226182588438917, 32.59554306257818 ], [ -101.214625779976984, 32.749191451607246 ], [ -101.174176950360248, 32.707062054615399 ], [ -100.971932802276513, 32.526153467532794 ], [ -101.029716844586147, 32.528631667355846 ], [ -101.174176950360248, 32.528631667355846 ], [ -101.226182588438917, 32.59554306257818 ] ] ] } },
{ "type": "Feature", "properties": { "name": "JAYTON", "zip": "79528", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 45446, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.515438868030358, 33.135790624002951 ], [ -100.706126207652176, 33.311742811439458 ], [ -100.579001314570974, 33.39847980524619 ], [ -100.573222910340007, 33.39847980524619 ], [ -100.515438868030358, 33.39847980524619 ], [ -100.515438868030358, 33.135790624002951 ] ] ] } },
{ "type": "Feature", "properties": { "name": "KNOX CITY", "zip": "79529", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 36979, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.718019084157348, 33.39847980524619 ], [ -99.989604083012651, 33.39847980524619 ], [ -99.989604083012651, 33.403436204892287 ], [ -99.781581530697949, 33.495129598345116 ], [ -99.718019084157348, 33.39847980524619 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LAWN", "zip": "79530", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44792, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.631343020692896, 32.080077499383897 ], [ -99.735354296850232, 32.082555699206949 ], [ -99.868257594162401, 32.127163296021841 ], [ -99.631343020692896, 32.144510694783186 ], [ -99.631343020692896, 32.080077499383897 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LORAINE", "zip": "79532", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 27131, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.665677378035426, 32.278333485227854 ], [ -100.665677378035426, 32.085033899029995 ], [ -100.700347803421209, 32.085033899029995 ], [ -100.792802271116628, 32.087512098853047 ], [ -100.873699930350128, 32.278333485227854 ], [ -100.758131845730844, 32.392330677088125 ], [ -100.781245462654709, 32.526153467532794 ], [ -100.659898973804459, 32.526153467532794 ], [ -100.665677378035426, 32.278333485227854 ] ] ] } },
{ "type": "Feature", "properties": { "name": "LUEDERS", "zip": "79533", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41786, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.614007808, 32.677323656738807 ], [ -99.712240679926381, 32.731844052845894 ], [ -99.712240679926381, 32.80866824736043 ], [ -99.625564616461929, 32.957360236743391 ], [ -99.562002169921328, 32.957360236743391 ], [ -99.614007808, 32.677323656738807 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MC CAULLEY", "zip": "79534", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 26250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.14562099724867, 32.754147851253343 ], [ -100.301637911484704, 32.761582450722486 ], [ -100.301637911484704, 32.813624647006527 ], [ -100.313194719946623, 32.845841244706165 ], [ -100.14562099724867, 32.840884845060074 ], [ -100.14562099724867, 32.754147851253343 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MARYNEAL", "zip": "79535", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38333, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.596336527263858, 32.085033899029995 ], [ -100.665677378035426, 32.085033899029995 ], [ -100.665677378035426, 32.278333485227854 ], [ -100.359421953794339, 32.241160487882112 ], [ -100.446098017258791, 32.21142209000552 ], [ -100.411427591873007, 32.082555699206949 ], [ -100.538552484954209, 32.082555699206949 ], [ -100.596336527263858, 32.085033899029995 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MERKEL", "zip": "79536", "state": "TX", "Sheet1_value": 138, "Sheet1_populaiton": 4190, "Sheet1_income": 45054, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.151399401479637, 32.377461478149826 ], [ -100.14562099724867, 32.464198471956557 ], [ -100.053166529553252, 32.476589471071804 ], [ -100.14562099724867, 32.523675267709748 ], [ -100.14562099724867, 32.642628859216117 ], [ -100.070501742246137, 32.674845456915762 ], [ -99.978047274550718, 32.662454457800514 ], [ -99.798916743390834, 32.521197067886696 ], [ -99.874035998393367, 32.45924207231046 ], [ -99.914484828010117, 32.412156275672523 ], [ -99.995382487243617, 32.295680883989199 ], [ -100.151399401479637, 32.280811685050899 ], [ -100.151399401479637, 32.377461478149826 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NOLAN", "zip": "79537", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46563, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.151399401479637, 32.280811685050899 ], [ -100.151399401479637, 32.228769488766865 ], [ -100.278524294560839, 32.251073287174307 ], [ -100.272745890329873, 32.370026878680683 ], [ -100.151399401479637, 32.377461478149826 ], [ -100.151399401479637, 32.280811685050899 ] ] ] } },
{ "type": "Feature", "properties": { "name": "NOVICE", "zip": "79538", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46250, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.718019084157348, 31.899168912301292 ], [ -99.712240679926381, 32.015644303984615 ], [ -99.573558978383247, 32.080077499383897 ], [ -99.423320468378193, 32.080077499383897 ], [ -99.417542064147227, 31.983427706284971 ], [ -99.694905467233497, 31.894212512655194 ], [ -99.718019084157348, 31.899168912301292 ] ] ] } },
{ "type": "Feature", "properties": { "name": "O BRIEN", "zip": "79539", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 34821, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.723797488388314, 33.321655610731653 ], [ -99.989604083012651, 33.314221011262511 ], [ -99.989604083012651, 33.39847980524619 ], [ -99.718019084157348, 33.39847980524619 ], [ -99.723797488388314, 33.321655610731653 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OLD GLORY", "zip": "79540", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 116563, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.989604083012651, 33.274569814093717 ], [ -99.989604083012651, 33.091183027188059 ], [ -99.989604083012651, 33.083748427718916 ], [ -100.313194719946623, 33.207658418871382 ], [ -100.34208674110144, 33.39847980524619 ], [ -99.989604083012651, 33.39847980524619 ], [ -99.989604083012651, 33.314221011262511 ], [ -99.989604083012651, 33.274569814093717 ] ] ] } },
{ "type": "Feature", "properties": { "name": "OVALO", "zip": "79541", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 58833, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.868257594162401, 32.127163296021841 ], [ -99.943376849164935, 32.099903097968294 ], [ -100.012717699936502, 32.134597895490984 ], [ -99.931820040703002, 32.231247688589917 ], [ -99.706462275695415, 32.20398749053637 ], [ -99.631343020692896, 32.21142209000552 ], [ -99.631343020692896, 32.144510694783186 ], [ -99.868257594162401, 32.127163296021841 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROBY", "zip": "79543", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46667, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.659898973804459, 32.734322252668946 ], [ -100.301637911484704, 32.813624647006527 ], [ -100.301637911484704, 32.761582450722486 ], [ -100.249632273406021, 32.682280056384911 ], [ -100.498103655337474, 32.560848265055483 ], [ -100.659898973804459, 32.573239264170731 ], [ -100.659898973804459, 32.734322252668946 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROCHESTER", "zip": "79544", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35417, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.723797488388314, 33.252266015686274 ], [ -99.8046951476218, 33.262178814978469 ], [ -99.989604083012651, 33.274569814093717 ], [ -99.989604083012651, 33.314221011262511 ], [ -99.723797488388314, 33.321655610731653 ], [ -99.723797488388314, 33.252266015686274 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROSCOE", "zip": "79545", "state": "TX", "Sheet1_value": 54, "Sheet1_populaiton": 1760, "Sheet1_income": 44188, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.498103655337474, 32.560848265055483 ], [ -100.324751528408555, 32.25355148699736 ], [ -100.359421953794339, 32.241160487882112 ], [ -100.665677378035426, 32.278333485227854 ], [ -100.659898973804459, 32.526153467532794 ], [ -100.659898973804459, 32.573239264170731 ], [ -100.498103655337474, 32.560848265055483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ROTAN", "zip": "79546", "state": "TX", "Sheet1_value": 60, "Sheet1_populaiton": 1932, "Sheet1_income": 36250, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.659898973804459, 32.736800452491991 ], [ -100.654120569573493, 32.962316636389488 ], [ -100.521217272261325, 32.962316636389488 ], [ -100.318973124177589, 32.962316636389488 ], [ -100.313194719946623, 32.845841244706165 ], [ -100.301637911484704, 32.813624647006527 ], [ -100.659898973804459, 32.734322252668946 ], [ -100.659898973804459, 32.736800452491991 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RULE", "zip": "79547", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 35625, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.839365573007584, 33.096139426834156 ], [ -99.960712061857834, 33.165529021879543 ], [ -99.989604083012651, 33.091183027188059 ], [ -99.989604083012651, 33.274569814093717 ], [ -99.8046951476218, 33.262178814978469 ], [ -99.839365573007584, 33.096139426834156 ] ] ] } },
{ "type": "Feature", "properties": { "name": "RULE", "zip": "79548", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 41696, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.989604083012651, 33.083748427718916 ], [ -99.989604083012651, 33.091183027188059 ], [ -99.960712061857834, 33.165529021879543 ], [ -99.839365573007584, 33.096139426834156 ], [ -99.735354296850232, 33.034184431257927 ], [ -99.949155253395901, 32.959838436566443 ], [ -99.989604083012651, 32.959838436566443 ], [ -99.989604083012651, 33.083748427718916 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SNYDER", "zip": "79549", "state": "TX", "Sheet1_value": 343, "Sheet1_populaiton": 15938, "Sheet1_income": 46791, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.093279291126748, 32.967273036035593 ], [ -101.04127365304808, 33.396001605423137 ], [ -100.787023866885662, 33.39847980524619 ], [ -100.706126207652176, 33.311742811439458 ], [ -100.515438868030358, 33.135790624002951 ], [ -100.521217272261325, 32.962316636389488 ], [ -100.654120569573493, 32.962316636389488 ], [ -100.659898973804459, 32.736800452491991 ], [ -100.91992716419783, 32.602977662047323 ], [ -100.867921526119162, 32.526153467532794 ], [ -100.971932802276513, 32.526153467532794 ], [ -101.174176950360248, 32.707062054615399 ], [ -101.052830461509998, 32.714496654084549 ], [ -101.093279291126748, 32.967273036035593 ] ] ] } },
{ "type": "Feature", "properties": { "name": "STAMFORD", "zip": "79553", "state": "TX", "Sheet1_value": 133, "Sheet1_populaiton": 3465, "Sheet1_income": 35904, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.949155253395901, 32.959838436566443 ], [ -99.735354296850232, 33.034184431257927 ], [ -99.469547702225896, 33.091183027188059 ], [ -99.469547702225896, 32.957360236743391 ], [ -99.562002169921328, 32.957360236743391 ], [ -99.625564616461929, 32.957360236743391 ], [ -99.741132701081199, 32.957360236743391 ], [ -99.764246318005064, 32.838406645237022 ], [ -99.954933657626867, 32.865666843290562 ], [ -99.949155253395901, 32.959838436566443 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SWEETWATER", "zip": "79556", "state": "TX", "Sheet1_value": 294, "Sheet1_populaiton": 13006, "Sheet1_income": 36499, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.498103655337474, 32.560848265055483 ], [ -100.249632273406021, 32.682280056384911 ], [ -100.14562099724867, 32.642628859216117 ], [ -100.14562099724867, 32.523675267709748 ], [ -100.14562099724867, 32.464198471956557 ], [ -100.151399401479637, 32.377461478149826 ], [ -100.272745890329873, 32.370026878680683 ], [ -100.278524294560839, 32.251073287174307 ], [ -100.324751528408555, 32.25355148699736 ], [ -100.498103655337474, 32.560848265055483 ] ] ] } },
{ "type": "Feature", "properties": { "name": "SYLVESTER", "zip": "79560", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 48750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.070501742246137, 32.674845456915762 ], [ -100.14562099724867, 32.642628859216117 ], [ -100.249632273406021, 32.682280056384911 ], [ -100.301637911484704, 32.761582450722486 ], [ -100.14562099724867, 32.754147851253343 ], [ -100.082058550708069, 32.759104250899441 ], [ -100.070501742246137, 32.674845456915762 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TRENT", "zip": "79561", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 46154, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.14562099724867, 32.464198471956557 ], [ -100.14562099724867, 32.523675267709748 ], [ -100.053166529553252, 32.476589471071804 ], [ -100.14562099724867, 32.464198471956557 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TUSCOLA", "zip": "79562", "state": "TX", "Sheet1_value": 120, "Sheet1_populaiton": 3745, "Sheet1_income": 74750, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.151399401479637, 32.228769488766865 ], [ -100.151399401479637, 32.280811685050899 ], [ -99.995382487243617, 32.295680883989199 ], [ -99.937598444933968, 32.278333485227854 ], [ -99.891371211086266, 32.285768084696997 ], [ -99.781581530697949, 32.308071883104446 ], [ -99.758467913774098, 32.320462882219694 ], [ -99.706462275695415, 32.20398749053637 ], [ -99.931820040703002, 32.231247688589917 ], [ -100.012717699936502, 32.134597895490984 ], [ -99.943376849164935, 32.099903097968294 ], [ -100.035831316860367, 32.082555699206949 ], [ -100.151399401479637, 32.179205492305876 ], [ -100.151399401479637, 32.228769488766865 ] ] ] } },
{ "type": "Feature", "properties": { "name": "TYE", "zip": "79563", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 38750, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.850922381469516, 32.436938273903017 ], [ -99.856700785700482, 32.397287076734223 ], [ -99.902928019548199, 32.38241787779593 ], [ -99.914484828010117, 32.412156275672523 ], [ -99.874035998393367, 32.45924207231046 ], [ -99.850922381469516, 32.456763872487414 ], [ -99.850922381469516, 32.436938273903017 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WESTBROOK", "zip": "79565", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 56389, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.185733758822181, 32.087512098853047 ], [ -101.179955354591215, 32.213900289828565 ], [ -101.174176950360248, 32.528631667355846 ], [ -101.029716844586147, 32.528631667355846 ], [ -100.873699930350128, 32.278333485227854 ], [ -100.792802271116628, 32.087512098853047 ], [ -100.821694292271445, 32.087512098853047 ], [ -101.185733758822181, 32.087512098853047 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINGATE", "zip": "79566", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 40833, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.238075464944103, 31.906603511770442 ], [ -100.238075464944103, 32.057773700976455 ], [ -100.151399401479637, 32.179205492305876 ], [ -100.035831316860367, 32.082555699206949 ], [ -100.128285784555786, 31.95121110858533 ], [ -100.238075464944103, 31.906603511770442 ] ] ] } },
{ "type": "Feature", "properties": { "name": "WINTERS", "zip": "79567", "state": "TX", "Sheet1_value": 124, "Sheet1_populaiton": 3151, "Sheet1_income": 41600, "Sheet1_percent": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.718019084157348, 31.899168912301292 ], [ -100.047388125322286, 31.837213916725055 ], [ -100.128285784555786, 31.95121110858533 ], [ -100.035831316860367, 32.082555699206949 ], [ -99.943376849164935, 32.099903097968294 ], [ -99.868257594162401, 32.127163296021841 ], [ -99.735354296850232, 32.082555699206949 ], [ -99.712240679926381, 32.015644303984615 ], [ -99.718019084157348, 31.899168912301292 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABILENE", "zip": "79601", "state": "TX", "Sheet1_value": 494, "Sheet1_populaiton": 27825, "Sheet1_income": 34556, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.741132701081199, 32.449329273018265 ], [ -99.770024722236016, 32.521197067886696 ], [ -99.729575892619266, 32.707062054615399 ], [ -99.712240679926381, 32.731844052845894 ], [ -99.614007808, 32.677323656738807 ], [ -99.562002169921328, 32.513762468417546 ], [ -99.631343020692896, 32.429503674433867 ], [ -99.741132701081199, 32.449329273018265 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABILENE", "zip": "79602", "state": "TX", "Sheet1_value": 581, "Sheet1_populaiton": 21634, "Sheet1_income": 51295, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.631343020692896, 32.21142209000552 ], [ -99.706462275695415, 32.20398749053637 ], [ -99.758467913774098, 32.320462882219694 ], [ -99.746911105312165, 32.394808876911178 ], [ -99.746911105312165, 32.429503674433867 ], [ -99.746911105312165, 32.43198187425692 ], [ -99.746911105312165, 32.449329273018265 ], [ -99.741132701081199, 32.449329273018265 ], [ -99.631343020692896, 32.429503674433867 ], [ -99.631343020692896, 32.21142209000552 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABILENE", "zip": "79603", "state": "TX", "Sheet1_value": 634, "Sheet1_populaiton": 24213, "Sheet1_income": 38176, "Sheet1_percent": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -99.746911105312165, 32.449329273018265 ], [ -99.850922381469516, 32.456763872487414 ], [ -99.874035998393367, 32.45924207231046 ], [ -99.798916743390834, 32.521197067886696 ], [ -99.770024722236016, 32.521197067886696 ], [ -99.741132701081199, 32.449329273018265 ], [ -99.746911105312165, 32.449329273018265 ] ] ], [ [ [ -99.902928019548199, 32.38241787779593 ], [ -99.937598444933968, 32.278333485227854 ], [ -99.995382487243617, 32.295680883989199 ], [ -99.914484828010117, 32.412156275672523 ], [ -99.902928019548199, 32.38241787779593 ] ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABILENE", "zip": "79605", "state": "TX", "Sheet1_value": 910, "Sheet1_populaiton": 29105, "Sheet1_income": 41305, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.810473551852766, 32.42454727478777 ], [ -99.850922381469516, 32.436938273903017 ], [ -99.850922381469516, 32.456763872487414 ], [ -99.746911105312165, 32.449329273018265 ], [ -99.746911105312165, 32.43198187425692 ], [ -99.746911105312165, 32.429503674433867 ], [ -99.746911105312165, 32.394808876911178 ], [ -99.810473551852766, 32.42454727478777 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ABILENE", "zip": "79606", "state": "TX", "Sheet1_value": 627, "Sheet1_populaiton": 23369, "Sheet1_income": 56844, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.937598444933968, 32.278333485227854 ], [ -99.902928019548199, 32.38241787779593 ], [ -99.856700785700482, 32.397287076734223 ], [ -99.810473551852766, 32.42454727478777 ], [ -99.746911105312165, 32.394808876911178 ], [ -99.758467913774098, 32.320462882219694 ], [ -99.781581530697949, 32.308071883104446 ], [ -99.891371211086266, 32.285768084696997 ], [ -99.937598444933968, 32.278333485227854 ] ] ] } },
{ "type": "Feature", "properties": { "name": "DYESS AFB", "zip": "79607", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 44779, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.856700785700482, 32.397287076734223 ], [ -99.850922381469516, 32.436938273903017 ], [ -99.810473551852766, 32.42454727478777 ], [ -99.856700785700482, 32.397287076734223 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLAND", "zip": "79701", "state": "TX", "Sheet1_value": 935, "Sheet1_populaiton": 28757, "Sheet1_income": 45030, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.104500031545427, 31.963602107700577 ], [ -102.121835244238326, 32.00573150469242 ], [ -102.052494393466759, 32.020600703630713 ], [ -102.104500031545427, 31.963602107700577 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLAND", "zip": "79703", "state": "TX", "Sheet1_value": 615, "Sheet1_populaiton": 21214, "Sheet1_income": 57842, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.104500031545427, 31.963602107700577 ], [ -102.15650566962411, 31.99829690522327 ], [ -102.121835244238326, 32.00573150469242 ], [ -102.104500031545427, 31.963602107700577 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLAND", "zip": "79705", "state": "TX", "Sheet1_value": 835, "Sheet1_populaiton": 32784, "Sheet1_income": 68649, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.121835244238326, 32.00573150469242 ], [ -102.092943223083495, 32.087512098853047 ], [ -101.931147904616509, 32.087512098853047 ], [ -102.052494393466759, 32.020600703630713 ], [ -102.121835244238326, 32.00573150469242 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLAND", "zip": "79706", "state": "TX", "Sheet1_value": 676, "Sheet1_populaiton": 20577, "Sheet1_income": 58737, "Sheet1_percent": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.202732903471812, 31.651348929996352 ], [ -102.220068116164711, 31.651348929996352 ], [ -102.220068116164711, 31.90908171159349 ], [ -102.27207375424338, 31.948732908762281 ], [ -102.15650566962411, 31.99829690522327 ], [ -102.104500031545427, 31.963602107700577 ], [ -102.052494393466759, 32.020600703630713 ], [ -101.931147904616509, 32.087512098853047 ], [ -101.775130990380489, 31.980949506461922 ], [ -101.775130990380489, 31.651348929996352 ], [ -102.202732903471812, 31.651348929996352 ] ] ] } },
{ "type": "Feature", "properties": { "name": "MIDLAND", "zip": "79707", "state": "TX", "Sheet1_value": 768, "Sheet1_populaiton": 35381, "Sheet1_income": 76543, "Sheet1_percent": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.289408966936278, 31.995818705400218 ], [ -102.289408966936278, 32.087512098853047 ], [ -102.208511307702778, 32.087512098853047 ], [ -102.092943223083495, 32.087512098853047 ], [ -102.121835244238326, 32.00573150469242 ], [ -102.15650566962411, 31.99829690522327 ], [ -102.27207375424338, 31.948732908762281 ], [ -102.289408966936278, 31.995818705400218 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ACKERLY", "zip": "79713", "state": "TX", "Sheet1_value": null, "Sheet1_populaiton": null, "Sheet1_income": 52188, "Sheet1_percent": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.688454926916023, 32.751669651430291 ], [ -101.688454926916023, 32.526153467532794 ], [ -101.896477479230725, 32.523675267709748 ], [ -101.948483117309408, 32.689714655854054 ], [ -101.688454926916023, 32.751669651430291 ] ] ] } },
{ "type": "Feature", "properties": { "name": "ANDREWS", "zip": "79714", "state": "TX", "Sheet1_value": 425, "Sheet1_populaiton": 15554, "Sheet1_income
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment