UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

9 lines (8 loc) 458 B
import { Polygon, Geography, VectorDatasource } from "../../../src/types/index.js"; import { FeatureCollection, MultiPolygon } from "../../../src/index.js"; /** * Given geography and its datasource, returns geography features with additional filter options */ export declare function getGeographyFeatures(geography: Geography, /** Geography datasource */ datasource: VectorDatasource, dstPath: string): Promise<FeatureCollection<Polygon | MultiPolygon>>;