{
const svg = d3.select(DOM.svg(width, height));
const path = d3.geoPath().projection(projection);
svg
.append("path")
.datum(d3.geoGraticule())
.attr("d", path)
.attr("fill", "none")
.attr("stroke", "Gainsboro");
svg
.selectAll(".peru")
.data(peGeojson.features)
.enter()
.append("path")
.attr("class", "peru")
.attr("fill", "Seashell")
.attr("stroke", "LightSteelBlue")
.attr("d", path);
return svg.node();
}