trait TileMaskMethods[T] extends MethodExtensions[T]
A trait containing extension methods related to masking of tiles.
- Alphabetic
- By Inheritance
- TileMaskMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
localInverseMask(r: T, readMask: Int, writeMask: Int): T
Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster is set to the "readMask" value.
Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster is set to the "readMask" value.
For example, if *all* cells in the second raster are set to the readMask value, the output raster will be identical to the first raster.
-
abstract
def
localMask(r: T, readMask: Int, writeMask: Int): T
Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster *are not* set to the "readMask" value.
Generate a raster with the values from the first raster, but only include cells in which the corresponding cell in the second raster *are not* set to the "readMask" value.
For example, if *all* cells in the second raster are set to the readMask value, the output raster will be empty -- all values set to NODATA.
-
abstract
def
mask(ext: Extent, geoms: Traversable[Geometry], options: Options): T
Masks this tile by the given Geometry.
-
abstract
def
self: T
- Definition Classes
- MethodExtensions
Concrete Value Members
-
def
mask(ext: Extent, geoms: Traversable[Geometry]): T
Masks this tile by the given Geometry.
Masks this tile by the given Geometry. Do not include polygon exteriors.
-
def
mask(ext: Extent, geom: Geometry, options: Options): T
Masks this tile by the given Geometry.
-
def
mask(ext: Extent, geom: Geometry): T
Masks this tile by the given Geometry.
Masks this tile by the given Geometry. Do not include polygon exteriors.