case class VRT(gridBounds: GridBounds[Int], layout: LayoutDefinition, extent: Extent, cellType: CellType, crs: CRS, bands: List[Elem]) extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- VRT
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new VRT(gridBounds: GridBounds[Int], layout: LayoutDefinition, extent: Extent, cellType: CellType, crs: CRS, bands: List[Elem])
Value Members
- val bands: List[Elem]
- val cellType: CellType
- def cellTypeToString(ct: CellType): String
- val crs: CRS
- val extent: Extent
-
def
extentToOffsets(extent: Extent): (Double, Double, Double, Double)
Generates offsets of extent for the VRT doc
-
def
fromSimpleSources(elems: List[SimpleSource]): VRT
Creates a copy of a VRT object with SimpleSource elements as bands
-
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
-
def
geoTransformString: String
GeoTransform attribtues as a string
- val gridBounds: GridBounds[Int]
- val layout: LayoutDefinition
- lazy val layoutCols: Int
- lazy val layoutRows: Int
- def outputStream: ByteArrayOutputStream
- lazy val re: RasterExtent
-
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
-
def
simpleSourcesToBands(elems: List[SimpleSource]): List[VRTRasterBand]
Generates a list of VRTRasterBand (xml Elems) from a given list of SimpleSource
-
def
toXML(bands: List[VRTRasterBand]): Elem
Represents a list of VRTRasterBand as a VRTDataset
-
def
toXMLFromBands(elems: List[SimpleSource]): Elem
Represents a list of SimpleSource as a VRTDataset
- def write(path: String): Unit