trait SinglebandTileSplitMethods extends SplitMethods[Tile]
- Alphabetic
- By Inheritance
- SinglebandTileSplitMethods
- SplitMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
self: Tile
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
split(tileLayout: TileLayout, options: Options): Seq[Tile]
Splits this into an array of elements based on a TileLayout.
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.
- tileLayout
TileLayout defining the tiles to be generated
- options
Options that control the split
- returns
An array of T
- Definition Classes
- SinglebandTileSplitMethods → SplitMethods
-
def
split(cells: Int): Seq[Tile]
Splits this into an array of elements into square tiles.
Splits this into an array of elements into square tiles. The array will be in row order form such that the top left element is first.
- returns
An array of T
- Definition Classes
- SplitMethods
-
def
split(cols: Int, rows: Int): Seq[Tile]
Splits this into an array of elements based on a columns and rows to be in each tile.
Splits this into an array of elements based on a columns and rows to be in each tile. The array will be in row order form such that the top left element is first.
- cols
Column count of output tiles
- rows
Row count of output tiles
- returns
An array of T
- Definition Classes
- SplitMethods
-
def
split(tileLayout: TileLayout): Seq[Tile]
Splits this into an array of elements based on a TileLayout.
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.
- tileLayout
TileLayout defining the tiles to be generated
- returns
An array of T
- Definition Classes
- SplitMethods