Perform a Double function on every cell in a raster with the values from another raster.
Perform a Double function on every cell in a raster with the values from another raster.
val r1 = LoadFile(a)
val r2 = LoadFile(b)
// Generate a raster by adding the values of each cell in A and B
val result = BinaryLocalMap(r1, r2, {(a:Double, b:Double) => a + b} )
Perform a Double function on every cell in a raster.