{
const context = DOM.context2d(width, height);
const path = d3.geoPath(projection, context);
context.fillStyle = "#5e9ddb";
context.fillRect(0, 0, width, height);
context.strokeStyle = "#e9f2e9";
context.fillStyle = "#8cffcb";
context.beginPath();
path(graticule);
context.stroke();
context.beginPath();
path(land);
context.fill();
context.beginPath();
path(sphere);
context.stroke();
return context.canvas;
}