{
var svg = d3.select(DOM.svg('svg'))
.attr("width", width)
.attr("height", height);
svg.selectAll(".subunit")
.data(subunits.features)
.enter()
.append("path")
.attr("class", function(d) { return "subunit " + d.id; })
.attr("d", path);
return svg.node();
}