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)