geotrellis.raster.summary.polygonal.IntHistogramSummary.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotrellis-raster_2.11 Show documentation
Show all versions of geotrellis-raster_2.11 Show documentation
GeoTrellis is an open source geographic data processing engine for high performance applications.
The newest version!
package geotrellis.raster.summary.polygonal
import geotrellis.raster._
import geotrellis.raster.histogram._
import geotrellis.raster.rasterize._
import geotrellis.vector._
object IntHistogramSummary extends TilePolygonalSummaryHandler[Histogram[Int]] {
def handlePartialTile(raster: Raster[Tile], polygon: Polygon): Histogram[Int] = {
val Raster(tile, _) = raster
val rasterExtent = raster.rasterExtent
val histogram = FastMapHistogram()
polygon.foreach(rasterExtent)({ (col: Int, row: Int) =>
val z = tile.get(col, row)
if (isData(z)) histogram.countItem(z, 1)
})
histogram
}
def handleFullTile(tile: Tile): Histogram[Int] = {
val histogram = FastMapHistogram()
tile.foreach { (z: Int) => if (isData(z)) histogram.countItem(z, 1) }
histogram
}
def combineResults(rs: Seq[Histogram[Int]]): Histogram[Int] =
if (rs.nonEmpty) rs.reduce(_ merge _)
else FastMapHistogram()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy