Published
Edited
Sep 13, 2018
Importers
2 stars
Insert cell
Insert cell
import { land } from "@fil/base-map"
Insert cell
import { map } with { land_without_antarctica as land } from "@fil/base-map"
Insert cell
land_without_antarctica = {
var l = JSON.parse(JSON.stringify(land)); // clone (useless here but a good idea in general)
var g = l.features[0].geometry;
// remove any polygon that starts below 70°S.
g.coordinates = g.coordinates.filter(d => d[0][0][1] > -70);
return l;
}
Insert cell
map("bertin1953")
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more