@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
23 lines • 570 B
JavaScript
/** Stats supported by geoblaze.stats() function */
export const GEOBLAZE_RASTER_STATS = [
"valid",
"invalid",
"count",
"min",
"max",
"mean",
"median",
"mode",
"range",
"sum",
"std",
"variance",
];
/** Additional raster stats calculated by geoprocessing library */
export const EXTRA_RASTER_STATS = ["area", "histogram"];
/** Combined raster stats supported by geoprocessing library */
export const SUPPORTED_RASTER_STATS = [
...GEOBLAZE_RASTER_STATS,
...EXTRA_RASTER_STATS,
];
//# sourceMappingURL=geoblaze.js.map