image = {
const context = DOM.context2d(r * 4, w);
const projection = d3.geoEquirectangular().scale(r * 2 / Math.PI).translate([r * 2, w / 2]);
const path = d3.geoPath(projection, context);
context.beginPath(), path(land), context.fill();
return {canvas: context.canvas};
}