canvas = {
const fix = (x, p = 2) => +x.toFixed(p);
const deg = (n) => +fix(360 * n);
const rad = (r) => 2 * Math.PI * r;
const scale = d3
.scaleLinear()
.domain([-0.5 * Math.PI, 1.5 * Math.PI])
.range([0, 2 * Math.PI]);
const context = DOM.context2d(edge, edge);
context.beginPath();
context.moveTo(edge / 2, edge / 2);
context.strokeStyle = "rgba(255,255,0,.5)";
context.lineWidth = 16;
context.lineCap = "butt";
context.lineTo(
edge / 2 + (edge / 2) * 0.8 * Math.cos(scale(currentAzimuth)),
edge / 2 + (edge / 2) * 0.8 * Math.sin(scale(currentAzimuth))
);
context.stroke();
context.beginPath();
context.moveTo(edge / 2, edge / 2);
context.strokeStyle = "rgba(200,200,200,.35)";
context.lineWidth = 16;
context.lineTo(
edge / 2 + (edge / 2) * 0.8 * Math.cos(scale(reverseAzimuth)),
edge / 2 + (edge / 2) * 0.8 * Math.sin(scale(reverseAzimuth))
);
context.stroke();
context.beginPath();
context.lineWidth = 5;
context.lineCap = "round";
context.shadowBlur = 5;
context.shadowColor = "#aaa";
context.strokeStyle = "#fff";
context.arc(
edge / 2,
edge / 2,
(edge / 2) * 0.8,
scale(SunriseAzimuth),
scale(SunsetAzimuth)
);
context.stroke();
context.shadowBlur = 0;
context.beginPath();
context.arc(
edge / 2 + (edge / 2) * 0.8 * Math.cos(scale(currentAzimuth)),
edge / 2 + (edge / 2) * 0.8 * Math.sin(scale(currentAzimuth)),
10,
0,
2 * Math.PI
);
context.strokeStyle = "#fff";
context.lineWidth = 10;
context.shadowBlur = 10;
context.fillStyle = "#ff0";
context.stroke();
context.shadowBlur = 0;
context.fill();
return context.canvas;
}