{
const svg = d3.create("svg")
.attr("viewBox", [0, 0, size.width, size.height])
.attr("width", size.width)
.attr("height", size.height)
const path2154 = d3.geoPath(proj_e4326_to_map_e2154)
let paths = svg.selectAll('path')
.data(a_dep.features)
.join('path')
.attr('d', path2154)
.attr("fill", '#FEEDAB')
. attr("stroke", '#CCC')
return svg.node()
}