UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

23 lines (20 loc) 800 B
import datasources from "./datasources.json" with { type: "json" }; import metrics from "./metrics.json" with { type: "json" }; import precalc from "./precalc.json" with { type: "json" }; import objectives from "./objectives.json" with { type: "json" }; import geographies from "./geographies.json" with { type: "json" }; import basic from "./basic.json" with { type: "json" }; import gp from "./geoprocessing.json" with { type: "json" }; import projectPackage from "../package.json" with { type: "json" }; import { ProjectClientBase } from "@seasketch/geoprocessing/client-core"; const projectClient = new ProjectClientBase({ datasources, metricGroups: metrics, precalc, objectives, geographies, basic, package: projectPackage, geoprocessing: gp, }); export default projectClient;