{
const width = 960;
const height = 600;
const svg = d3.select(DOM.svg(width, height));
const projection = d3.geoMercator().fitSize([width, height], topojson.feature(topoData, topoData.objects.OR_SDs_merged));
const pathGenerator = d3.geoPath().projection(projection);
svg.selectAll("path")
.data(topojson.feature(topoData, topoData.objects.OR_SDs_merged).features)
.enter().append("path")
.attr("d", pathGenerator)
.attr("fill", d => d.properties.NAME === "School District Not Defined" ? "#ff0000" : "lightgray")
.attr("stroke", "black");
return svg.node();
}