How to use the polygon-clipping.difference function in polygon-clipping

To help you get started, we’ve selected a few polygon-clipping examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Turfjs / turf / src / difference / index.js View on Github external
function difference(polygon1, polygon2) {
    const geom1 = getGeom(polygon1);
    const geom2 = getGeom(polygon2);
    const properties = polygon1.properties || {};
    const differenced = polygonClipping.difference(geom1.coordinates, geom2.coordinates);
    if (differenced.length === 0) return null;
    return multiPolygon(differenced, properties);
}

polygon-clipping

Apply boolean Polygon clipping operations (intersection, union, difference, xor) to your Polygons & MultiPolygons.

MIT
Latest version published 5 months ago

Package Health Score

79 / 100
Full package analysis