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

geotrellis.raster.resample.TileResampleMethods.scala Maven / Gradle / Ivy

package geotrellis.raster.resample

import geotrellis.raster._
import geotrellis.vector._
import geotrellis.util.MethodExtensions


trait TileResampleMethods[T <: CellGrid] extends MethodExtensions[T] {
  def resample(extent: Extent, target: RasterExtent, method: ResampleMethod): T

  def resample(extent: Extent, target: RasterExtent): T =
    resample(extent, target, ResampleMethod.DEFAULT)


  def resample(extent: Extent, targetCols: Int, targetRows: Int, method: ResampleMethod): T

  def resample(extent: Extent, targetCols: Int, targetRows: Int): T =
    resample(extent, targetCols, targetRows, ResampleMethod.DEFAULT)


  def resample(targetCols: Int, targetRows: Int, method: ResampleMethod): T =
    resample(Extent(0.0, 0.0, 1000.0, 1000.0), targetCols, targetRows, method)

  def resample(targetCols: Int, targetRows: Int): T =
    resample(Extent(0.0, 0.0, 1000.0, 1000.0), targetCols, targetRows, ResampleMethod.DEFAULT)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy