charts={
const c=DOM.context2d(s,s);
const {canvas}=c;
const projection = d3.geoOrthographic().scale(radius).translate([s / 2, s / 2]);
const path = d3.geoPath(projection, c);
projection.rotate(rotate);
c.clearRect(0, 0, s, s);
c.lineWidth = 1.5;
c.fillStyle = "aliceblue";
c.beginPath();
c.arc(s / 2, s / 2, radius, 0, 2 * Math.PI)
c.fill();
c.stroke();
c.lineWidth = 0.35;
c.fillStyle = "mintcream";
c.beginPath();
path(worldData);
c.fill();
c.stroke();
return canvas;
}