t

geotrellis.raster.crop

CropMethods

trait CropMethods[T] extends MethodExtensions[T]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CropMethods
  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 crop(gridBounds: GridBounds[Int], options: Options): T

    Given a GridBounds and some cropping options, crop.

  2. abstract def self: T
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): T

    Given the starting and stopping columns and rows, crop.

  2. def crop(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int, options: Options): T

    Given the starting and stopping columns and rows and some cropping options, crop.

  3. def crop(cols: Int, rows: Int): T

    Given a number of columns and rows for the desired output, crop.

  4. def crop(cols: Int, rows: Int, options: Options): T

    Given a number of columns and rows for the desired output and some cropping options, crop.

  5. def crop(windows: Seq[GridBounds[Int]]): Iterator[(GridBounds[Int], T)]

    Crop out multiple GridBounds windows.

  6. def crop(gridBounds: GridBounds[Int]): T

    Given a GridBounds, crop.