Package org.geotools.coverage.processing
Class OperationJAI.Parameters
- Object
-
- Parameters
-
- Enclosing class:
- OperationJAI
protected static final class OperationJAI.Parameters extends Object
A block of parameters for aGridCoverage2Dprocessed by aOperationJAI. This parameter is given to the following methods:- Since:
- 2.2
- Author:
- Martin Desruisseaux (IRD)
-
-
Field Summary
Fields Modifier and Type Field Description CoordinateReferenceSystemcrsThe two dimensional coordinate reference system for all sources and the destinationGridCoverage2D.MathTransform2DgridToCRSThe "grid to coordinate reference system" transform common to all source grid coverages.HintshintsThe rendering hints to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)method.ParameterBlockJAIparametersThe parameters to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)method.
-
-
-
Field Detail
-
crs
public final CoordinateReferenceSystem crs
The two dimensional coordinate reference system for all sources and the destinationGridCoverage2D. Sources coverages will be projected in this CRS as needed.
-
gridToCRS
public final MathTransform2D gridToCRS
The "grid to coordinate reference system" transform common to all source grid coverages.
-
parameters
public final ParameterBlockJAI parameters
The parameters to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)method.
-
hints
public final Hints hints
The rendering hints to be given to theJAI.createNS(java.lang.String, java.awt.image.renderable.ParameterBlock, java.awt.RenderingHints)method. TheJAIinstance to use for thecreateNScall will be fetch from theHints.JAI_INSTANCEkey.
-
-