Public
Edited
Nov 15
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
world = FileAttachment("world.json").json()
Insert cell
Insert cell
Insert cell
Insert cell
data = world.features.map((d) => d.properties)
Insert cell
Inputs.table(data)
Insert cell
Insert cell
Insert cell
geom = world.features.map((d) => d.geometry)
Insert cell
Inputs.table(geom)
Insert cell
Insert cell
Insert cell
Insert cell
Plot.plot({ projection: "equal-earth", marks: [Plot.geo(world)] })
Insert cell
Insert cell
{
const container = yield htl.html`<div style="height: 500px;">`;
const map = L.map(container);
const layer = L.geoJSON(world).addTo(map);
map.fitBounds(layer.getBounds(), { maxZoom: 9 });
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution:
"© <a href=https://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"
}).addTo(map);
}
Insert cell
Insert cell
Insert cell
view = require("geoverview").then((d) => d.view)
Insert cell
view(world)
Insert cell
Insert cell
topohelper = import("https://cdn.jsdelivr.net/npm/topohelper@latest/+esm")
Insert cell
topoworld = topohelper.fromGeojson(world).topojson
Insert cell
x = topohelper.from(topoworld).centroids({ layer: 0 })
Insert cell
x.view({ tooltip: true, zoom: true })
Insert cell
Insert cell
bertin = require("bertin")
Insert cell
bertin.draw({ layers: [{ geojson: world, tooltip: ["$NAMEfr", "$region"] }] })
Insert cell
Insert cell
viz = require("geoviz")
Insert cell
viz.path({ data: world, tip: true, svg_zoomable: true })
Insert cell
Insert cell
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