Public
Edited
Dec 13, 2022
1 star
Insert cell
Insert cell
bertin.draw({
layers: [
{
type: "layer",
geojson: buffer,
strokeWidth: 3,
stroke: "#a66ecc",
fill: "none"
},
{
type: "layer",
geojson: intersection, // jsts
strokeWidth: 3,
stroke: "#a66ecc",
fill: "none"
},
{
type: "layer",
geojson: clip, // geotoolbox
strokeWidth: 3,
stroke: "#0f0",
fill: "none"
},
{ type: "layer", geojson: lines, strokeWidth: 1, stroke: "#f00" }
]
})
Insert cell
Insert cell
clip = geo.clip(lines, { clip: buffer })
Insert cell
Insert cell
polyJsts = geojsonReader.read(buffer.features[0].geometry)
Insert cell
intersection = {
const writer = new jsts.io.GeoJSONWriter();
const outLines = [];
lines.features.forEach((line) => {
const lineJsts = geojsonReader.read(line);
// console.log(lineJsts);
if (polyJsts.intersects(lineJsts.geometry)) {
const intersection = polyJsts.intersection(lineJsts.geometry);
outLines.push({
type: "Feature",
properties: line.properties,
geometry: writer.write(intersection)
});
}
});
return geo.featurecollection(outLines);
}
Insert cell
linesJsts = geojsonReader.read(lines)
Insert cell
buffer = geo.buffer(
{
type: "FeatureCollection",
features: [
{
type: "Feature",
geometry: {
type: "Point",
coordinates: [13.42, 52.516]
},
properties: {}
}
]
},
{ dist: 0.5 }
)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
geojsonReader = new jsts.io.GeoJSONReader()
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