@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
58 lines • 1.17 kB
JavaScript
import { genSampleSketch } from "../../../helpers/index.js";
// bbox - [xmin, ymin, xmax, ymax]
// pixel - [left, bottom, right, top]
export const quad1Poly = genSampleSketch({
type: "Polygon",
coordinates: [
[
[-2, 2],
[-2, 18],
[-18, 18],
[-18, 2],
[-2, 2],
],
],
});
export const quad2Poly = genSampleSketch({
type: "Polygon",
coordinates: [
[
[],
[],
[],
[],
[],
],
],
});
export const allQuadPoly = genSampleSketch({
type: "Polygon",
coordinates: [
[
[-18, -18],
[-18, 18],
[],
[],
[-18, -18],
],
],
});
export const outsideQuadPoly = genSampleSketch({
type: "Polygon",
coordinates: [
[
[],
[],
[],
[],
[],
],
],
});
export default {
quad1Poly,
quad2Poly,
allQuadPoly,
outsideQuadPoly,
};
//# sourceMappingURL=testData.js.map