viewof summary = land_simplified = {
let world_simplified = topojson.presimplify(world)
let min_weight = topojson.quantile(world_simplified, quantile_value)
world_simplified = topojson.simplify(world_simplified, min_weight)
let land = topojson.merge(world_simplified, world_simplified.objects.countries.geometries.filter(d => d.id !== "010"))
return land
}