Uses of Class
org.geotools.coverage.grid.GridCoverage2D

Packages that use GridCoverage2D
org.geotools.coverage Coverage implementation. 
org.geotools.coverage.grid GridCoverage2D implementation. 
org.geotools.coverage.grid.io   
org.geotools.coverage.processing Coverage processing implementations. 
org.geotools.coverage.processing.operation List of coverage operations
org.geotools.coverageio Base coverage I/O classes defining coverage reader, coverage request and coverage response. 
org.geotools.gce.arcgrid A datasource to manage the ARCGrid ASCII format. 
org.geotools.gce.geotiff A grid coverage exchange to manage the GeoTIFF Revision 1.0 format. 
org.geotools.gce.gtopo30 Data source for reading the GTOPO30 file format. 
org.geotools.gce.image   
org.geotools.gce.imagemosaic   
org.geotools.gce.imagemosaic.jdbc   
org.geotools.gce.imagepyramid   
org.geotools.map List of layers to be rendered. 
org.geotools.renderer.lite.gridcoverage2d SLD 1.0 and SE RasterSymbolizer support classes 
 

Uses of GridCoverage2D in org.geotools.coverage
 

Methods in org.geotools.coverage that return GridCoverage2D
 GridCoverage2D SpatioTemporalCoverage3D.getGridCoverage2D(Date time)
          Returns a 2 dimensional grid coverage for the given date.
 

Uses of GridCoverage2D in org.geotools.coverage.grid
 

Subclasses of GridCoverage2D in org.geotools.coverage.grid
 class Calculator2D
          A grid coverage backed by the same image, grid geometry and sample dimension than an other coverage, but performing some additional calculation in its evaluate methods.
 class Interpolator2D
          A grid coverage using an interpolation for evaluating points.
 

Fields in org.geotools.coverage.grid declared as GridCoverage2D
protected  GridCoverage2D Calculator2D.source
          The source grid coverage which was specified at construction time (never null).
 

Methods in org.geotools.coverage.grid that return GridCoverage2D
 GridCoverage2D GridCoverageFactory.create(CharSequence name, float[][] matrix, Envelope envelope)
          Constructs a grid coverage from the specified matrix and envelope.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, ImageFunction function, GridGeometry2D gridGeometry, GridSampleDimension[] bands, Map<?,?> properties)
          Constructs a grid coverage from an image function.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, RenderedImage image, CoordinateReferenceSystem crs, MathTransform gridToCRS, GridSampleDimension[] bands, GridCoverage[] sources, Map<?,?> properties)
          Constructs a grid coverage from the specified image and "grid to CRS" transform.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, RenderedImage image, Envelope envelope)
          Constructs a grid coverage from the specified image and envelope.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, RenderedImage image, Envelope envelope, GridSampleDimension[] bands, GridCoverage[] sources, Map<?,?> properties)
          Constructs a grid coverage from the specified image and envelope.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, RenderedImage image, GridGeometry2D gridGeometry, GridSampleDimension[] bands, GridCoverage[] sources, Map<?,?> properties)
          Constructs a grid coverage from the specified image and grid geometry.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, WritableRaster raster, CoordinateReferenceSystem crs, MathTransform gridToCRS, double[] minValues, double[] maxValues, Unit<?> units, Color[][] colors, RenderingHints hints)
          Constructs a grid coverage from the specified raster and "grid to CRS" transform.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, WritableRaster raster, CoordinateReferenceSystem crs, MathTransform gridToCRS, GridSampleDimension[] bands)
          Constructs a grid coverage from the specified raster and "grid to CRS" transform.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, WritableRaster raster, Envelope envelope)
          Constructs a grid coverage from the specified raster and envelope.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, WritableRaster raster, Envelope envelope, double[] minValues, double[] maxValues, Unit<?> units, Color[][] colors, RenderingHints hints)
          Constructs a grid coverage from the specified raster and envelope.
 GridCoverage2D GridCoverageFactory.create(CharSequence name, WritableRaster raster, Envelope envelope, GridSampleDimension[] bands)
          Constructs a grid coverage from the specified raster and envelope.
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage)
          Constructs a new interpolator using default interpolations.
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage, Interpolation interpolation)
          Constructs a new interpolator for a single interpolation.
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage, Interpolation[] interpolations)
          Constructs a new interpolator for an interpolation and its fallbacks.
 GridCoverage2D GridCoverage2D.geophysics(boolean geo)
          Deprecated. Replaced by view(org.geotools.coverage.grid.ViewType).
 GridCoverage2D GridCoverageBuilder.getGridCoverage2D()
          Returns the grid coverage.
protected  GridCoverage2D Interpolator2D.specialize(GridCoverage2D view)
          Invoked by view(type) when the packed, geophysics or photographic view of this grid coverage needs to be created.
protected abstract  GridCoverage2D Calculator2D.specialize(GridCoverage2D view)
          Invoked by view(type) when the packed, geophysics or photographic view of this grid coverage needs to be created.
 GridCoverage2D GridCoverage2D.view(ViewType type)
          Returns a view of the specified type.
 

Methods in org.geotools.coverage.grid with parameters of type GridCoverage2D
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage)
          Constructs a new interpolator using default interpolations.
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage, Interpolation interpolation)
          Constructs a new interpolator for a single interpolation.
static GridCoverage2D Interpolator2D.create(GridCoverage2D coverage, Interpolation[] interpolations)
          Constructs a new interpolator for an interpolation and its fallbacks.
protected  GridCoverage2D Interpolator2D.specialize(GridCoverage2D view)
          Invoked by view(type) when the packed, geophysics or photographic view of this grid coverage needs to be created.
protected abstract  GridCoverage2D Calculator2D.specialize(GridCoverage2D view)
          Invoked by view(type) when the packed, geophysics or photographic view of this grid coverage needs to be created.
 

Constructors in org.geotools.coverage.grid with parameters of type GridCoverage2D
Calculator2D(CharSequence name, GridCoverage2D coverage)
          Constructs a new grid coverage with the same parameter than the specified coverage.
 

Uses of GridCoverage2D in org.geotools.coverage.grid.io
 

Methods in org.geotools.coverage.grid.io that return GridCoverage2D
protected  GridCoverage2D AbstractGridCoverage2DReader.createImageCoverage(PlanarImage image, MathTransform raster2Model)
          Creates a GridCoverage for the provided PlanarImage using the AbstractGridCoverage2DReader.raster2Model that was provided for this coverage.
abstract  GridCoverage2D AbstractGridCoverage2DReader.read(GeneralParameterValue[] parameters)
          Read the current grid coverage from the stream.
 

Uses of GridCoverage2D in org.geotools.coverage.processing
 

Methods in org.geotools.coverage.processing that return GridCoverage2D
protected  GridCoverage2D OperationJAI.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Applies a JAI operation to a grid coverage.
protected  GridCoverage2D BaseScaleOperationJAI.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
           
 

Methods in org.geotools.coverage.processing with parameters of type GridCoverage2D
protected  GridCoverage2D OperationJAI.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Applies a JAI operation to a grid coverage.
protected  GridCoverage2D BaseScaleOperationJAI.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
           
protected  InternationalString OperationJAI.deriveName(GridCoverage2D[] sources, int primarySourceIndex, OperationJAI.Parameters parameters)
          Returns a name for the target grid coverage based on the given sources.
protected  ViewType Operation2D.extractSources(ParameterValueGroup parameters, String[] sourceNames, GridCoverage2D[] sources)
          Extracts and prepares the sources for this Operation2D, taking into account the need for going to the geophysics view of the data in case this operation requires so.
protected  Map<String,?> OperationJAI.getProperties(RenderedImage data, CoordinateReferenceSystem crs, InternationalString name, MathTransform gridToCRS, GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Prepares the properties to be given to the coverage created by the deriveGridCoverage method.
protected  void OperationJAI.resampleToCommonGeometry(GridCoverage2D[] sources, CoordinateReferenceSystem crs2D, MathTransform2D gridToCrs2D, Hints hints)
          Resamples all sources grid coverages to the same two-dimensional geometry before to apply the OperationJAI.operation.
 

Uses of GridCoverage2D in org.geotools.coverage.processing.operation
 

Methods in org.geotools.coverage.processing.operation that return GridCoverage2D
protected  GridCoverage2D GradientMagnitude.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Applies the operation on grid coverage.
 

Methods in org.geotools.coverage.processing.operation with parameters of type GridCoverage2D
protected  GridCoverage2D GradientMagnitude.deriveGridCoverage(GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Applies the operation on grid coverage.
protected  Map<String,?> Histogram.getProperties(RenderedImage data, CoordinateReferenceSystem crs, InternationalString name, MathTransform toCRS, GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Prepare the Histogram property for this histogram operation.
protected  Map<String,?> Extrema.getProperties(RenderedImage data, CoordinateReferenceSystem crs, InternationalString name, MathTransform toCRS, GridCoverage2D[] sources, OperationJAI.Parameters parameters)
          Prepare the minimum and maximum properties for this extream operation.
 

Uses of GridCoverage2D in org.geotools.coverageio
 

Methods in org.geotools.coverageio that return GridCoverage2D
 GridCoverage2D BaseGridCoverage2DReader.read(GeneralParameterValue[] params)
          Returns a GridCoverage from this reader in compliance with the specified parameters.
 

Uses of GridCoverage2D in org.geotools.gce.arcgrid
 

Methods in org.geotools.gce.arcgrid that return GridCoverage2D
 GridCoverage2D ArcGridReader.read(GeneralParameterValue[] params)
          Reads a GridCoverage2D possibly matching as close as possible the resolution computed by using the input params provided by using the parameters for this ArcGridReader.read(GeneralParameterValue[]).
 

Uses of GridCoverage2D in org.geotools.gce.geotiff
 

Methods in org.geotools.gce.geotiff that return GridCoverage2D
protected  GridCoverage2D GeoTiffReader.createCoverage(PlanarImage image, MathTransform raster2Model)
          Creates a GridCoverage for the provided PlanarImage using the AbstractGridCoverage2DReader.raster2Model that was provided for this coverage.
 GridCoverage2D GeoTiffReader.read(GeneralParameterValue[] params)
          This method reads in the TIFF image, constructs an appropriate CRS, determines the math transform from raster to the CRS model, and constructs a GridCoverage.
 

Uses of GridCoverage2D in org.geotools.gce.gtopo30
 

Methods in org.geotools.gce.gtopo30 that return GridCoverage2D
 GridCoverage2D GTopo30Reader.read(GeneralParameterValue[] params)
           
 

Uses of GridCoverage2D in org.geotools.gce.image
 

Methods in org.geotools.gce.image that return GridCoverage2D
 GridCoverage2D WorldImageReader.read(GeneralParameterValue[] params)
          Reads an image from a source stream.
 

Uses of GridCoverage2D in org.geotools.gce.imagemosaic
 

Methods in org.geotools.gce.imagemosaic that return GridCoverage2D
 GridCoverage2D ImageMosaicReader.read(GeneralParameterValue[] params)
           
 

Uses of GridCoverage2D in org.geotools.gce.imagemosaic.jdbc
 

Methods in org.geotools.gce.imagemosaic.jdbc that return GridCoverage2D
 GridCoverage2D ImageMosaicJDBCReader.read(GeneralParameterValue[] params)
           
 

Uses of GridCoverage2D in org.geotools.gce.imagepyramid
 

Methods in org.geotools.gce.imagepyramid that return GridCoverage2D
 GridCoverage2D ImagePyramidReader.read(GeneralParameterValue[] params)
           
 

Uses of GridCoverage2D in org.geotools.map
 

Methods in org.geotools.map that return GridCoverage2D
 GridCoverage2D WMSMapLayer.getGrid()
           
 

Uses of GridCoverage2D in org.geotools.renderer.lite.gridcoverage2d
 

Methods in org.geotools.renderer.lite.gridcoverage2d that return GridCoverage2D
 GridCoverage2D RasterSymbolizerHelper.execute()
          We are hacking here a solutions for whenever the user either did not specify a style or did specify a bad one and the resulting image seems not be drawable.
 GridCoverage2D BaseCoverageProcessingNode.getOutput()
          This method is responsible for triggering the execution of this CoverageProcessingNode and also of all its sources.
 

Methods in org.geotools.renderer.lite.gridcoverage2d with parameters of type GridCoverage2D
 void GridCoverageRenderer.paint(Graphics2D graphics, GridCoverage2D gridCoverage, RasterSymbolizer symbolizer)
          Paint this grid coverage.
 

Constructors in org.geotools.renderer.lite.gridcoverage2d with parameters of type GridCoverage2D
RasterSymbolizerHelper(GridCoverage2D sourceCoverage, Hints hints)
           
 



Copyright © 1996-2009 Geotools. All Rights Reserved.