Skip to content

Instantly share code, notes, and snippets.

@rgdonohue
Last active August 24, 2017 12:01
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 rgdonohue/4793dab7f993a81cc670 to your computer and use it in GitHub Desktop.
Save rgdonohue/4793dab7f993a81cc670 to your computer and use it in GitHub Desktop.
A very simple D3 map
<html>
<head>
<meta charset="utf-8">
<title>A very simple D3 map</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="ky-counties.js"></script>
<link href="http://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<style>
body {
padding: 0;
margin: 0;
background: whitesmoke;
}
h1 {
position: absolute;
left: 20px;
top: 10px;
font-family: "Proxima Nova", Montserrat, sans-serif;
font-size: 2em;
font-weight: 100;
color: #005DAA; /* offical UK Kentucky blue */
}
.county {
stroke: #fff;
fill:#005DAA;
}
</style>
</head>
<body>
<h1>Kentucky Counties</h1>
<script>
var width = 900,
height = 600;
var svg = d3.select( "body" )
.append( "svg" )
.attr( "width", width )
.attr( "height", height );
var projection = d3.geo.albers()
.center([0, 37.8])
.rotate([85.8,0])
.scale(8000)
.translate([width / 2, height / 2]);
var geoPath = d3.geo.path()
.projection(projection);
svg.append("g")
.selectAll("path")
.data(counties.features)
.enter()
.append("path")
.attr( "d", geoPath )
.attr("class","county");
</script>
</body>
</html>
var counties = {
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "COUNTYFP": "007", "NAME": "Ballard", "ALAND": 638843907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.1719, 37.0682 ], [ -89.03, 37.2111 ], [ -88.9334, 37.2252 ], [ -88.816, 36.9541 ], [ -88.9888, 36.9195 ], [ -89.1008, 36.944 ], [ -89.1327, 36.9822 ], [ -89.1719, 37.0682 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "011", "NAME": "Bath", "ALAND": 722081626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9779, 38.1921 ], [ -83.8484, 38.2969 ], [ -83.7323, 38.2835 ], [ -83.6352, 38.1875 ], [ -83.5072, 38.0863 ], [ -83.4988, 38.0506 ], [ -83.5774, 38.0132 ], [ -83.6593, 38.0283 ], [ -83.7594, 37.9987 ], [ -83.8814, 38.1365 ], [ -83.9779, 38.1921 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "013", "NAME": "Bell", "ALAND": 929806591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.8775, 36.6873 ], [ -83.7812, 36.8027 ], [ -83.5811, 36.9047 ], [ -83.5895, 36.9558 ], [ -83.5091, 36.9385 ], [ -83.4898, 36.8954 ], [ -83.5009, 36.7333 ], [ -83.461, 36.6649 ], [ -83.5319, 36.665 ], [ -83.6754, 36.6008 ], [ -83.6907, 36.5826 ], [ -83.9308, 36.5877 ], [ -83.9562, 36.6455 ], [ -83.8775, 36.6873 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "031", "NAME": "Butler", "ALAND": 1103562551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.8993, 37.2123 ], [ -86.8012, 37.3344 ], [ -86.7595, 37.3041 ], [ -86.6121, 37.3951 ], [ -86.4872, 37.3625 ], [ -86.4691, 37.3211 ], [ -86.3992, 37.1699 ], [ -86.4673, 37.1535 ], [ -86.6182, 37.1839 ], [ -86.6745, 36.9998 ], [ -86.8453, 37.0565 ], [ -86.9414, 37.069 ], [ -86.8973, 37.0917 ], [ -86.9269, 37.1603 ], [ -86.8993, 37.2123 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "051", "NAME": "Clay", "ALAND": 1215349017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9437, 37.2506 ], [ -83.785, 37.3487 ], [ -83.6386, 37.3442 ], [ -83.5269, 37.2585 ], [ -83.5079, 37.2359 ], [ -83.5513, 37.1675 ], [ -83.5456, 37.0486 ], [ -83.5091, 36.9385 ], [ -83.5895, 36.9558 ], [ -83.8227, 37.026 ], [ -83.8713, 37.0549 ], [ -83.969, 37.1748 ], [ -83.9437, 37.2506 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "061", "NAME": "Edmonson", "ALAND": 784464286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.1576, 37.3356 ], [ -86.0491, 37.2153 ], [ -86.0564, 37.1672 ], [ -86.0743, 37.0533 ], [ -86.1135, 37.0611 ], [ -86.2186, 37.104 ], [ -86.2818, 37.0806 ], [ -86.3992, 37.1699 ], [ -86.4691, 37.3211 ], [ -86.1576, 37.3356 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "097", "NAME": "Harrison", "ALAND": 793479801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5574, 38.4929 ], [ -84.4763, 38.5427 ], [ -84.2053, 38.582 ], [ -84.162, 38.5541 ], [ -84.1614, 38.5018 ], [ -84.1021, 38.4594 ], [ -84.194, 38.3717 ], [ -84.3723, 38.2795 ], [ -84.4427, 38.2832 ], [ -84.4742, 38.4002 ], [ -84.5574, 38.4929 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "121", "NAME": "Knox", "ALAND": 1000508842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.0919, 36.956 ], [ -83.9591, 36.9773 ], [ -83.8713, 37.0549 ], [ -83.8227, 37.026 ], [ -83.5895, 36.9558 ], [ -83.5811, 36.9047 ], [ -83.7812, 36.8027 ], [ -83.8775, 36.6873 ], [ -83.9585, 36.7272 ], [ -83.9837, 36.8008 ], [ -84.0652, 36.8534 ], [ -84.0919, 36.956 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "131", "NAME": "Leslie", "ALAND": 1038212361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.5079, 37.2359 ], [ -83.4718, 37.2912 ], [ -83.3979, 37.3166 ], [ -83.2269, 37.1545 ], [ -83.166, 37.0712 ], [ -83.1821, 37.0211 ], [ -83.26, 36.969 ], [ -83.4898, 36.8954 ], [ -83.5091, 36.9385 ], [ -83.5456, 37.0486 ], [ -83.5513, 37.1675 ], [ -83.5079, 37.2359 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "133", "NAME": "Letcher", "ALAND": 875193012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.1221, 37.001 ], [ -83.0408, 37.0801 ], [ -83.0608, 37.1152 ], [ -83.0001, 37.1957 ], [ -82.9091, 37.2062 ], [ -82.8196, 37.2687 ], [ -82.7327, 37.2715 ], [ -82.6289, 37.2478 ], [ -82.5654, 37.1961 ], [ -82.7221, 37.1202 ], [ -82.7223, 37.0579 ], [ -82.8692, 36.9742 ], [ -82.939, 37.0152 ], [ -83.1221, 37.001 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "147", "NAME": "McCreary", "ALAND": 1105417092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5782, 36.8671 ], [ -84.4168, 36.9469 ], [ -84.358, 36.9594 ], [ -84.2974, 36.9459 ], [ -84.35, 36.7807 ], [ -84.3076, 36.6768 ], [ -84.2272, 36.5922 ], [ -84.2613, 36.592 ], [ -84.7785, 36.6032 ], [ -84.6742, 36.7392 ], [ -84.5793, 36.8144 ], [ -84.5782, 36.8671 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "151", "NAME": "Madison", "ALAND": 1132604797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5256, 37.7695 ], [ -84.4357, 37.8472 ], [ -84.3374, 37.892 ], [ -84.2724, 37.9175 ], [ -84.2219, 37.872 ], [ -84.0803, 37.8531 ], [ -84.0961, 37.6617 ], [ -84.0904, 37.5662 ], [ -84.1995, 37.5229 ], [ -84.3478, 37.5391 ], [ -84.4537, 37.6912 ], [ -84.5256, 37.7695 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "187", "NAME": "Owen", "ALAND": 909364873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.0746, 38.5968 ], [ -84.9345, 38.6621 ], [ -84.7858, 38.7205 ], [ -84.7743, 38.6186 ], [ -84.5805, 38.473 ], [ -84.7406, 38.3524 ], [ -84.8705, 38.3568 ], [ -84.8802, 38.4162 ], [ -85.0286, 38.5067 ], [ -85.0092, 38.5611 ], [ -85.0746, 38.5968 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "217", "NAME": "Taylor", "ALAND": 689791762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.5835, 37.4699 ], [ -85.4663, 37.4656 ], [ -85.3554, 37.471 ], [ -85.2462, 37.4204 ], [ -85.1696, 37.464 ], [ -85.0738, 37.4137 ], [ -85.1312, 37.3843 ], [ -85.1652, 37.3104 ], [ -85.1922, 37.2726 ], [ -85.3147, 37.2407 ], [ -85.3528, 37.1924 ], [ -85.4781, 37.3637 ], [ -85.5845, 37.4321 ], [ -85.5835, 37.4699 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "231", "NAME": "Wayne", "ALAND": 1186685586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.0643, 36.8587 ], [ -84.8357, 36.9976 ], [ -84.7702, 36.9578 ], [ -84.6792, 36.9809 ], [ -84.5782, 36.8671 ], [ -84.5793, 36.8144 ], [ -84.6742, 36.7392 ], [ -84.7785, 36.6032 ], [ -84.7854, 36.6034 ], [ -84.9749, 36.6156 ], [ -85.0205, 36.6944 ], [ -85.0041, 36.7562 ], [ -85.0643, 36.8587 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "237", "NAME": "Wolfe", "ALAND": 575419314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.708, 37.7165 ], [ -83.6311, 37.8254 ], [ -83.5514, 37.8216 ], [ -83.4951, 37.8619 ], [ -83.3274, 37.7796 ], [ -83.2622, 37.7127 ], [ -83.2487, 37.6696 ], [ -83.4186, 37.6907 ], [ -83.4587, 37.6305 ], [ -83.5223, 37.6385 ], [ -83.708, 37.7165 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "003", "NAME": "Allen", "ALAND": 891830500 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.4058, 36.7762 ], [ -86.1667, 36.934 ], [ -86.0557, 36.8301 ], [ -85.9769, 36.7227 ], [ -85.9729, 36.6285 ], [ -86.2055, 36.6398 ], [ -86.4114, 36.6506 ], [ -86.4058, 36.7762 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "025", "NAME": "Breathitt", "ALAND": 1275350659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.5792, 37.5062 ], [ -83.5223, 37.6385 ], [ -83.4587, 37.6305 ], [ -83.4186, 37.6907 ], [ -83.2487, 37.6696 ], [ -83.1147, 37.6114 ], [ -83.0839, 37.6298 ], [ -82.997, 37.5283 ], [ -82.9485, 37.5032 ], [ -83.0502, 37.5253 ], [ -83.1347, 37.4572 ], [ -83.1243, 37.405 ], [ -83.1997, 37.4147 ], [ -83.3322, 37.3797 ], [ -83.4054, 37.3389 ], [ -83.4455, 37.3705 ], [ -83.5476, 37.3344 ], [ -83.5542, 37.467 ], [ -83.5792, 37.5062 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "029", "NAME": "Bullitt", "ALAND": 769295444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.4288, 38.1184 ], [ -85.4692, 38.0962 ], [ -85.4892, 37.9907 ], [ -85.6433, 37.834 ], [ -85.7378, 37.8118 ], [ -85.8173, 37.8583 ], [ -85.8549, 37.9454 ], [ -85.9383, 37.9988 ], [ -85.877, 38.0418 ], [ -85.7126, 38.0873 ], [ -85.5573, 38.0738 ], [ -85.4288, 38.1184 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "033", "NAME": "Caldwell", "ALAND": 893006791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.801, 37.3794 ], [ -87.8134, 37.3506 ], [ -87.7747, 37.1981 ], [ -87.6806, 37.1492 ], [ -87.7334, 37.0021 ], [ -87.877, 36.9601 ], [ -87.9751, 37.0674 ], [ -88.0423, 37.1748 ], [ -88.0958, 37.1797 ], [ -88.0525, 37.2377 ], [ -87.801, 37.3794 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "055", "NAME": "Crittenden", "ALAND": 932275449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.0613, 37.5053 ], [ -87.933, 37.4801 ], [ -87.9288, 37.4086 ], [ -87.847, 37.4208 ], [ -87.801, 37.3794 ], [ -88.0525, 37.2377 ], [ -88.0958, 37.1797 ], [ -88.1935, 37.1473 ], [ -88.219, 37.2731 ], [ -88.3585, 37.4048 ], [ -88.2817, 37.4526 ], [ -88.0818, 37.473 ], [ -88.0613, 37.5053 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "059", "NAME": "Daviess", "ALAND": 1187163652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.3026, 37.8986 ], [ -87.2687, 37.8786 ], [ -87.0707, 37.8019 ], [ -87.0334, 37.9066 ], [ -86.9788, 37.9302 ], [ -86.8936, 37.882 ], [ -86.8171, 37.7916 ], [ -86.8234, 37.7378 ], [ -86.8175, 37.6738 ], [ -86.9483, 37.6305 ], [ -87.0383, 37.5608 ], [ -87.2616, 37.622 ], [ -87.4085, 37.6836 ], [ -87.3941, 37.724 ], [ -87.2902, 37.7606 ], [ -87.3234, 37.8192 ], [ -87.3026, 37.8986 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "065", "NAME": "Estill", "ALAND": 655468653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.0803, 37.8531 ], [ -84.002, 37.8376 ], [ -83.8769, 37.7521 ], [ -83.7797, 37.7605 ], [ -83.7221, 37.7164 ], [ -83.8241, 37.663 ], [ -83.9056, 37.5429 ], [ -83.9652, 37.5814 ], [ -84.0904, 37.5662 ], [ -84.0961, 37.6617 ], [ -84.0803, 37.8531 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "069", "NAME": "Fleming", "ALAND": 902720729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9303, 38.4923 ], [ -83.8593, 38.4563 ], [ -83.6419, 38.5254 ], [ -83.5791, 38.4302 ], [ -83.4528, 38.3818 ], [ -83.4993, 38.3494 ], [ -83.508, 38.2732 ], [ -83.6352, 38.1875 ], [ -83.7323, 38.2835 ], [ -83.8484, 38.2969 ], [ -83.8352, 38.3171 ], [ -83.98, 38.4392 ], [ -83.9303, 38.4923 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "079", "NAME": "Garrard", "ALAND": 595898816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.7169, 37.8154 ], [ -84.5554, 37.7492 ], [ -84.5256, 37.7695 ], [ -84.4537, 37.6912 ], [ -84.3478, 37.5391 ], [ -84.3744, 37.4727 ], [ -84.4467, 37.4859 ], [ -84.6583, 37.6345 ], [ -84.7449, 37.7131 ], [ -84.7022, 37.7254 ], [ -84.7169, 37.8154 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "089", "NAME": "Greenup", "ALAND": 892115289 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.0309, 38.7256 ], [ -82.8942, 38.7566 ], [ -82.8472, 38.5952 ], [ -82.816, 38.5707 ], [ -82.7248, 38.5576 ], [ -82.6655, 38.5057 ], [ -82.769, 38.4337 ], [ -82.8175, 38.3739 ], [ -82.9676, 38.3941 ], [ -83.0516, 38.4652 ], [ -83.1664, 38.504 ], [ -83.071, 38.595 ], [ -83.0309, 38.7256 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "095", "NAME": "Harlan", "ALAND": 1206487467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.4898, 36.8954 ], [ -83.26, 36.969 ], [ -83.1821, 37.0211 ], [ -83.1221, 37.001 ], [ -82.939, 37.0152 ], [ -82.8692, 36.9742 ], [ -82.8784, 36.8932 ], [ -82.9703, 36.8577 ], [ -83.0726, 36.8546 ], [ -83.1946, 36.7395 ], [ -83.461, 36.6649 ], [ -83.5009, 36.7333 ], [ -83.4898, 36.8954 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "109", "NAME": "Jackson", "ALAND": 894055721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.1995, 37.5229 ], [ -84.0904, 37.5662 ], [ -83.9652, 37.5814 ], [ -83.9056, 37.5429 ], [ -83.8853, 37.5177 ], [ -83.785, 37.3487 ], [ -83.9437, 37.2506 ], [ -84.0565, 37.2698 ], [ -84.1379, 37.3198 ], [ -84.1291, 37.3574 ], [ -84.2036, 37.4862 ], [ -84.1995, 37.5229 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "119", "NAME": "Knott", "ALAND": 910435521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.9485, 37.5032 ], [ -82.9255, 37.4865 ], [ -82.8315, 37.467 ], [ -82.7631, 37.4255 ], [ -82.7482, 37.3168 ], [ -82.7108, 37.2853 ], [ -82.7327, 37.2715 ], [ -82.8196, 37.2687 ], [ -82.9091, 37.2062 ], [ -83.0001, 37.1957 ], [ -83.1272, 37.2684 ], [ -83.1243, 37.405 ], [ -83.1347, 37.4572 ], [ -83.0502, 37.5253 ], [ -82.9485, 37.5032 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "123", "NAME": "Larue", "ALAND": 677353871 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.6805, 37.7323 ], [ -85.5727, 37.638 ], [ -85.6239, 37.5465 ], [ -85.5213, 37.5543 ], [ -85.4663, 37.4656 ], [ -85.5835, 37.4699 ], [ -85.6573, 37.422 ], [ -85.8928, 37.4403 ], [ -85.876, 37.5433 ], [ -85.8035, 37.6216 ], [ -85.7362, 37.6544 ], [ -85.6805, 37.7323 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "139", "NAME": "Livingston", "ALAND": 810982681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.5661, 37.0752 ], [ -88.4903, 37.0678 ], [ -88.4244, 37.1524 ], [ -88.5159, 37.284 ], [ -88.4766, 37.3869 ], [ -88.4149, 37.4237 ], [ -88.3585, 37.4048 ], [ -88.219, 37.2731 ], [ -88.1935, 37.1473 ], [ -88.2311, 37.0816 ], [ -88.2404, 36.9819 ], [ -88.3622, 37.0639 ], [ -88.483, 37.0226 ], [ -88.5661, 37.0752 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "153", "NAME": "Magoffin", "ALAND": 798866504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.0046, 37.8592 ], [ -82.9506, 37.7947 ], [ -82.9408, 37.7163 ], [ -82.9047, 37.6395 ], [ -82.8974, 37.5146 ], [ -82.9255, 37.4865 ], [ -82.9485, 37.5032 ], [ -82.997, 37.5283 ], [ -83.0839, 37.6298 ], [ -83.1147, 37.6114 ], [ -83.2487, 37.6696 ], [ -83.2622, 37.7127 ], [ -83.2704, 37.7668 ], [ -83.0894, 37.8903 ], [ -83.0046, 37.8592 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "165", "NAME": "Menifee", "ALAND": 527282429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.7594, 37.9987 ], [ -83.6593, 38.0283 ], [ -83.5774, 38.0132 ], [ -83.4988, 38.0506 ], [ -83.4339, 38.034 ], [ -83.4443, 37.9425 ], [ -83.4951, 37.8619 ], [ -83.5514, 37.8216 ], [ -83.6311, 37.8254 ], [ -83.7688, 37.9184 ], [ -83.7594, 37.9987 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "183", "NAME": "Ohio", "ALAND": 1521032830 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.0998, 37.416 ], [ -87.1031, 37.4809 ], [ -87.0383, 37.5608 ], [ -86.9483, 37.6305 ], [ -86.8175, 37.6738 ], [ -86.8234, 37.7378 ], [ -86.6389, 37.6619 ], [ -86.5928, 37.5644 ], [ -86.6619, 37.5419 ], [ -86.6121, 37.3951 ], [ -86.7595, 37.3041 ], [ -86.8012, 37.3344 ], [ -86.8993, 37.2123 ], [ -86.9827, 37.2696 ], [ -86.986, 37.3166 ], [ -87.0998, 37.416 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "193", "NAME": "Perry", "ALAND": 879750116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.5476, 37.3344 ], [ -83.4455, 37.3705 ], [ -83.4054, 37.3389 ], [ -83.3322, 37.3797 ], [ -83.1997, 37.4147 ], [ -83.1243, 37.405 ], [ -83.1272, 37.2684 ], [ -83.0001, 37.1957 ], [ -83.0608, 37.1152 ], [ -83.0408, 37.0801 ], [ -83.1221, 37.001 ], [ -83.1821, 37.0211 ], [ -83.166, 37.0712 ], [ -83.2269, 37.1545 ], [ -83.3979, 37.3166 ], [ -83.4718, 37.2912 ], [ -83.5079, 37.2359 ], [ -83.5269, 37.2585 ], [ -83.5476, 37.3344 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "195", "NAME": "Pike", "ALAND": 2037851002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.7327, 37.2715 ], [ -82.7108, 37.2853 ], [ -82.6724, 37.3068 ], [ -82.5886, 37.4463 ], [ -82.6236, 37.5041 ], [ -82.5983, 37.6422 ], [ -82.5636, 37.6848 ], [ -82.4558, 37.6687 ], [ -82.333, 37.741 ], [ -82.2961, 37.6862 ], [ -82.1863, 37.6293 ], [ -82.122, 37.5528 ], [ -81.968, 37.538 ], [ -82.3147, 37.2959 ], [ -82.3509, 37.2671 ], [ -82.5538, 37.2028 ], [ -82.5654, 37.1961 ], [ -82.6289, 37.2478 ], [ -82.7327, 37.2715 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "203", "NAME": "Rockcastle", "ALAND": 819848743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5029, 37.3288 ], [ -84.4467, 37.4859 ], [ -84.3744, 37.4727 ], [ -84.3478, 37.5391 ], [ -84.1995, 37.5229 ], [ -84.2036, 37.4862 ], [ -84.1291, 37.3574 ], [ -84.1379, 37.3198 ], [ -84.2543, 37.2391 ], [ -84.2891, 37.1517 ], [ -84.5029, 37.3288 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "205", "NAME": "Rowan", "ALAND": 724672131 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.4528, 38.3818 ], [ -83.4169, 38.3962 ], [ -83.3413, 38.3195 ], [ -83.2998, 38.2091 ], [ -83.2443, 38.1924 ], [ -83.2633, 38.1154 ], [ -83.4339, 38.034 ], [ -83.4988, 38.0506 ], [ -83.5072, 38.0863 ], [ -83.6352, 38.1875 ], [ -83.508, 38.2732 ], [ -83.4993, 38.3494 ], [ -83.4528, 38.3818 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "209", "NAME": "Scott", "ALAND": 729770749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.7406, 38.3524 ], [ -84.5805, 38.473 ], [ -84.5574, 38.4929 ], [ -84.4742, 38.4002 ], [ -84.4427, 38.2832 ], [ -84.4018, 38.2079 ], [ -84.6251, 38.1164 ], [ -84.6557, 38.1795 ], [ -84.7252, 38.1954 ], [ -84.7406, 38.3524 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "229", "NAME": "Washington", "ALAND": 769917017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.4018, 37.7307 ], [ -85.3075, 37.8194 ], [ -85.1528, 37.8977 ], [ -85.0305, 37.8915 ], [ -85.0007, 37.8548 ], [ -85.025, 37.6789 ], [ -85.0302, 37.6313 ], [ -85.2569, 37.6309 ], [ -85.3739, 37.6736 ], [ -85.4018, 37.7307 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "027", "NAME": "Breckinridge", "ALAND": 1469042402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.6553, 37.8425 ], [ -86.5342, 37.917 ], [ -86.525, 38.0279 ], [ -86.4908, 38.0457 ], [ -86.2428, 37.877 ], [ -86.1513, 37.7989 ], [ -86.2753, 37.5935 ], [ -86.4472, 37.5762 ], [ -86.5034, 37.6222 ], [ -86.5928, 37.5644 ], [ -86.6389, 37.6619 ], [ -86.6779, 37.7928 ], [ -86.6553, 37.8425 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "063", "NAME": "Elliott", "ALAND": 606875335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.2633, 38.1154 ], [ -83.2443, 38.1924 ], [ -83.1638, 38.2657 ], [ -83.0475, 38.1935 ], [ -82.9248, 38.1751 ], [ -82.8889, 38.1118 ], [ -83.0221, 38.007 ], [ -83.147, 38.0001 ], [ -83.2675, 38.0589 ], [ -83.2633, 38.1154 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "071", "NAME": "Floyd", "ALAND": 1018762993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.9408, 37.7163 ], [ -82.8918, 37.7087 ], [ -82.7632, 37.7562 ], [ -82.6407, 37.7202 ], [ -82.5636, 37.6848 ], [ -82.5983, 37.6422 ], [ -82.6236, 37.5041 ], [ -82.5886, 37.4463 ], [ -82.6724, 37.3068 ], [ -82.7108, 37.2853 ], [ -82.7482, 37.3168 ], [ -82.7631, 37.4255 ], [ -82.8315, 37.467 ], [ -82.9255, 37.4865 ], [ -82.8974, 37.5146 ], [ -82.9047, 37.6395 ], [ -82.9408, 37.7163 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "083", "NAME": "Graves", "ALAND": 1429026325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.8132, 36.7731 ], [ -88.8129, 36.9469 ], [ -88.4841, 36.9421 ], [ -88.4857, 36.7503 ], [ -88.4891, 36.5011 ], [ -88.5163, 36.5014 ], [ -88.8168, 36.5028 ], [ -88.8132, 36.7731 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "093", "NAME": "Hardin", "ALAND": 1614337414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.2753, 37.5935 ], [ -86.1513, 37.7989 ], [ -86.0074, 37.8185 ], [ -85.9759, 37.8758 ], [ -85.999, 37.9998 ], [ -85.948, 38.0071 ], [ -85.9383, 37.9988 ], [ -85.8549, 37.9454 ], [ -85.8173, 37.8583 ], [ -85.7378, 37.8118 ], [ -85.6805, 37.7323 ], [ -85.7362, 37.6544 ], [ -85.8035, 37.6216 ], [ -85.876, 37.5433 ], [ -85.8928, 37.4403 ], [ -86.0476, 37.4499 ], [ -86.1141, 37.5671 ], [ -86.2753, 37.5935 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "101", "NAME": "Henderson", "ALAND": 1130968912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.7007, 37.8974 ], [ -87.6724, 37.8291 ], [ -87.6154, 37.832 ], [ -87.5513, 37.9254 ], [ -87.4512, 37.9411 ], [ -87.3026, 37.8986 ], [ -87.3234, 37.8192 ], [ -87.2902, 37.7606 ], [ -87.3941, 37.724 ], [ -87.4085, 37.6836 ], [ -87.4953, 37.6475 ], [ -87.7345, 37.6384 ], [ -87.7775, 37.7654 ], [ -87.8199, 37.7683 ], [ -87.9271, 37.9017 ], [ -87.8306, 37.8765 ], [ -87.7007, 37.8974 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "115", "NAME": "Johnson", "ALAND": 678468220 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.989, 37.964 ], [ -82.9396, 37.999 ], [ -82.8316, 37.9679 ], [ -82.7366, 37.9163 ], [ -82.6124, 37.8793 ], [ -82.6708, 37.8521 ], [ -82.6407, 37.7202 ], [ -82.7632, 37.7562 ], [ -82.8918, 37.7087 ], [ -82.9408, 37.7163 ], [ -82.9506, 37.7947 ], [ -83.0046, 37.8592 ], [ -82.9617, 37.9129 ], [ -82.989, 37.964 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "125", "NAME": "Laurel", "ALAND": 1123945911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.358, 36.9594 ], [ -84.2891, 37.1517 ], [ -84.2543, 37.2391 ], [ -84.1379, 37.3198 ], [ -84.0565, 37.2698 ], [ -83.9437, 37.2506 ], [ -83.969, 37.1748 ], [ -83.8713, 37.0549 ], [ -83.9591, 36.9773 ], [ -84.0919, 36.956 ], [ -84.2974, 36.9459 ], [ -84.358, 36.9594 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "127", "NAME": "Lawrence", "ALAND": 1076386415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.0221, 38.007 ], [ -82.8889, 38.1118 ], [ -82.9248, 38.1751 ], [ -82.854, 38.1901 ], [ -82.7942, 38.2438 ], [ -82.6348, 38.2669 ], [ -82.6046, 38.2473 ], [ -82.6373, 38.139 ], [ -82.5513, 38.0708 ], [ -82.4973, 37.9455 ], [ -82.5809, 37.9541 ], [ -82.6124, 37.8793 ], [ -82.7366, 37.9163 ], [ -82.8316, 37.9679 ], [ -82.9396, 37.999 ], [ -82.989, 37.964 ], [ -83.0221, 38.007 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "135", "NAME": "Lewis", "ALAND": 1250589444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.6459, 38.637 ], [ -83.6269, 38.6794 ], [ -83.521, 38.703 ], [ -83.2676, 38.6184 ], [ -83.1428, 38.6251 ], [ -83.0309, 38.7256 ], [ -83.071, 38.595 ], [ -83.1664, 38.504 ], [ -83.2371, 38.4266 ], [ -83.2306, 38.3395 ], [ -83.3413, 38.3195 ], [ -83.4169, 38.3962 ], [ -83.4528, 38.3818 ], [ -83.5791, 38.4302 ], [ -83.6419, 38.5254 ], [ -83.6459, 38.637 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "159", "NAME": "Martin", "ALAND": 594682183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.6124, 37.8793 ], [ -82.5809, 37.9541 ], [ -82.4973, 37.9455 ], [ -82.4149, 37.8556 ], [ -82.333, 37.741 ], [ -82.4558, 37.6687 ], [ -82.5636, 37.6848 ], [ -82.6407, 37.7202 ], [ -82.6708, 37.8521 ], [ -82.6124, 37.8793 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "179", "NAME": "Nelson", "ALAND": 1081354534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.7378, 37.8118 ], [ -85.6433, 37.834 ], [ -85.4892, 37.9907 ], [ -85.3996, 37.9399 ], [ -85.1678, 37.9718 ], [ -85.1528, 37.8977 ], [ -85.3075, 37.8194 ], [ -85.4018, 37.7307 ], [ -85.4505, 37.6859 ], [ -85.5213, 37.5543 ], [ -85.6239, 37.5465 ], [ -85.5727, 37.638 ], [ -85.6805, 37.7323 ], [ -85.7378, 37.8118 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "181", "NAME": "Nicholas", "ALAND": 505491181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.1021, 38.4594 ], [ -83.98, 38.4392 ], [ -83.8352, 38.3171 ], [ -83.8484, 38.2969 ], [ -83.9779, 38.1921 ], [ -84.0953, 38.259 ], [ -84.194, 38.3717 ], [ -84.1021, 38.4594 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "189", "NAME": "Owsley", "ALAND": 511283093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.8853, 37.5177 ], [ -83.8302, 37.487 ], [ -83.743, 37.4943 ], [ -83.6572, 37.5368 ], [ -83.5792, 37.5062 ], [ -83.5542, 37.467 ], [ -83.5476, 37.3344 ], [ -83.5269, 37.2585 ], [ -83.6386, 37.3442 ], [ -83.785, 37.3487 ], [ -83.8853, 37.5177 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "197", "NAME": "Powell", "ALAND": 463555629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9663, 37.9308 ], [ -83.8787, 37.9051 ], [ -83.7688, 37.9184 ], [ -83.6311, 37.8254 ], [ -83.708, 37.7165 ], [ -83.7221, 37.7164 ], [ -83.7797, 37.7605 ], [ -83.8769, 37.7521 ], [ -84.002, 37.8376 ], [ -83.9663, 37.9308 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "107", "NAME": "Hopkins", "ALAND": 1403763233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.8134, 37.3506 ], [ -87.5936, 37.462 ], [ -87.4987, 37.4871 ], [ -87.3751, 37.57 ], [ -87.3511, 37.4249 ], [ -87.296, 37.3918 ], [ -87.3873, 37.2554 ], [ -87.3116, 37.1968 ], [ -87.3337, 37.1572 ], [ -87.5216, 37.1053 ], [ -87.6806, 37.1492 ], [ -87.7747, 37.1981 ], [ -87.8134, 37.3506 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "177", "NAME": "Muhlenberg", "ALAND": 1209734580 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.296, 37.3918 ], [ -87.2092, 37.3822 ], [ -87.0998, 37.416 ], [ -86.986, 37.3166 ], [ -86.9827, 37.2696 ], [ -86.8993, 37.2123 ], [ -86.9269, 37.1603 ], [ -86.8973, 37.0917 ], [ -86.9414, 37.069 ], [ -87.0532, 37.061 ], [ -87.2503, 37.0406 ], [ -87.2594, 37.0724 ], [ -87.3337, 37.1572 ], [ -87.3116, 37.1968 ], [ -87.3873, 37.2554 ], [ -87.296, 37.3918 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "167", "NAME": "Mercer", "ALAND": 644472907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.0305, 37.8915 ], [ -84.9331, 37.9542 ], [ -84.7963, 37.9701 ], [ -84.8012, 37.9006 ], [ -84.7099, 37.862 ], [ -84.7169, 37.8154 ], [ -84.7022, 37.7254 ], [ -84.7449, 37.7131 ], [ -85.025, 37.6789 ], [ -85.0007, 37.8548 ], [ -85.0305, 37.8915 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "235", "NAME": "Whitley", "ALAND": 1133976305 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.2974, 36.9459 ], [ -84.0919, 36.956 ], [ -84.0652, 36.8534 ], [ -83.9837, 36.8008 ], [ -83.9585, 36.7272 ], [ -83.8775, 36.6873 ], [ -83.9562, 36.6455 ], [ -83.9308, 36.5877 ], [ -83.9876, 36.5896 ], [ -84.2272, 36.5922 ], [ -84.3076, 36.6768 ], [ -84.35, 36.7807 ], [ -84.2974, 36.9459 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "005", "NAME": "Anderson", "ALAND": 522745724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.1016, 38.0373 ], [ -85.0237, 38.1291 ], [ -84.9078, 38.0937 ], [ -84.8649, 38.1169 ], [ -84.7963, 37.9701 ], [ -84.9331, 37.9542 ], [ -85.0305, 37.8915 ], [ -85.1528, 37.8977 ], [ -85.1678, 37.9718 ], [ -85.1016, 38.0373 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "049", "NAME": "Clark", "ALAND": 653878141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.2865, 38.067 ], [ -84.0805, 38.1151 ], [ -83.9663, 37.9308 ], [ -84.002, 37.8376 ], [ -84.0803, 37.8531 ], [ -84.2219, 37.872 ], [ -84.2724, 37.9175 ], [ -84.3374, 37.892 ], [ -84.3225, 38.0009 ], [ -84.2865, 38.067 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "099", "NAME": "Hart", "ALAND": 1067328904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.0476, 37.4499 ], [ -85.8928, 37.4403 ], [ -85.6573, 37.422 ], [ -85.6973, 37.3018 ], [ -85.6865, 37.1824 ], [ -85.7442, 37.1698 ], [ -85.9065, 37.1484 ], [ -86.0564, 37.1672 ], [ -86.0491, 37.2153 ], [ -86.1576, 37.3356 ], [ -86.0736, 37.348 ], [ -86.0476, 37.4499 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "155", "NAME": "Marion", "ALAND": 888389556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.5213, 37.5543 ], [ -85.4505, 37.6859 ], [ -85.4018, 37.7307 ], [ -85.3739, 37.6736 ], [ -85.2569, 37.6309 ], [ -85.0302, 37.6313 ], [ -85.0397, 37.5452 ], [ -85.0445, 37.4191 ], [ -85.0738, 37.4137 ], [ -85.1696, 37.464 ], [ -85.2462, 37.4204 ], [ -85.3554, 37.471 ], [ -85.4663, 37.4656 ], [ -85.5213, 37.5543 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "043", "NAME": "Carter", "ALAND": 1060590174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.3413, 38.3195 ], [ -83.2306, 38.3395 ], [ -83.2371, 38.4266 ], [ -83.1664, 38.504 ], [ -83.0516, 38.4652 ], [ -82.9676, 38.3941 ], [ -82.8175, 38.3739 ], [ -82.7717, 38.3626 ], [ -82.7942, 38.2438 ], [ -82.854, 38.1901 ], [ -82.9248, 38.1751 ], [ -83.0475, 38.1935 ], [ -83.1638, 38.2657 ], [ -83.2443, 38.1924 ], [ -83.2998, 38.2091 ], [ -83.3413, 38.3195 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "085", "NAME": "Grayson", "ALAND": 1288701716 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.5928, 37.5644 ], [ -86.5034, 37.6222 ], [ -86.4472, 37.5762 ], [ -86.2753, 37.5935 ], [ -86.1141, 37.5671 ], [ -86.0476, 37.4499 ], [ -86.0736, 37.348 ], [ -86.1576, 37.3356 ], [ -86.4691, 37.3211 ], [ -86.4872, 37.3625 ], [ -86.6121, 37.3951 ], [ -86.6619, 37.5419 ], [ -86.5928, 37.5644 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "175", "NAME": "Morgan", "ALAND": 987115528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.4339, 38.034 ], [ -83.2633, 38.1154 ], [ -83.2675, 38.0589 ], [ -83.147, 38.0001 ], [ -83.0221, 38.007 ], [ -82.989, 37.964 ], [ -82.9617, 37.9129 ], [ -83.0046, 37.8592 ], [ -83.0894, 37.8903 ], [ -83.2704, 37.7668 ], [ -83.2622, 37.7127 ], [ -83.3274, 37.7796 ], [ -83.4951, 37.8619 ], [ -83.4443, 37.9425 ], [ -83.4339, 38.034 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "017", "NAME": "Bourbon", "ALAND": 750369719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.4427, 38.2832 ], [ -84.3723, 38.2795 ], [ -84.194, 38.3717 ], [ -84.0953, 38.259 ], [ -83.9779, 38.1921 ], [ -84.0805, 38.1151 ], [ -84.2865, 38.067 ], [ -84.3794, 38.1111 ], [ -84.3552, 38.178 ], [ -84.4018, 38.2079 ], [ -84.4427, 38.2832 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "239", "NAME": "Woodford", "ALAND": 489062308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.7252, 38.1954 ], [ -84.6557, 38.1795 ], [ -84.6251, 38.1164 ], [ -84.6601, 38.0037 ], [ -84.7099, 37.862 ], [ -84.8012, 37.9006 ], [ -84.7963, 37.9701 ], [ -84.8649, 38.1169 ], [ -84.8648, 38.1414 ], [ -84.7252, 38.1954 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "021", "NAME": "Boyle", "ALAND": 467270953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.0302, 37.6313 ], [ -85.025, 37.6789 ], [ -84.7449, 37.7131 ], [ -84.6583, 37.6345 ], [ -84.8473, 37.5479 ], [ -84.8981, 37.5321 ], [ -85.0397, 37.5452 ], [ -85.0302, 37.6313 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "067", "NAME": "Fayette", "ALAND": 734648557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.6251, 38.1164 ], [ -84.4018, 38.2079 ], [ -84.3552, 38.178 ], [ -84.3794, 38.1111 ], [ -84.2865, 38.067 ], [ -84.3225, 38.0009 ], [ -84.3374, 37.892 ], [ -84.4357, 37.8472 ], [ -84.4796, 37.9402 ], [ -84.6601, 38.0037 ], [ -84.6251, 38.1164 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "047", "NAME": "Christian", "ALAND": 1858332131 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.7334, 37.0021 ], [ -87.6806, 37.1492 ], [ -87.5216, 37.1053 ], [ -87.3337, 37.1572 ], [ -87.2594, 37.0724 ], [ -87.336, 36.6415 ], [ -87.6411, 36.638 ], [ -87.6942, 36.6371 ], [ -87.6738, 36.7559 ], [ -87.6597, 36.9664 ], [ -87.7334, 37.0021 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "077", "NAME": "Gallatin", "ALAND": 254698298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.7946, 38.8571 ], [ -84.6601, 38.7773 ], [ -84.7808, 38.7652 ], [ -84.7858, 38.7205 ], [ -84.9345, 38.6621 ], [ -85.0236, 38.762 ], [ -84.8939, 38.7937 ], [ -84.8116, 38.7928 ], [ -84.7946, 38.8571 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "117", "NAME": "Kenton", "ALAND": 415046493 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.6237, 39.0744 ], [ -84.5061, 39.0951 ], [ -84.4733, 39.0045 ], [ -84.4273, 38.9809 ], [ -84.4634, 38.8521 ], [ -84.4181, 38.8066 ], [ -84.5323, 38.7919 ], [ -84.6157, 38.8022 ], [ -84.598, 38.8795 ], [ -84.6237, 39.0744 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "137", "NAME": "Lincoln", "ALAND": 861773590 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.8473, 37.5479 ], [ -84.6583, 37.6345 ], [ -84.4467, 37.4859 ], [ -84.5029, 37.3288 ], [ -84.5565, 37.3557 ], [ -84.7207, 37.2383 ], [ -84.7228, 37.36 ], [ -84.8508, 37.4271 ], [ -84.8473, 37.5479 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "161", "NAME": "Mason", "ALAND": 621929398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9916, 38.5937 ], [ -83.9039, 38.7682 ], [ -83.7053, 38.6398 ], [ -83.6459, 38.637 ], [ -83.6419, 38.5254 ], [ -83.8593, 38.4563 ], [ -83.9303, 38.4923 ], [ -83.9916, 38.5937 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "191", "NAME": "Pendleton", "ALAND": 717838676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5323, 38.7919 ], [ -84.4181, 38.8066 ], [ -84.2319, 38.8749 ], [ -84.2304, 38.8274 ], [ -84.2053, 38.582 ], [ -84.4763, 38.5427 ], [ -84.5323, 38.7919 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "201", "NAME": "Robertson", "ALAND": 258768335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.162, 38.5541 ], [ -84.0908, 38.5954 ], [ -83.9916, 38.5937 ], [ -83.9303, 38.4923 ], [ -83.98, 38.4392 ], [ -84.1021, 38.4594 ], [ -84.1614, 38.5018 ], [ -84.162, 38.5541 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "207", "NAME": "Russell", "ALAND": 656969317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.232, 36.9251 ], [ -85.2058, 36.9969 ], [ -85.0433, 37.186 ], [ -84.9544, 37.1023 ], [ -84.9011, 37.1163 ], [ -84.9058, 37.0472 ], [ -84.8357, 36.9976 ], [ -85.0643, 36.8587 ], [ -85.1184, 36.8273 ], [ -85.2154, 36.8545 ], [ -85.232, 36.9251 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "221", "NAME": "Trigg", "ALAND": 1143307644 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.1573, 36.8672 ], [ -87.877, 36.9601 ], [ -87.7334, 37.0021 ], [ -87.6597, 36.9664 ], [ -87.6738, 36.7559 ], [ -87.6942, 36.6371 ], [ -87.8532, 36.6332 ], [ -87.8496, 36.6637 ], [ -88.0705, 36.6781 ], [ -88.1108, 36.7471 ], [ -88.1573, 36.8672 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "009", "NAME": "Barren", "ALAND": 1262728237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.1667, 36.934 ], [ -86.1135, 37.0611 ], [ -86.0743, 37.0533 ], [ -86.0564, 37.1672 ], [ -85.9065, 37.1484 ], [ -85.7442, 37.1698 ], [ -85.7561, 37.1098 ], [ -85.7393, 36.8415 ], [ -85.807, 36.8216 ], [ -85.9769, 36.7227 ], [ -86.0557, 36.8301 ], [ -86.1667, 36.934 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "015", "NAME": "Boone", "ALAND": 637462163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.8202, 39.1055 ], [ -84.7544, 39.1467 ], [ -84.6237, 39.0744 ], [ -84.598, 38.8795 ], [ -84.6157, 38.8022 ], [ -84.6601, 38.7773 ], [ -84.7946, 38.8571 ], [ -84.8706, 38.901 ], [ -84.8352, 38.958 ], [ -84.8781, 39.0308 ], [ -84.8202, 39.1055 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "091", "NAME": "Hancock", "ALAND": 486020451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.9788, 37.9302 ], [ -86.9193, 37.9367 ], [ -86.8148, 37.9987 ], [ -86.751, 37.9129 ], [ -86.6448, 37.8948 ], [ -86.6553, 37.8425 ], [ -86.6779, 37.7928 ], [ -86.6389, 37.6619 ], [ -86.8234, 37.7378 ], [ -86.8171, 37.7916 ], [ -86.8936, 37.882 ], [ -86.9788, 37.9302 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "023", "NAME": "Bracken", "ALAND": 532533652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.2304, 38.8274 ], [ -84.2129, 38.8057 ], [ -84.0527, 38.7714 ], [ -83.9039, 38.7682 ], [ -83.9916, 38.5937 ], [ -84.0908, 38.5954 ], [ -84.162, 38.5541 ], [ -84.2053, 38.582 ], [ -84.2304, 38.8274 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "035", "NAME": "Calloway", "ALAND": 997205960 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.4857, 36.7503 ], [ -88.1108, 36.7471 ], [ -88.0705, 36.6781 ], [ -88.0325, 36.5407 ], [ -88.0533, 36.4971 ], [ -88.4891, 36.5011 ], [ -88.4857, 36.7503 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "039", "NAME": "Carlisle", "ALAND": 490632795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.1008, 36.944 ], [ -88.9888, 36.9195 ], [ -88.816, 36.9541 ], [ -88.8129, 36.9469 ], [ -88.8132, 36.7731 ], [ -89.0673, 36.7728 ], [ -89.1235, 36.7853 ], [ -89.138, 36.8473 ], [ -89.1008, 36.944 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "045", "NAME": "Casey", "ALAND": 1150557971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.0738, 37.4137 ], [ -85.0445, 37.4191 ], [ -85.0397, 37.5452 ], [ -84.8981, 37.5321 ], [ -84.8473, 37.5479 ], [ -84.8508, 37.4271 ], [ -84.7228, 37.36 ], [ -84.7207, 37.2383 ], [ -84.9011, 37.1163 ], [ -84.9544, 37.1023 ], [ -85.0433, 37.186 ], [ -85.0569, 37.257 ], [ -85.1652, 37.3104 ], [ -85.1312, 37.3843 ], [ -85.0738, 37.4137 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "053", "NAME": "Clinton", "ALAND": 510864239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.2959, 36.6258 ], [ -85.2154, 36.8545 ], [ -85.1184, 36.8273 ], [ -85.0643, 36.8587 ], [ -85.0041, 36.7562 ], [ -85.0205, 36.6944 ], [ -84.9749, 36.6156 ], [ -85.2763, 36.6265 ], [ -85.2959, 36.6258 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "075", "NAME": "Fulton", "ALAND": 533214585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.3276, 36.6322 ], [ -89.2273, 36.5694 ], [ -89.1747, 36.6505 ], [ -89.0267, 36.5921 ], [ -88.9039, 36.577 ], [ -88.8349, 36.5029 ], [ -89.3461, 36.5032 ], [ -89.4173, 36.499 ], [ -89.3655, 36.6251 ], [ -89.3276, 36.6322 ] ] ], [ [ [ -89.4854, 36.4975 ], [ -89.5392, 36.4979 ], [ -89.5526, 36.5772 ], [ -89.4848, 36.5718 ], [ -89.4854, 36.4975 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "103", "NAME": "Henry", "ALAND": 741450365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.314, 38.4926 ], [ -85.1683, 38.5854 ], [ -85.0746, 38.5968 ], [ -85.0092, 38.5611 ], [ -85.0286, 38.5067 ], [ -84.8802, 38.4162 ], [ -84.8705, 38.3568 ], [ -84.9977, 38.3356 ], [ -85.2831, 38.3581 ], [ -85.3461, 38.4595 ], [ -85.314, 38.4926 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "113", "NAME": "Jessamine", "ALAND": 445779168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.7099, 37.862 ], [ -84.6601, 38.0037 ], [ -84.4796, 37.9402 ], [ -84.4357, 37.8472 ], [ -84.5256, 37.7695 ], [ -84.5554, 37.7492 ], [ -84.7169, 37.8154 ], [ -84.7099, 37.862 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "129", "NAME": "Lee", "ALAND": 540937708 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9056, 37.5429 ], [ -83.8241, 37.663 ], [ -83.7221, 37.7164 ], [ -83.708, 37.7165 ], [ -83.5223, 37.6385 ], [ -83.5792, 37.5062 ], [ -83.6572, 37.5368 ], [ -83.743, 37.4943 ], [ -83.8302, 37.487 ], [ -83.8853, 37.5177 ], [ -83.9056, 37.5429 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "143", "NAME": "Lyon", "ALAND": 553844805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.2404, 36.9819 ], [ -88.2311, 37.0816 ], [ -88.1935, 37.1473 ], [ -88.0958, 37.1797 ], [ -88.0423, 37.1748 ], [ -87.9751, 37.0674 ], [ -87.877, 36.9601 ], [ -88.1573, 36.8672 ], [ -88.2404, 36.9819 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "149", "NAME": "McLean", "ALAND": 653906347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.4953, 37.6475 ], [ -87.4085, 37.6836 ], [ -87.2616, 37.622 ], [ -87.0383, 37.5608 ], [ -87.1031, 37.4809 ], [ -87.0998, 37.416 ], [ -87.2092, 37.3822 ], [ -87.296, 37.3918 ], [ -87.3511, 37.4249 ], [ -87.3751, 37.57 ], [ -87.4645, 37.5938 ], [ -87.4953, 37.6475 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "163", "NAME": "Meade", "ALAND": 791043370 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.461, 38.1212 ], [ -86.3351, 38.1292 ], [ -86.33, 38.1812 ], [ -86.2718, 38.1379 ], [ -86.2669, 38.0571 ], [ -86.179, 38.0113 ], [ -85.999, 37.9998 ], [ -85.9759, 37.8758 ], [ -86.0074, 37.8185 ], [ -86.1513, 37.7989 ], [ -86.2428, 37.877 ], [ -86.4908, 38.0457 ], [ -86.461, 38.1212 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "173", "NAME": "Montgomery", "ALAND": 511177493 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.9779, 38.1921 ], [ -83.8814, 38.1365 ], [ -83.7594, 37.9987 ], [ -83.7688, 37.9184 ], [ -83.8787, 37.9051 ], [ -83.9663, 37.9308 ], [ -84.0805, 38.1151 ], [ -83.9779, 38.1921 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "185", "NAME": "Oldham", "ALAND": 484912266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.4329, 38.5241 ], [ -85.314, 38.4926 ], [ -85.3461, 38.4595 ], [ -85.2831, 38.3581 ], [ -85.3246, 38.3101 ], [ -85.4682, 38.2853 ], [ -85.638, 38.3803 ], [ -85.5878, 38.4505 ], [ -85.4989, 38.4682 ], [ -85.4329, 38.5241 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "213", "NAME": "Simpson", "ALAND": 606584287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.7633, 36.6489 ], [ -86.7513, 36.7271 ], [ -86.6907, 36.8443 ], [ -86.6116, 36.8831 ], [ -86.5833, 36.8303 ], [ -86.4005, 36.8072 ], [ -86.4058, 36.7762 ], [ -86.4114, 36.6506 ], [ -86.5639, 36.6336 ], [ -86.5899, 36.6525 ], [ -86.7633, 36.6489 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "215", "NAME": "Spencer", "ALAND": 483493839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.4288, 38.1184 ], [ -85.4241, 38.1474 ], [ -85.1016, 38.0373 ], [ -85.1678, 37.9718 ], [ -85.3996, 37.9399 ], [ -85.4892, 37.9907 ], [ -85.4692, 38.0962 ], [ -85.4288, 38.1184 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "223", "NAME": "Trimble", "ALAND": 392766407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.3331, 38.7361 ], [ -85.1683, 38.5854 ], [ -85.314, 38.4926 ], [ -85.4329, 38.5241 ], [ -85.4283, 38.5863 ], [ -85.4521, 38.7093 ], [ -85.3331, 38.7361 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "019", "NAME": "Boyd", "ALAND": 414053933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.6655, 38.5057 ], [ -82.5935, 38.4218 ], [ -82.5719, 38.3158 ], [ -82.6046, 38.2473 ], [ -82.6348, 38.2669 ], [ -82.7942, 38.2438 ], [ -82.7717, 38.3626 ], [ -82.8175, 38.3739 ], [ -82.769, 38.4337 ], [ -82.6655, 38.5057 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "087", "NAME": "Green", "ALAND": 740837686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.6573, 37.422 ], [ -85.5835, 37.4699 ], [ -85.5845, 37.4321 ], [ -85.4781, 37.3637 ], [ -85.3528, 37.1924 ], [ -85.5269, 37.1094 ], [ -85.6323, 37.1251 ], [ -85.6865, 37.1824 ], [ -85.6973, 37.3018 ], [ -85.6573, 37.422 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "001", "NAME": "Adair", "ALAND": 1049678317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.5269, 37.1094 ], [ -85.3528, 37.1924 ], [ -85.3147, 37.2407 ], [ -85.1922, 37.2726 ], [ -85.1652, 37.3104 ], [ -85.0569, 37.257 ], [ -85.0433, 37.186 ], [ -85.2058, 36.9969 ], [ -85.232, 36.9251 ], [ -85.4518, 36.9381 ], [ -85.5036, 37.0077 ], [ -85.5269, 37.1094 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "041", "NAME": "Carroll", "ALAND": 332993713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.2016, 38.6909 ], [ -85.133, 38.7024 ], [ -85.0236, 38.762 ], [ -84.9345, 38.6621 ], [ -85.0746, 38.5968 ], [ -85.1683, 38.5854 ], [ -85.3331, 38.7361 ], [ -85.2465, 38.7318 ], [ -85.2016, 38.6909 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "057", "NAME": "Cumberland", "ALAND": 790416941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.4518, 36.9381 ], [ -85.232, 36.9251 ], [ -85.2154, 36.8545 ], [ -85.2959, 36.6258 ], [ -85.4364, 36.6185 ], [ -85.5001, 36.7334 ], [ -85.5962, 36.818 ], [ -85.4742, 36.8938 ], [ -85.4518, 36.9381 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "073", "NAME": "Franklin", "ALAND": 538073041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.9977, 38.3356 ], [ -84.8705, 38.3568 ], [ -84.7406, 38.3524 ], [ -84.7252, 38.1954 ], [ -84.8648, 38.1414 ], [ -84.8649, 38.1169 ], [ -84.9078, 38.0937 ], [ -85.0237, 38.1291 ], [ -84.9977, 38.3356 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "105", "NAME": "Hickman", "ALAND": 627487985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.1235, 36.7853 ], [ -89.0673, 36.7728 ], [ -88.8132, 36.7731 ], [ -88.8168, 36.5028 ], [ -88.8273, 36.5029 ], [ -88.8349, 36.5029 ], [ -88.9039, 36.577 ], [ -89.0267, 36.5921 ], [ -89.1747, 36.6505 ], [ -89.1995, 36.716 ], [ -89.1235, 36.7853 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "111", "NAME": "Jefferson", "ALAND": 985312154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.948, 38.0071 ], [ -85.9062, 38.0862 ], [ -85.8996, 38.1803 ], [ -85.7916, 38.2886 ], [ -85.7387, 38.2694 ], [ -85.6536, 38.3271 ], [ -85.638, 38.3803 ], [ -85.4682, 38.2853 ], [ -85.4049, 38.2637 ], [ -85.4241, 38.1474 ], [ -85.4288, 38.1184 ], [ -85.5573, 38.0738 ], [ -85.7126, 38.0873 ], [ -85.877, 38.0418 ], [ -85.9383, 37.9988 ], [ -85.948, 38.0071 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "141", "NAME": "Logan", "ALAND": 1430014712 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.0532, 37.061 ], [ -86.9414, 37.069 ], [ -86.8453, 37.0565 ], [ -86.6745, 36.9998 ], [ -86.6116, 36.8831 ], [ -86.6907, 36.8443 ], [ -86.7513, 36.7271 ], [ -86.7633, 36.6489 ], [ -87.0608, 36.6432 ], [ -87.0532, 37.061 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "145", "NAME": "McCracken", "ALAND": 644251034 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.928, 37.2266 ], [ -88.8057, 37.1886 ], [ -88.7321, 37.144 ], [ -88.6114, 37.1127 ], [ -88.5661, 37.0752 ], [ -88.483, 37.0226 ], [ -88.4841, 36.9421 ], [ -88.8129, 36.9469 ], [ -88.816, 36.9541 ], [ -88.9334, 37.2252 ], [ -88.928, 37.2266 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "157", "NAME": "Marshall", "ALAND": 780273148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.4841, 36.9421 ], [ -88.483, 37.0226 ], [ -88.3622, 37.0639 ], [ -88.2404, 36.9819 ], [ -88.1573, 36.8672 ], [ -88.1108, 36.7471 ], [ -88.4857, 36.7503 ], [ -88.4841, 36.9421 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "169", "NAME": "Metcalfe", "ALAND": 750178426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.7442, 37.1698 ], [ -85.6865, 37.1824 ], [ -85.6323, 37.1251 ], [ -85.5269, 37.1094 ], [ -85.5036, 37.0077 ], [ -85.4518, 36.9381 ], [ -85.4742, 36.8938 ], [ -85.5962, 36.818 ], [ -85.7393, 36.8415 ], [ -85.7561, 37.1098 ], [ -85.7442, 37.1698 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "171", "NAME": "Monroe", "ALAND": 853073327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.9769, 36.7227 ], [ -85.807, 36.8216 ], [ -85.7393, 36.8415 ], [ -85.5962, 36.818 ], [ -85.5001, 36.7334 ], [ -85.4364, 36.6185 ], [ -85.7886, 36.6218 ], [ -85.9729, 36.6285 ], [ -85.9769, 36.7227 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "199", "NAME": "Pulaski", "ALAND": 1705273851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.9011, 37.1163 ], [ -84.7207, 37.2383 ], [ -84.5565, 37.3557 ], [ -84.5029, 37.3288 ], [ -84.2891, 37.1517 ], [ -84.358, 36.9594 ], [ -84.4168, 36.9469 ], [ -84.5782, 36.8671 ], [ -84.6792, 36.9809 ], [ -84.7702, 36.9578 ], [ -84.8357, 36.9976 ], [ -84.9058, 37.0472 ], [ -84.9011, 37.1163 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "211", "NAME": "Shelby", "ALAND": 983257095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.2831, 38.3581 ], [ -84.9977, 38.3356 ], [ -85.0237, 38.1291 ], [ -85.1016, 38.0373 ], [ -85.4241, 38.1474 ], [ -85.4049, 38.2637 ], [ -85.4682, 38.2853 ], [ -85.3246, 38.3101 ], [ -85.2831, 38.3581 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "227", "NAME": "Warren", "ALAND": 1402743723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.3992, 37.1699 ], [ -86.2818, 37.0806 ], [ -86.2186, 37.104 ], [ -86.1135, 37.0611 ], [ -86.1667, 36.934 ], [ -86.4058, 36.7762 ], [ -86.4005, 36.8072 ], [ -86.5833, 36.8303 ], [ -86.6116, 36.8831 ], [ -86.6745, 36.9998 ], [ -86.6182, 37.1839 ], [ -86.4673, 37.1535 ], [ -86.3992, 37.1699 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "233", "NAME": "Webster", "ALAND": 859730052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.933, 37.4801 ], [ -87.7345, 37.6384 ], [ -87.4953, 37.6475 ], [ -87.4645, 37.5938 ], [ -87.3751, 37.57 ], [ -87.4987, 37.4871 ], [ -87.5936, 37.462 ], [ -87.8134, 37.3506 ], [ -87.801, 37.3794 ], [ -87.847, 37.4208 ], [ -87.9288, 37.4086 ], [ -87.933, 37.4801 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "037", "NAME": "Campbell", "ALAND": 391910592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.5061, 39.0951 ], [ -84.3199, 39.0221 ], [ -84.2319, 38.8749 ], [ -84.4181, 38.8066 ], [ -84.4634, 38.8521 ], [ -84.4273, 38.9809 ], [ -84.4733, 39.0045 ], [ -84.5061, 39.0951 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "081", "NAME": "Grant", "ALAND": 668126188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.6601, 38.7773 ], [ -84.6157, 38.8022 ], [ -84.5323, 38.7919 ], [ -84.4763, 38.5427 ], [ -84.5574, 38.4929 ], [ -84.5805, 38.473 ], [ -84.7743, 38.6186 ], [ -84.7858, 38.7205 ], [ -84.7808, 38.7652 ], [ -84.6601, 38.7773 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "219", "NAME": "Todd", "ALAND": 969942107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.2594, 37.0724 ], [ -87.2503, 37.0406 ], [ -87.0532, 37.061 ], [ -87.0608, 36.6432 ], [ -87.115, 36.6424 ], [ -87.336, 36.6415 ], [ -87.2594, 37.0724 ] ] ] ] } },
{ "type": "Feature", "properties": { "COUNTYFP": "225", "NAME": "Union", "ALAND": 887974711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.028, 37.7992 ], [ -87.9445, 37.7753 ], [ -87.9068, 37.8076 ], [ -87.9271, 37.9017 ], [ -87.8199, 37.7683 ], [ -87.7775, 37.7654 ], [ -87.7345, 37.6384 ], [ -87.933, 37.4801 ], [ -88.0613, 37.5053 ], [ -88.1334, 37.5743 ], [ -88.1582, 37.6645 ], [ -88.0638, 37.7386 ], [ -88.028, 37.7992 ] ] ] ] } }
]
}
@bquast
Copy link

bquast commented Aug 23, 2017

Thanks, this is great. Small comment, on line 22:

color: #005DAA; /* offical UK Kentucky blue */

should be University of Kentucky blue or UK blue

@bquast
Copy link

bquast commented Aug 23, 2017

Also, v.4 of D3 changes the namespace, updating:

Line 5:

<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.min.js"></script>

Line 42:

var projection = d3.geoAlbers()

Line 48:

var geoPath = d3.geoPath()

Fixes it (though perhaps there is a more elegant way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment