plot = {
const t0 = performance.now();
const projection = d3.geoAzimuthalEqualArea()
.rotate([80, -40, 15])
.scale(scale)
const path = d3.geoPath().projection(projection).pointRadius(2);
console.log("path.proje", path.projection)
console.log("projection", projection)
const svg = d3.select(DOM.svg(width, height))
.style("width", "100%")
.style("height", "auto");
const newSvg = ready(svg, path, us, projection).node();
const t1 = performance.now();
console.log("Call to svg took " + (t1 - t0) + " milliseconds.");
return newSvg
}