trait MultibandTileCropMethods extends TileCropMethods[MultibandTile]
- Alphabetic
- By Inheritance
- MultibandTileCropMethods
- TileCropMethods
- CropMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
self: MultibandTile
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
crop(srcExtent: Extent, extent: Extent, options: Options): MultibandTile
Given a source Extent (the extent of the present MultibandTile), a destination Extent, and a set of Options, return a new MultibandTile.
Given a source Extent (the extent of the present MultibandTile), a destination Extent, and a set of Options, return a new MultibandTile.
- Definition Classes
- MultibandTileCropMethods → TileCropMethods
-
def
crop(gridBounds: GridBounds[Int], options: Options): MultibandTile
Crops this MultibandTile to the given region using methods specified in the cropping options.
Crops this MultibandTile to the given region using methods specified in the cropping options.
- Definition Classes
- MultibandTileCropMethods → CropMethods
-
def
crop(srcExtent: Extent, extent: Extent): MultibandTile
Given a source Extent and a destination extent produce a cropped Tile.
Given a source Extent and a destination extent produce a cropped Tile.
- Definition Classes
- TileCropMethods
-
def
crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): MultibandTile
Given the starting and stopping columns and rows, crop.
Given the starting and stopping columns and rows, crop.
- Definition Classes
- CropMethods
-
def
crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int, options: Options): MultibandTile
Given the starting and stopping columns and rows and some cropping options, crop.
Given the starting and stopping columns and rows and some cropping options, crop.
- Definition Classes
- CropMethods
-
def
crop(cols: Int, rows: Int): MultibandTile
Given a number of columns and rows for the desired output, crop.
Given a number of columns and rows for the desired output, crop.
- Definition Classes
- CropMethods
-
def
crop(cols: Int, rows: Int, options: Options): MultibandTile
Given a number of columns and rows for the desired output and some cropping options, crop.
Given a number of columns and rows for the desired output and some cropping options, crop.
- Definition Classes
- CropMethods
-
def
crop(windows: Seq[GridBounds[Int]]): Iterator[(GridBounds[Int], MultibandTile)]
Crop out multiple GridBounds windows.
Crop out multiple GridBounds windows.
- Definition Classes
- CropMethods
-
def
crop(gridBounds: GridBounds[Int]): MultibandTile
Given a GridBounds, crop.
Given a GridBounds, crop.
- Definition Classes
- CropMethods
-
def
cropBands(gridBounds: GridBounds[Int], targetBands: Seq[Int]): MultibandTile
Crops this MultibandTile such that the output will contain only the given region and bands specified.
- def cropBands(gridBounds: Seq[GridBounds[Int]], targetBands: Seq[Int]): Iterator[(GridBounds[Int], MultibandTile)]
- def cropBands(gridBounds: Seq[GridBounds[Int]], targetBands: Seq[Int], options: Options): Iterator[(GridBounds[Int], MultibandTile)]
-
def
cropBands(gridBounds: GridBounds[Int], targetBands: Seq[Int], options: Options): MultibandTile
Given a GridBounds, a sequence of bands indexes, and some cropping options, crop the MultibandTile and return a new MultibandTile that contains the target area and bands.