counties = {
let data = await d3.json('https://gist.githubusercontent.com/matijapiskorec/974367d26e8f4572bf84b0c0878a1c07/raw/e7a9281fd6fc41fa6397d81626d22d1923400c11/croatia_counties_coastline_topojson.json')
return {type: "FeatureCollection",
features: topojson.feature(data, data.objects.layer1).features
.concat(topojson.feature(data, data.objects.layer2).features)}
}