{
const svg = d3.create("svg").attr("width", width).attr("height", height);
svg
.selectAll("rect")
.data(coords)
.join("rect")
.attr("width", a)
.attr("height", a)
.style("fill", "rgba(37,124,163, 0.99)")
.attr("x", (d) => d.lon)
.attr("y", (d) => d.lat);
return svg.node();
}