Public
Edited
Jul 13, 2023
11 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
map = bertin.draw({
params: {
projection: projection,
extent: turf.rewind(extent, { reverse: true }),
margin: margin
},
layers: [
{
type: "text",
position: [500, 50],
text: language == "fr" ? title_fr : title_en,
frame_opacity: 0.7,
anchor: "middle",
fontSize: 30,
margin: 5,
fontWeight: "bold"
},
{
type: "text",
position: "bottomright",
text: `Nicolas Lambert, 2022
Source: Missing Migrants Project (IOM)
${language == "en" ? ld_en : ld_fr}`,
fill: "#9e9696",
fontSize: 10
},
{
type: "text",
position: [500, 77],
text: year,
anchor: "middle",
frame_fill: "#ff5576",
frame_opacity: 0.7,
fontSize: 23,
margin: 5,
fill: "white",
fontWeight: "bold"
},

{
type: "text",
position: [25, 83],
text: total,
frame_fill: "#ff5576",
frame_opacity: 0.7,
fontSize: 50,
margin: 5,
fill: "white",
fontWeight: "bold"
},

{
type: "text",
position: [25, 95],
text: language == "fr" ? txt_fr : txt_en,
frame_opacity: 0.7,
baseline: "hanging",
fontSize: 15
},

{
type: "dotcartogram",
geojson: dots,
onedot: 1,
iteration: accuracy == "Fast" ? 40 : 1000,
values: "dead",
radius: 1.8,
span: 0.1,
fill: "#ff5576"
},
{
geojson: extent,
stroke: "white",
fill: "white",
fillOpacity: 0.5,
strokeDasharray: 5,
strokeWidth: 2
},
{
geojson: land,
fillOpacity: 0.35,
fill: "white",
stroke: "none"
},
{ type: "graticule", step: 5 },
{ type: "outline" },
{ type: "scalebar" }
]
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
data = iom
.map((d) => ({
year: d["Incident year"],
month: d["Reported Month"],
dead: +d["Total Number of Dead and Missing"],
children: +d["Number of Children"],
cause: d["Cause of Death"],
coords: d["Coordinates"],
lat: +d["Coordinates"]
.replace("POINT (", " ")
.replace(")", "")
.split(" ")[2],
lng: +d["Coordinates"]
.replace("POINT (", " ")
.replace(")", "")
.split(" ")[1]
}))
.filter((d) => d.year == year)
.filter((d) => d.lng >= bbox.x0)
.filter((d) => d.lng <= bbox.x1)
.filter((d) => d.lat >= bbox.y0)
.filter((d) => d.lat <= bbox.y1)
Insert cell
Insert cell
d3.sum(data.map((d) => d["dead"]))
Insert cell
d3.sum(iom.map((d) => d["Number of Children"]))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
ld_en = "last data: " +
iom.map((d) => d["Incident Date"]).sort()[iom.length - 1]
Insert cell
ld_fr = {
const d = iom
.map((d) => d["Incident Date"])
.sort()
[iom.length - 1].split("-");

return `Dernier enregistrement: ${d[2]}/${d[1]}/${d[0]}`;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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