UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

16 lines 467 B
import { feature } from "@turf/turf"; import { genSampleSketch } from "../../helpers/index.js"; export const selfCrossingPolygon = feature({ type: "Polygon", coordinates: [ [ [0, 0], [2, 0], [0, 2], [2, 2], [0, 0], ], ], }); export const selfCrossingSketchPolygon = genSampleSketch(selfCrossingPolygon.geometry, "selfCrossingPolygon"); //# sourceMappingURL=invalidSketches.js.map