deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

Uses of Class
org.deegree.coverage.raster.AbstractRaster

Packages that use AbstractRaster
org.deegree.coverage.filter.raster   
org.deegree.coverage.rangeset   
org.deegree.coverage.raster Provides for simple and complex raster (grid coverages). 
org.deegree.coverage.raster.cache   
org.deegree.coverage.raster.container   
org.deegree.coverage.raster.io Defines the io operations for reading and writing rasters (not the data). 
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.filter.function.se   
org.deegree.rendering.r2d   
org.deegree.rendering.r2d.utils   
 

Uses of AbstractRaster in org.deegree.coverage.filter.raster
 

Methods in org.deegree.coverage.filter.raster that return AbstractRaster
 AbstractRaster RasterFilter.apply(RangeSet sourceRangeSet, RangeSet targetRangeset)
           
 

Constructors in org.deegree.coverage.filter.raster with parameters of type AbstractRaster
RasterFilter(AbstractRaster raster)
           
 

Uses of AbstractRaster in org.deegree.coverage.rangeset
 

Methods in org.deegree.coverage.rangeset with parameters of type AbstractRaster
static RangeSet RangeSetBuilder.createBandRangeSetFromRaster(String name, String label, AbstractRaster raster)
          creates a Rangeset for a given raster by looking at the band info.
 

Uses of AbstractRaster in org.deegree.coverage.raster
 

Subclasses of AbstractRaster in org.deegree.coverage.raster
 class MultiRangedRaster
          This class represents an AbstractRaster with multiple ranges.
 class SimpleRaster
          This class represents a single raster with multiple bands.
 class TiledRaster
          This class represents a tiled AbstractRaster.
 

Methods in org.deegree.coverage.raster that return AbstractRaster
abstract  AbstractRaster AbstractRaster.copy()
          Creates a copy of the raster with all the data.
 AbstractRaster MultiRangedRaster.getRange(int index)
          Returns a single range with given index
 AbstractRaster MultiResolutionRaster.getRaster(double res)
          Returns the best-fitting raster for a given resolution.
 AbstractRaster AbstractRaster.getSubRaster(double x, double y, double x2, double y2)
          Returns a subset of the raster.
abstract  AbstractRaster AbstractRaster.getSubRaster(Envelope env)
          Returns a subset of the raster, note this is a view on the given raster.
abstract  AbstractRaster AbstractRaster.getSubRaster(Envelope env, BandType[] bands)
          Returns a subset of the raster, note this is a view on the given raster.
 AbstractRaster MultiResolutionRaster.getSubset(Envelope envelope, double resolution)
          Returns a subset of the raster for a given resolution.
 AbstractRaster RasterTransformer.transform(AbstractRaster sourceRaster, Envelope dstEnvelope, int dstWidth, int dstHeight, InterpolationType interpolationType)
          Creates a transformed raster from a given source raster.
 AbstractRaster RasterTransformer.transform(AbstractRaster sourceRaster, InterpolationType interpolationType)
          Transform a raster to the target coordinate system.
 

Methods in org.deegree.coverage.raster with parameters of type AbstractRaster
 void MultiRangedRaster.addRaster(AbstractRaster raster)
          Adds an AbstractRaster to the MultiRangedRaster
 void MultiResolutionRaster.addRaster(AbstractRaster raster)
          Adds a raster to the MultiResolution Pyramid
 void SimpleRaster.setSubRaster(double x, double y, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(double x, double y, AbstractRaster source)
          Sets the MultiRangedRaster with data from source.
 void TiledRaster.setSubRaster(double x, double y, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(double x, double y, AbstractRaster source)
          Sets the raster with data from source.
 void SimpleRaster.setSubRaster(double x, double y, int dstBand, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(double x, double y, int index, AbstractRaster source)
          Sets a range with data from source.
 void TiledRaster.setSubRaster(double x, double y, int dstBand, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(double x, double y, int dstBand, AbstractRaster source)
          Sets a single band with data from source.
 void SimpleRaster.setSubRaster(Envelope env, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(Envelope env, AbstractRaster source)
           
 void TiledRaster.setSubRaster(Envelope envelope, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(Envelope env, AbstractRaster source)
          Sets the raster with data from source.
 void SimpleRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
 void MultiRangedRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
 void TiledRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
           
abstract  void AbstractRaster.setSubRaster(Envelope env, int dstBand, AbstractRaster source)
          Sets a single band with data from source.
 AbstractRaster RasterTransformer.transform(AbstractRaster sourceRaster, Envelope dstEnvelope, int dstWidth, int dstHeight, InterpolationType interpolationType)
          Creates a transformed raster from a given source raster.
 AbstractRaster RasterTransformer.transform(AbstractRaster sourceRaster, InterpolationType interpolationType)
          Transform a raster to the target coordinate system.
 

Uses of AbstractRaster in org.deegree.coverage.raster.cache
 

Methods in org.deegree.coverage.raster.cache that return AbstractRaster
 AbstractRaster CacheRasterReader.load(File gridFile, RasterIOOptions options)
           
 AbstractRaster CacheRasterReader.load(InputStream stream, RasterIOOptions options)
           
 

Uses of AbstractRaster in org.deegree.coverage.raster.container
 

Methods in org.deegree.coverage.raster.container that return AbstractRaster
 AbstractRaster GriddedBlobTileContainer.getTile(int rowId, int columnId)
           
 AbstractRaster GriddedMemoryTileContainer.getTile(int rowId, int columnId)
           
abstract  AbstractRaster GriddedTileContainer.getTile(int rowId, int columnId)
          Returns the raster tile at the given grid position.
 

Methods in org.deegree.coverage.raster.container that return types with arguments of type AbstractRaster
 List<AbstractRaster> GriddedTileContainer.getTiles(Envelope env)
           
 List<AbstractRaster> IndexedMemoryTileContainer.getTiles(Envelope env)
           
 List<AbstractRaster> TileContainer.getTiles(Envelope env)
          Returns all tiles that intersects the envelope.
 List<AbstractRaster> MemoryTileContainer.getTiles(Envelope env)
           
 

Methods in org.deegree.coverage.raster.container with parameters of type AbstractRaster
 void IndexedMemoryTileContainer.addTile(AbstractRaster raster)
          Adds a new tile to the container.
 void MemoryTileContainer.addTile(AbstractRaster raster)
          Adds a new tile to the container.
 

Method parameters in org.deegree.coverage.raster.container with type arguments of type AbstractRaster
 void IndexedMemoryTileContainer.addRasterTiles(List<AbstractRaster> rasters)
           
 

Constructors in org.deegree.coverage.raster.container with parameters of type AbstractRaster
GriddedMemoryTileContainer(RasterGeoReference.OriginLocation location, Envelope envelope, int rows, int columns, int tileSamplesX, int tileSamplesY, AbstractRaster[] cells)
          The memory based gridded tile container.
MemoryTileContainer(AbstractRaster... abstractRasters)
          Creates a MemoryTileContainer with given tiles.
 

Constructor parameters in org.deegree.coverage.raster.container with type arguments of type AbstractRaster
MemoryTileContainer(List<AbstractRaster> abstractRasters)
          Creates a MemoryTileContainer with given tiles.
 

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

Methods in org.deegree.coverage.raster.io that return AbstractRaster
 AbstractRaster RasterReader.load(File filename, RasterIOOptions options)
          Read the given raster file into an abstract raster.
 AbstractRaster RasterReader.load(InputStream stream, RasterIOOptions options)
          Read the given input stream into an abstract raster.
 

Methods in org.deegree.coverage.raster.io with parameters of type AbstractRaster
 boolean RasterWriter.canWrite(AbstractRaster raster, RasterIOOptions options)
          Check if the raster writer is able to write the given raster.
 void RasterWriter.write(AbstractRaster raster, File file, RasterIOOptions options)
          Write the raster into file.
 void RasterWriter.write(AbstractRaster raster, OutputStream out, RasterIOOptions options)
          Write the raster into strem.
 

Uses of AbstractRaster in org.deegree.coverage.raster.io.grid
 

Methods in org.deegree.coverage.raster.io.grid that return AbstractRaster
 AbstractRaster GridReader.getTile(int columnId, int rowId)
          Read a raster from the grid file at location (row,column).
 AbstractRaster TileOffsetReader.load(File filename, RasterIOOptions options)
           
 AbstractRaster GridFileReader.load(File gridFile, RasterIOOptions options)
           
 AbstractRaster TileOffsetReader.load(InputStream stream, RasterIOOptions options)
           
 AbstractRaster GridReader.load(InputStream stream, RasterIOOptions options)
           
 

Methods in org.deegree.coverage.raster.io.grid with parameters of type AbstractRaster
 boolean GridWriter.canWrite(AbstractRaster raster, RasterIOOptions options)
           
 void GridWriter.write(AbstractRaster raster, File gridFile, RasterIOOptions options)
           
 void GridWriter.write(AbstractRaster raster, OutputStream out, RasterIOOptions options)
           
 void GridWriter.write(AbstractRaster raster, RasterIOOptions options)
          Write the given raster to the previously defined gridfile.
 

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

Methods in org.deegree.coverage.raster.io.imageio that return AbstractRaster
 AbstractRaster IIORasterReader.load(File file, RasterIOOptions options)
           
 AbstractRaster IIORasterReader.load(InputStream stream, RasterIOOptions options)
           
 

Methods in org.deegree.coverage.raster.io.imageio with parameters of type AbstractRaster
 boolean IIORasterWriter.canWrite(AbstractRaster raster, RasterIOOptions options)
           
 void IIORasterWriter.write(AbstractRaster raster, File file, RasterIOOptions options)
           
 void IIORasterWriter.write(AbstractRaster raster, OutputStream out, RasterIOOptions options)
           
 

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

Methods in org.deegree.coverage.raster.io.jai that return AbstractRaster
 AbstractRaster JAIRasterReader.load(File file, RasterIOOptions options)
           
 AbstractRaster JAIRasterReader.load(InputStream stream, RasterIOOptions options)
           
 

Methods in org.deegree.coverage.raster.io.jai with parameters of type AbstractRaster
 boolean JAIRasterWriter.canWrite(AbstractRaster raster, RasterIOOptions options)
           
 void JAIRasterWriter.write(AbstractRaster raster, File file, RasterIOOptions options)
           
 void JAIRasterWriter.write(AbstractRaster raster, OutputStream out, RasterIOOptions options)
           
 

Uses of AbstractRaster in org.deegree.coverage.raster.io.xyz
 

Methods in org.deegree.coverage.raster.io.xyz that return AbstractRaster
 AbstractRaster XYZReader.load(File filename, RasterIOOptions options)
           
 AbstractRaster XYZReader.load(InputStream stream, RasterIOOptions options)
           
 

Methods in org.deegree.coverage.raster.io.xyz with parameters of type AbstractRaster
 boolean XYZWriter.canWrite(AbstractRaster raster, RasterIOOptions options)
           
 void XYZWriter.write(AbstractRaster raster, File file, RasterIOOptions options)
           
 void XYZWriter.write(AbstractRaster raster, OutputStream out, RasterIOOptions options)
           
 

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

Methods in org.deegree.coverage.raster.utils that return AbstractRaster
static AbstractRaster RasterBuilder.buildTiledRaster(File directory, boolean recursive, RasterIOOptions options)
          Scan the given directory (recursively) for files with given extension and create a tiled raster from them.
static AbstractRaster RasterFactory.createRasterFromImage(RenderedImage image, Envelope envelope, RasterGeoReference.OriginLocation originLocation)
          Creates a simple raster from a given BufferedImage and sets the geo reference to the given envelope.
static AbstractRaster RasterFactory.createRasterFromImage(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 DataSourceHandler.fromDatasource(RasterDataSource datasource, XMLAdapter adapter)
           
static AbstractRaster RasterFactory.loadRasterFromFile(File filename)
          Load a raster from a file.
static AbstractRaster RasterFactory.loadRasterFromFile(File filename, RasterIOOptions options)
          Load a raster from a file.
static AbstractRaster RasterFactory.loadRasterFromStream(InputStream in, RasterIOOptions options)
          Load a raster from a stream.
 

Methods in org.deegree.coverage.raster.utils with parameters of type AbstractRaster
static BufferedImage RasterFactory.imageFromRaster(AbstractRaster raster)
          Creates a buffered image from a given AbstractRaster, note creating an image might result in a incorrect view of the raster.
static void RasterFactory.saveRasterToFile(AbstractRaster raster, File filename)
          Save a raster to a file.
static void RasterFactory.saveRasterToFile(AbstractRaster raster, File filename, RasterIOOptions options)
          Save a raster to a file.
static void RasterFactory.saveRasterToStream(AbstractRaster raster, OutputStream out, RasterIOOptions options)
          Save a raster to a stream.
 

Uses of AbstractRaster in org.deegree.filter.function.se
 

Methods in org.deegree.filter.function.se with parameters of type AbstractRaster
 BufferedImage Categorize.evaluateRaster(AbstractRaster raster, RasterStyling style)
          Construct an image map, as the result of the Categorize operation
 BufferedImage Interpolate.evaluateRaster(AbstractRaster raster, RasterStyling style)
          Construct an image map, as the result of the Interpolate operation
 

Uses of AbstractRaster in org.deegree.rendering.r2d
 

Methods in org.deegree.rendering.r2d that return AbstractRaster
 AbstractRaster Java2DRasterRenderer.performHillShading(AbstractRaster raster, RasterStyling style)
          Perform the hill-shading algorithm on a DEM raster.
 

Methods in org.deegree.rendering.r2d with parameters of type AbstractRaster
 AbstractRaster Java2DRasterRenderer.performHillShading(AbstractRaster raster, RasterStyling style)
          Perform the hill-shading algorithm on a DEM raster.
 void RasterRenderer.render(RasterStyling styling, AbstractRaster raster)
           
 void Java2DRasterRenderer.render(RasterStyling styling, AbstractRaster raster)
           
 

Uses of AbstractRaster in org.deegree.rendering.r2d.utils
 

Methods in org.deegree.rendering.r2d.utils with parameters of type AbstractRaster
static Polygon Raster2Feature.createPolygonGeometry(AbstractRaster raster)
          Return the bounding geometry of a raster as a polygon (but is actually a rectangle).
static GenericSimpleFeature Raster2Feature.transformToFeature(AbstractRaster raster)
           
 

Constructors in org.deegree.rendering.r2d.utils with parameters of type AbstractRaster
RasterDataUtility(AbstractRaster raster)
           
RasterDataUtility(AbstractRaster raster, RasterChannelSelection style)
          Create a RasterDataUtility object, where channels are mapped according to the RasterStyle options
 


deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org

]]>