Public
Edited
Jun 30, 2023
1 fork
9 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
GoCart = Promise.all([
require("go-cart-wasm@0.3.0"),
require.resolve("go-cart-wasm@0.3.0/dist/cart.wasm")
]).then(([initGoCart, url]) => initGoCart({ locateFile: () => url }))
Insert cell
Insert cell
Insert cell
world = FileAttachment("world@1.json").json()
Insert cell
Insert cell
data = FileAttachment("data.csv").csv()
Insert cell
Insert cell
Insert cell
d3 = require("d3", "d3-geo-projection@4")
Insert cell
worlddataproj = d3.geoProject(worlddata, d3.geoNaturalEarth1().reflectY(true))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
bertin = require("bertin")
Insert cell
bertin.draw({
params: { projection: "user" },
layers: [
{
type: "header",
text: value == "pop" ? "Population Worldwide" : "Wealth in the World"
},
{
geojson: cartogram,
fill: {
type: "choro",
values: "gdppercapita",
leg_x: 50,
leg_y: 300,
leg_title: "GDP per inh\n(in $)",
leg_round: 0,
colors: "RdYlGn"
},
tooltip: [
"$name",
(d) =>
"GDP/capita: " + Math.round(d.properties.gdppercapita) + " $/inh."
]
}
]
})
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