@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
9 lines (8 loc) • 457 B
TypeScript
import { Feature, FeatureCollection, MultiPolygon, Polygon } from "geojson";
/**
* Removes overlap between polygons and returns result as a single polygon or multipolygon
* The result has no connection to the original features and their properties in this process
* @param input
* @returns
*/
export declare const removeOverlap: (input: FeatureCollection<Polygon | MultiPolygon> | Feature<Polygon | MultiPolygon>[]) => Feature<Polygon | MultiPolygon>;