Skip to content

Instantly share code, notes, and snippets.

@jeremycflin
Last active October 12, 2015 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremycflin/eb555cfc17bd8ba6aee7 to your computer and use it in GitHub Desktop.
Save jeremycflin/eb555cfc17bd8ba6aee7 to your computer and use it in GitHub Desktop.
Freestanding Emergency Rooms in Texas
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>D3 Map </title>
<style type="text/css">
.cities{
font-size:11px;
font-family: "Helvetica Neue";
fill:black;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
text-anchor: middle;
}
.base_map{
fill:#c9cbcd;
opacity:0.5;
}
.squares{
width:5px;
height:5px;
fill:black;
}
.enter{
fill:#C74848;
opacity:0.6;
stroke:white;
stroke-width:0.5;
}
.exit{
fill:#C74848;
opacity:0.6;
stroke:white;
stroke-width:0.5;
}
.year{
font-size:28px;
font-weight: 600;
font-family: "Helvetica Neue";
fill:#C74848;
opacity: 0.9;
margin-bottom: 50px;
}
.value{
font-size:28px;
font-weight: 600;
font-family: "Helvetica Neue";
fill:#C74848;
opacity: 0.9;
}
.label{
font-size:15px;
font-weight: 400;
font-family: "Helvetica Neue";
fill:black;
opacity: 0.7;
}
#adjust{
padding-bottom: 30px;
}
@media (max-width: 600px) {
.year {
font-size: 18px;
}
.value {
font-size: 18px;
}
.label{
font-size: 9.8px;
}
}
</style>
</head>
<body>
<div id="graphic"></div>
<div id="chart"></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script>
function drawGraphic(){
d3.selectAll('svg').remove();
// Set the dimensions of the canvas / graph
var windowWidth;
var scale;
var radius;
if(window.innerWidth > 620) {
windowWidth = 620;
scale = 2200;
height = 550;
radius = 4.5;
} else {
windowWidth = window.innerWidth;
scale = 1230;
height = 350;
radius = 2.5;
}
var margin = {top:40, right:3, bottom:0, left:3},
width = windowWidth - margin.left - margin.right,
height = height;
var projection = d3.geo.mercator()
.scale(scale)
.translate([width / 2, height /2])
.center([-100,31]);
var path = d3.geo.path()
.projection(projection);
var cities = [
{
'name' : 'Austin',
'location' : [30.2500,-97.7500],
'square': [30.1500,-97.7500]
},
{
'name' : 'Houston',
'location' : [29.7604,-95.3698],
'square': [29.6604,-95.3698]
},
{
"name" : "Dallas",
'location' : [32.7767,-96.7970],
'square': [32.6767,-96.7970]
},
{
'name' : 'San Antonio',
'location' : [29.4167,-98.5000],
'square': [29.3167,-98.5000]
},
{
'name' : 'El Paso',
'location' : [31.7903,-106.4233],
'square': [31.6903,-106.4233]
}
];
var sum = [
{
'year' : '2010',
'value' : '22'
},
{
'year' : '2011',
'value' : '26'
},
{
'year' : '2012',
'value' : '47'
},
{
'year' : '2013',
'value' : '85'
},
{
'year' : '2014',
'value' : '136'
},
{
'year' : '2015',
'value' : '162'
}
];
var timeBox;
var valueBox;
var svg = d3.select("#graphic")
.append("svg")
.attr("width", width)
.attr("height", height);
var labelBox = svg.append("text")
.attr("class","value")
.attr("x", width * 0.53)
.attr("y", height * 0.15)
.attr('class','label')
.text('Freestanding emergency rooms');
var yearlabelBox = svg.append("text")
.attr("class","value")
.attr("x", width * 0.53)
.attr("y", height * 0.06)
.attr('class','label')
.text('Year')
queue()
.defer(d3.json, "tx.json")
.defer(d3.json, "emergency.json")
.await(ready);
function ready(error, baseMap, emergency) {
svg.selectAll("path")
.data(topojson.feature(baseMap, baseMap.objects.shape).features)
.enter()
.append("path")
.attr("d",path)
.attr("class","base_map");
svg.selectAll(".cities")
.data(cities)
.enter()
.append("text")
.attr("x", function(d){ return projection([d.location[1], d.location[0]])[0]; } ) //projection([long, lat])[1]
.attr("y", function(d){ return projection([d.location[1], d.location[0]])[1]; })
.text(function(d){return d.name;})
.attr("class","cities");
svg.selectAll(".squares")
.data(cities)
.enter()
.append("rect")
.attr("x", function(d){ return projection([d.square[1], d.square[0]])[0]; } ) //projection([long, lat])[1]
.attr("y", function(d){ return projection([d.square[1], d.square[0]])[1]; })
.attr("class","squares");
timeBox = svg.append("text")
.attr("class","year")
.attr("x", width * 0.53)
.attr("y", height * 0.11)
valueBox = svg.append("text")
.attr("class","value")
.attr("x", width * 0.53)
.attr("y", height * 0.20)
var yearArray = ['2010', '2011', '2012', '2013', '2014', '2015'];
var sumArray = ['22', '26', '47', '85', '136', '162'];
var yearArrayLength = yearArray.length;
var sumArrayLength = sumArray.length;
var currentIteration = 0;
var interval = setInterval(function() {
var year = yearArray[currentIteration];
var value = sumArray[currentIteration];
update(emergency, year, value);
currentIteration++;
if (currentIteration >= yearArrayLength) {
currentIteration = 0;
}
}, 1500);
};
function update(emergency, year, value) {
// DATA JOIN
// Join new data with old elements, if any.
var test = svg.selectAll("circle")
.data(emergency.features.filter(function(d) {
return d.properties.year === year;
}));
// ENTER
// Create new elements as needed.
test.enter().append("circle")
.attr("cx",function(d) { return projection([d.geometry.coordinates[0], d.geometry.coordinates[1]])[0]; })
.attr("cy",function(d) { return projection([d.geometry.coordinates[0], d.geometry.coordinates[1]])[1]; })
.attr("r",0)
.transition()
.attr("class", "enter")
.duration(1000)
.attr("r",radius);
// EXIT
// Remove old elements as needed.
test.exit().attr('class', 'exit')
.attr("r",radius)
.transition()
.duration(1000)
.attr("r",0)
.remove();
timeBox.text(year);
valueBox.text(value);
};
};
drawGraphic();
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"topology","objects":{"shape":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2724,6677],[2,6],[0,91],[3,125],[0,56],[2,57],[0,60],[1,51],[2,127],[0,57],[3,63],[0,58],[2,54],[0,58],[2,62],[0,86],[1,35],[-1,53],[0,238],[1,0],[0,848],[0,27],[0,595],[2,6],[0,135],[-2,7],[0,367],[199,0],[150,0],[202,0],[322,0],[12,-1],[315,0],[203,0],[302,0],[267,0],[133,0],[211,0],[0,-1819],[21,2],[14,15],[23,-3],[3,-8],[19,-10],[16,-17],[2,-9],[12,-15],[16,-12],[9,-1],[3,-14],[27,-36],[13,-8],[-1,-5],[11,-10],[17,-8],[12,-11],[1,-9],[14,-11],[15,1],[11,-6],[12,9],[15,-10],[13,5],[5,-4],[12,14],[0,18],[7,10],[33,-6],[14,3],[11,-5],[7,-9],[18,-3],[5,-15],[5,7],[12,-17],[5,0],[7,15],[10,-13],[10,5],[0,15],[6,15],[-6,6],[1,25],[12,15],[15,-3],[2,-12],[23,-21],[7,-12],[18,8],[5,-2],[3,-11],[14,2],[5,-13],[-12,-6],[12,-6],[8,-9],[9,-1],[6,-16],[-5,-9],[15,0],[7,-20],[-5,-8],[3,-25],[10,-3],[-3,-19],[5,-2],[-3,-15],[6,-15],[-3,-9],[28,-9],[14,12],[6,0],[-1,-13],[5,-3],[18,3],[3,6],[24,-3],[6,-9],[10,-2],[5,9],[19,-3],[15,17],[8,-5],[7,-13],[8,2],[4,8],[11,-6],[17,-23],[18,-7],[7,-7],[10,-1],[0,-10],[10,-7],[3,11],[15,-3],[4,5],[20,-5],[8,-13],[5,3],[22,-13],[1,-7],[15,3],[2,6],[15,1],[2,-5],[10,5],[8,-3],[35,30],[20,-7],[14,4],[20,-14],[10,-13],[0,-8],[20,-16],[5,-11],[18,-22],[13,-8],[12,2],[5,7],[10,-1],[10,12],[17,-2],[5,17],[8,1],[0,25],[10,8],[2,11],[12,8],[35,-7],[16,-15],[14,-3],[25,0],[13,3],[5,-7],[17,-9],[27,-2],[10,6],[16,26],[19,6],[6,-8],[-1,-13],[10,-2],[-7,-25],[-17,-18],[2,-18],[27,-27],[-19,-2],[19,-19],[-4,-9],[35,-11],[32,4],[20,8],[13,-15],[7,1],[-10,-37],[-10,-8],[2,-5],[13,0],[-2,-22],[-10,-7],[-8,4],[-3,-12],[11,-13],[10,-5],[14,0],[21,-10],[12,-10],[15,-8],[9,0],[21,8],[12,11],[0,10],[10,-3],[3,18],[7,4],[5,-9],[5,6],[-5,14],[7,8],[6,-7],[7,4],[-2,17],[22,1],[15,13],[17,32],[10,5],[13,1],[25,-10],[15,-11],[9,-13],[6,0],[-5,-16],[4,-9],[-4,-14],[12,-12],[13,2],[10,-5],[20,13],[20,9],[27,-14],[8,-12],[0,-20],[-8,-29],[7,-11],[20,-10],[41,0],[20,25],[11,38],[6,-8],[-8,-13],[5,-6],[13,13],[2,18],[30,-29],[10,4],[5,11],[2,21],[3,9],[10,6],[18,1],[20,-18],[2,-19],[8,-23],[0,-9],[-10,-9],[-13,0],[-7,-12],[0,-17],[12,-17],[0,-22],[7,-3],[5,-16],[13,-11],[12,-7],[18,-2],[17,12],[8,14],[0,19],[-8,23],[0,11],[11,11],[26,4],[0,11],[-14,10],[-20,5],[7,11],[15,4],[7,-6],[8,-15],[15,6],[18,23],[12,20],[-2,25],[-6,12],[-2,15],[13,10],[4,-19],[18,7],[20,14],[12,-5],[6,-14],[4,-39],[10,-27],[21,-20],[10,6],[2,15],[5,5],[30,-5],[10,-8],[2,-18],[8,-15],[15,0],[32,7],[13,18],[4,17],[1,25],[10,19],[7,0],[23,-21],[30,0],[4,-4],[-10,-15],[-10,-4],[-15,-17],[0,-7],[28,-13],[17,-12],[31,5],[11,-16],[3,-23],[8,-8],[32,2],[8,5],[20,-3],[9,-22],[11,-15],[22,-20],[3,-22],[17,-7],[15,9],[8,11],[4,12],[0,23],[13,25],[20,-4],[25,-17],[7,-1],[32,12],[8,9],[5,25],[-2,15],[-8,-11],[-3,9],[13,7],[10,0],[-2,14],[4,6],[18,1],[17,-10],[-2,16],[18,-2],[24,-7],[13,9],[3,11],[5,-4],[-3,-12],[15,3],[7,17],[-5,11],[10,-5],[3,-15],[32,7],[8,23],[10,-5],[37,-26],[10,-2],[10,-11],[8,-4],[10,7],[0,16],[15,2],[22,-15],[15,12],[-8,16],[3,15],[7,5],[13,0],[15,-9],[10,0],[15,8],[10,13],[29,-2],[5,14],[18,12],[0,7],[12,-7],[13,0],[10,-9],[3,-13],[-3,-20],[5,-9],[10,1],[15,15],[5,-2],[2,-19],[10,0],[23,12],[-3,-13],[15,-7],[13,5],[15,-7],[15,5],[20,-3],[20,8],[4,12],[16,-12],[17,-1],[7,3],[0,13],[-7,14],[8,5],[9,-4],[1,-17],[10,14],[0,33],[12,10],[2,10],[13,2],[10,-7],[24,-8],[11,-9],[24,-1],[1,-9],[-8,-12],[5,-6],[12,-1],[13,6],[10,10],[0,-13],[-15,-12],[8,-15],[7,6],[0,18],[5,10],[8,-2],[-10,-10],[12,-1],[2,-15],[6,-7],[0,-12],[7,-5],[22,-2],[6,4],[9,-10],[8,0],[10,8],[3,-21],[15,-7],[-6,-13],[8,-10],[15,3],[-3,16],[5,2],[7,-14],[-9,-21],[19,-22],[18,-10],[0,12],[5,-8],[-5,-12],[15,-9],[20,2],[5,-7],[0,12],[-7,11],[2,8],[8,-1],[5,-30],[9,1],[15,9],[6,16],[10,-4],[-1,-9],[-12,0],[-10,-12],[12,-7],[10,0],[5,6],[3,-8],[-7,-8],[7,-2],[5,12],[8,-2],[-6,-10],[-10,-3],[13,-19],[13,-3],[0,15],[-8,1],[-3,11],[6,-1],[19,-12],[-12,-5],[-2,-9],[25,-3],[12,10],[17,-9],[0,14],[7,-6],[-9,-10],[4,-10],[-11,2],[-8,-5],[2,-6],[11,-4],[12,5],[8,17],[7,0],[9,-17],[11,2],[-1,15],[5,3],[6,-8],[-1,-10],[13,2],[-2,-6],[-10,-4],[-10,-11],[7,-3],[13,11],[14,6],[1,-14],[-18,-9],[2,-10],[11,1],[19,13],[6,-4],[-13,-11],[5,-8],[8,1],[2,15],[5,-12],[18,8],[-3,7],[18,0],[7,8],[8,-4],[-1,-6],[-10,-3],[6,-13],[-13,-10],[2,-7],[11,-8],[14,2],[18,-23],[7,0],[15,14],[3,-10],[-15,-7],[0,-9],[10,-11],[24,-1],[5,11],[-4,5],[7,8],[7,-5],[1,-8],[12,-5],[8,7],[4,15],[11,10],[5,-8],[-8,-5],[3,-12],[10,3],[12,22],[15,5],[0,-12],[-10,-9],[0,-7],[12,-6],[13,4],[12,10],[3,-11],[7,3],[-2,13],[-7,4],[-8,-4],[-2,11],[15,-1],[9,9],[16,-4],[4,-13],[11,4],[-8,-7],[3,-6],[9,6],[5,-19],[6,2],[2,13],[29,7],[18,-5],[0,-10],[-12,-4],[12,-4],[12,2],[0,-1462],[11,3],[10,-17],[5,-3],[7,-15],[13,-17],[7,-20],[10,2],[3,-10],[20,1],[5,-7],[-3,-16],[18,9],[5,-19],[10,-12],[-5,-8],[12,-18],[0,-14],[15,-14],[3,-6],[9,1],[1,-19],[12,-7],[-12,-20],[7,-13],[10,-8],[2,-15],[-3,-6],[16,-5],[-8,-20],[-13,-7],[6,-38],[-3,-17],[-15,-8],[3,-20],[12,-13],[-2,-12],[17,-15],[1,-7],[10,-8],[17,-3],[15,5],[2,-13],[20,0],[-7,-12],[0,-9],[-18,-9],[-2,-13],[22,-15],[13,3],[-5,-14],[14,-4],[-10,-25],[8,0],[10,-11],[5,1],[3,-11],[0,-20],[24,5],[-4,-11],[-18,-5],[0,-14],[-7,-9],[0,-8],[-8,-9],[0,-7],[15,-6],[7,-15],[8,2],[5,-15],[17,3],[3,-19],[-2,-17],[7,-4],[8,3],[2,-11],[-7,-3],[2,-37],[10,-12],[8,3],[7,10],[15,7],[12,0],[2,-9],[-9,-5],[5,-9],[-10,-5],[5,-22],[4,-4],[-1,-13],[-8,-13],[-10,-7],[10,-2],[-2,-11],[19,-4],[5,-8],[-2,-9],[-6,-4],[10,-9],[-4,-6],[12,-4],[-12,-11],[-8,0],[-5,-12],[-12,-3],[-7,7],[-10,-14],[10,-7],[-6,-15],[20,-8],[3,-8],[10,1],[-3,-9],[6,-7],[0,-11],[-13,-8],[-3,7],[-10,-14],[7,-15],[-11,-2],[-6,-8],[1,-10],[10,-6],[0,-16],[-8,-8],[10,-6],[2,-12],[-9,-6],[4,-8],[-10,-7],[-9,0],[2,-13],[-5,0],[5,-9],[-8,-4],[1,-9],[-11,-7],[-7,4],[5,-15],[-8,-4],[6,-7],[2,-15],[-13,-15],[3,-8],[-7,-14],[-21,-16],[-19,-18],[-1,-15],[5,-30],[-12,1],[-15,-7],[-12,-13],[5,-14],[-6,-5],[1,-9],[-8,-4],[18,-20],[5,0],[2,-10],[-7,-13],[5,-9],[-1,-14],[8,-8],[-5,-4],[8,-11],[-5,-14],[-5,1],[-8,-8],[-5,7],[0,-14],[-5,1],[-7,-15],[-13,-10],[7,-27],[-9,-13],[-3,-13],[8,-1],[14,-30],[25,-8],[1,-12],[-5,-10],[5,-6],[-5,-14],[5,-5],[-8,-11],[2,-8],[-7,-6],[5,-6],[-2,-15],[10,-16],[-3,-24],[8,3],[2,-17],[-5,3],[-2,-24],[-8,-3],[-7,-13],[0,-12],[-8,2],[13,-14],[10,-3],[2,-9],[-8,-2],[-4,11],[-3,-11],[-12,-14],[-3,-15],[-12,-7],[-10,-17],[-16,-11],[-4,-13],[-8,-13],[-7,-34],[-11,-26],[-17,-27],[-15,-14],[-22,-12],[-18,-18],[-4,-15],[2,-11],[25,-22],[0,-20],[18,-10],[2,-5],[23,-39],[17,-87],[-17,0],[-16,8],[-12,15],[-25,5],[-97,0],[-70,-29],[-95,-46],[0,1],[-95,-45],[-94,-44],[-50,-27],[-45,-24],[-20,-13],[15,-20],[5,-25],[-13,-34],[-19,-17],[-20,-4],[-16,6],[-22,-23],[-5,-10],[-17,-15],[-53,-32],[-54,-36],[-40,-33],[-40,-25],[-53,-28],[-5,-33],[-10,-15],[-25,-24],[-32,-40],[-35,-36],[-20,-17],[-28,-20],[-14,-11],[-10,-23],[-15,-11],[-18,-9],[-22,-6],[-20,-1],[-55,-38],[-30,-14],[-97,-61],[-90,-57],[-102,-54],[-67,-32],[0,1],[-96,-52],[-42,-24],[-59,-42],[-10,-24],[-18,-14],[-20,-4],[-15,-20],[-8,-28],[-17,-19],[-22,-12],[-70,-38],[-27,-16],[-50,-35],[-43,-35],[-17,-15],[-43,-36],[-69,-70],[-13,-11],[-28,-34],[-52,-69],[-12,-20],[-18,-67],[-18,-16],[-10,-2],[-24,-36],[-55,-98],[-27,-59],[-20,-48],[-11,-25],[-32,-84],[-12,-38],[-18,-66],[-15,-62],[-7,-50],[-5,-37],[-3,-58],[-2,-64],[7,-91],[3,-15],[9,-59],[16,-80],[20,-82],[20,-60],[9,-22],[0,-9],[13,-49],[10,-39],[20,-90],[27,-133],[3,-23],[7,-75],[0,-23],[11,-15],[4,-30],[-7,-16],[5,-61],[-42,-3],[0,-14],[-11,-4],[3,9],[-15,4],[-10,-12],[-12,6],[-28,-5],[-2,-6],[-33,7],[10,-18],[-20,1],[-2,-8],[-10,3],[-5,-12],[-10,2],[0,8],[-10,0],[-2,-8],[-11,-5],[-5,-9],[6,-3],[-1,-11],[8,-2],[-12,-9],[10,1],[0,-10],[-13,-14],[3,-13],[-21,0],[1,10],[-8,-3],[2,13],[-5,-5],[0,-15],[-9,0],[-8,8],[-13,4],[6,15],[-8,-3],[0,16],[-15,-7],[3,12],[-8,-8],[-5,5],[-7,-5],[0,17],[-10,-10],[-8,-1],[-2,11],[-8,9],[3,12],[-10,-1],[-1,13],[-10,-2],[-19,6],[14,7],[-7,7],[-5,-9],[0,17],[-17,-5],[-5,9],[2,10],[-7,1],[-5,12],[-8,-1],[1,6],[9,-3],[2,9],[-9,-4],[2,8],[-7,-5],[-8,6],[6,14],[-5,5],[-5,-10],[-13,2],[7,12],[-12,1],[0,-7],[-10,1],[-15,11],[-2,-12],[-8,-1],[0,7],[-10,0],[7,-8],[-10,-1],[1,7],[-10,2],[-10,-5],[0,14],[-10,4],[5,-10],[-5,-5],[-15,8],[5,10],[-11,10],[-7,-5],[-10,2],[-5,-9],[-5,7],[-17,-1],[-1,16],[-4,-13],[-8,8],[-25,-8],[-14,0],[-3,-3],[-15,9],[-12,-9],[-8,13],[-10,-8],[-5,6],[-17,-6],[-3,7],[-7,-7],[-3,-17],[-18,6],[-7,-9],[2,16],[-7,16],[-2,-7],[-11,-5],[-7,8],[-15,-4],[-10,7],[0,-8],[-7,-12],[-3,7],[-8,-2],[1,9],[-6,0],[-6,10],[-3,-14],[-7,4],[-8,-8],[-5,10],[-10,9],[-10,2],[-13,-5],[-2,7],[-10,5],[0,5],[-15,10],[-3,5],[13,-1],[0,9],[-20,5],[-5,-16],[-8,13],[-7,4],[-8,14],[5,6],[-7,6],[3,16],[-11,-3],[-4,-11],[-5,8],[0,12],[-5,-4],[-1,-10],[-14,0],[-13,14],[0,8],[-30,17],[3,10],[-5,13],[-8,-7],[-4,9],[-18,-9],[5,-14],[-8,12],[-15,-5],[6,14],[-11,3],[-9,-4],[2,13],[-8,-11],[-7,18],[-10,3],[8,-9],[-11,-13],[-4,16],[-10,-7],[-5,12],[2,10],[-10,1],[-13,-5],[-9,7],[-6,-17],[-20,-7],[-9,3],[-6,9],[0,14],[-30,9],[1,7],[12,-1],[-7,10],[-5,-2],[-8,11],[-17,-3],[-3,13],[11,-5],[2,7],[-5,3],[-8,17],[-9,-6],[-18,3],[0,8],[-13,29],[-14,1],[-16,-10],[-7,7],[-32,-13],[-5,19],[-10,1],[-5,7],[0,10],[-8,-3],[-2,-16],[-5,-3],[-10,8],[2,14],[-17,8],[-8,-9],[-19,0],[-6,14],[-14,8],[-18,-16],[-17,0],[-5,9],[-15,17],[-3,8],[8,7],[2,17],[7,18],[-20,35],[-9,10],[-13,1],[-17,9],[2,20],[-8,59],[-19,32],[-6,36],[1,29],[-25,20],[0,40],[-15,25],[-5,26],[-10,14],[-12,7],[-15,1],[-10,11],[5,23],[-1,13],[-10,6],[-30,9],[-10,14],[-4,13],[14,11],[-20,22],[-9,19],[-11,-6],[-12,9],[0,20],[-5,16],[0,9],[13,8],[4,16],[-9,10],[7,18],[0,14],[-7,13],[9,5],[1,23],[-3,27],[-10,10],[3,27],[-15,16],[-20,-8],[-5,6],[-1,9],[6,19],[-8,10],[-25,0],[-5,11],[13,6],[12,14],[-2,16],[12,22],[-2,13],[5,18],[-6,21],[0,15],[6,8],[5,24],[-8,11],[-10,2],[-18,-1],[5,35],[0,10],[6,9],[0,13],[-13,8],[-7,22],[-13,13],[-4,-7],[-13,-6],[2,15],[-12,10],[-7,13],[-11,-5],[-9,5],[4,-8],[-10,-7],[-14,4],[-10,5],[7,14],[-7,8],[-15,1],[-3,8],[-7,-12],[-5,0],[-13,10],[-2,7],[-15,24],[-10,12],[-3,10],[-7,10],[-15,-3],[-8,11],[-7,28],[-6,3],[-7,-12],[-12,6],[0,7],[-7,16],[-13,0],[-5,6],[3,9],[-3,13],[0,17],[-20,23],[0,12],[7,14],[-4,18],[-13,5],[-7,9],[0,8],[-8,3],[-2,10],[5,17],[0,12],[-20,2],[-20,7],[-10,10],[-11,34],[-4,26],[-21,13],[-9,12],[2,8],[-20,30],[-2,10],[-28,12],[-15,11],[-15,0],[-12,13],[-18,9],[-7,-1],[-8,39],[-4,4],[-18,-2],[-20,20],[-5,13],[-10,10],[5,31],[-17,23],[-5,19],[-18,23],[-7,17],[10,28],[-3,15],[-22,27],[0,4],[17,6],[10,14],[-42,13],[-5,15],[-8,4],[-5,16],[11,22],[-1,9],[-25,13],[-2,7],[-10,4],[0,31],[-12,-3],[-8,6],[-3,7],[-17,7],[-8,30],[-2,13],[5,6],[0,26],[-7,0],[0,11],[-13,4],[3,11],[-6,10],[3,10],[-2,14],[-8,8],[-5,13],[-15,-1],[-3,11],[3,10],[-15,12],[0,11],[-5,4],[5,11],[-10,-1],[3,12],[-10,0],[-8,7],[-7,-6],[-5,13],[9,1],[-17,23],[3,13],[-1,18],[1,11],[-3,21],[-5,9],[-5,25],[0,27],[-5,17],[-12,17],[-20,10],[-20,17],[2,7],[-17,9],[-12,18],[7,9],[0,8],[-8,7],[1,9],[-10,16],[-6,-1],[-2,18],[-15,7],[3,7],[-18,1],[-13,12],[-19,6],[-6,25],[-14,4],[-11,14],[-16,5],[-8,14],[-10,0],[-5,6],[-25,10],[-7,8],[-3,14],[-15,19],[-5,21],[-5,3],[-8,24],[-19,9],[-23,-1],[-12,10],[-10,-5],[-20,29],[-1,9],[-15,7],[-34,2],[-15,-1],[-3,14],[15,30],[-9,33],[4,14],[-7,8],[-12,0],[-6,-12],[3,-20],[-12,-21],[-15,14],[0,29],[9,17],[-2,16],[-8,6],[-27,4],[-7,-13],[-11,28],[1,17],[-20,16],[0,19],[-11,8],[-4,7],[12,9],[0,10],[-5,0],[-25,-19],[-7,1],[-5,18],[2,14],[-9,4],[-11,-5],[-5,-10],[-14,-10],[-11,2],[-15,-4],[0,25],[3,10],[-5,12],[-18,-10],[-7,-10],[2,-18],[-7,-2],[-20,6],[-17,-6],[-3,-7],[-10,-7],[-12,16],[-15,-9],[-8,8],[-13,-8],[-11,15],[-8,-6],[-5,7],[-10,-1],[-10,8],[-13,2],[-4,-8],[-16,5],[-2,7],[8,9],[-13,9],[-3,-9],[5,-10],[-7,-4],[-22,20],[-10,-12],[-33,3],[-8,-13],[-9,0],[0,13],[-8,3],[-12,-4],[-3,11],[-12,7],[-5,-18],[-8,9],[-12,-8],[-8,4],[-12,-1],[2,-9],[-10,-7],[-17,1],[-8,8],[-12,-2],[-13,1],[-2,8],[-10,-2],[-10,3],[-12,12],[-5,9],[-10,0],[2,15],[-8,7],[-9,-11],[-5,6],[-13,-2],[-5,6],[-10,0],[-5,15],[-3,-10],[-7,2],[-2,13],[-13,-5],[-4,8],[-10,6],[-16,1],[-2,-15],[-13,5],[-7,-15],[-10,-5],[2,-15],[-12,-29],[0,-10],[-8,-6],[3,-13],[-20,-4],[-17,11],[-20,-2],[-6,8],[-4,-7],[-8,8],[-10,-2],[-17,2],[5,-9],[-1,-9],[-29,-19],[-12,24],[-6,-2],[0,-14],[-10,-4],[-20,-2],[-12,-12],[-27,2],[-8,7],[-5,-15],[-7,-6],[2,-16],[-7,-8],[-1,-11],[5,-6],[-9,-5],[-5,-13],[-10,-8],[0,-7],[-10,-1],[-1,-39],[-5,-7],[-14,6],[-3,-4],[3,-21],[-8,2],[-2,-19],[5,-6],[-18,-7],[2,-8],[-14,-9],[2,-29],[5,-6],[-10,-2],[0,-10],[-10,-15],[5,-6],[-9,-5],[4,-26],[-5,-7],[5,-7],[10,0],[-15,-12],[0,-9],[-9,-3],[-1,-11],[5,-5],[-17,-7],[-13,2],[-4,-5],[4,-10],[-7,-25],[0,-21],[-12,-12],[4,-8],[-5,-6],[13,-15],[13,-3],[4,-16],[-10,-11],[-15,-4],[-7,10],[-7,-5],[0,-21],[-13,3],[-7,-3],[-6,-17],[-20,13],[-9,-3],[-6,-8],[1,-14],[-10,-12],[-5,-11],[2,-11],[-5,1],[-7,-10],[-5,0],[2,-14],[-10,-5],[-5,5],[-20,-14],[0,-9],[-17,-14],[-3,-16],[5,-13],[-2,-10],[-13,-17],[3,-13],[-17,-4],[-13,-10],[-10,1],[-5,7],[-28,7],[-9,-3],[-3,5],[-10,-9],[-8,0],[-10,14],[-12,-17],[-5,22],[-12,8],[-6,-5],[-5,8],[6,12],[-5,1],[-13,-9],[-8,11],[11,4],[0,9],[-13,2],[-7,-21],[-5,-3],[-18,6],[-2,8],[-13,-1],[0,7],[-10,-3],[-12,6],[2,7],[-15,14],[-19,2],[4,16],[-12,9],[-12,13],[0,7],[-18,5],[0,11],[-12,13],[-6,-5],[-2,12],[-15,1],[-7,-6],[-10,1],[-13,14],[-22,-3],[-8,-5],[-7,14],[-23,7],[-7,-1],[-5,7],[-12,-4],[-3,11],[-15,16],[2,11],[-12,-2],[-2,14],[-8,-14],[-5,0],[-3,22],[5,5],[-7,16],[-12,-6],[-5,1],[-3,13],[-12,-5],[-10,10],[-25,2],[-10,3],[-3,-5],[-7,6],[-16,-1],[-6,10],[-8,-3],[-23,7],[-5,-3],[-14,8],[-21,7],[-27,18],[0,7],[-20,8],[-18,24],[-12,-2],[0,8],[-10,5],[-7,-5],[0,8],[-6,-1],[-14,8],[4,6],[-14,14],[2,10],[-10,7],[0,6],[-19,14],[4,7],[0,19],[-12,-4],[-3,14],[-24,18],[-36,8],[-5,9],[-2,-8],[-15,-2],[-25,22],[-5,-2],[-12,12],[-1,14],[-40,30],[-5,7],[-9,0],[-7,17],[-8,0],[-7,10],[-10,-5],[-6,18],[-12,13],[-8,15],[10,8],[-12,7],[2,18],[-7,0],[3,9],[-8,10],[7,0],[-15,14],[3,17],[-10,11],[-5,18],[-7,4],[-10,19],[-8,4],[7,6],[-4,9],[-11,6],[0,11],[-9,9],[-8,18],[-5,-3],[0,12],[-15,9],[-3,25],[6,17],[-8,-2],[3,20],[-10,-1],[7,15],[-5,22],[-10,7],[5,17],[-7,8],[2,15],[8,1],[7,14],[-8,50],[8,10],[-5,4],[3,29],[-8,11],[-3,21],[-7,9],[3,11],[-5,3],[-11,17],[-7,-1],[-10,6],[1,9],[-8,0],[0,25],[-5,6],[-10,-1],[0,8],[-8,5],[-7,13],[-10,1],[2,8],[-10,10],[6,1],[2,13],[-3,8],[-17,-2],[-15,14],[0,19],[8,5],[-6,7],[-2,16],[-8,2],[3,26],[-7,25],[0,18],[-3,-2],[-2,19],[-6,2],[-2,14],[-15,35],[-7,-1],[-1,17],[-24,1],[-10,2],[-10,11],[-5,19],[0,19],[-13,13],[-2,13],[-20,-7],[-5,9],[-5,-9],[-15,9],[2,9],[-15,2],[0,7],[-7,9],[-5,-1],[-12,16],[0,11],[-23,9],[-15,-2],[5,17],[-10,4],[-5,-8],[-12,21],[-15,-7],[-6,5],[8,10],[-3,6],[-12,-5],[-15,2],[-7,-6],[-6,13],[-9,-2],[-10,19],[-8,-1],[-2,-11],[-12,-1],[-1,14],[-14,12],[-38,11],[-5,-2],[2,25],[-5,0],[-2,15],[-8,6],[-10,1],[-12,8],[-7,16],[-11,0],[-4,7],[-21,15],[3,7],[-5,11],[-12,-3],[-13,19],[-19,3],[-8,18],[-2,11],[-8,6],[2,13],[-7,19],[-5,4],[-5,17],[-20,15],[-12,1],[-3,15],[-30,12],[-22,11],[-1,8],[-19,15],[-15,0],[-10,4],[-5,26],[-10,6],[-20,29],[-20,25],[-3,10],[-15,18],[-20,1],[-10,21],[-17,-1],[-12,25],[2,13],[-7,12],[-11,0],[-27,25],[-58,6],[-22,23],[-15,1],[-20,11],[-15,18],[-22,9],[-10,13],[-5,22],[-8,8],[-9,29],[-26,19],[-5,23],[-4,7],[-10,30],[-18,28],[-15,38],[-19,15],[-3,16],[-32,22],[-13,1],[-10,10],[-10,-4],[-5,-8],[-15,-3],[-30,31],[2,8],[-17,16],[-13,6],[-9,-4],[-13,14],[-7,2],[2,17],[-10,2],[-17,17],[7,18],[-13,13],[8,10],[18,10],[-15,7],[7,8],[-2,9],[7,11],[-8,0],[5,14],[-14,4],[-1,6],[11,8],[5,8],[77,0],[5,1],[197,0],[27,1],[222,0],[132,0],[15,-1],[188,0],[5,-1],[224,0],[302,0],[167,0],[239,0],[160,0],[245,0],[299,0],[201,0],[0,157],[-2,57],[0,610],[2,7],[-2,68]]],"transform":{"scale":[0.001313892089208921,0.001066460646064606],"translate":[-106.645646,25.837164]},"bbox":[-106.645646,25.837164,-93.508039,36.500704]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment