plot = {
const projection = d3.geoMercator().center([-74.83,10.99]).scale(scale)
const path = d3.geoPath().projection(projection);
const svg = d3.select(DOM.svg(width, height))
.style("width", "100%")
.style("height", "auto");
const newSvg = ready(svg, path, col, projection).node();
return newSvg
}