implicit class withSinglebandTileFeatureSplitMethods[D] extends TileFeatureSplitMethods[Tile, D] with SinglebandTileFeatureSplitMethods[D]
- Alphabetic
- By Inheritance
- withSinglebandTileFeatureSplitMethods
- SinglebandTileFeatureSplitMethods
- TileFeatureSplitMethods
- SplitMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new withSinglebandTileFeatureSplitMethods(self: TileFeature[Tile, D])
Value Members
-
val
self: TileFeature[Tile, D]
- Definition Classes
- withSinglebandTileFeatureSplitMethods → MethodExtensions
-
def
split(tileLayout: TileLayout, options: Options): Seq[TileFeature[Tile, D]]
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
- TileFeatureSplitMethods → SplitMethods
-
def
split(cells: Int): Seq[TileFeature[Tile, D]]
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[TileFeature[Tile, D]]
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[TileFeature[Tile, D]]
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