Uses of Interface
org.deegree.coverage.raster.data.RasterData

Packages that use RasterData
org.deegree.coverage.raster Provides for simple and complex raster (grid coverages). 
org.deegree.coverage.raster.data This package contains the pixel-level raster parts. 
org.deegree.coverage.raster.data.container This package contains the container classes which hide the actual loading of pixel data from the rasterdata. 
org.deegree.coverage.raster.data.nio   
org.deegree.coverage.raster.interpolation This package contains classes for interpolation of raster data. 
org.deegree.coverage.raster.io Defines the io operations for reading and writing rasters (not the data). 
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.utils   
org.deegree.protocol.wms.raster   
org.deegree.style.utils   
 

Uses of RasterData in org.deegree.coverage.raster
 

Methods in org.deegree.coverage.raster that return RasterData
 RasterData SimpleRaster.getRasterData()
          Returns the RasterData of this SimpleRaster
 RasterData SimpleRaster.getReadOnlyRasterData()
          Returns a read-only copy of the RasterData of this SimpleRaster
 

Constructors in org.deegree.coverage.raster with parameters of type RasterData
SimpleRaster(RasterData raster, Envelope envelope, RasterGeoReference rasterReference)
          Creates a new SimpleRaster with given RasterData and Envelope
 

Uses of RasterData in org.deegree.coverage.raster.data
 

Classes in org.deegree.coverage.raster.data that implement RasterData
 class TiledRasterData
          The TiledRasterData is a grid of raster data, wrapping all pixel operations on the tiles.
 

Methods in org.deegree.coverage.raster.data that return RasterData
 RasterData TiledRasterData.asReadOnly()
           
 RasterData RasterData.asReadOnly()
          Return a read-only version of this RasterData.
 RasterData TiledRasterData.createCompatibleRasterData()
           
 RasterData RasterData.createCompatibleRasterData()
          Returns a new RasterData with the same size, bands, DataType and InterleaveType
 RasterData TiledRasterData.createCompatibleRasterData(BandType[] bands)
           
 RasterData RasterData.createCompatibleRasterData(BandType[] bands)
          Returns a new RasterData with the same size, DataType and InterleaveType
 RasterData TiledRasterData.createCompatibleRasterData(int width, int height)
           
 RasterData RasterData.createCompatibleRasterData(int width, int height)
          Returns a new RasterData with the same DataType and InterleaveType and all bands
 RasterData TiledRasterData.createCompatibleRasterData(RasterRect sampleDomain, BandType[] bands)
           
 RasterData RasterData.createCompatibleRasterData(RasterRect sampleDomain, BandType[] bands)
          Returns a new RasterData with the same DataType and InterleaveType
 RasterData TiledRasterData.createCompatibleWritableRasterData(RasterRect sampleDomain, BandType[] bands)
           
 RasterData RasterData.createCompatibleWritableRasterData(RasterRect sampleDomain, BandType[] bands)
          Create a writable compatible raster with the height and width of the given sample domain.
 RasterData TiledRasterData.getSubset(RasterRect rasterRect)
           
 RasterData RasterData.getSubset(RasterRect rasterRect)
          Returns new RasterData object for the specified rectangle.
 RasterData TiledRasterData.getSubset(RasterRect rasterRect, BandType[] bands)
           
 RasterData RasterData.getSubset(RasterRect rasterRect, BandType[] bands)
          Returns new single-band RasterData object for the specified rectangle.
 

Methods in org.deegree.coverage.raster.data with parameters of type RasterData
 void TiledRasterData.setSubset(int x, int y, int width, int height, int dstBand, RasterData sourceRaster, int srcBand)
           
 void RasterData.setSubset(int x, int y, int width, int height, int dstBand, RasterData sourceRaster, int srcBand)
          Sets a single band of the raster with values from one band of the sourceRaster.
 void TiledRasterData.setSubset(int x, int y, int width, int height, int dstBand, RasterData sourceRaster, int srcBand, int xOffset, int yOffset)
           
 void RasterData.setSubset(int x, int y, int width, int height, int dstBand, RasterData sourceRaster, int srcBand, int xOffset, int yOffset)
          Sets a single band of the raster with values from one band of the sourceRaster.
 void TiledRasterData.setSubset(int x, int y, int width, int height, RasterData sourceRaster)
           
 void RasterData.setSubset(int x, int y, int width, int height, RasterData sourceRaster)
          Sets the raster with values from sourceRaster.
 void TiledRasterData.setSubset(int x, int y, int width, int height, RasterData sourceRaster, int xOffset, int yOffset)
           
 void RasterData.setSubset(int x, int y, int width, int height, RasterData sourceRaster, int xOffset, int yOffset)
          Sets the raster with values from sourceRaster.
 

Uses of RasterData in org.deegree.coverage.raster.data.container
 

Methods in org.deegree.coverage.raster.data.container that return RasterData
 RasterData RasterDataContainer.getRasterData()
          Returns the RasterData
 RasterData MemoryRasterDataContainer.getRasterData()
           
 RasterData LazyRasterDataContainer.getRasterData()
           
 RasterData CachedRasterDataContainer.getRasterData()
           
 RasterData RasterDataContainer.getReadOnlyRasterData()
          Returns the RasterData as a read-only copy.
 RasterData MemoryRasterDataContainer.getReadOnlyRasterData()
           
 RasterData LazyRasterDataContainer.getReadOnlyRasterData()
           
 RasterData CachedRasterDataContainer.getReadOnlyRasterData()
           
 

Constructors in org.deegree.coverage.raster.data.container with parameters of type RasterData
MemoryRasterDataContainer(RasterData raster)
          Wraps RasterData in a RasterDataContainer.
 

Uses of RasterData in org.deegree.coverage.raster.data.nio
 

Classes in org.deegree.coverage.raster.data.nio that implement RasterData
 class BandInterleavedRasterData
          This class implements a band-interleaved, ByteBuffer-based RasterData.
 class ByteBufferRasterData
          This abstract class implements the RasterData interface for ByteBuffer based raster.
 class LineInterleavedRasterData
          This class implements a line-interleaved, ByteBuffer-based RasterData.
 class PixelInterleavedRasterData
          This class implements a pixel-interleaved, ByteBuffer-based RasterData.
 

Methods in org.deegree.coverage.raster.data.nio that return RasterData
 RasterData ByteBufferRasterData.asReadOnly()
           
 RasterData ByteBufferRasterData.createCompatibleRasterData(RasterRect sampleDomain, BandType[] bands)
           
 RasterData LineInterleavedRasterData.createCompatibleWritableRasterData(RasterRect sampleDomain, BandType[] bands)
           
 RasterData BandInterleavedRasterData.createCompatibleWritableRasterData(RasterRect sampleDomain, BandType[] bands)
           
 RasterData PixelInterleavedRasterData.createCompatibleWritableRasterData(RasterRect sampleDomain, BandType[] bands)
           
 

Methods in org.deegree.coverage.raster.data.nio with parameters of type RasterData
 void ByteBufferRasterData.setSubset(int x0, int y0, int width, int height, int dstBand, RasterData sourceRaster, int srcBand)
           
 void ByteBufferRasterData.setSubset(int dstX, int dstY, int width, int height, int dstBand, RasterData srcRaster, int srcBand, int srcX, int srcY)
           
 void ByteBufferRasterData.setSubset(int x0, int y0, int width, int height, RasterData sourceRaster)
           
 void ByteBufferRasterData.setSubset(int dstX, int dstY, int width, int height, RasterData srcRaster, int srcX, int srcY)
           
 void PixelInterleavedRasterData.setSubset(int dstX, int dstY, int width, int height, RasterData srcRaster, int srcX, int srcY)
           
 

Uses of RasterData in org.deegree.coverage.raster.interpolation
 

Methods in org.deegree.coverage.raster.interpolation with parameters of type RasterData
static Interpolation InterpolationFactory.getInterpolation(InterpolationType type, RasterData rasterData)
          Creates a new interpolation of the given type and for the given raster.
 

Constructors in org.deegree.coverage.raster.interpolation with parameters of type RasterData
BiLinearByteInterpolation(RasterData rasterData)
          Create a new bilinear interpolation for given byte RasterData.
BiLinearFloatInterpolation(RasterData rasterData)
          Create a new bilinear interpolation for given float RasterData.
BiLinearShortInterpolation(RasterData rasterData, boolean unsigned)
          Create a new bilinear interpolation for given short RasterData.
NearestNeighborInterpolation(RasterData rasterData)
          Create a new nearest neighbor interpolation for given RasterData.
 

Uses of RasterData in org.deegree.coverage.raster.io
 

Methods in org.deegree.coverage.raster.io that return RasterData
 RasterData RasterDataReader.read()
          Reads the raster data.
 

Uses of RasterData in org.deegree.coverage.raster.io.imageio
 

Methods in org.deegree.coverage.raster.io.imageio with parameters of type RasterData
static void IIORasterDataWriter.saveRasterDataToFile(RasterData sourceRaster, File file, String format)
          Saves a RasterData to file.
static void IIORasterDataWriter.saveRasterDataToStream(RasterData sourceRaster, OutputStream out, String format)
          Saves a RasterData to stream.
 

Uses of RasterData in org.deegree.coverage.raster.io.jai
 

Methods in org.deegree.coverage.raster.io.jai with parameters of type RasterData
static void JAIRasterDataWriter.saveRasterDataToFile(RasterData rasterData, String filename)
          Saves a RasterData to TIFF file
static void JAIRasterDataWriter.saveRasterDataToFile(RasterData sourceRaster, String filename, String format)
          Saves a RasterData to file.
static void JAIRasterDataWriter.saveRasterDataToStream(RasterData sourceRaster, OutputStream stream, String format)
          Saves a RasterData to stream.
 

Uses of RasterData in org.deegree.coverage.raster.utils
 

Methods in org.deegree.coverage.raster.utils with parameters of type RasterData
static BufferedImage RasterFactory.rasterDataToImage(RasterData sourceRaster)
          Convert RasterData into a BufferedImage
 

Uses of RasterData in org.deegree.protocol.wms.raster
 

Constructors in org.deegree.protocol.wms.raster with parameters of type RasterData
WMSRaster(RasterData raster, Envelope envelope, RasterGeoReference rasterReference)
           
 

Uses of RasterData in org.deegree.style.utils
 

Constructors in org.deegree.style.utils with parameters of type RasterData
RasterDataUtility(RasterData d)
           
 



Copyright © 2011. All Rights Reserved.