Package noaa.coastwatch.io.tile
Interface TileSink
public interface TileSink
The
TileSink
interface is for writing individual rectangles
of data to a data sink.- Since:
- 3.3.1
- Author:
- Peter Hollemans
-
Method Summary
Modifier and TypeMethodDescriptionGets the tiling scheme used to write tiles to this sink.void
writeTile
(TilingScheme.Tile tile) Writes the specified tile to the sink.
-
Method Details
-
writeTile
Writes the specified tile to the sink.- Parameters:
tile
- the tile to write.- Throws:
IOException
- if an error occurred writing the tile data.
-
getScheme
TilingScheme getScheme()Gets the tiling scheme used to write tiles to this sink.- Returns:
- the tiling scheme.
-