Public
Edited
Mar 17, 2023
8 stars
Insert cell
Insert cell
Insert cell
Insert cell
bertin = require("bertin@1.6.4")
Insert cell
Insert cell
Insert cell
pattern = motif({type: "circle", scale, angle: 45, size: 10, fill: "grey"})
Insert cell
Insert cell
Insert cell
Insert cell
bertin.draw({
params: { projection: "VanDerGrinten4" },
layers: [
{
type: "custom",
// Add <pattern> tag to existing <defs> tag
render: (svg, map) => svg.select("defs").node().appendChild(pattern.pattern)
// Add a new <defs> tag
// render: (svg, map) => svg.node().appendChild(pattern.defs)
},
// BORDERS
{
type: "layer",
geojson: world[1],
stroke: "lightgrey"
},
// LAND
{
type: "layer",
geojson: world[0],
fill: "white"
},
// OUTLINE
{
type: "outline",
fill: pattern.url,
},
]
})
Insert cell
world = topophelper.from(world50m)
.innerlines({layer: 1, name: "borders"})
.toGeojson({layer: [0,2]})
Insert cell
Insert cell
Insert cell
Insert cell
palette = {
// Common settings
const params = { type: "line", scale: 0.5, angle: 45, fill: "tomato" };
// + variable size
return [
motif({ ...params, size: 10 }),
motif({ ...params, size: 30 }),
motif({ ...params, size: 50 }),
motif({ ...params, size: 70 })
];
}
Insert cell
bertin.draw({
params: { projection: "user" },
layers: [
{
type: "custom",
// Add each palette pattern tag to the existing defs tag
render: (svg, map) => svg.select("defs").node().append(...palette.map(d => d.pattern))
},
// Dpt limits
{
type: "layer",
geojson: france[1],
stroke: "black"
},
// Buffer dpt limits
{
type: "layer",
geojson: france[1],
stroke: "white",
strokeWidth: 3
},
// Dpt polygons
{
type: "layer",
geojson: france[0],
fill: {
type: "choro",
values: "dep",
nbreaks: 4,
method: "quantile",
// array of pattern url ["url(#line-12199130.465)", ...]
colors: palette.map(d => d.url),
leg_x: 30,
leg_y: 30
}
},
]
})
Insert cell
// 'France communes 2022 COG' by ICEM7 (Éric Mauvière)
// https://www.data.gouv.fr/fr/datasets/contours-des-communes-de-france-simplifie-avec-regions-et-departement-doutre-mer-rapproches/
france = topophelper
.from(
await d3.json(
"https://www.data.gouv.fr/fr/datasets/r/00c0c560-3ad1-4a62-9a29-c34c98c3701e"
)
)
.lines({ layer: 2, name: "lines" })
.toGeojson({ layer: [2, 3] })
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