t

geotrellis.raster.merge

TileMergeMethods

trait TileMergeMethods[T] extends MethodExtensions[T]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TileMergeMethods
  2. MethodExtensions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. 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

  2. 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

  3. abstract def self: T
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. 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

  2. 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