|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RasterIOOptions | |
---|---|
org.deegree.coverage.raster.cache | |
org.deegree.coverage.raster.container | |
org.deegree.coverage.raster.data | This package contains the pixel-level raster parts. |
org.deegree.coverage.raster.io | Defines the io operations for reading and writing rasters (not the data). |
org.deegree.coverage.raster.io.asc | |
org.deegree.coverage.raster.io.grid | |
org.deegree.coverage.raster.io.imageio | This package contains ImageIO based raster reader and writer. |
org.deegree.coverage.raster.io.jai | This package contains JAI based raster reader and writer. |
org.deegree.coverage.raster.io.xyz | |
org.deegree.coverage.raster.utils | |
org.deegree.protocol.wms.raster |
Uses of RasterIOOptions in org.deegree.coverage.raster.cache |
---|
Methods in org.deegree.coverage.raster.cache with parameters of type RasterIOOptions | |
---|---|
static RasterCache |
RasterCache.getInstance(RasterIOOptions options)
Gets an instance of a data cache which uses the given options to instantiate a cache. |
AbstractRaster |
CacheRasterReader.load(java.io.File gridFile,
RasterIOOptions options)
|
AbstractRaster |
CacheRasterReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.container |
---|
Methods in org.deegree.coverage.raster.container with parameters of type RasterIOOptions | |
---|---|
static GriddedBlobTileContainer |
GriddedBlobTileContainer.create(java.io.File dir,
RasterIOOptions options)
Reads the index file, 'gridded_raster.info' from the given directory reads the world file information as well as the number of tiles. |
Constructors in org.deegree.coverage.raster.container with parameters of type RasterIOOptions | |
---|---|
DiskBasedTileContainer(RasterBuilder.QTreeInfo info,
java.util.List<java.io.File> files,
java.util.List<AbstractRaster> rasters,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.data |
---|
Methods in org.deegree.coverage.raster.data with parameters of type RasterIOOptions | |
---|---|
static ByteBufferRasterData |
RasterDataFactory.createRasterData(int width,
int height,
RasterDataInfo rdi,
RasterGeoReference geoRef,
java.nio.ByteBuffer byteBuffer,
boolean createCacheFile,
java.lang.String cacheId,
RasterIOOptions options)
Creates a RasterData object object with given size, number of bands, data type and interleaving filled with the given ByteArray. |
static ByteBufferRasterData |
RasterDataFactory.createRasterData(RasterRect view,
RasterDataInfo rdi,
RasterGeoReference geoRef,
java.nio.ByteBuffer byteBuffer,
boolean createCacheFile,
java.lang.String cacheId,
RasterIOOptions options)
Creates a RasterData object object with given size, number of bands, data type and interleaving filled with the given ByteArray. |
static ByteBufferRasterData |
RasterDataFactory.createRasterData(RasterRect view,
RasterDataInfo dataInfo,
RasterReader reader,
boolean addToCache,
RasterIOOptions options)
Creates a RasterData object object with given view, number of bands, data type and interleaving. |
static TiledRasterData |
RasterDataFactory.createTiledRasterData(GridReader reader,
RasterIOOptions options)
Encapsulates a Grid of Raster data as a new Raster data object. |
Constructors in org.deegree.coverage.raster.data with parameters of type RasterIOOptions | |
---|---|
TiledRasterData(GridReader reader,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.io |
---|
Methods in org.deegree.coverage.raster.io that return RasterIOOptions | |
---|---|
static RasterIOOptions |
RasterIOOptions.forFile(java.io.File file)
Return a RasterIOOption object with the format set according to the given file. |
static RasterIOOptions |
RasterIOOptions.forFile(java.io.File file,
RasterGeoReference envelope)
Return a RasterIOOption object with the format set according to the given file with an optional RasterGeoReference . |
Methods in org.deegree.coverage.raster.io with parameters of type RasterIOOptions | |
---|---|
boolean |
RasterWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
Check if the raster writer is able to write the given raster. |
void |
RasterIOOptions.copyOf(RasterIOOptions otherOptions)
Copies the the values from the given options. |
AbstractRaster |
RasterReader.load(java.io.File filename,
RasterIOOptions options)
Read the given raster file into an abstract raster. |
AbstractRaster |
RasterReader.load(java.io.InputStream stream,
RasterIOOptions options)
Read the given input stream into an abstract raster. |
static RasterGeoReference |
WorldFileAccess.readWorldFile(java.io.File filename,
RasterIOOptions options)
|
static RasterGeoReference |
WorldFileAccess.readWorldFile(java.io.InputStream stream,
RasterIOOptions options)
|
static RasterGeoReference |
WorldFileAccess.readWorldFile(java.io.Reader reader,
RasterIOOptions options)
|
void |
RasterWriter.write(AbstractRaster raster,
java.io.File file,
RasterIOOptions options)
Write the raster into file. |
void |
RasterWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
Write the raster into strem. |
Uses of RasterIOOptions in org.deegree.coverage.raster.io.asc |
---|
Methods in org.deegree.coverage.raster.io.asc with parameters of type RasterIOOptions | |
---|---|
boolean |
ASCWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
|
AbstractRaster |
ASCReader.load(java.io.File filename,
RasterIOOptions options)
|
AbstractRaster |
ASCReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
void |
ASCWriter.write(AbstractRaster raster,
java.io.File file,
RasterIOOptions options)
|
void |
ASCWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.io.grid |
---|
Methods in org.deegree.coverage.raster.io.grid with parameters of type RasterIOOptions | |
---|---|
boolean |
GridWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
|
static java.io.File |
GridMetaInfoFile.fileNameFromOptions(java.lang.String defaultDir,
java.lang.String filename,
RasterIOOptions options)
find a filename from the given options or create a 'default-file-name' in the given directory. |
AbstractRaster |
GridFileReader.load(java.io.File gridFile,
RasterIOOptions options)
|
AbstractRaster |
TileOffsetReader.load(java.io.File filename,
RasterIOOptions options)
|
AbstractRaster |
GridReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
AbstractRaster |
TileOffsetReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
static GridMetaInfoFile |
GridMetaInfoFile.read(java.io.BufferedReader readerOnInfoFile,
RasterIOOptions options)
Read the grid info file which is basically a world file with supplement information. |
static GridMetaInfoFile |
GridMetaInfoFile.readFromFile(java.io.File infoFile,
RasterIOOptions options)
Read the grid info file which is basically a world file with supplement information. |
void |
GridWriter.write(AbstractRaster raster,
java.io.File gridFile,
RasterIOOptions options)
|
void |
GridWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
|
void |
GridWriter.write(AbstractRaster raster,
RasterIOOptions options)
Write the given raster to the previously defined gridfile. |
static void |
GridMetaInfoFile.write(java.io.PrintWriter writer,
GridMetaInfoFile metaInfo,
RasterIOOptions options)
Write the grid info file which is basically a world file with supplement information. |
java.io.File |
GridWriter.writeMetadataFile(RasterIOOptions options)
Writes the metadata file for this grid file. |
static void |
GridMetaInfoFile.writeToFile(java.io.File filename,
GridMetaInfoFile metaInfo,
RasterIOOptions options)
Write the grid info file which is basically a world file with supplement information. |
Constructors in org.deegree.coverage.raster.io.grid with parameters of type RasterIOOptions | |
---|---|
GridFileReader(java.io.File gridFile,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.io.imageio |
---|
Methods in org.deegree.coverage.raster.io.imageio with parameters of type RasterIOOptions | |
---|---|
boolean |
IIORasterWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
|
AbstractRaster |
IIORasterReader.load(java.io.File file,
RasterIOOptions options)
|
AbstractRaster |
IIORasterReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
void |
IIORasterWriter.write(AbstractRaster raster,
java.io.File file,
RasterIOOptions options)
|
void |
IIORasterWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
|
Constructors in org.deegree.coverage.raster.io.imageio with parameters of type RasterIOOptions | |
---|---|
IIORasterDataReader(java.io.File file,
RasterIOOptions options)
Create a IIORasterDataReader for given file |
|
IIORasterDataReader(java.io.InputStream stream,
RasterIOOptions options)
Create a IIORasterDataReader for given stream |
Uses of RasterIOOptions in org.deegree.coverage.raster.io.jai |
---|
Methods in org.deegree.coverage.raster.io.jai with parameters of type RasterIOOptions | |
---|---|
boolean |
JAIRasterWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
|
AbstractRaster |
JAIRasterReader.load(java.io.File file,
RasterIOOptions options)
|
AbstractRaster |
JAIRasterReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
void |
JAIRasterWriter.write(AbstractRaster raster,
java.io.File file,
RasterIOOptions options)
|
void |
JAIRasterWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
|
Constructors in org.deegree.coverage.raster.io.jai with parameters of type RasterIOOptions | |
---|---|
JAIRasterDataReader(java.io.File file,
RasterIOOptions options)
Create a JAIRasterReader for given file |
|
JAIRasterDataReader(java.io.InputStream stream,
RasterIOOptions options)
Create a JAIRasterReader for given stream |
Uses of RasterIOOptions in org.deegree.coverage.raster.io.xyz |
---|
Methods in org.deegree.coverage.raster.io.xyz with parameters of type RasterIOOptions | |
---|---|
boolean |
XYZWriter.canWrite(AbstractRaster raster,
RasterIOOptions options)
|
AbstractRaster |
XYZReader.load(java.io.File filename,
RasterIOOptions options)
|
AbstractRaster |
XYZReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
void |
XYZWriter.write(AbstractRaster raster,
java.io.File file,
RasterIOOptions options)
|
void |
XYZWriter.write(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
|
Uses of RasterIOOptions in org.deegree.coverage.raster.utils |
---|
Methods in org.deegree.coverage.raster.utils with parameters of type RasterIOOptions | |
---|---|
AbstractCoverage |
RasterBuilder.buildCoverage(java.io.File rasterLocation,
boolean recursive,
RasterIOOptions options)
Creates a coverage from the given raster location. |
MultiResolutionRaster |
RasterBuilder.buildMultiResolutionRaster(java.io.File resolutionDirectory,
boolean recursive,
RasterIOOptions options)
Create a MultiResolutionRaster with the origin or the world coordinate of each raster file, defined by
the given RasterGeoReference.OriginLocation |
static SimpleRaster |
RasterFactory.createEmptyRaster(RasterDataInfo rdi,
Envelope worldEnvelope,
RasterGeoReference rasterGeoReference,
RasterReader reader,
boolean addToCache,
RasterIOOptions options)
Creates a new Raster data object from the given world envelope, a raster reference and the data info object (holding information about type, size etc...). |
static AbstractRaster |
RasterFactory.createRasterFromImage(java.awt.image.RenderedImage image,
Envelope envelope,
RasterGeoReference.OriginLocation originLocation,
RasterIOOptions options)
Creates a simple raster from a given BufferedImage and sets the geo reference to the given envelope. |
static AbstractRaster |
RasterFactory.loadRasterFromFile(java.io.File filename,
RasterIOOptions options)
Load a raster from a file. |
static AbstractRaster |
RasterFactory.loadRasterFromStream(java.io.InputStream in,
RasterIOOptions options)
Load a raster from a stream. |
static ByteBufferRasterData |
RasterFactory.rasterDataFromImage(java.awt.image.RenderedImage img,
RasterIOOptions options)
Creates Raster data from the given RenderedImage image. |
static ByteBufferRasterData |
RasterFactory.rasterDataFromImage(java.awt.image.RenderedImage img,
RasterIOOptions options,
java.nio.ByteBuffer byteBuffer)
Creates Raster data from the given buffered image. |
static void |
RasterFactory.saveRasterToFile(AbstractRaster raster,
java.io.File filename,
RasterIOOptions options)
Save a raster to a file. |
static void |
RasterFactory.saveRasterToStream(AbstractRaster raster,
java.io.OutputStream out,
RasterIOOptions options)
Save a raster to a stream. |
Uses of RasterIOOptions in org.deegree.protocol.wms.raster |
---|
Methods in org.deegree.protocol.wms.raster with parameters of type RasterIOOptions | |
---|---|
AbstractRaster |
WMSReader.load(java.io.File filename,
RasterIOOptions options)
|
AbstractRaster |
WMSReader.load(java.io.InputStream stream,
RasterIOOptions options)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |