trait TileMergeMethods[T] extends MethodExtensions[T]
Trait guaranteeing extension methods for doing merge operations on Tiles.
- Alphabetic
- By Inheritance
- TileMergeMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
merge(extent: Extent, otherExtent: Extent, other: T, method: resample.ResampleMethod): T
Merge this Tile with the other one.
Merge this Tile with the other one. All places in the present tile that contain NODATA and are in the intersection of the two given extents are filled-in with data from the other tile. A new Tile is returned.
- extent
The extent of this Tile
- otherExtent
The extent of the other Tile
- other
The other Tile
- method
The resampling method
- returns
A new Tile, the result of the merge
-
abstract
def
merge(other: T, col: Int, row: Int): T
Merge this Tile with the other.
Merge this Tile with the other. Places the content of the (i, j)th pixel of other into the (col + i, row + j)th pixel of the result.
- other
The other Tile
- col
The column in the output tile corresponding to the left edge of the merged data
- row
The row in the output tile corresponding to the top edge of the merged data
- returns
The result of the merge
-
abstract
def
self: T
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
merge(extent: Extent, otherExtent: Extent, other: T): T
Merge this Tile with the other one.
Merge this Tile with the other one. All places in the present tile that contain NODATA and are in the intersection of the two given extents are filled-in with data from the other tile. A new Tile is returned.
- extent
The extent of this Tile
- otherExtent
The extent of the other Tile
- other
The other Tile
- returns
A new Tile, the result of the merge
-
def
merge(other: T): T
Merge this Tile with the other one.
Merge this Tile with the other one. All places in the present tile that contain NODATA are filled-in with data from the other tile. A new Tile is returned.
- other
The other Tile
- returns
A new Tile, the result of the merge