Package org.geotools.coverage.processing
Class OperationJAI.Parameters
Object
Parameters
- Enclosing class:
- OperationJAI
A block of parameters for a
GridCoverage2D
processed by a OperationJAI
. This parameter is given
to the following methods:
- Since:
- 2.2
- Author:
- Martin Desruisseaux (IRD)
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe two dimensional coordinate reference system for all sources and the destinationGridCoverage2D
.final MathTransform2D
The "grid to coordinate reference system" transform common to all source grid coverages.final Hints
The rendering hints to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)
method.final ParameterBlockJAI
The parameters to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)
method. -
Method Summary
-
Field Details
-
crs
The two dimensional coordinate reference system for all sources and the destinationGridCoverage2D
. Sources coverages will be projected in this CRS as needed. -
gridToCRS
The "grid to coordinate reference system" transform common to all source grid coverages. -
parameters
public final ParameterBlockJAI parametersThe parameters to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)
method. -
hints
The rendering hints to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)
method. TheJAI
instance to use for thecreateNS
call will be fetch from theHints.JAI_INSTANCE
key.
-