choropleth = {
const svg = d3.create("svg")
.attr("viewBox", [50, 75, width, height-75]);
svg.append("g")
.selectAll("path")
.data(features.features)
.join("path")
.attr("stroke", "white")
.attr("stroke-linejoin", "round")
.attr("stroke-width", .2)
.attr("fill", d => color(data.get(d.properties.OBJECTID)))
.attr("d", path)
.append("title")
.text(d => " Land Class: " + data.get(d.properties.OBJECTID));
return svg.node();
}