UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

10 lines (9 loc) 438 B
import "./fetchPolyfill.js"; /** * Returns cog-aware georaster at given url. If fetch fails, will retry up to 3 times * Will not fetch raster values until subsequent geoblaze calls are made with * a geometry and it will calculate the window to load based on the geometry. * The subsequent geoblaze calls (e.g. sum) must be called async to allow the * raster to load. */ export declare const loadCog: (url: string) => Promise<any>;