case class ArgWriter(cellType: CellType) extends Product with Serializable
ArgWriter will write a tile to disk in ARG format.
Each instance of ArgWriter is provided a data type (e.g. int or float) to use for output files.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ArgWriter
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- val cellType: CellType
- def cellTypeName: String
- def dataType: String
- def width: Int
-
def
write(outputFilePath: String, tile: Tile, extent: Extent, metadataName: String): Unit
Write a tile in ARG format to the specified path.
Write a tile in ARG format to the specified path.
The outputFilePath argument should be the full file path (including file name and extension) to which the tile file should be written. For example, "/var/data/geotrellis/mytile.arg".
The metadataName argument is a logical name for the tile that will be included in the tile's metadata. It does not have to match the output filename. This filename is used by the catalog when a tile is loaded by name as opposed to filepath.
- def writeConstantTile(path: String, ct: ConstantTile, name: String, re: RasterExtent): Unit
- def writeData(path: String, tile: Tile): Unit
- def writeMetadataJSON(path: String, name: String, re: RasterExtent): Unit