Skip to content

Instantly share code, notes, and snippets.

@maggie-lee
Created October 3, 2014 13:14
Show Gist options
  • Save maggie-lee/81587b3928bf42ba8f27 to your computer and use it in GitHub Desktop.
Save maggie-lee/81587b3928bf42ba8f27 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#brookhaven1 {
fill: purple;
opacity: 0.8;
}
#dekalb_county {
fill: none;
}
/* CSS goes here. */
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 2000,
height = 1500;
var scale = 150000;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var color = d3.scale.category20();
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.4, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
// EXISTING CITIES EXCEPT BROOKHAVEN
d3.json("topo_cities.json", function(error, dek) {
if (error) return console.error(error);
console.log("ok dek:", dek);
svg.selectAll("#cities")
.data(topojson.feature(dek, dek.objects['cities']).features)
.enter().append("path")
.attr("id", function (d, i) {return "cities" + i; })
.attr("d", path)
.attr("fill", function (d, i) {return color(i);})
.attr("opacity", 0.8);
});
// BROOKHAVEN
d3.json("topo_brookhaven.json", function(error, bkh) {
if (error) return console.error(error);
console.log("ok dek:", bkh);
svg.selectAll("#brookhaven")
.data(topojson.feature(bkh, bkh.objects['brookhaven']).features)
.enter().append("path")
.attr("id", function (d, i) {return "brookhaven" + i; })
.attr("d", path)
.attr("opacity", 0)
.attr("stroke", "black")
.attr("stroke-width", "0.5px");
});
// DEKALB COUNTY OUTLINE
d3.json("topo_dekalb.json", function(error, dekalb) {
if (error) return console.error(error);
console.log("ok topo_dekalb:" , dekalb )
svg.selectAll("#dekalb_county")
.data(topojson.feature(dekalb, dekalb.objects['dekalb_county']).features)
.enter().append("path")
.attr("id", "dekalb_county")
.attr("d", path)
.attr("stroke", "black")
.attr("stroke-width", "1px");
});
// INTERSTATES
d3.json("topo_hiways.json", function(error, roads) {
if (error) return console.error(error);
console.log("ok roads:", roads)
svg.selectAll("#roads")
.data(topojson.feature(roads, roads.objects['hiways']).features)
.enter().append("path")
.attr("id", function (d, i) {return "roads" + i; })
.attr("d", path)
.attr("stroke", "black")
.attr("stroke-width", "0.5px")
.attr("opacity", 1);
});
// SECONDARY ROADS
d3.json("topo_roads.json", function(error, roads) {
if (error) return console.error(error);
console.log("ok roads:", roads)
svg.selectAll("#roads")
.data(topojson.feature(roads, roads.objects['roads4']).features)
.enter().append("path")
.attr("id", function (d, i) {return "roads" + i; })
.attr("d", path)
.attr("stroke", "black")
.attr("stroke-width", "0.5px")
.attr("opacity", 1);
});
</script>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"dekalb_county":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"13089","arcs":[[0]]}]}},"arcs":[[[53,5915],[0,1],[1,4],[0,5],[0,1],[1,9],[3,11],[0,17],[0,12],[0,2],[0,19],[0,2],[1,2],[0,2],[2,8],[0,13],[-1,8],[0,1],[0,1],[-3,37],[0,1],[1,7],[-1,9],[0,9],[1,108],[0,16],[0,3],[0,3],[0,4],[0,5],[0,6],[0,59],[0,17],[0,1],[0,32],[0,4],[0,16],[0,8],[-1,8],[-1,2],[-1,4],[-1,10],[0,1],[-1,9],[-2,20],[-2,19],[3,11],[3,6],[1,5],[0,1],[0,2],[1,4],[0,1],[0,1],[0,1],[0,2],[1,5],[0,3],[0,20],[0,24],[0,11],[0,28],[0,10],[0,22],[0,11],[0,57],[0,1],[0,3],[1,7],[2,25],[0,6],[0,2],[0,2],[0,1],[0,2],[0,3],[3,85],[0,4],[0,4],[-3,51],[-1,7],[0,3],[-4,31],[-1,1],[-3,25],[1,9],[1,7],[10,69],[0,8],[0,17],[0,1],[0,2],[-3,9],[-2,10],[-1,3],[0,2],[0,12],[0,12],[0,8],[0,12],[1,6],[0,23],[3,119],[0,32],[1,13],[0,28],[1,45],[0,2],[0,34],[0,3],[0,3],[0,2],[-3,19],[-6,52],[0,10],[0,7],[0,8],[0,1],[3,80],[3,147],[0,3],[0,29],[0,23],[0,12],[0,6],[0,69],[0,6],[0,116],[0,12],[0,23],[0,4],[0,1],[0,12],[0,6],[0,9],[0,58],[0,3],[2,43],[3,75],[2,39],[0,3],[0,2],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,40],[0,6],[0,2],[1,43],[-1,16],[0,7],[0,2],[0,4],[-3,88],[6,17],[0,14],[-1,118],[-1,46],[0,50],[1,32],[0,17],[1,3],[0,4],[0,17],[1,1],[0,6],[2,84],[1,29],[-1,7],[0,2],[0,11],[0,6],[0,2],[0,1],[0,3],[-1,31],[-1,53],[-1,24],[1,26],[0,12],[0,10],[-1,17],[0,79],[1,10],[0,1],[6,90],[-7,56],[0,4],[0,9],[0,29],[0,214],[0,16],[4,23],[0,5],[0,22],[0,1],[-3,23],[0,38],[9,62],[2,12],[1,5],[-1,6],[0,6],[0,2],[-1,15],[-1,19],[24,-3],[0,-17],[0,-14],[0,-3],[0,-3],[4,-4],[11,-8],[13,-4],[15,14],[60,38],[65,41],[17,11],[3,2],[6,2],[2,1],[11,3],[10,6],[10,1],[9,-23],[5,-11],[7,2],[-4,10],[-1,2],[2,2],[36,32],[9,9],[14,1],[3,-1],[7,-3],[5,-1],[11,-5],[9,-4],[12,-5],[1,0],[8,-3],[8,-2],[23,-6],[3,-1],[16,-4],[6,-2],[5,-1],[7,-2],[1,0],[22,-5],[9,-3],[3,-1],[20,-4],[34,-9],[16,-5],[28,-11],[30,-9],[9,-3],[5,-1],[15,-3],[24,-5],[19,-4],[10,-1],[4,0],[6,0],[2,0],[10,0],[6,0],[5,0],[5,1],[3,0],[1,0],[4,0],[3,0],[10,0],[24,3],[22,2],[10,1],[8,0],[8,-1],[11,-1],[15,-4],[9,-2],[15,-3],[8,-2],[3,0],[4,-2],[2,-1],[2,0],[4,-3],[7,-6],[5,-4],[3,-2],[4,-2],[6,-3],[6,-1],[16,-3],[5,0],[2,0],[18,1],[3,0],[4,0],[5,-1],[39,-11],[16,-4],[8,-3],[5,-1],[5,-3],[11,-8],[21,-13],[1,-1],[6,-3],[6,-2],[22,-4],[10,-2],[19,-4],[9,-3],[6,-2],[5,-3],[21,-14],[6,-4],[2,-1],[2,-1],[3,-1],[7,-4],[17,-8],[26,-12],[4,-2],[6,-3],[85,-40],[13,-5],[1,-1],[11,-4],[46,-15],[5,-2],[8,-1],[8,-2],[8,0],[7,-1],[10,2],[12,4],[14,5],[1,0],[9,2],[12,1],[5,0],[23,-2],[7,0],[8,0],[8,0],[37,1],[4,0],[13,-1],[12,-1],[18,-5],[4,-1],[13,-4],[12,-6],[18,-10],[7,-3],[22,-9],[5,-1],[8,-2],[1,-1],[13,-1],[11,-2],[33,-4],[1,1],[8,-1],[15,-3],[4,-1],[11,-3],[18,-7],[20,-8],[3,-2],[37,-15],[9,-3],[8,-2],[3,-1],[11,-2],[10,-1],[3,0],[23,-1],[15,-1],[53,-5],[45,28],[66,19],[2,0],[2,-5],[1,-3],[1,-6],[1,-2],[6,-19],[0,-3],[1,-3],[6,-21],[1,-1],[9,-22],[1,-3],[2,-3],[0,-1],[2,-4],[1,-2],[5,2],[49,17],[1,1],[1,0],[2,1],[1,0],[11,5],[6,3],[26,12],[14,7],[36,-52],[10,-13],[3,-4],[83,-108],[0,-1],[19,-27],[6,-8],[12,-17],[2,-3],[1,-1],[-21,-9],[-89,-38],[-7,-2],[-4,-1],[-8,-3],[-52,-23],[35,-66],[11,-16],[24,-35],[47,-71],[12,-16],[8,-11],[14,-19],[1,-2],[3,-5],[8,-14],[4,-9],[3,-5],[2,-3],[7,-13],[3,-7],[1,-1],[11,-20],[1,-2],[3,-7],[8,-14],[5,-9],[0,-2],[12,-36],[0,-2],[1,-3],[1,-5],[1,-7],[7,-22],[3,-4],[0,-1],[0,-1],[1,0],[29,-73],[6,-14],[23,-47],[20,-41],[12,-25],[1,-2],[2,-6],[3,-5],[37,-71],[9,-17],[12,4],[6,1],[1,1],[2,-3],[4,-5],[2,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[12,-15],[2,-2],[19,-26],[2,-2],[14,-20],[25,-36],[9,-14],[50,-36],[2,-1],[6,-5],[1,0],[2,-2],[49,-35],[3,-1],[49,-17],[10,-4],[10,-3],[14,-6],[24,-8],[3,-1],[57,-17],[19,-12],[2,-1],[2,-1],[30,-20],[6,-3],[1,-1],[8,-5],[1,0],[9,-6],[2,-2],[2,-1],[0,-1],[5,-5],[39,-14],[127,-47],[15,-6],[1,-1],[2,-1],[8,-5],[7,-4],[13,-7],[1,-1],[11,-6],[17,-8],[9,-4],[1,-1],[1,0],[43,-19],[18,-8],[32,-15],[17,-7],[0,-1],[17,-19],[4,-4],[11,-13],[12,-14],[103,-116],[15,-17],[15,-17],[14,-16],[11,-12],[4,-5],[4,-4],[15,-18],[4,-4],[16,-18],[46,0],[24,-24],[3,-3],[41,-44],[12,-14],[68,-73],[0,-1],[38,-41],[10,-22],[36,-14],[62,-22],[2,-2],[1,0],[0,-1],[155,-110],[1,-1],[1,0],[1,-1],[4,-3],[6,-3],[15,-7],[3,-1],[6,-3],[4,-2],[2,-1],[7,-3],[49,-28],[0,-1],[0,-1],[1,-4],[5,-27],[1,-4],[8,-27],[18,-21],[4,-5],[0,-3],[0,-19],[43,-17],[26,-10],[4,-1],[0,-1],[6,-2],[29,-7],[2,-1],[3,0],[3,0],[28,5],[7,-1],[14,-4],[8,-2],[5,-1],[12,-5],[31,-10],[31,-19],[14,-8],[58,-34],[68,-41],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[21,-9],[7,-3],[1,-1],[1,0],[47,-21],[30,-13],[5,3],[1,1],[15,12],[8,0],[9,-1],[1,0],[2,-1],[1,0],[2,0],[3,0],[3,-1],[4,0],[11,-1],[14,-1],[1,0],[66,-19],[4,-1],[1,0],[11,-3],[4,-1],[1,0],[1,-1],[3,-1],[9,-2],[53,-14],[64,-59],[46,-42],[0,-1],[2,-1],[33,-31],[30,-27],[2,-1],[15,-15],[1,-1],[3,-2],[27,-14],[31,-11],[4,2],[33,-2],[8,-1],[4,-1],[1,0],[2,0],[1,0],[6,-1],[5,0],[1,0],[1,0],[4,-1],[1,0],[1,0],[1,0],[2,0],[13,-2],[28,-2],[0,-1],[108,-49],[28,-12],[46,-18],[8,-2],[3,0],[24,-5],[74,-15],[32,-21],[5,-4],[64,-62],[17,-16],[34,-32],[70,-65],[69,-98],[107,-63],[7,-5],[104,-32],[13,-6],[26,-11],[29,-15],[4,-4],[17,-15],[5,-3],[101,-52],[17,-20],[1,-2],[7,-10],[2,-4],[0,-1],[1,-1],[37,-94],[0,-1],[147,-146],[1,-2],[30,-40],[15,-16],[5,-5],[1,-1],[2,-3],[6,-6],[6,-7],[84,-93],[1,-1],[5,-5],[4,-3],[-10,-8],[15,-13],[5,5],[18,-5],[4,-2],[45,-26],[-13,-7],[220,-261],[51,-24],[93,-44],[23,-12],[26,-13],[65,-30],[4,-5],[2,-6],[2,-9],[0,-1],[4,-3],[17,-15],[2,-2],[4,-1],[9,-6],[1,0],[4,-1],[4,-2],[1,0],[1,-1],[9,-2],[6,-2],[6,-1],[7,-1],[34,-6],[10,-1],[1,0],[6,-3],[24,-8],[1,0],[1,0],[1,0],[0,-1],[56,-25],[4,-6],[17,-26],[1,-1],[2,-3],[22,-29],[6,-8],[52,-31],[36,-19],[1,0],[2,-3],[10,-12],[49,-58],[39,-23],[83,-48],[30,-31],[1,0],[1,-1],[2,-3],[15,-15],[7,-7],[2,-1],[0,-1],[2,-1],[259,-259],[30,-31],[2,-1],[149,-69],[1,0],[14,-6],[9,-1],[1,0],[1,0],[4,-1],[31,-4],[1,0],[69,-10],[11,-2],[34,-6],[213,-34],[3,1],[3,-2],[2,-1],[5,-3],[1,-1],[9,-6],[11,-8],[29,-20],[4,-3],[40,-28],[45,-61],[0,-1],[37,-37],[4,-2],[1,0],[35,-18],[37,-19],[30,9],[3,-1],[41,-14],[22,-12],[3,-1],[4,-3],[1,0],[81,-57],[3,-2],[3,-2],[2,-1],[3,-22],[0,-2],[3,-12],[1,-1],[20,-17],[2,-1],[0,-1],[6,-4],[2,-2],[14,-23],[0,-1],[1,-1],[37,-40],[1,-1],[2,-1],[3,-1],[3,0],[52,-8],[6,12],[111,-30],[15,-4],[52,-14],[3,-2],[48,-26],[132,-56],[83,-9],[-110,-79],[-88,-61],[-171,-119],[-46,-31],[-121,-84],[-9,-8],[-3,-2],[-22,-20],[-13,-12],[-20,-17],[-15,-12],[-45,-39],[-5,-4],[-5,-3],[-5,-4],[-5,-3],[-6,-2],[-10,-4],[-2,-2],[-58,-45],[-29,-22],[-71,-53],[-72,-53],[-8,-4],[-1,-1],[-3,-2],[-45,-34],[-1,-1],[-19,-14],[-19,-33],[-2,-4],[-20,-34],[-1,-1],[0,-1],[-17,-28],[-2,-3],[-55,-98],[-82,-148],[-157,-268],[-1,-1],[-23,-46],[-79,-131],[-18,-36],[-34,-58],[-32,-56],[-2,-5],[-3,-3],[-1,-3],[-4,-7],[-51,-91],[-21,-40],[-34,-64],[-19,-33],[-67,-112],[-85,-144],[-1,-2],[-6,-15],[-27,-45],[-3,-5],[-16,-29],[-1,-2],[-2,-3],[-2,-5],[-37,-61],[-43,-71],[-46,-78],[-2,-2],[-2,-4],[-14,-25],[-2,-2],[-12,-23],[-12,-20],[-21,-37],[-13,-24],[-25,-43],[-11,-19],[-9,-17],[-4,-6],[-32,-57],[-7,-12],[-17,-27],[-4,-6],[-110,-194],[-17,-35],[-2,-4],[-132,-221],[-39,-69],[-138,-238],[-22,-36],[-26,-43],[-6,-8],[-1,-3],[-16,-28],[-100,-170],[-1,-2],[-2,-3],[-15,20],[-14,26],[-4,8],[-2,6],[-2,9],[0,2],[1,2],[2,4],[11,7],[14,7],[7,4],[10,7],[4,8],[-4,9],[-7,6],[-12,7],[-13,6],[-19,7],[-13,5],[-5,2],[-3,2],[-3,3],[-2,2],[-7,10],[-2,5],[-4,14],[-1,7],[-1,5],[-2,6],[-7,5],[-7,4],[-23,4],[-83,18],[-4,1],[-4,2],[-5,2],[-17,11],[-5,6],[-4,4],[-1,4],[-3,5],[0,3],[0,4],[6,23],[0,1],[-2,3],[-1,1],[-5,0],[-1,0],[-1,0],[-1,1],[-2,2],[-5,1],[-7,2],[-2,0],[-12,2],[-2,0],[-5,1],[-6,1],[-15,1],[-15,2],[-18,6],[-18,6],[-13,8],[-6,8],[0,2],[-9,11],[-6,12],[-1,12],[7,15],[4,15],[-4,20],[-9,17],[-5,9],[-8,8],[-15,2],[-24,1],[-14,1],[-27,2],[-25,-2],[-1,0],[-30,-1],[-14,-1],[-8,-2],[-12,-4],[-20,-7],[-30,-7],[-39,-3],[-22,2],[-16,4],[-24,9],[-24,9],[-13,10],[-9,8],[-5,14],[0,16],[4,14],[4,12],[7,17],[8,9],[12,11],[7,2],[3,2],[23,9],[10,5],[9,8],[8,11],[6,11],[-1,8],[-7,7],[-12,3],[-15,1],[-25,-2],[-21,-2],[-7,-4],[-2,0],[-5,-2],[-24,-15],[-22,-16],[-14,-3],[-23,2],[-12,4],[-7,4],[-5,2],[-3,2],[-5,4],[-10,10],[-20,11],[-16,4],[-20,5],[-16,4],[-15,5],[-14,8],[-13,4],[-13,0],[-18,-3],[-4,0],[-14,-1],[-18,6],[-8,6],[-5,14],[-1,10],[-1,10],[-8,9],[-9,11],[-7,12],[-4,11],[-4,7],[-4,10],[-24,45],[-9,16],[-4,15],[-3,9],[-3,5],[-7,5],[-11,2],[-12,-2],[-8,-2],[-7,-7],[-5,-4],[-8,-8],[-15,-13],[-13,-4],[-14,0],[-19,2],[-1,0],[-8,1],[-6,0],[-4,-5],[9,-16],[3,-5],[1,-10],[-5,-21],[-10,-15],[-9,-15],[-12,-21],[-9,-16],[-2,-1],[-8,-3],[-16,-5],[-2,-4],[-2,-3],[0,-22],[-1,-19],[-9,-7],[-15,-1],[-13,1],[-25,5],[-21,4],[-19,3],[-29,6],[-10,1],[-21,3],[-16,4],[-54,8],[-27,3],[-9,1],[-13,4],[-23,18],[-13,9],[-30,7],[-20,7],[-11,6],[0,10],[3,3],[3,4],[11,5],[13,4],[12,5],[6,4],[0,5],[-13,11],[-11,13],[-1,17],[7,15],[10,8],[20,10],[4,2],[16,8],[5,3],[5,5],[1,5],[0,2],[-428,7],[-20,0],[-61,0],[-20,0],[-8,0],[-40,1],[-140,0],[-260,4],[-198,2],[-39,0],[-118,1],[-39,1],[-29,0],[-86,1],[-29,0],[-9,0],[-29,1],[-9,0],[-85,1],[-2,-145],[-1,0],[0,-16],[-1,-47],[0,-16],[0,-11],[-1,-34],[0,-11],[0,-29],[0,-1],[-2,-87],[-1,-29],[0,-11],[-1,-10],[-26,0],[-13,0],[-4,0],[-13,0],[-4,0],[-7,0],[-19,0],[-6,0],[-19,0],[-54,0],[-19,0],[-35,-1],[-12,0],[-45,1],[-26,0],[-81,1],[-27,1],[-52,0],[-67,1],[-88,-1],[-33,0],[1,18],[0,4],[0,12],[0,3],[0,28],[1,82],[0,7],[0,20],[-1,4],[1,11],[0,3],[0,2],[-1,6],[1,2],[-1,36],[0,10],[0,78],[0,20],[-1,36],[0,4],[0,12],[0,4],[0,2],[0,7],[0,2],[0,22],[-7,15],[-2,4],[-22,0],[-2,0],[-5,0],[-1,0],[-109,1],[-9,0],[-2,0],[-5,0],[-2,0],[-93,3],[-7,0],[-6,0],[-5,0],[-12,0],[-6,0],[-30,0],[-91,1],[-30,0],[-14,0],[-40,1],[-13,0],[-29,0],[-85,1],[-29,0],[-101,3],[-93,2],[-17,0],[-3,0],[-2,1],[-27,0],[-81,0],[-26,0],[-18,1],[-54,0],[-18,0],[-8,-2],[-29,-8],[-1,0],[-3,-1],[-74,1],[-25,0],[-93,1],[-41,0],[-27,1],[-169,0],[-1,0],[-158,1],[-10,0],[-100,1],[-42,0],[-21,1],[-25,0],[-69,0],[-35,-1],[-27,0],[-19,0],[-3,0],[-7,0],[-67,0],[-22,0],[-45,1],[-15,-1],[-2,0],[-34,0],[-12,0],[-13,0],[-91,0],[-2,0],[-8,1],[-5,1],[-11,1],[-2,0],[-31,0],[-61,0],[-9,2],[-1,0],[-8,1],[-1,0],[-7,0],[-22,0],[-6,0],[-1,0],[-7,0],[-1,0],[-2,0],[-6,0],[-201,3],[-7,0],[-4,0],[-148,0],[-22,0],[-135,3],[-11,0],[-7,0],[-98,8],[1,30],[2,106],[2,73],[2,69],[2,101],[0,4],[0,1],[1,3],[0,13],[2,41],[0,1],[1,5],[0,6],[2,48],[10,240],[-4,48],[4,67],[0,51],[0,3],[3,46],[2,26],[0,2],[1,4],[0,4],[0,19],[0,125],[0,26],[0,17],[-1,8],[-1,26],[-1,11],[-2,19],[-1,11],[-5,76],[0,6],[-1,47],[2,27],[0,10],[1,6],[0,9],[1,22],[0,22],[0,1],[0,6],[0,12],[-1,62],[0,18],[0,8],[0,8],[0,102],[0,26],[0,138],[0,38],[0,4],[0,6],[0,2],[0,2],[0,3],[1,43],[0,19],[0,30],[0,37],[0,17],[1,13],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,39],[0,5],[0,6],[1,37],[1,29],[0,34],[1,42],[0,28],[1,51],[0,27],[0,5],[0,30],[1,27],[0,15],[0,7],[0,5],[1,19],[-1,7],[1,1],[0,15],[0,7],[0,7],[0,12],[0,19],[0,8],[0,15],[0,7],[0,3],[0,2],[1,28],[0,20],[0,19],[0,16],[0,4],[0,3],[0,2],[0,10],[0,6],[0,3],[0,3],[0,2],[0,9],[0,2],[0,9],[0,3],[0,6],[0,3],[0,1],[0,6],[0,6],[0,1],[0,1],[0,5],[0,6],[0,1],[0,5],[0,1],[0,23],[1,13],[0,4],[0,32],[0,22],[-1,28],[1,34],[0,1],[0,11],[0,21],[0,5],[0,7],[0,18],[1,23],[0,22],[0,13],[0,21],[0,7],[-1,14],[0,7],[1,4],[-1,1],[0,17],[0,11],[0,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,4],[0,3],[-1,44],[0,9],[0,1],[0,77],[0,2],[1,9],[1,3],[2,8],[1,11],[1,36],[0,12],[1,12],[0,11],[0,11],[0,7],[0,13],[0,7],[0,12],[0,18],[0,17],[0,17],[0,4],[1,40],[0,16],[0,1],[1,16],[6,7],[1,2],[8,11],[0,5],[0,1],[1,10],[2,17],[0,8],[-2,39],[-1,23],[0,10],[2,59],[1,21],[-2,12],[-1,10],[0,12],[0,55],[0,21],[0,29],[0,39],[0,44],[4,28],[0,1],[1,1],[1,6],[-1,4],[0,3],[0,1],[-2,9],[1,7],[2,28],[0,28],[0,39],[0,43],[0,26],[0,2],[0,1],[0,92],[1,18],[2,47],[-1,15],[0,4],[0,5],[-1,5],[-1,13],[-3,17],[0,1],[0,2],[0,17],[0,36],[3,20],[-6,19],[1,6],[1,12],[1,14],[0,3],[-3,24],[6,20],[0,5],[0,2],[-2,44],[-1,11],[0,3],[-3,64],[0,8],[3,76],[0,8],[-5,103],[-1,10],[0,13],[0,2],[1,5],[0,8]]],"transform":{"scale":[0.00003265436543654329,0.00003562806280628075],"translate":[-84.350224,33.614666]}}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment