UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

11 lines 408 B
import path from "node:path"; export function getJsonPath(dstPath, datasourceId) { return path.join(dstPath, datasourceId) + ".json"; } export function getFlatGeobufPath(dstPath, datasourceId) { return path.join(dstPath, datasourceId) + ".fgb"; } export function getGeopackagePath(dstPath, datasourceId) { return path.join(dstPath, datasourceId) + ".gpkg"; } //# sourceMappingURL=pathUtils.js.map