abstract class RasterMergeMethods[T <: CellGrid[Int]] extends MethodExtensions[Raster[T]]
A class providing extension methods for merging rasters.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- RasterMergeMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new RasterMergeMethods(self: Raster[T])(implicit arg0: (T) ⇒ TileMergeMethods[T])
Value Members
-
def
merge(other: Raster[T]): Raster[T]
Merge this Raster with the other one.
Merge this Raster with the other one. All places in the present raster that contain NODATA are filled-in with data from the other raster. A new Raster is returned.
- other
The other Raster
- returns
A new Raster, the result of the merge
-
def
merge(other: Raster[T], method: resample.ResampleMethod): Raster[T]
Merge this Raster with the other one.
Merge this Raster with the other one. All places in the present raster that contain NODATA are filled-in with data from the other raster. A new Raster is returned.
- other
The other Raster
- method
The resampling method
- returns
A new Raster, the result of the merge
-
val
self: Raster[T]
- Definition Classes
- RasterMergeMethods → MethodExtensions