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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val cellType: CellType
- def cellTypeName: String
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def dataType: String
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- 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