viewof originalGrid = {
const N = width * height;
const ocean = new Float64Array(N);
const sign = new Uint8Array(N);
const context = DOM.context2d(width, height, 1);
const path = d3.geoPath(projection, context);
context.fillStyle = "rgb(120, 170, 0)";
context.beginPath();
path(land);
context.stroke();
{
const { data } = context.getImageData(0, 0, width, height);
for (let i = 0; i < N; i++) ocean[i] = data[(i << 2) + 3] > 100 ? 0 : INF;
}
context.fill();
{
const { data } = context.getImageData(0, 0, width, height);
for (let i = 0; i < N; i++) sign[i] = data[(i << 2) + 1] > 90;
}
const value = { ocean, sign };
return Object.assign(context.canvas, { value, style: "max-width: 100%" });
}