How to use the geoblaze.mean function in geoblaze

To help you get started, we’ve selected a few geoblaze examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github GeoTIFF / geotiff.io / src / components / tools / mean / mean.container.js View on Github external
const calculateMean = (raster, coors) => {
  return geoblaze.mean(raster, coors)
    .map(value => value.toFixed(2)).join(', ');
}