My attempt to create a timeline slider applied to a choropleth map showing the amount of medicaid spending by county for the state of Oklahoma from 2000 to 2010. Data courtesy of the Oklahoma Policy Institute.
Last active
December 16, 2015 06:38
-
-
Save darrenjaworski/5392389 to your computer and use it in GitHub Desktop.
Choropleth with time slider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.county-border { | |
fill: none; | |
stroke: white; | |
pointer-events: none; | |
} | |
.axis text { | |
font: 10px sans-serif; | |
} | |
.axis line, .axis path { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
div.tooltip { | |
position: absolute; | |
text-align: left; | |
padding: 2px; | |
font: 12px sans-serif; | |
background: #bbb; | |
border: 0px; | |
border-radius: 8px; | |
pointer-events: none; | |
} | |
</style> | |
<html> | |
<body> | |
<input id="slider" type="range" min="2000" max="2010" value="2000" step="1" /> | |
<span id="range">2000</span> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script src="https://raw.github.com/fryn/html5slider/master/html5slider.js"></script> | |
<script type="text/javascript"> | |
onload = function() { | |
var $ = function(id) { return document.getElementById(id); }; | |
$('slider').oninput = function() { $('range').innerHTML = this.value; }; | |
$('slider').oninput(); | |
}; | |
</script> | |
<script> | |
//choropleth | |
var width = 800, height = 400; | |
var value; | |
var formatCurrency = d3.format(","); | |
var div = d3.select("body").append("div").attr("class", "tooltip").style("opacity", 0); | |
var color = d3.scale.linear().domain([560994, 704013191]).range(["#FEE8C8", "#B30000"]); | |
var projection = d3.geo.conicConformal().parallels([35 + 34 / 60, 90 + 46 / 60]).rotate([98 + 00 / 60, -35 + 00 / 60]).translate([width / 2, height / 2]); | |
var path = d3.geo.path().projection(projection); | |
var svg = d3.select("body").append("svg").attr("width", width).attr("height", height); | |
d3.json("ok-countiesMedicaid.json", function(error, ok) { | |
var counties = topojson.feature(ok, ok.objects.counties); | |
projection.scale(1).translate([0, 0]); | |
var b = path.bounds(counties), s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height), t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2]; | |
projection.scale(s).translate(t); | |
svg.selectAll("path").data(counties.features.filter(function(d) { | |
return d.id; | |
})).enter().append("path").attr("class", "county").attr("d", path).style("fill", function(d) { | |
return color(d.properties.aught); | |
}) | |
.on("mouseover", function (d) { | |
div.transition() | |
.duration(200) | |
.style("opacity", .9); | |
div.html( | |
"<h2>County: " + d.properties.county + "</h2>" | |
+ "<table><tr><th>Year</th><th>Medicaid Amount</th></tr>" | |
+ "<tr><td>2000</td><td>$" + formatCurrency(d.properties.aught) + "</td></tr>" | |
+ "<tr><td>2001</td><td>$" + formatCurrency(d.properties.one) + "</td></tr>" | |
+ "<tr><td>2002</td><td>$" + formatCurrency(d.properties.two) + "</td></tr>" | |
+ "<tr><td>2003</td><td>$" + formatCurrency(d.properties.three) + "</td></tr>" | |
+ "<tr><td>2004</td><td>$" + formatCurrency(d.properties.four) + "</td></tr>" | |
+ "<tr><td>2005</td><td>$" + formatCurrency(d.properties.five) + "</td></tr>" | |
+ "<tr><td>2006</td><td>$" + formatCurrency(d.properties.six) + "</td></tr>" | |
+ "<tr><td>2007</td><td>$" + formatCurrency(d.properties.seven) + "</td></tr>" | |
+ "<tr><td>2008</td><td>$" + formatCurrency(d.properties.eight) + "</td></tr>" | |
+ "<tr><td>2009</td><td>$" + formatCurrency(d.properties.nine) + "</td></tr>" | |
+ "<tr><td>2010</td><td>$" + formatCurrency(d.properties.ten) + "</td></tr></table>" | |
) | |
.style("left", (d3.event.pageX) + "px") | |
.style("top", (d3.event.pageY) + "px") | |
}) | |
.on("mouseout", function (d){ | |
div.transition() | |
.duration(500) | |
.style("opacity", 0); | |
}); | |
svg.append("path").datum(topojson.mesh(ok, ok.objects.counties, function(a, b) { | |
return a !== b; | |
})).attr("class", "county-border").attr("d", path); | |
d3.selectAll("input").on("change", function change() { | |
var value = this.value; | |
d3.selectAll("path").style("fill", function(d) { | |
switch (value) { | |
case "2000": | |
return color(d.properties.aught); | |
break; | |
case "2001": | |
return color(d.properties.one); | |
break; | |
case "2002": | |
return color(d.properties.two); | |
break; | |
case "2003": | |
return color(d.properties.three); | |
break; | |
case "2004": | |
return color(d.properties.four); | |
break; | |
case "2005": | |
return color(d.properties.five); | |
break; | |
case "2006": | |
return color(d.properties.six); | |
break; | |
case "2007": | |
return color(d.properties.seven); | |
break; | |
case "2008": | |
return color(d.properties.eight); | |
break; | |
case "2009": | |
return color(d.properties.nine); | |
break; | |
case "2010": | |
return color(d.properties.ten); | |
break; | |
} | |
}); | |
}); | |
}); | |
//end choropleth | |
//key | |
var w = 140, h = 400; | |
var key = d3.select("body").append("svg").attr("id", "key").attr("width", w).attr("height", h); | |
var legend = key.append("defs").append("svg:linearGradient").attr("id", "gradient").attr("x1", "100%").attr("y1", "0%").attr("x2", "100%").attr("y2", "100%").attr("spreadMethod", "pad"); | |
legend.append("stop").attr("offset", "0%").attr("stop-color", "#B30000").attr("stop-opacity", 1); | |
legend.append("stop").attr("offset", "100%").attr("stop-color", "#FEE8c8").attr("stop-opacity", 1); | |
key.append("rect").attr("width", w - 100).attr("height", h - 100).style("fill", "url(#gradient)").attr("transform", "translate(0,10)"); | |
var y = d3.scale.linear().range([300, 0]).domain([560994, 704013191]); | |
var yAxis = d3.svg.axis().scale(y).orient("right"); | |
key.append("g").attr("class", "y axis").attr("transform", "translate(41,10)").call(yAxis).append("text").attr("transform", "rotate(-90)").attr("y", 30).attr("dy", ".71em").style("text-anchor", "end"); | |
//.text("% Hispanic"); | |
//end key | |
d3.select(self.frameElement).style("height", height + "px"); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "Topology", | |
"transform": { | |
"scale": [0.0008572257225722569, 0.00033851385138513907], | |
"translate": [-103.0014, 33.6155] | |
}, | |
"objects": { | |
"counties": { | |
"type": "GeometryCollection", | |
"geometries": [ | |
{ | |
"type": "MultiPolygon", | |
"arcs": [[[0, 1, 2, 3] | |
] | |
], | |
"id": "1", | |
"properties": { | |
"aught": "12651807.84", | |
"one": "15524819", | |
"two": "19122990", | |
"three": "19404568", | |
"four": "21500079", | |
"five": "23218904", | |
"six": "24876577", | |
"seven": "28182110", | |
"eight": "31905978", | |
"nine": "34661312", | |
"ten": "37707119", | |
"id": "1", | |
"county": "Adair" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[4, 5, 6, 7, 8] | |
] | |
], | |
"id": "2", | |
"properties": { | |
"aught": "1908202.97", | |
"one": "2331000", | |
"two": "2023843", | |
"three": "1821438", | |
"four": "1800208", | |
"five": "2229717", | |
"six": "2034444", | |
"seven": "2282345", | |
"eight": "2391062", | |
"nine": "3620435", | |
"ten": "2519214", | |
"id": "2", | |
"county": "Alfalfa" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[9, 10, 11, 12, 13, 14] | |
] | |
], | |
"id": "3", | |
"properties": { | |
"aught": "8735649.53", | |
"one": "10014392", | |
"two": "9622521", | |
"three": "9023767", | |
"four": "8743329", | |
"five": "9657816", | |
"six": "11764757", | |
"seven": "13054944", | |
"eight": "14382924", | |
"nine": "15481455", | |
"ten": "17944845", | |
"id": "3", | |
"county": "Atoka" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[15, 16, 17, 18, 19] | |
] | |
], | |
"id": "4", | |
"properties": { | |
"aught": "1012513.1", | |
"one": "1267593", | |
"two": "1283466", | |
"three": "1394206", | |
"four": "1652644", | |
"five": "1716318", | |
"six": "1804373", | |
"seven": "1811789", | |
"eight": "1875454", | |
"nine": "2043176", | |
"ten": "2234330", | |
"id": "4", | |
"county": "Beaver" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[20, 21, 22, 23, 24, 25, 26] | |
] | |
], | |
"id": "5", | |
"properties": { | |
"aught": "11911145.05", | |
"one": "13598503", | |
"two": "16236415", | |
"three": "17157805", | |
"four": "17393782", | |
"five": "18329237", | |
"six": "19733547", | |
"seven": "21414422", | |
"eight": "23329896", | |
"nine": "23349745", | |
"ten": "25876176", | |
"id": "5", | |
"county": "Beckham" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[27, 28, 29, 30, 31, 32] | |
] | |
], | |
"id": "6", | |
"properties": { | |
"aught": "6156959.62", | |
"one": "6811386", | |
"two": "7406853", | |
"three": "7103554", | |
"four": "7540137", | |
"five": "8090527", | |
"six": "8212300", | |
"seven": "9452118", | |
"eight": "10191131", | |
"nine": "10236429", | |
"ten": "11578962", | |
"id": "6", | |
"county": "Blaine" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[33, 34, 35, 36, -12] | |
] | |
], | |
"id": "7", | |
"properties": { | |
"aught": "21130795.63", | |
"one": "26101068", | |
"two": "28928822", | |
"three": "27833421", | |
"four": "30893254", | |
"five": "32847740", | |
"six": "39767057", | |
"seven": "42088178", | |
"eight": "45040877", | |
"nine": "48958399", | |
"ten": "51498814", | |
"id": "7", | |
"county": "Bryan" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[37, 38, 39, 40, 41, 42, -29] | |
] | |
], | |
"id": "8", | |
"properties": { | |
"aught": "15852936.6", | |
"one": "18111399", | |
"two": "20751475", | |
"three": "19207465", | |
"four": "21461132", | |
"five": "22647685", | |
"six": "25065519", | |
"seven": "25736472", | |
"eight": "26711903", | |
"nine": "28404726", | |
"ten": "33327478", | |
"id": "8", | |
"county": "Caddo" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[43, 44, -38, -28, 45, 46] | |
] | |
], | |
"id": "9", | |
"properties": { | |
"aught": "22690812.73", | |
"one": "30162095", | |
"two": "32585120", | |
"three": "30052807", | |
"four": "28318923", | |
"five": "37412854", | |
"six": "43869399", | |
"seven": "45748367", | |
"eight": "51660606", | |
"nine": "56940153", | |
"ten": "62953997", | |
"id": "9", | |
"county": "Canadian" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[47, 48, 49, 50, 51, 52, 53] | |
] | |
], | |
"id": "10", | |
"properties": { | |
"aught": "26891073.36", | |
"one": "32715954", | |
"two": "36433388", | |
"three": "34182785", | |
"four": "38203985", | |
"five": "39902572", | |
"six": "44343862", | |
"seven": "48792860", | |
"eight": "51322041", | |
"nine": "56847414", | |
"ten": "57101174", | |
"id": "10", | |
"county": "Carter" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-3, 54, 55, 56, 57, 58] | |
] | |
], | |
"id": "11", | |
"properties": { | |
"aught": "26944307.69", | |
"one": "33038397", | |
"two": "38817033", | |
"three": "38478105", | |
"four": "41205374", | |
"five": "42325384", | |
"six": "44649463", | |
"seven": "48106114", | |
"eight": "52978434", | |
"nine": "54779298", | |
"ten": "60386095", | |
"id": "11", | |
"county": "Cherokee" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[59, 60, -34, -11, 61] | |
] | |
], | |
"id": "12", | |
"properties": { | |
"aught": "12903248.45", | |
"one": "14759480", | |
"two": "16914966", | |
"three": "17238411", | |
"four": "19058814", | |
"five": "20220229", | |
"six": "23867279", | |
"seven": "24393759", | |
"eight": "26737600", | |
"nine": "26284389", | |
"ten": "27088565", | |
"id": "12", | |
"county": "Choctaw" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[62, 63] | |
] | |
], | |
"id": "13", | |
"properties": { | |
"aught": "560994.5", | |
"one": "664052", | |
"two": "792936", | |
"three": "1149262", | |
"four": "1090436", | |
"five": "1137356", | |
"six": "1173639", | |
"seven": "1421321", | |
"eight": "1039970", | |
"nine": "1242508", | |
"ten": "1223863", | |
"id": "13", | |
"county": "Cimarron" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[64, -44, 65, 66] | |
] | |
], | |
"id": "14", | |
"properties": { | |
"aught": "47847262.83", | |
"one": "60612943", | |
"two": "75377435", | |
"three": "72106089", | |
"four": "69656967", | |
"five": "90432083", | |
"six": "107080029", | |
"seven": "121836079", | |
"eight": "140423328", | |
"nine": "149229264", | |
"ten": "156235358", | |
"id": "14", | |
"county": "Cleveland" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-14, 67, 68, 69, 70] | |
] | |
], | |
"id": "15", | |
"properties": { | |
"aught": "4369904.72", | |
"one": "5351119", | |
"two": "6619541", | |
"three": "6531259", | |
"four": "7073017", | |
"five": "7127483", | |
"six": "8138318", | |
"seven": "7966252", | |
"eight": "7839564", | |
"nine": "8533277", | |
"ten": "9189174", | |
"id": "15", | |
"county": "Coal" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[71, 72, 73, 74, 75, -40] | |
] | |
], | |
"id": "16", | |
"properties": { | |
"aught": "37114731.56", | |
"one": "44594228", | |
"two": "51373900", | |
"three": "48529358", | |
"four": "41041076", | |
"five": "57131290", | |
"six": "63441530", | |
"seven": "66070928", | |
"eight": "73357624", | |
"nine": "76658460", | |
"ten": "80949736", | |
"id": "16", | |
"county": "Comanche" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[76, 77, 78, -74, 79] | |
] | |
], | |
"id": "17", | |
"properties": { | |
"aught": "2440168.16", | |
"one": "3436527", | |
"two": "4251028", | |
"three": "4130434", | |
"four": "4344171", | |
"five": "4410059", | |
"six": "4722166", | |
"seven": "5689642", | |
"eight": "5792391", | |
"nine": "6067238", | |
"ten": "5744003", | |
"id": "17", | |
"county": "Cotton" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[80, 81, 82, 83, 84, 85] | |
] | |
], | |
"id": "18", | |
"properties": { | |
"aught": "15680613.34", | |
"one": "19771100", | |
"two": "21270949", | |
"three": "21087223", | |
"four": "23452119", | |
"five": "22374543", | |
"six": "24468025", | |
"seven": "25413736", | |
"eight": "26194001", | |
"nine": "27139079", | |
"ten": "28838943", | |
"id": "18", | |
"county": "Craig" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[86, 87, 88, 89, 90, 91] | |
] | |
], | |
"id": "19", | |
"properties": { | |
"aught": "33331195.74", | |
"one": "41293971", | |
"two": "44797526", | |
"three": "43121116", | |
"four": "42566371", | |
"five": "53185850", | |
"six": "60761873", | |
"seven": "68174521", | |
"eight": "76032936", | |
"nine": "80104344", | |
"ten": "89487678", | |
"id": "19", | |
"county": "Creek" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-43, 92, -26, 93, 94, -30] | |
] | |
], | |
"id": "20", | |
"properties": { | |
"aught": "10398773", | |
"one": "12393193", | |
"two": "15097452", | |
"three": "15202209", | |
"four": "16732917", | |
"five": "18220740", | |
"six": "20621781", | |
"seven": "23688030", | |
"eight": "25276913", | |
"nine": "25720283", | |
"ten": "29062262", | |
"id": "20", | |
"county": "Custer" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[95, -4, -59, 96, -81, 97] | |
] | |
], | |
"id": "21", | |
"properties": { | |
"aught": "16978595.04", | |
"one": "22033999", | |
"two": "26034340", | |
"three": "24011717", | |
"four": "26866953", | |
"five": "28412228", | |
"six": "30865275", | |
"seven": "33325985", | |
"eight": "39267104", | |
"nine": "42572802", | |
"ten": "44437377", | |
"id": "21", | |
"county": "Delaware" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-95, 98, 99, 100, 101, -31] | |
] | |
], | |
"id": "22", | |
"properties": { | |
"aught": "2141565.53", | |
"one": "2535246", | |
"two": "2737799", | |
"three": "2952074", | |
"four": "2914397", | |
"five": "3594468", | |
"six": "3774288", | |
"seven": "3456734", | |
"eight": "3342477", | |
"nine": "3467888", | |
"ten": "3370043", | |
"id": "22", | |
"county": "Dewey" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[102, -100, 103, 104, -16, 105] | |
] | |
], | |
"id": "23", | |
"properties": { | |
"aught": "1566090.64", | |
"one": "1882582", | |
"two": "2018929", | |
"three": "2172653", | |
"four": "2435106", | |
"five": "2052539", | |
"six": "2054557", | |
"seven": "2328902", | |
"eight": "2264688", | |
"nine": "2132443", | |
"ten": "2616745", | |
"id": "23", | |
"county": "Ellis" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[106, 107, 108, -7, 109, 110] | |
] | |
], | |
"id": "24", | |
"properties": { | |
"aught": "60196845.79", | |
"one": "68187653", | |
"two": "74310282", | |
"three": "64277602", | |
"four": "76752103", | |
"five": "76133880", | |
"six": "86947018", | |
"seven": "90044693", | |
"eight": "93359659", | |
"nine": "97033076", | |
"ten": "97045841", | |
"id": "24", | |
"county": "Garfield" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[111, -54, 112, 113, 114, 115] | |
] | |
], | |
"id": "25", | |
"properties": { | |
"aught": "45204784.94", | |
"one": "49850960", | |
"two": "52807212", | |
"three": "48169795", | |
"four": "54239794", | |
"five": "53231839", | |
"six": "61307951", | |
"seven": "59019542", | |
"eight": "59835441", | |
"nine": "60003337", | |
"ten": "61154293", | |
"id": "25", | |
"county": "Garvin" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-114, 116, -72, -39, -45, 117] | |
] | |
], | |
"id": "26", | |
"properties": { | |
"aught": "16370989.07", | |
"one": "20031207", | |
"two": "23376802", | |
"three": "22769732", | |
"four": "20092254", | |
"five": "26707757", | |
"six": "29874432", | |
"seven": "33217331", | |
"eight": "36665305", | |
"nine": "41690771", | |
"ten": "44035241", | |
"id": "26", | |
"county": "Grady" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-110, -6, 118, 119] | |
] | |
], | |
"id": "27", | |
"properties": { | |
"aught": "2341539.82", | |
"one": "2851122", | |
"two": "3363770", | |
"three": "2960917", | |
"four": "3224923", | |
"five": "3559690", | |
"six": "3278424", | |
"seven": "3432897", | |
"eight": "3816171", | |
"nine": "3169403", | |
"ten": "3149321", | |
"id": "27", | |
"county": "Grant" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[120, 121, 122, -22] | |
] | |
], | |
"id": "28", | |
"properties": { | |
"aught": "3140115.88", | |
"one": "3700064", | |
"two": "4589991", | |
"three": "4604596", | |
"four": "4074166", | |
"five": "4608471", | |
"six": "5897108", | |
"seven": "6324091", | |
"eight": "7514369", | |
"nine": "8124269", | |
"ten": "7910285", | |
"id": "28", | |
"county": "Greer" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-123, 123, 124, -23] | |
] | |
], | |
"id": "29", | |
"properties": { | |
"aught": "2328177.91", | |
"one": "3212179", | |
"two": "3588273", | |
"three": "3405113", | |
"four": "3774899", | |
"five": "4311964", | |
"six": "4967772", | |
"seven": "4914948", | |
"eight": "4538002", | |
"nine": "4404508", | |
"ten": "4820679", | |
"id": "29", | |
"county": "Harmon" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[125, 126, 127, -106, -20] | |
] | |
], | |
"id": "30", | |
"properties": { | |
"aught": "1560760.4", | |
"one": "1709902", | |
"two": "2039504", | |
"three": "2225921", | |
"four": "2187881", | |
"five": "2236880", | |
"six": "2197592", | |
"seven": "2410523", | |
"eight": "2431531", | |
"nine": "2212111", | |
"ten": "2244897", | |
"id": "30", | |
"county": "Harper" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[128, 129, 130, 131, 132, 133] | |
] | |
], | |
"id": "31", | |
"properties": { | |
"aught": "7607398.34", | |
"one": "9234769", | |
"two": "10701217", | |
"three": "9882461", | |
"four": "10170839", | |
"five": "11703772", | |
"six": "12952828", | |
"seven": "14503169", | |
"eight": "16701472", | |
"nine": "17431274", | |
"ten": "19558624", | |
"id": "31", | |
"county": "Haskell" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[134, -70, 135, 136, 137, 138] | |
] | |
], | |
"id": "32", | |
"properties": { | |
"aught": "13400269.37", | |
"one": "16177692", | |
"two": "17744803", | |
"three": "16366528", | |
"four": "17227789", | |
"five": "18328916", | |
"six": "19418959", | |
"seven": "18965161", | |
"eight": "19407240", | |
"nine": "19117407", | |
"ten": "22093362", | |
"id": "32", | |
"county": "Hughes" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[139, 140, 141, -124, -122] | |
] | |
], | |
"id": "33", | |
"properties": { | |
"aught": "11783364.37", | |
"one": "15094131", | |
"two": "17092381", | |
"three": "16221886", | |
"four": "14124879", | |
"five": "18437811", | |
"six": "18758238", | |
"seven": "20531799", | |
"eight": "22602871", | |
"nine": "26634192", | |
"ten": "25771889", | |
"id": "33", | |
"county": "Jackson" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[142, 143, -77, 144, -52] | |
] | |
], | |
"id": "34", | |
"properties": { | |
"aught": "5083428.31", | |
"one": "6153066", | |
"two": "7131500", | |
"three": "6296495", | |
"four": "6195513", | |
"five": "6359219", | |
"six": "6648572", | |
"seven": "7422064", | |
"eight": "8272549", | |
"nine": "9319048", | |
"ten": "9675425", | |
"id": "34", | |
"county": "Jefferson" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-68, -13, -37, 145, -49, 146, 147] | |
] | |
], | |
"id": "35", | |
"properties": { | |
"aught": "6412720.93", | |
"one": "7809050", | |
"two": "9241843", | |
"three": "7882628", | |
"four": "8450942", | |
"five": "9927935", | |
"six": "12037192", | |
"seven": "13682002", | |
"eight": "16100311", | |
"nine": "17158759", | |
"ten": "17534743", | |
"id": "35", | |
"county": "Johnston" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[148, -120, 149, 150] | |
] | |
], | |
"id": "36", | |
"properties": { | |
"aught": "16098459.16", | |
"one": "20177143", | |
"two": "24746618", | |
"three": "25771205", | |
"four": "29451234", | |
"five": "32161726", | |
"six": "35438566", | |
"seven": "40601020", | |
"eight": "42966576", | |
"nine": "47992405", | |
"ten": "52922368", | |
"id": "36", | |
"county": "Kay" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-46, -33, 151, -108, 152] | |
] | |
], | |
"id": "37", | |
"properties": { | |
"aught": "4463737.12", | |
"one": "5340467", | |
"two": "6023719", | |
"three": "5630981", | |
"four": "6158609", | |
"five": "6481657", | |
"six": "7658956", | |
"seven": "7206941", | |
"eight": "7889868", | |
"nine": "9050589", | |
"ten": "12010305", | |
"id": "37", | |
"county": "Kingfisher" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-76, 153, -140, -121, -21, 154, -41] | |
] | |
], | |
"id": "38", | |
"properties": { | |
"aught": "7723889.68", | |
"one": "9507614", | |
"two": "10740965", | |
"three": "10578054", | |
"four": "8629908", | |
"five": "9789874", | |
"six": "10366632", | |
"seven": "10332257", | |
"eight": "10699740", | |
"nine": "12309927", | |
"ten": "13414227", | |
"id": "38", | |
"county": "Kiowa" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[155, 156, 157, -131] | |
] | |
], | |
"id": "39", | |
"properties": { | |
"aught": "7812921.32", | |
"one": "8264013", | |
"two": "8188614", | |
"three": "8141178", | |
"four": "8390543", | |
"five": "8735199", | |
"six": "9421177", | |
"seven": "10483707", | |
"eight": "11608056", | |
"nine": "12157495", | |
"ten": "14111415", | |
"id": "39", | |
"county": "Latimer" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[158, 159, 160, -156, -130, 161] | |
] | |
], | |
"id": "40", | |
"properties": { | |
"aught": "25409880.42", | |
"one": "32799241", | |
"two": "41663831", | |
"three": "42286549", | |
"four": "45692813", | |
"five": "49590807", | |
"six": "50262717", | |
"seven": "52408253", | |
"eight": "56546972", | |
"nine": "60189074", | |
"ten": "64361482", | |
"id": "40", | |
"county": "Le Flore" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[162, 163, 164, 165, 166, -90] | |
] | |
], | |
"id": "41", | |
"properties": { | |
"aught": "10853898.78", | |
"one": "14181014", | |
"two": "16173613", | |
"three": "16053206", | |
"four": "13855728", | |
"five": "18605577", | |
"six": "20124199", | |
"seven": "23089242", | |
"eight": "25310399", | |
"nine": "25854121", | |
"ten": "28454926", | |
"id": "41", | |
"county": "Lincoln" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[167, -166, 168, -153, -107, 169] | |
] | |
], | |
"id": "42", | |
"properties": { | |
"aught": "12539949.24", | |
"one": "14804467", | |
"two": "17460923", | |
"three": "18351640", | |
"four": "16537252", | |
"five": "21537853", | |
"six": "23250798", | |
"seven": "26891334", | |
"eight": "30311141", | |
"nine": "34072830", | |
"ten": "36454268", | |
"id": "42", | |
"county": "Logan" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[170, 171, -143, -51] | |
] | |
], | |
"id": "43", | |
"properties": { | |
"aught": "3326465.36", | |
"one": "4103674", | |
"two": "4839283", | |
"three": "4532756", | |
"four": "4995517", | |
"five": "5761328", | |
"six": "6633909", | |
"seven": "6888451", | |
"eight": "7430538", | |
"nine": "8358472", | |
"ten": "9111903", | |
"id": "43", | |
"county": "Love" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[172, -8, -109, -152, -32, -102, 173] | |
] | |
], | |
"id": "44", | |
"properties": { | |
"aught": "2324513.97", | |
"one": "3372529", | |
"two": "3680155", | |
"three": "3569405", | |
"four": "3867496", | |
"five": "3924339", | |
"six": "3902126", | |
"seven": "4573418", | |
"eight": "4873264", | |
"nine": "4302211", | |
"ten": "4730519", | |
"id": "44", | |
"county": "Major" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-146, -36, 174, -171, -50] | |
] | |
], | |
"id": "45", | |
"properties": { | |
"aught": "7420349.14", | |
"one": "8495929", | |
"two": "9173699", | |
"three": "8932962", | |
"four": "9810181", | |
"five": "10954950", | |
"six": "12743941", | |
"seven": "14272050", | |
"eight": "15788504", | |
"nine": "15502919", | |
"ten": "17391963", | |
"id": "45", | |
"county": "Marshall" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-58, 175, 176, -82, -97] | |
] | |
], | |
"id": "46", | |
"properties": { | |
"aught": "17560632.15", | |
"one": "22396069", | |
"two": "26309047", | |
"three": "26142746", | |
"four": "30625010", | |
"five": "31854911", | |
"six": "35654932", | |
"seven": "39975315", | |
"eight": "41426705", | |
"nine": "46246052", | |
"ten": "49644479", | |
"id": "46", | |
"county": "Mayes" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-65, 177, 178, -115, -118] | |
] | |
], | |
"id": "47", | |
"properties": { | |
"aught": "7134915.78", | |
"one": "9529268", | |
"two": "11154769", | |
"three": "10223867", | |
"four": "9571181", | |
"five": "12504873", | |
"six": "13663857", | |
"seven": "15864453", | |
"eight": "17692727", | |
"nine": "20011487", | |
"ten": "21134980", | |
"id": "47", | |
"county": "McClain" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[179, -60, 180, -160] | |
] | |
], | |
"id": "48", | |
"properties": { | |
"aught": "23735457.48", | |
"one": "28745904", | |
"two": "32342528", | |
"three": "30493619", | |
"four": "32380545", | |
"five": "36262201", | |
"six": "42196122", | |
"seven": "47196850", | |
"eight": "48749708", | |
"nine": "50192793", | |
"ten": "53377195", | |
"id": "48", | |
"county": "McCurtain" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-133, 181, -139, 182, 183, 184] | |
] | |
], | |
"id": "49", | |
"properties": { | |
"aught": "11427282.29", | |
"one": "13758231", | |
"two": "16292391", | |
"three": "16575269", | |
"four": "18334690", | |
"five": "19549614", | |
"six": "22433225", | |
"seven": "22753810", | |
"eight": "26177100", | |
"nine": "27828837", | |
"ten": "30891508", | |
"id": "49", | |
"county": "McIntosh" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[185, -147, -48, -112] | |
] | |
], | |
"id": "50", | |
"properties": { | |
"aught": "6391305.64", | |
"one": "8594479", | |
"two": "10245131", | |
"three": "9103952", | |
"four": "9233028", | |
"five": "10342445", | |
"six": "10506698", | |
"seven": "12089190", | |
"eight": "13750538", | |
"nine": "13308935", | |
"ten": "13881712", | |
"id": "50", | |
"county": "Murray" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-56, 186, -134, -185, 187, 188] | |
] | |
], | |
"id": "51", | |
"properties": { | |
"aught": "45666798.28", | |
"one": "52366014", | |
"two": "66581671", | |
"three": "65093190", | |
"four": "70116588", | |
"five": "74399193", | |
"six": "82218254", | |
"seven": "87805757", | |
"eight": "96739847", | |
"nine": "101738513", | |
"ten": "108478958", | |
"id": "51", | |
"county": "Muskogee" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[189, 190, 191, -170, -111, -149] | |
] | |
], | |
"id": "52", | |
"properties": { | |
"aught": "6797094.88", | |
"one": "8265198", | |
"two": "9470058", | |
"three": "9560795", | |
"four": "10294263", | |
"five": "10668003", | |
"six": "11166289", | |
"seven": "12552434", | |
"eight": "14231667", | |
"nine": "13227427", | |
"ten": "12829208", | |
"id": "52", | |
"county": "Noble" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[192, 193, 194, -84] | |
] | |
], | |
"id": "53", | |
"properties": { | |
"aught": "5618306.58", | |
"one": "6923963", | |
"two": "7957334", | |
"three": "7531920", | |
"four": "8815550", | |
"five": "8204528", | |
"six": "9107836", | |
"seven": "9458320", | |
"eight": "9911613", | |
"nine": "10695377", | |
"ten": "10588666", | |
"id": "53", | |
"county": "Nowata" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[195, -183, -138, 196, 197, -163, -89] | |
] | |
], | |
"id": "54", | |
"properties": { | |
"aught": "9986949.67", | |
"one": "11131509", | |
"two": "15244481", | |
"three": "15434049", | |
"four": "16843844", | |
"five": "19074918", | |
"six": "20989603", | |
"seven": "23305673", | |
"eight": "23258549", | |
"nine": "23519137", | |
"ten": "24558493", | |
"id": "54", | |
"county": "Okfuskee" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[198, -66, -47, -169, -165] | |
] | |
], | |
"id": "55", | |
"properties": { | |
"aught": "242962298.1", | |
"one": "356957173", | |
"two": "419871232", | |
"three": "346889231", | |
"four": "309911252", | |
"five": "426741767", | |
"six": "491396397", | |
"seven": "547417577", | |
"eight": "600255020", | |
"nine": "645520342", | |
"ten": "704013191", | |
"id": "55", | |
"county": "Oklahoma" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[199, -188, -184, -196, -88, 200] | |
] | |
], | |
"id": "56", | |
"properties": { | |
"aught": "26118378.86", | |
"one": "30825856", | |
"two": "36831045", | |
"three": "36192889", | |
"four": "40360164", | |
"five": "43560833", | |
"six": "47330183", | |
"seven": "50879398", | |
"eight": "58176991", | |
"nine": "62236313", | |
"ten": "69194278", | |
"id": "56", | |
"county": "Okmulgee" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[201, 202, -190, -151, 203, 204] | |
] | |
], | |
"id": "57", | |
"properties": { | |
"aught": "13582153.77", | |
"one": "17040358", | |
"two": "20034250", | |
"three": "19169373", | |
"four": "20085890", | |
"five": "20428858", | |
"six": "24373399", | |
"seven": "26875882", | |
"eight": "29229999", | |
"nine": "31293839", | |
"ten": "34017922", | |
"id": "57", | |
"county": "Osage" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-86, 205, -98] | |
] | |
], | |
"id": "58", | |
"properties": { | |
"aught": "19818470.07", | |
"one": "24898755", | |
"two": "28190366", | |
"three": "27725508", | |
"four": "29566152", | |
"five": "30217537", | |
"six": "35020992", | |
"seven": "35443980", | |
"eight": "38011284", | |
"nine": "40795537", | |
"ten": "40364699", | |
"id": "58", | |
"county": "Ottawa" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-92, 206, -191, -203, 207] | |
] | |
], | |
"id": "59", | |
"properties": { | |
"aught": "6584910.26", | |
"one": "8359682", | |
"two": "10999576", | |
"three": "10763889", | |
"four": "13373628", | |
"five": "13271191", | |
"six": "15721776", | |
"seven": "16605944", | |
"eight": "18032131", | |
"nine": "17945788", | |
"ten": "19806214", | |
"id": "59", | |
"county": "Pawnee" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-207, -91, -167, -168, -192] | |
] | |
], | |
"id": "60", | |
"properties": { | |
"aught": "22784669.14", | |
"one": "26610548", | |
"two": "30725231", | |
"three": "29951368", | |
"four": "33445477", | |
"five": "35696447", | |
"six": "40531744", | |
"seven": "43022558", | |
"eight": "45837434", | |
"nine": "48499774", | |
"ten": "53350598", | |
"id": "60", | |
"county": "Payne" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-132, -158, 208, -15, -71, -135, -182] | |
] | |
], | |
"id": "61", | |
"properties": { | |
"aught": "23946212.53", | |
"one": "29883855", | |
"two": "33683550", | |
"three": "35074342", | |
"four": "38330710", | |
"five": "40199194", | |
"six": "41720859", | |
"seven": "43949048", | |
"eight": "49399445", | |
"nine": "49974733", | |
"ten": "51590679", | |
"id": "61", | |
"county": "Pittsburg" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[209, 210, -136, -69, -148, -186, -116, -179] | |
] | |
], | |
"id": "62", | |
"properties": { | |
"aught": "22388234.41", | |
"one": "28372724", | |
"two": "33105838", | |
"three": "32511910", | |
"four": "37896401", | |
"five": "37842483", | |
"six": "41666993", | |
"seven": "46921028", | |
"eight": "50456708", | |
"nine": "52866586", | |
"ten": "57054402", | |
"id": "62", | |
"county": "Pontotoc" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[211, -210, -178, -67, -199, -164, -198] | |
] | |
], | |
"id": "63", | |
"properties": { | |
"aught": "30183354.16", | |
"one": "36652100", | |
"two": "43590729", | |
"three": "41842840", | |
"four": "34966218", | |
"five": "47441808", | |
"six": "54311171", | |
"seven": "60814245", | |
"eight": "66834530", | |
"nine": "75226759", | |
"ten": "82300221", | |
"id": "63", | |
"county": "Pottawatomie" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-161, -181, -62, -10, -209, -157] | |
] | |
], | |
"id": "64", | |
"properties": { | |
"aught": "9504087.72", | |
"one": "11358818", | |
"two": "13188091", | |
"three": "12530728", | |
"four": "13389416", | |
"five": "13736710", | |
"six": "14610863", | |
"seven": "15398458", | |
"eight": "16148087", | |
"nine": "17376833", | |
"ten": "17231189", | |
"id": "64", | |
"county": "Pushmataha" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-25, 212, -104, -99, -94] | |
] | |
], | |
"id": "65", | |
"properties": { | |
"aught": "1065209.8", | |
"one": "1385531", | |
"two": "1285180", | |
"three": "1315262", | |
"four": "1386627", | |
"five": "1224065", | |
"six": "1522019", | |
"seven": "1219179", | |
"eight": "1195181", | |
"nine": "1346713", | |
"ten": "1200270", | |
"id": "65", | |
"county": "Roger Mills" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-83, -177, 213, 214, 215, -193] | |
] | |
], | |
"id": "66", | |
"properties": { | |
"aught": "18875562.92", | |
"one": "23818353", | |
"two": "31057149", | |
"three": "30730321", | |
"four": "30251328", | |
"five": "40537631", | |
"six": "46326192", | |
"seven": "52414192", | |
"eight": "61114044", | |
"nine": "67631249", | |
"ten": "71641774", | |
"id": "66", | |
"county": "Rogers" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-137, -211, -212, -197] | |
] | |
], | |
"id": "67", | |
"properties": { | |
"aught": "21699979.46", | |
"one": "24475840", | |
"two": "29477759", | |
"three": "28541968", | |
"four": "31679704", | |
"five": "32818301", | |
"six": "33878859", | |
"seven": "34993027", | |
"eight": "35167560", | |
"nine": "39161298", | |
"ten": "40479334", | |
"id": "67", | |
"county": "Seminole" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-2, 216, -162, -129, -187, -55] | |
] | |
], | |
"id": "68", | |
"properties": { | |
"aught": "23822150.83", | |
"one": "27950374", | |
"two": "33899694", | |
"three": "34941315", | |
"four": "36681348", | |
"five": "40075783", | |
"six": "43819073", | |
"seven": "47620056", | |
"eight": "54125480", | |
"nine": "58277413", | |
"ten": "58791656", | |
"id": "68", | |
"county": "Sequoyah" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-113, -53, -145, -80, -73, -117] | |
] | |
], | |
"id": "69", | |
"properties": { | |
"aught": "17662644.47", | |
"one": "21454422", | |
"two": "24677353", | |
"three": "24939409", | |
"four": "26360283", | |
"five": "28997158", | |
"six": "31492295", | |
"seven": "32164227", | |
"eight": "35518104", | |
"nine": "37732871", | |
"ten": "41202319", | |
"id": "69", | |
"county": "Stephens" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[217, -64, 218, -18] | |
] | |
], | |
"id": "70", | |
"properties": { | |
"aught": "3568420.91", | |
"one": "4268619", | |
"two": "4948196", | |
"three": "4824704", | |
"four": "5685907", | |
"five": "5589527", | |
"six": "6306945", | |
"seven": "6887974", | |
"eight": "8397806", | |
"nine": "9648585", | |
"ten": "8967554", | |
"id": "70", | |
"county": "Texas" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-154, -75, -79, 219, -141] | |
] | |
], | |
"id": "71", | |
"properties": { | |
"aught": "5493385.9", | |
"one": "6672236", | |
"two": "7329222", | |
"three": "6625476", | |
"four": "5452216", | |
"five": "7554048", | |
"six": "8175389", | |
"seven": "8104170", | |
"eight": "8519449", | |
"nine": "9087840", | |
"ten": "8988316", | |
"id": "71", | |
"county": "Tillman" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-215, 220, -201, -87, -208, -202, 221] | |
] | |
], | |
"id": "72", | |
"properties": { | |
"aught": "217080079.2", | |
"one": "286120487", | |
"two": "333470905", | |
"three": "297558393", | |
"four": "277041577", | |
"five": "353528573", | |
"six": "405966241", | |
"seven": "436738816", | |
"eight": "467366512", | |
"nine": "498201986", | |
"ten": "546884561", | |
"id": "72", | |
"county": "Tulsa" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-57, -189, -200, -221, -214, -176] | |
] | |
], | |
"id": "73", | |
"properties": { | |
"aught": "13339297.67", | |
"one": "16622824", | |
"two": "20143356", | |
"three": "20174868", | |
"four": "21855213", | |
"five": "29025789", | |
"six": "33111053", | |
"seven": "38127570", | |
"eight": "38361298", | |
"nine": "44528792", | |
"ten": "38931445", | |
"id": "73", | |
"county": "Wagoner" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-216, -222, -205, 222, -194] | |
] | |
], | |
"id": "74", | |
"properties": { | |
"aught": "22760162.01", | |
"one": "28126869", | |
"two": "33976082", | |
"three": "32218034", | |
"four": "35524562", | |
"five": "36727992", | |
"six": "40628757", | |
"seven": "42909114", | |
"eight": "43457756", | |
"nine": "47435251", | |
"ten": "50807598", | |
"id": "74", | |
"county": "Washington" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-155, -27, -93, -42] | |
] | |
], | |
"id": "75", | |
"properties": { | |
"aught": "5261444.7", | |
"one": "6348926", | |
"two": "7530186", | |
"three": "7569156", | |
"four": "8160894", | |
"five": "8779796", | |
"six": "10382401", | |
"seven": "10691555", | |
"eight": "9831094", | |
"nine": "10165020", | |
"ten": "10286378", | |
"id": "75", | |
"county": "Washita" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[223, -9, -173, 224, -127] | |
] | |
], | |
"id": "76", | |
"properties": { | |
"aught": "3120189.41", | |
"one": "4014258", | |
"two": "4591164", | |
"three": "4675120", | |
"four": "4459928", | |
"five": "4685938", | |
"six": "4510999", | |
"seven": "5375500", | |
"eight": "6388650", | |
"nine": "6923223", | |
"ten": "6699529", | |
"id": "76", | |
"county": "Woods" | |
} | |
}, { | |
"type": "MultiPolygon", | |
"arcs": [[[-225, -174, -101, -103, -128] | |
] | |
], | |
"id": "77", | |
"properties": { | |
"aught": "6220587.37", | |
"one": "7549849", | |
"two": "8805785", | |
"three": "9681933", | |
"four": "10645649", | |
"five": "11235715", | |
"six": "12219252", | |
"seven": "12408768", | |
"eight": "13130586", | |
"nine": "14370543", | |
"ten": "15148999", | |
"id": "77", | |
"county": "Woodward" | |
} | |
} | |
] | |
} | |
}, | |
"arcs": [[[9846, 7523],[12, -178],[71, -1019],[19, -356] | |
],[[9948, 5970],[-390, 0] | |
],[[9558, 5970],[13, 1553] | |
],[[9571, 7523],[32, 0],[243, 0] | |
],[[5201, 9999],[230, 0],[274, 0] | |
],[[5705, 9999],[7, -1197] | |
],[[5712, 8802],[0, -389] | |
],[[5712, 8413],[-499, 0] | |
],[[5213, 8413],[-12, 1586] | |
],[[8549, 2896],[0, -259],[-122, 0],[0, -1035] | |
],[[8427, 1602],[-249, 0] | |
],[[8178, 1602],[-486, 0] | |
],[[7692, 1602],[0, 776] | |
],[[7692, 2378],[307, 0],[0, 259],[64, 0],[0, 502] | |
],[[8063, 3139],[243, 0],[0, -243],[243, 0] | |
],[[3495, 8802],[0, -275] | |
],[[3495, 8527],[-633, 0],[-300, 0],[-173, 0] | |
],[[2389, 8527],[7, 1472] | |
],[[2396, 9999],[364, 0],[639, 0],[102, 0] | |
],[[3501, 9999],[-6, -1197] | |
],[[4249, 4433],[-58, 0] | |
],[[4191, 4433],[-351, 0],[-83, 0],[0, -259],[-128, 0] | |
],[[3629, 4174],[-51, 0],[-77, 0] | |
],[[3501, 4174],[0, 453],[0, 712] | |
],[[3501, 5339],[492, 0],[7, 259],[242, 0] | |
],[[4242, 5598],[0, -129] | |
],[[4242, 5469],[7, -1036] | |
],[[5590, 6229],[-121, 0],[0, -518] | |
],[[5469, 5711],[-319, 0],[-45, 0] | |
],[[5105, 5711],[-6, 777] | |
],[[5099, 6488],[-7, 1035] | |
],[[5092, 7523],[173, 0],[325, 0] | |
],[[5590, 7523],[0, -1294] | |
],[[8178, 1602],[64, -97],[0, -534],[109, -211],[95, 0] | |
],[[8446, 760],[-12, -81],[-83, -16],[-109, 146],[-96, -146],[-153, 0],[-32, -242],[-134, 32],[-58, -243],[-45, 114],[-51, 145],[-89, 0],[-32, 130],[-122, 80],[52, 146] | |
],[[7482, 825],[12, 210],[-57, 130],[57, 0],[32, 162],[-44, 145] | |
],[[7482, 1472],[153, 0],[0, 130],[51, 0],[6, 0] | |
],[[5469, 5711],[6, -501],[250, 0] | |
],[[5725, 5210],[0, -1553] | |
],[[5725, 3657],[-614, 0] | |
],[[5111, 3657],[0, 728] | |
],[[5111, 4385],[-6, 1084] | |
],[[5105, 5469],[0, 242] | |
],[[6217, 5210],[0, -130] | |
],[[6217, 5080],[-492, 130] | |
],[[5590, 6229],[275, 0],[352, 0] | |
],[[6217, 6229],[0, -1019] | |
],[[6587, 2637],[0, -388],[371, 0],[6, -129],[115, 0] | |
],[[7079, 2120],[0, -470] | |
],[[7079, 1650],[-38, 0],[-7, -307] | |
],[[7034, 1343],[-690, 0] | |
],[[6344, 1343],[0, 647] | |
],[[6344, 1990],[0, 647] | |
],[[6344, 2637],[243, 0] | |
],[[9558, 5970],[-51, 0],[-319, 0] | |
],[[9188, 5970],[0, 518],[-167, 0] | |
],[[9021, 6488],[45, 146],[-64, 129],[7, 178],[51, 81],[32, 243] | |
],[[9092, 7265],[102, 0],[0, 258],[109, 0],[19, 0] | |
],[[9322, 7523],[249, 0] | |
],[[9149, 1602],[0, -647] | |
],[[9149, 955],[-83, 64],[-25, -161],[-71, -81],[-274, 0],[-45, 162],[-205, -179] | |
],[[8427, 1602],[460, 0],[262, 0] | |
],[[1131, 8527],[-154, 0],[-977, 0],[0, 1472],[1118, -16],[19, 0] | |
],[[1137, 9983],[-6, -1456] | |
],[[6836, 3883],[-230, 97],[-19, 324],[-57, 48],[-7, 146],[-179, 275],[-12, 194],[-115, 113] | |
],[[6217, 5210],[287, 0],[332, 0] | |
],[[6836, 5210],[0, -1327] | |
],[[7692, 2378],[-121, 0],[0, 243] | |
],[[7571, 2621],[0, 518],[121, 0],[0, 259] | |
],[[7692, 3398],[371, 0] | |
],[[8063, 3398],[0, -259] | |
],[[5725, 3657],[6, -502] | |
],[[5731, 3155],[-64, 0],[0, -518] | |
],[[5667, 2637],[-115, 0],[0, -129],[-64, -49],[-243, 0],[0, -81],[-185, -48] | |
],[[5060, 2330],[0, 307],[-192, 0],[0, 259] | |
],[[4868, 2896],[0, 761],[39, 0],[204, 0] | |
],[[5674, 1990],[0, -437] | |
],[[5674, 1553],[-39, -81],[-223, 130],[-71, -227],[-76, -48],[-141, 275] | |
],[[5124, 1602],[0, 518],[-64, 0],[0, 210] | |
],[[5667, 2637],[7, -647] | |
],[[9335, 9028],[-7, -485] | |
],[[9328, 8543],[-370, 16],[-7, 0] | |
],[[8951, 8559],[0, 243],[-121, 0] | |
],[[8830, 8802],[0, 1035],[25, -16],[0, 178] | |
],[[8855, 9999],[301, 0],[95, 0],[77, 0] | |
],[[9328, 9999],[-38, -81],[51, -65],[-6, -825] | |
],[[7820, 7523],[0, -258],[313, 0],[-6, -648] | |
],[[8127, 6617],[-121, 0],[-64, 0],[0, -647] | |
],[[7942, 5970],[-333, 0],[-166, 0] | |
],[[7443, 5970],[0, 906] | |
],[[7443, 6876],[0, 647] | |
],[[7443, 7523],[377, 0] | |
],[[5105, 5469],[-633, 0],[-230, 0] | |
],[[4242, 5598],[-12, 890] | |
],[[4230, 6488],[651, 0],[218, 0] | |
],[[9782, 9012],[0, -485],[64, -1004] | |
],[[9322, 7523],[6, 1020] | |
],[[9335, 9028],[127, 0],[320, -16] | |
],[[4230, 6488],[-7, 599] | |
],[[4223, 7087],[0, 436] | |
],[[4223, 7523],[499, 0] | |
],[[4722, 7523],[370, 0] | |
],[[3961, 8802],[13, -1279],[249, 0] | |
],[[4223, 7087],[-121, -81],[-83, -356],[-77, -65],[-179, 129],[-64, 356],[-76, -64],[-13, -178],[-109, -130] | |
],[[3501, 6698],[0, 518],[-6, 1311] | |
],[[3495, 8802],[466, 0] | |
],[[6466, 7523],[-256, 0] | |
],[[6210, 7523],[-485, 17],[-13, -17] | |
],[[5712, 7523],[0, 890] | |
],[[5712, 8802],[140, 0],[607, 0] | |
],[[6459, 8802],[7, -1279] | |
],[[7079, 3009],[-185, 17],[-128, -49],[64, -340],[-243, 0] | |
],[[6344, 2637],[0, 518],[-121, 0] | |
],[[6223, 3155],[0, 502] | |
],[[6223, 3657],[281, 0],[575, 0] | |
],[[7079, 3657],[0, -648] | |
],[[6223, 3155],[-383, 0],[-109, 0] | |
],[[6217, 5080],[6, -1423] | |
],[[5705, 9999],[358, 0],[179, 0],[217, 0] | |
],[[6459, 9999],[0, -1197] | |
],[[4191, 4433],[103, -226],[-32, -162],[70, -243],[-32, -97],[83, -146] | |
],[[4383, 3559],[-179, -16],[-6, -129],[-45, -32],[19, -98],[-281, 0] | |
],[[3891, 3284],[-19, 114],[-45, 0],[-13, 534],[-185, 0],[0, 242] | |
],[[3891, 3284],[0, -647],[-211, 0] | |
],[[3680, 2637],[-96, 194],[-83, -32],[0, 534],[0, 841] | |
],[[3501, 9999],[537, 0],[96, 0] | |
],[[4134, 9999],[191, -534] | |
],[[4325, 9465],[0, -663],[-364, 0] | |
],[[9277, 5452],[51, -145],[122, -49],[-13, -145],[83, 81],[32, -146] | |
],[[9552, 5048],[0, -356],[-134, 0],[0, -437] | |
],[[9418, 4255],[-473, 0],[-19, 0] | |
],[[8926, 4255],[0, 308],[-122, 0],[7, 404] | |
],[[8811, 4967],[70, 97],[51, -113] | |
],[[8932, 4951],[134, -81],[211, 582] | |
],[[8184, 4530],[-121, -291],[0, -841] | |
],[[7692, 3398],[0, 485],[-19, -81],[-76, 16] | |
],[[7597, 3818],[0, 615],[57, 0],[0, 518] | |
],[[7654, 4951],[281, 0],[256, 0] | |
],[[8191, 4951],[-7, -421] | |
],[[4383, 3559],[64, 114],[51, -33],[-13, -404],[141, -65],[-71, -48],[-6, -97] | |
],[[4549, 3026],[19, -146],[-89, 0],[-70, -291],[-20, -211],[51, -194],[-19, -48] | |
],[[4421, 2136],[-76, 129],[19, 65],[-70, 16],[-58, 146],[-32, -243],[-89, 65],[-115, 64],[-32, -129],[-115, 16],[-173, 372] | |
],[[6344, 1343],[32, -259],[-32, 0],[0, -259] | |
],[[6344, 825],[-38, 49],[6, 129],[-95, 113],[-192, -404],[-166, 97],[38, 291],[-166, 49],[-38, 226],[38, 146],[-57, 32] | |
],[[5674, 1990],[89, 0],[581, 0] | |
],[[7482, 1472],[-58, 162],[-345, 16] | |
],[[7079, 2120],[58, 0],[6, 501],[58, 16] | |
],[[7201, 2637],[370, -16] | |
],[[6932, 8802],[-473, 0] | |
],[[6459, 9999],[371, 0],[326, 0],[134, 0] | |
],[[7290, 9999],[0, -647],[-160, -81],[-51, -194],[-134, 16],[-13, -291] | |
],[[5590, 7523],[122, 0] | |
],[[6210, 7523],[7, -1294] | |
],[[4868, 2896],[-204, 0],[0, 130],[-115, 0] | |
],[[4249, 4433],[204, 0],[524, -48],[96, 64],[38, -64] | |
],[[9418, 4255],[0, -340],[-83, 0],[0, -258],[-71, 0],[0, -518] | |
],[[9264, 3139],[-294, 16],[-236, 0] | |
],[[8734, 3155],[6, 1019],[186, 0],[0, 81] | |
],[[9999, 5210],[-19, -1311],[-7, -615],[-12, -647] | |
],[[9961, 2637],[-179, 0],[-377, 0] | |
],[[9405, 2637],[0, 502],[-141, 0] | |
],[[9552, 5048],[76, 97],[96, -194],[83, 113],[115, -81],[13, 194],[64, 33] | |
],[[7443, 5970],[-6, -518] | |
],[[7437, 5452],[-601, 17] | |
],[[6836, 5469],[0, 760] | |
],[[6836, 6229],[0, 647] | |
],[[6836, 6876],[71, 0],[536, 0] | |
],[[6587, 7507],[0, -501],[51, 64],[39, -97],[159, -97] | |
],[[6836, 6229],[-619, 0] | |
],[[6466, 7523],[121, -16] | |
],[[7034, 1343],[45, -340] | |
],[[7079, 1003],[-13, -16],[-57, 0],[6, -194],[-121, -243],[6, -178],[-38, -64],[-64, 48],[-38, 194],[44, 129],[-44, 211],[-58, -162],[-89, 32],[-39, -145],[-51, -16],[-57, 48],[6, 162],[-38, 81],[-90, -65] | |
],[[4715, 8543],[134, 0],[45, -146],[211, -194],[108, 16],[0, 194] | |
],[[4722, 7523],[-7, 1004],[0, 16] | |
],[[7482, 825],[-90, 65],[-38, -227],[-77, -48],[-38, 129],[-83, -48],[-45, 291],[-32, 16] | |
],[[9092, 7265],[-269, 0] | |
],[[8823, 7265],[0, 1294],[128, 0] | |
],[[6836, 3883],[147, -65],[96, 162] | |
],[[7079, 3980],[0, -323] | |
],[[9961, 2637],[-7, -938],[-13, -744],[-6, -890],[-45, -65],[-64, 178],[-185, 81],[-38, 145],[-115, -16],[-115, 340],[-96, 0],[-128, 227] | |
],[[9149, 1602],[7, 259],[121, 0],[0, 776],[128, 0] | |
],[[8811, 4967],[-64, 16],[-13, -113],[-102, -129],[-13, 80],[-109, -129],[-57, -81],[-134, 33],[-45, -130],[-90, 16] | |
],[[8191, 4951],[0, 259] | |
],[[8191, 5210],[121, 0],[0, 242],[64, 0],[0, 276],[128, 0] | |
],[[8504, 5728],[275, 0],[153, 0],[0, -777] | |
],[[7079, 3009],[0, -129],[122, 16],[0, -259] | |
],[[9188, 5970],[-7, -323],[51, -195],[45, 0] | |
],[[8504, 5728],[0, 501],[-64, 0],[0, 388] | |
],[[8440, 6617],[128, 0],[19, -194],[58, -81],[127, 114],[249, 32] | |
],[[6932, 8802],[160, 16],[38, -81],[-140, -194] | |
],[[6990, 8543],[-26, 0],[0, -518],[122, 0],[0, -259] | |
],[[7086, 7766],[-122, 0],[-128, 0],[0, -259],[-249, 0] | |
],[[8830, 8802],[-441, 0] | |
],[[8389, 8802],[25, 1197] | |
],[[8414, 9999],[205, 0],[109, 0],[127, 0] | |
],[[7942, 5970],[0, -242],[121, 0],[0, -518],[128, 0] | |
],[[7654, 4951],[0, 518],[-64, -114],[-89, 33],[45, -146],[-109, 33] | |
],[[7437, 5275],[0, 177] | |
],[[6836, 5469],[0, -259] | |
],[[8376, 6617],[64, 0] | |
],[[8127, 6617],[249, 0] | |
],[[8165, 8300],[0, -777],[-313, 0] | |
],[[7852, 7523],[19, 178],[-102, 17],[-134, 307],[-77, -97],[-51, 32],[45, 243],[-70, -49],[-52, 146],[-83, 16],[-25, 291],[-51, 114],[-122, -292],[-76, -32],[-83, 146] | |
],[[7290, 9999],[26, 0],[236, 0],[613, 0] | |
],[[8165, 9999],[0, -1699] | |
],[[9328, 9999],[13, 0],[441, 0],[0, -696],[0, -291] | |
],[[7443, 7523],[-230, -16],[0, 259],[-127, 0] | |
],[[7852, 7523],[-32, 0] | |
],[[8734, 3155],[0, -259],[-185, 0] | |
],[[7079, 3980],[58, -113],[76, 65],[51, -130] | |
],[[7264, 3802],[58, -129],[45, 65],[-32, 96],[25, 65],[58, -113],[89, 65],[45, -146],[45, 113] | |
],[[7437, 5275],[-173, 32],[0, -1505] | |
],[[3501, 5339],[0, 583],[0, 776] | |
],[[8823, 7265],[-153, 0],[0, 161],[-57, 97],[-167, 0] | |
],[[8446, 7523],[-63, 0],[6, 777] | |
],[[8389, 8300],[0, 502] | |
],[[9948, 5970],[51, -712],[0, -48] | |
],[[2389, 8527],[-153, 0],[-626, 0],[-224, 0],[-255, 0] | |
],[[1137, 9983],[550, 0],[568, 16],[141, 0] | |
],[[5124, 1602],[-172, -97],[-64, 97],[-64, -16],[-102, 178],[-275, 0],[-26, 372] | |
],[[8446, 7523],[0, -776],[-70, 0],[0, -130] | |
],[[8165, 8300],[96, 0],[128, 0] | |
],[[8165, 9999],[45, 0],[64, 0],[140, 0] | |
],[[4134, 9999],[530, 0],[537, 0] | |
],[[4715, 8543],[0, 275],[-115, 340],[-96, 194],[-134, 16],[-45, 97] | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment