Skip to content

Instantly share code, notes, and snippets.

@Fil
Last active August 30, 2018 21:32
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 Fil/fbaf391e1ae252461741ccf401af5a10 to your computer and use it in GitHub Desktop.
Save Fil/fbaf391e1ae252461741ccf401af5a10 to your computer and use it in GitHub Desktop.
geoVoronoi mesh()
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#sphere {
stroke: #444;
stroke-width: 2;
}
.polygons {
stroke: #444;
}
.sites {
stroke: black;
fill: white;
}
</style>
<svg width="960" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/d3-delaunay@4"></script>
<script src="https://unpkg.com/d3-geo-voronoi@1"></script>
<script>
var points = {
type: "FeatureCollection",
features: d3.range(100).map(function() {
return {
type: "Point",
coordinates: [ 360 * Math.random(), 90 * (Math.random() - Math.random()) ]
}
})
}
var v = d3.geoVoronoi()(points);
var projection = d3.geoOrthographic(),
path = d3.geoPath().projection(projection);
var svg = d3.select("svg");
svg.append('path')
.attr('id', 'sphere')
.datum({ type: "Sphere" })
.attr('d', path)
.attr('fill', "#fefef2");
svg.append('g')
.attr('class', 'polygons')
.append('path')
.datum(v.mesh())
.attr('d', path)
.attr('fill', "none");
svg.append('g')
.attr('class', 'sites')
.selectAll('path')
.data(points.features)
.enter()
.append('path')
.attr('d', path);
// gentle animation
d3.interval(function(elapsed) {
projection.rotate([ elapsed / 150, 0 ]);
svg.selectAll('path')
.attr('d', path);
}, 50);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment