Packages

case class VRT(gridBounds: GridBounds[Int], layout: LayoutDefinition, extent: Extent, cellType: CellType, crs: CRS, bands: List[Elem]) extends Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VRT
  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 VRT(gridBounds: GridBounds[Int], layout: LayoutDefinition, extent: Extent, cellType: CellType, crs: CRS, bands: List[Elem])

Value Members

  1. val bands: List[Elem]
  2. val cellType: CellType
  3. def cellTypeToString(ct: CellType): String
  4. val crs: CRS
  5. val extent: Extent
  6. def extentToOffsets(extent: Extent): (Double, Double, Double, Double)

    Generates offsets of extent for the VRT doc

  7. def fromSimpleSources(elems: List[SimpleSource]): VRT

    Creates a copy of a VRT object with SimpleSource elements as bands

  8. def geoTransform: (Double, Double, Double, Double, Double, Double)

    Calculates GeoTransform attributes

    Calculates GeoTransform attributes

    TODO: refactor, code style kept to follow GDAL: https://github.com/OSGeo/gdal/blob/9a21e8dcaf36a7e046ee87cd57c8c03812dd20ed/gdal/frmts/sde/sdedataset.cpp

  9. def geoTransformString: String

    GeoTransform attribtues as a string

  10. val gridBounds: GridBounds[Int]
  11. val layout: LayoutDefinition
  12. lazy val layoutCols: Int
  13. lazy val layoutRows: Int
  14. def outputStream: ByteArrayOutputStream
  15. lazy val re: RasterExtent
  16. def simpleSource(path: String, band: Int, xSize: Int, ySize: Int, extent: Extent): SimpleSource

    Generates a tuple of a band and Elem, Elem contains a SimpleSource XML

  17. def simpleSourcesToBands(elems: List[SimpleSource]): List[VRTRasterBand]

    Generates a list of VRTRasterBand (xml Elems) from a given list of SimpleSource

  18. def toXML(bands: List[VRTRasterBand]): Elem

    Represents a list of VRTRasterBand as a VRTDataset

  19. def toXMLFromBands(elems: List[SimpleSource]): Elem

    Represents a list of SimpleSource as a VRTDataset

  20. def write(path: String): Unit