@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
16 lines • 467 B
JavaScript
import { feature } from "@turf/turf";
import { genSampleSketch } from "../../helpers/index.js";
export const selfCrossingPolygon = feature({
type: "Polygon",
coordinates: [
[
[],
[],
[],
[],
[],
],
],
});
export const selfCrossingSketchPolygon = genSampleSketch(selfCrossingPolygon.geometry, "selfCrossingPolygon");
//# sourceMappingURL=invalidSketches.js.map