How Do I Do Raster Calculation on Bands?

Raster calculations are done in custom scripts. You can access custom scripts in Configuration Utility, in each layer under each configuration.

To edit the script, click on the “pencil icon” aside the Data processing option under a selected layer and enter the Custom Script Editor.

See more details here.

Raster calculations on bands

How to use the script is detailed here.

An example of the NDVI script below and visualized in EO Browser.

// NDVI calculation
let ndvi = (B08 - B04) / (B08 + B04)
return [ndvi]

 

 

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.