chart = {
const context = DOM.context2d(width, height),
path = d3.geoPath().context(context);
hexbin.context(context);
for (const c of contours) {
context.beginPath();
path(c);
context.fillStyle = color(c.value);
context.fill();
}
context.beginPath();
hexbin.mesh();
context.strokeStyle = "#000";
context.lineWidth = 0.125;
context.stroke();
context.beginPath();
for (const p of data) hexbin.hexagon(1, p);
context.fillStyle = "#444";
context.fill();
return context.canvas;
}