{
const context = DOM.context2d(width, height),
path = d3.geoPath().context(context);
context.translate(10, 10);
for (const c of contour) {
context.beginPath();
path(c);
context.fillStyle = color(c.value);
context.fill();
}
context.beginPath();
delaunay.render(context);
context.lineWidth = 0.25;
context.stroke();
return context.canvas;
}