|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CoverageProcessingException | |
---|---|
org.geotools.coverage.processing | Coverage processing implementations. |
org.geotools.renderer.lite.gridcoverage2d | SLD 1.0 and SE RasterSymbolizer support classes |
Uses of CoverageProcessingException in org.geotools.coverage.processing |
---|
Subclasses of CoverageProcessingException in org.geotools.coverage.processing | |
---|---|
class |
CannotCropException
Throws when a "crop" operation has been requested but the specified grid coverage can't be scaled. |
class |
CannotReprojectException
Throws when a "resample" operation has been requested but the specified grid coverage can't be reprojected. |
class |
CannotScaleException
Throws when a "scale" operation has been requested but the specified grid coverage can't be scaled. |
Methods in org.geotools.coverage.processing that throw CoverageProcessingException | |
---|---|
org.opengis.coverage.Coverage |
Operations.absolute(org.opengis.coverage.Coverage source)
Computes the mathematical absolute value of each sample value. |
org.opengis.coverage.Coverage |
Operations.add(org.opengis.coverage.Coverage source,
double[] constants)
Adds constants (one for each band) to every sample values of the source coverage. |
org.opengis.coverage.Coverage |
Operations.crop(org.opengis.coverage.Coverage Source,
org.opengis.geometry.Envelope envelope)
Crops the image to a specified rectangular area. |
org.opengis.coverage.Coverage |
Operations.divideBy(org.opengis.coverage.Coverage source,
double[] constants)
Divides every sample values of the source coverage by constants (one for each band). |
org.opengis.coverage.Coverage |
OperationJAI.doOperation(org.opengis.parameter.ParameterValueGroup parameters,
Hints hints)
Applies a process operation to a grid coverage. |
abstract org.opengis.coverage.Coverage |
AbstractOperation.doOperation(org.opengis.parameter.ParameterValueGroup parameters,
Hints hints)
Applies a process operation to a coverage. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source)
Applies a process operation with default parameters. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1)
Applies a process operation with one parameter. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1,
java.lang.String argumentName2,
java.lang.Object argumentValue2)
Applies process operation with two parameters. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1,
java.lang.String argumentName2,
java.lang.Object argumentValue2,
java.lang.String argumentName3,
java.lang.Object argumentValue3)
Applies a process operation with three parameters. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1,
java.lang.String argumentName2,
java.lang.Object argumentValue2,
java.lang.String argumentName3,
java.lang.Object argumentValue3,
java.lang.String argumentName4,
java.lang.Object argumentValue4)
Applies a process operation with four parameters. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1,
java.lang.String argumentName2,
java.lang.Object argumentValue2,
java.lang.String argumentName3,
java.lang.Object argumentValue3,
java.lang.String argumentName4,
java.lang.Object argumentValue4,
java.lang.String argumentName5,
java.lang.Object argumentValue5)
Applies a process operation with five parameters. |
protected org.opengis.coverage.Coverage |
Operations.doOperation(java.lang.String operationName,
org.opengis.coverage.Coverage source,
java.lang.String argumentName1,
java.lang.Object argumentValue1,
java.lang.String argumentName2,
java.lang.Object argumentValue2,
java.lang.String argumentName3,
java.lang.Object argumentValue3,
java.lang.String argumentName4,
java.lang.Object argumentValue4,
java.lang.String argumentName5,
java.lang.Object argumentValue5,
java.lang.String argumentName6,
java.lang.Object argumentValue6)
Applies a process operation with six parameters. |
org.opengis.coverage.Coverage |
Operations.exp(org.opengis.coverage.Coverage source)
Takes the exponential of the sample values of a coverage. |
org.opengis.coverage.grid.GridCoverage |
Operations.filteredSubsample(org.opengis.coverage.grid.GridCoverage source)
Subsamples an image using the default values. |
org.opengis.coverage.grid.GridCoverage |
Operations.filteredSubsample(org.opengis.coverage.grid.GridCoverage source,
int scaleX,
int scaleY,
float[] qsFilter)
Subsamples an image by integral factors. |
org.opengis.coverage.grid.GridCoverage |
Operations.filteredSubsample(org.opengis.coverage.grid.GridCoverage source,
int scaleX,
int scaleY,
float[] qsFilter,
javax.media.jai.Interpolation interpolation)
Subsamples an image by integral factors. |
org.opengis.coverage.Coverage |
Operations.gradientMagnitude(org.opengis.coverage.Coverage source)
Edge detector which computes the magnitude of the image gradient vector in two orthogonal directions. |
org.opengis.coverage.Coverage |
Operations.gradientMagnitude(org.opengis.coverage.Coverage source,
javax.media.jai.KernelJAI mask1,
javax.media.jai.KernelJAI mask2)
Edge detector which computes the magnitude of the image gradient vector in two orthogonal directions. |
org.opengis.coverage.grid.GridCoverage |
Operations.interpolate(org.opengis.coverage.grid.GridCoverage source,
javax.media.jai.Interpolation type)
Specifies the interpolation type to be used to interpolate values for points which fall between grid cells. |
org.opengis.coverage.grid.GridCoverage |
Operations.interpolate(org.opengis.coverage.grid.GridCoverage source,
javax.media.jai.Interpolation[] types)
Specifies the interpolation types to be used to interpolate values for points which fall between grid cells. |
org.opengis.coverage.grid.GridCoverage |
Operations.interpolate(org.opengis.coverage.grid.GridCoverage source,
java.lang.String type)
Specifies the interpolation type to be used to interpolate values for points which fall between grid cells. |
org.opengis.coverage.Coverage |
Operations.invert(org.opengis.coverage.Coverage source)
Inverts the sample values of a coverage. |
org.opengis.coverage.Coverage |
Operations.log(org.opengis.coverage.Coverage source)
Takes the natural logarithm of the sample values of a coverage. |
org.opengis.coverage.Coverage |
Operations.multiply(org.opengis.coverage.Coverage source,
double[] constants)
Multiplies every sample values of the source coverage by constants (one for each band). |
org.opengis.coverage.grid.GridCoverage |
Operations.nodataFilter(org.opengis.coverage.grid.GridCoverage source)
Replaces NaN values by the weighted average of neighbors values. |
org.opengis.coverage.grid.GridCoverage |
Operations.nodataFilter(org.opengis.coverage.grid.GridCoverage source,
int padding,
int validityThreshold)
Replaces NaN values by the weighted average of neighbors values. |
org.opengis.coverage.grid.GridCoverage |
Operations.recolor(org.opengis.coverage.grid.GridCoverage source,
ColorMap[] colorMaps)
Recolors a coverage to the specified color maps. |
org.opengis.coverage.Coverage |
Operations.resample(org.opengis.coverage.Coverage source,
org.opengis.referencing.crs.CoordinateReferenceSystem crs)
Resamples a coverage to the specified coordinate reference system. |
org.opengis.coverage.Coverage |
Operations.resample(org.opengis.coverage.grid.GridCoverage source,
org.opengis.referencing.crs.CoordinateReferenceSystem crs,
org.opengis.coverage.grid.GridGeometry gridGeometry,
javax.media.jai.Interpolation interpolationType)
Resamples a grid coverage to the specified coordinate reference system and grid geometry. |
org.opengis.coverage.Coverage |
Operations.resample(org.opengis.coverage.grid.GridCoverage source,
org.opengis.geometry.Envelope envelope,
javax.media.jai.Interpolation interpolationType)
Resamples a grid coverage to the specified envelope. |
org.opengis.coverage.Coverage |
Operations.rescale(org.opengis.coverage.Coverage source,
double[] constants,
double[] offsets)
Maps the sample values of a coverage from one range to another range. |
org.opengis.coverage.grid.GridCoverage |
Operations.scale(org.opengis.coverage.grid.GridCoverage source,
double xScale,
double yScale,
double xTrans,
double yTrans)
Translates and resizes an image. |
org.opengis.coverage.grid.GridCoverage |
Operations.scale(org.opengis.coverage.grid.GridCoverage source,
double xScale,
double yScale,
double xTrans,
double yTrans,
javax.media.jai.Interpolation interpolation)
Translates and resizes an image. |
org.opengis.coverage.Coverage |
Operations.selectSampleDimension(org.opengis.coverage.Coverage source,
int[] sampleDimensions)
Chooses N sample dimensions from a coverage and copies their sample data to the destination grid coverage in the order specified. |
org.opengis.coverage.grid.GridCoverage |
Operations.subsampleAverage(org.opengis.coverage.grid.GridCoverage source,
double scaleX,
double scaleY)
Subsamples an image by averaging over a moving window |
org.opengis.coverage.Coverage |
Operations.subtract(org.opengis.coverage.Coverage source,
double[] constants)
Subtracts constants (one for each band) from every sample values of the source coverage. |
org.opengis.coverage.Coverage |
Operations.subtractFrom(org.opengis.coverage.Coverage source,
double[] constants)
Subtracts every sample values of the source coverage from constants (one for each band). |
Uses of CoverageProcessingException in org.geotools.renderer.lite.gridcoverage2d |
---|
Methods in org.geotools.renderer.lite.gridcoverage2d that throw CoverageProcessingException | |
---|---|
org.opengis.coverage.grid.GridCoverage |
CoverageProcessingNode.getOutput()
Forces this node to create the output coverage for the operation represented by this node. |
GridCoverage2D |
BaseCoverageProcessingNode.getOutput()
This method is responsible for triggering the execution of this CoverageProcessingNode and also of all its sources. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |