rounded_earth = {
const svg = d3.select(DOM.svg(width, height))
.style("width", "100%")
.style("height", "auto");
const g = svg.append("g")
g.selectAll(".land")
.data(ms_countries.features)
.join("path")
.attr("fill", d => color(d.properties.plastic))
.attr("d", round)
g
.append("path")
.datum(topojson.mesh(ms_world, ms_world.objects.foo, (a, b) => a !== b))
.attr("fill", "none")
.attr("stroke", "white")
.attr("stroke-linejoin", "round")
.attr("d", path);
return svg.node();
}