Public
Edited
Mar 14, 2023
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
layerPoints = {
const features = [];
points.forEach( d=> {
const feature = {
"type":"Feature",
"geometry":{"type":"Point","coordinates": [d.lat, d.lng]},
"properties": d
}
features.push(feature);
})
return features;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
turf.area(Polygon.data)/10000
Insert cell
area_intersec = {
let soma = 0;
intersec.data.features.forEach(d=> {
soma += turf.area(d);
});
return soma/1000
}
Insert cell
Insert cell
Insert cell
Insert cell
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