chart = Choropleth(global_pv_renamed, {
id: d => d.countryNumericCode,
value: d => d.wattsPerCapita,
domain: [1, 600],
scale: scale.implicit,
range: d3.interpolateReds,
features: countries,
borders: countrymesh,
projection: d3.geoEqualEarth(),
width
})