All Downloads are FREE. Search and download functionalities are using the official Maven repository.

geotrellis.raster.op.local.Sqrt.scala Maven / Gradle / Ivy

The newest version!
package geotrellis.raster.op.local

import geotrellis._
import geotrellis.process._

/**
 * Operation for taking a square root.
 */
object Sqrt extends Serializable {
  /** Take the square root each value in a raster. */
  def apply(r:Op[Raster]) = 
    r.map(_.dualMap(z => if(isNoData(z) || z < 0) NODATA else math.sqrt(z).toInt)
                   (math.sqrt(_)))
     .withName("Sqrt[Raster]")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy