Plot.plot({
width: width * 0.5,
height: width * 0.5 * 0.88 + 2,
marginBottom: 2,
projection: {
type: "reflect-y",
domain: nuts_geojson.nutsrg
},
marks: [
Plot.geo(nuts_geojson.cntrg, { fill: "#eee" }),
Plot.geo(nuts_geojson.nutsrg, { fill: "#ddd" }),
Plot.geo(nuts_geojson.cntbn, { stroke: "#000", strokeWidth: 0.25 }),
Plot.geo(nuts_geojson.nutsbn, { stroke: "#000", strokeWidth: 0.25 }),
Plot.frame()
]
})