mapLayers["countryDots"] = map.append("g").attr("id","countryDots")
.selectAll("circle")
.data(countryCentroids)
.join("circle")
.attr("cx", d => projection([d.lon,d.lat])[0])
.attr("cy", d => projection([d.lon,d.lat])[1])
.attr("r", d => Math.random()*10)