Public
Edited
Apr 5, 2022
Insert cell
Insert cell
Insert cell
<svg width="1000" height="500"></svg>
Insert cell
map = d3.select(mapContainer)
Insert cell
import {getMapData, drawMapLayer} from "@emfielduva/dvlib_maps"
Insert cell
world = getMapData("world110m")
Insert cell
mapLayers = {
let mapLayers = [];
mapLayers["countries"] = drawMapLayer(map,"countries",world.features,world.idField);
return mapLayers;
}
Insert cell
<style>
#countries path {fill: #eeeeee; stroke: #ccc}
</style>
Insert cell
Insert cell
Insert cell
import {centroids, geoCentroids, bounds, geoBounds} with {projection} from "@emfielduva/dvlib_maps"
Insert cell
projection = d3.geoMercator()
Insert cell
Insert cell
countryCentroids = {
let countryCentroids = geoCentroids(world.features, "id");
countryCentroids.forEach(d => {
d.lon = d.coord[0];
d.lat = d.coord[1];
});
return countryCentroids;
}
Insert cell
Insert cell
mapLayers["countrylabels"] = map.append("g").attr("id","countrylabels")
.selectAll("text")
.data(countryCentroids)
.join("text")
.attr("x", d => projection([d.lon,d.lat])[0])
.attr("y", d => projection([d.lon,d.lat])[1])
.text(d => d.name)
Insert cell
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) // random right now, but you get the idea.
Insert cell
import {rFromArea} from "@emfielduva/dvlib"
Insert cell
<style>
#countrylabels text {font-size: 10px; font-family: Arial,Helvetica,sans-serif; dominant-baseline: central;}
#countryDots circle {fill: blue; stroke: #ccc; opacity: 0.75;}
</style>
Insert cell
Insert cell
Insert cell
Insert cell
<svg width=1000 height=500>
<g id="countrylabels"></g>
</svg>
Insert cell
textMap = d3.select(textMapContainer)
Insert cell
textMap.select("#countrylabels").selectAll("text")
.data(countryCentroids)
.join("text")
.attr("x", d => projection([d.lon,d.lat])[0])
.attr("y", d => projection([d.lon,d.lat])[1])
.text(d => d.name)
Insert cell
Insert cell
<svg width=1000 height=500>
<style>
#circleslayer circle {fill: blue; stroke: #ccc; opacity: 0.75;}
</style>
<g id="circleslayer"></g>
</svg>
Insert cell
circleMap = d3.select(circleMapContainer)
Insert cell
circleMap.select("#circleslayer").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",5) // of course this could also be sized from data.
Insert cell
Insert cell
<svg width=1000 height=500>
<style>
#bblayer rect {fill: blue; stroke: #ccc; opacity: 0.75;}
#bblabels text {font-size: 10px; font-family: Arial,Helvetica,sans-serif;}
</style>
<g id="bblayer"></g>
<g id="bblabels"></g>
</svg>
Insert cell
bbMap = d3.select(boundingBoxMapContainer)
Insert cell
// using the planar (post projection) path.bounds for this one instead of spherical lon/lat
countryBBoxes = {
let countryBBoxes = bounds(world.features, "id");
countryBBoxes.forEach(d => {
// returned arrays are [left,bottom] then [right,top]
d.width = d.coord[1][0] - d.coord[0][0];
d.height = d.coord[1][1] - d.coord[0][1];
});
return countryBBoxes;
}
Insert cell
bbMap.select("#bblayer").selectAll("rect")
.data(countryBBoxes)
.join("rect")
.attr("x", d => d.coord[0][0])
.attr("y", d => d.coord[1][1])
.attr("width", d => d.width)
.attr("height", d => d.height)
Insert cell
bbMap.select("#bblabels").selectAll("text")
.data(countryBBoxes)
.join("text")
.attr("x", d => d.coord[0][0] + 2)
.attr("y", d => d.coord[1][1] + 10)
.text(d => d.name)
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more