geotrellis.raster.split.SplitMethods.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.split
import geotrellis.raster._
import geotrellis.util.MethodExtensions
import Split.Options
trait SplitMethods[T] extends MethodExtensions[T] {
/**
* Splits this into an array of elements based on a TileLayout.
* The array will be in row order form such that the top left element is first.
*
* @param tileLayout TileLayout defining the tiles to be generated
*
* @return An array of T
*/
def split(tileLayout: TileLayout): Array[T] =
split(tileLayout, Options.DEFAULT)
/**
* Splits this into an array of elements based on a TileLayout.
* The array will be in row order form such that the top left element is first.
*
* @param tileLayout TileLayout defining the tiles to be generated
* @param options Options that control the split
*
* @return An array of T
*/
def split(tileLayout: TileLayout, options: Options): Array[T]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy