Packages

case class Options(method: resample.ResampleMethod = ResampleMethods.NearestNeighbor, errorThreshold: Double = 0.125, parentGridExtent: Option[GridExtent[Long]] = None, targetRasterExtent: Option[RasterExtent] = None, targetCellSize: Option[CellSize] = None) extends Product with Serializable

Reprojection options.

method

The resampling method that will be used in this reprojection.

errorThreshold

Error threshold when using approximate row transformations in reprojection. This default comes from GDAL 1.11 code.

parentGridExtent

An optional GridExtent that if set represents the target grid extent for some parent window, which reprojected extents will snap to. Use with caution.

targetRasterExtent

The target raster extent to reproject to.

targetCellSize

An optional cell size that if set will be used for for the projected raster. Use with caution.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Options
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Options(method: resample.ResampleMethod = ResampleMethods.NearestNeighbor, errorThreshold: Double = 0.125, parentGridExtent: Option[GridExtent[Long]] = None, targetRasterExtent: Option[RasterExtent] = None, targetCellSize: Option[CellSize] = None)

    method

    The resampling method that will be used in this reprojection.

    errorThreshold

    Error threshold when using approximate row transformations in reprojection. This default comes from GDAL 1.11 code.

    parentGridExtent

    An optional GridExtent that if set represents the target grid extent for some parent window, which reprojected extents will snap to. Use with caution.

    targetRasterExtent

    The target raster extent to reproject to.

    targetCellSize

    An optional cell size that if set will be used for for the projected raster. Use with caution.

Value Members

  1. val errorThreshold: Double
  2. val method: resample.ResampleMethod
  3. val parentGridExtent: Option[GridExtent[Long]]
  4. val targetCellSize: Option[CellSize]
  5. val targetRasterExtent: Option[RasterExtent]