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

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

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

import geotrellis._
import geotrellis.process._

/**
 * Maps values to 1 if the are NoData values, otherwise 0.
 */
object Undefined extends Serializable {
  /** Maps an integer typed Raster to 1 if the cell value is not NODATA, otherwise 0. */
  def apply(r:Op[Raster]) = 
    r.map(_.map(z => if(isNoData(z)) 1 else 0).convert(TypeBit))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy