case class GDALWarpOptions(outputFormat: Option[String] = Some("VRT"), resampleMethod: Option[resample.ResampleMethod] = None, errorThreshold: Option[Double] = None, cellSize: Option[CellSize] = None, alignTargetPixels: Boolean = true, dimensions: Option[(Int, Int)] = None, sourceCRS: Option[CRS] = None, targetCRS: Option[CRS] = None, te: Option[Extent] = None, teCRS: Option[CRS] = None, srcNoData: List[String] = Nil, dstNoData: List[String] = Nil, ovr: Option[OverviewStrategy] = Some(OverviewStrategy.DEFAULT), to: List[(String, String)] = Nil, novShiftGrid: Boolean = false, order: Option[Int] = None, tps: Boolean = false, rpc: Boolean = false, geoloc: Boolean = false, refineGCPs: Option[(Double, Int)] = None, wo: List[(String, String)] = Nil, outputType: Option[String] = None, wt: Option[String] = None, srcAlpha: Boolean = false, noSrcAlpha: Boolean = false, dstAlpha: Boolean = false, wm: Option[Int] = None, multi: Boolean = false, q: Boolean = false, co: List[(String, String)] = Nil, cutline: Option[String] = None, cl: Option[String] = None, cwhere: Option[String] = None, csql: Option[String] = None, cblend: Option[String] = None, cropToCutline: Boolean = false, overwrite: Boolean = false, nomd: Boolean = false, cvmd: Option[String] = None, setci: Boolean = false, oo: List[(String, String)] = Nil, doo: List[(String, String)] = Nil, srcFile: List[String] = Nil, dstFile: Option[String] = None) extends Product with Serializable

GDALWarpOptions basically should cover https://www.gdal.org/gdalwarp.html

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GDALWarpOptions
  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 GDALWarpOptions(outputFormat: Option[String] = Some("VRT"), resampleMethod: Option[resample.ResampleMethod] = None, errorThreshold: Option[Double] = None, cellSize: Option[CellSize] = None, alignTargetPixels: Boolean = true, dimensions: Option[(Int, Int)] = None, sourceCRS: Option[CRS] = None, targetCRS: Option[CRS] = None, te: Option[Extent] = None, teCRS: Option[CRS] = None, srcNoData: List[String] = Nil, dstNoData: List[String] = Nil, ovr: Option[OverviewStrategy] = Some(OverviewStrategy.DEFAULT), to: List[(String, String)] = Nil, novShiftGrid: Boolean = false, order: Option[Int] = None, tps: Boolean = false, rpc: Boolean = false, geoloc: Boolean = false, refineGCPs: Option[(Double, Int)] = None, wo: List[(String, String)] = Nil, outputType: Option[String] = None, wt: Option[String] = None, srcAlpha: Boolean = false, noSrcAlpha: Boolean = false, dstAlpha: Boolean = false, wm: Option[Int] = None, multi: Boolean = false, q: Boolean = false, co: List[(String, String)] = Nil, cutline: Option[String] = None, cl: Option[String] = None, cwhere: Option[String] = None, csql: Option[String] = None, cblend: Option[String] = None, cropToCutline: Boolean = false, overwrite: Boolean = false, nomd: Boolean = false, cvmd: Option[String] = None, setci: Boolean = false, oo: List[(String, String)] = Nil, doo: List[(String, String)] = Nil, srcFile: List[String] = Nil, dstFile: Option[String] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val alignTargetPixels: Boolean
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val cblend: Option[String]
  7. val cellSize: Option[CellSize]
  8. val cl: Option[String]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. val co: List[(String, String)]
  11. def combine(that: GDALWarpOptions): GDALWarpOptions
  12. def convert(targetCellType: TargetCellType, noDataValue: Option[Double], dimensions: Option[(Int, Int)]): GDALWarpOptions

    Adjust GDAL options to represents conversion to desired cell type.

    Adjust GDAL options to represents conversion to desired cell type. This call matches semantics and arguments of {@see RasterSource#convert}

  13. val cropToCutline: Boolean
  14. val csql: Option[String]
  15. val cutline: Option[String]
  16. val cvmd: Option[String]
  17. val cwhere: Option[String]
  18. def datasetType: DatasetType
  19. val dimensions: Option[(Int, Int)]
  20. val doo: List[(String, String)]
  21. val dstAlpha: Boolean
  22. val dstFile: Option[String]
  23. val dstNoData: List[String]
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. val errorThreshold: Option[Double]
  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. val geoloc: Boolean
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def isEmpty: Boolean
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. val multi: Boolean
  32. lazy val name: String
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. val noSrcAlpha: Boolean
  35. val nomd: Boolean
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. val novShiftGrid: Boolean
  39. val oo: List[(String, String)]
  40. val order: Option[Int]
  41. val outputFormat: Option[String]
  42. val outputType: Option[String]
  43. val overwrite: Boolean
  44. val ovr: Option[OverviewStrategy]
  45. val q: Boolean
  46. val refineGCPs: Option[(Double, Int)]
  47. def reproject(rasterExtent: GridExtent[Long], sourceCRS: CRS, targetCRS: CRS, resampleTarget: ResampleTarget = DefaultTarget, resampleMethod: resample.ResampleMethod = NearestNeighbor): GDALWarpOptions

    Adjust GDAL options to represents reprojection with following parameters.

    Adjust GDAL options to represents reprojection with following parameters. This call matches semantics and arguments of {@see RasterSource#reproject}

  48. def resample(gridExtent: ⇒ GridExtent[Long], resampleTarget: ResampleTarget): GDALWarpOptions

    Adjust GDAL options to represents resampling with following parameters .

    Adjust GDAL options to represents resampling with following parameters . This call matches semantics and arguments of {@see RasterSource#resample}

  49. val resampleMethod: Option[resample.ResampleMethod]
  50. val rpc: Boolean
  51. val setci: Boolean
  52. val sourceCRS: Option[CRS]
  53. val srcAlpha: Boolean
  54. val srcFile: List[String]
  55. val srcNoData: List[String]
  56. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  57. val targetCRS: Option[CRS]
  58. val te: Option[Extent]
  59. val teCRS: Option[CRS]
  60. val to: List[(String, String)]
  61. def toString(): String
    Definition Classes
    GDALWarpOptions → AnyRef → Any
  62. def toWarpOptionsList: List[String]
  63. val tps: Boolean
  64. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  67. val wm: Option[Int]
  68. val wo: List[(String, String)]
  69. val wt: Option[String]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped