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.
- Alphabetic
- By Inheritance
- Options
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
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
- val errorThreshold: Double
- val method: resample.ResampleMethod
- val parentGridExtent: Option[GridExtent[Long]]
- val targetCellSize: Option[CellSize]
- val targetRasterExtent: Option[RasterExtent]