Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active June 21, 2016 07:05
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 enjalot/397af58276d926193d28b8023b2400f2 to your computer and use it in GitHub Desktop.
Save enjalot/397af58276d926193d28b8023b2400f2 to your computer and use it in GitHub Desktop.
WWSD #17: turf: buffer
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
fill: #ccc;
stroke: #fff;
stroke-width: .5px;
}
path:hover {
fill: red;
}
</style>
<body>
<canvas></canvas>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Turf.js/2.0.2/turf.min.js"></script>
<script>
var width = 960,
height = 500;
var canvas = d3.select("canvas").node()
canvas.width = width;
canvas.height = height;
var ctx = canvas.getContext('2d')
var projection = d3.geo.mercator()
.rotate([0,90])
.center([-131.537515,-19.675455])
.scale(3500)
.translate([width/2, 0])
var path = d3.geo.path()
.projection(projection)
.context(ctx)
var url = "http://enjalot.github.io/wwsd/data/USA/california-streams.topojson"
d3.json(url, function(error, topology) {
if (error) throw error;
console.log("topojson", topology)
var geojson = topojson.feature(topology, topology.objects['us-streams-unmerged-18']);
console.log("geojson", geojson)
var maxLength = d3.max(geojson.features, function(d) {
var length = turf.lineDistance(d, 'miles');
d.properties.length = length;
return length;
})
ctx.strokeStyle = "#111";
ctx.fillStyle = "rgba(20, 20, 220, 0.1)"
geojson.features.forEach(function(feature) {
var buffered = turf.buffer(feature, 0.03, 'degrees')
ctx.beginPath()
path(buffered)
ctx.fill();
})
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment