Uses of Interface
org.geotools.api.coverage.Coverage
- 
Packages that use Coverage Package Description org.geotools.api.coverage Coverages (generate a value for any point).org.geotools.api.coverage.grid Quadrilateral grid coverages.org.geotools.coverage Coverage implementation.org.geotools.coverage.grid GridCoverage2D implementation.org.geotools.coverage.io org.geotools.coverage.io.impl org.geotools.coverage.processing Coverage processing implementations.org.geotools.coverage.processing.operation List of coverage operations.org.geotools.coverage.util 
- 
- 
Uses of Coverage in org.geotools.api.coverageMethods in org.geotools.api.coverage that return Coverage Modifier and Type Method Description CoverageCannotEvaluateException. getCoverage()Returns the coverage for which this exception is thrown.Methods in org.geotools.api.coverage that return types with arguments of type Coverage Modifier and Type Method Description List<? extends Coverage>Coverage. getSources()Returns the sources data for a coverage.Methods in org.geotools.api.coverage with parameters of type Coverage Modifier and Type Method Description voidCannotEvaluateException. setCoverage(Coverage coverage)Sets the coverage.
- 
Uses of Coverage in org.geotools.api.coverage.gridSubinterfaces of Coverage in org.geotools.api.coverage.grid Modifier and Type Interface Description interfaceGridCoverageRepresent the basic implementation which provides access to grid coverage data.
- 
Uses of Coverage in org.geotools.coverageClasses in org.geotools.coverage that implement Coverage Modifier and Type Class Description classAbstractCoverageBase class of all coverage type.Methods in org.geotools.coverage that return types with arguments of type Coverage Modifier and Type Method Description List<? extends Coverage>AbstractCoverage. getSources()Returns the source data for a coverage.Constructors in org.geotools.coverage with parameters of type Coverage Constructor Description AbstractCoverage(CharSequence name, Coverage coverage)Constructs a new coverage with the same parameters than the specified coverage.
- 
Uses of Coverage in org.geotools.coverage.gridClasses in org.geotools.coverage.grid that implement Coverage Modifier and Type Class Description classAbstractGridCoverageBase class for GeoTools implementation of grid coverage.classGridCoverage2DBasic access to grid data values backed by a two-dimensional rendered image.classInterpolator2DA grid coverage using an interpolation for evaluating points.
- 
Uses of Coverage in org.geotools.coverage.ioSubinterfaces of Coverage in org.geotools.coverage.io Modifier and Type Interface Description interfaceGridCoverageResponseAn interface implementingGridCoveragewith add of temporal extent and vertical extentMethods in org.geotools.coverage.io that return types with arguments of type Coverage Modifier and Type Method Description Collection<? extends Coverage>CoverageUpdateRequest. getData()Collection<? extends Coverage>CoverageResponse. getResults(ProgressListener listener)Returns the Coverages available with this coverage response.Method parameters in org.geotools.coverage.io with type arguments of type Coverage Modifier and Type Method Description voidCoverageUpdateRequest. setData(Collection<? extends Coverage> data)
- 
Uses of Coverage in org.geotools.coverage.io.implClasses in org.geotools.coverage.io.impl that implement Coverage Modifier and Type Class Description classDefaultGridCoverageResponseDefault GridCoverageResponse implementation.
- 
Uses of Coverage in org.geotools.coverage.processingMethods in org.geotools.coverage.processing that return Coverage Modifier and Type Method Description CoverageOperations. absolute(Coverage source)Computes the mathematical absolute value of each sample value.CoverageOperations. add(Coverage source, double[] constants)Adds constants (one for each band) to every sample values of the source coverage.CoverageOperations. add(Coverage source0, Coverage source1)Returns the sum between two coveragesCoverageOperations. crop(Coverage source, Bounds envelope)Crops the image to a specified rectangular area.CoverageOperations. crop(Coverage source, Geometry roi)Crops the image to a specified clipping areaCoverageOperations. divideBy(Coverage source, double[] constants)Divides every sample values of the source coverage by constants (one for each band).abstract CoverageAbstractOperation. doOperation(ParameterValueGroup parameters, Hints hints)Applies a process operation to a coverage.CoverageCoverageProcessor. doOperation(ParameterValueGroup parameters)Applies a process operation to a coverage.CoverageCoverageProcessor. doOperation(ParameterValueGroup parameters, Hints hints)Applies a process operation to a coverage.CoverageOperationJAI. doOperation(ParameterValueGroup parameters, Hints hints)Applies a process operation to a grid coverage.protected CoverageOperations. doOperation(String operationName, Coverage source)Applies a process operation with default parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1)Applies a process operation with one parameter.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2)Applies process operation with two parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3)Applies a process operation with three parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4)Applies a process operation with four parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4, String argumentName5, Object argumentValue5)Applies a process operation with five parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4, String argumentName5, Object argumentValue5, String argumentName6, Object argumentValue6)Applies a process operation with six parameters.protected CoverageOperations. doOperation(String operationName, Coverage source0, Coverage source1)Applies a process binary operation on two coverages with default parameters.CoverageOperations. exp(Coverage source)Takes the exponential of the sample values of a coverage.CoverageOperations. extrema(Coverage source)Finds the maximum and minimum pixel values for each band within that region of the coverage.CoverageOperations. invert(Coverage source)Inverts the sample values of a coverage.CoverageOperations. log(Coverage source)Takes the natural logarithm of the sample values of a coverage.CoverageOperations. multiply(Coverage source, double[] constants)Multiplies every sample values of the source coverage by constants (one for each band).CoverageOperations. multiply(Coverage source0, Coverage source1)Returns the multiplication between two coveragesCoverageOperations. resample(Coverage source, CoordinateReferenceSystem crs)Resamples a coverage to the specified coordinate reference system.CoverageOperations. resample(GridCoverage source, Bounds envelope, Interpolation interpolationType)Resamples a grid coverage to the specified envelope.CoverageOperations. resample(GridCoverage source, CoordinateReferenceSystem crs, GridGeometry gridGeometry, Interpolation interpolationType)Resamples a grid coverage to the specified coordinate reference system and grid geometry.CoverageOperations. resample(GridCoverage source, CoordinateReferenceSystem crs, GridGeometry gridGeometry, Interpolation interpolationType, double[] backgroundValues)Resamples a grid coverage to the specified coordinate reference system and grid geometry.CoverageOperations. rescale(Coverage source, double[] constants, double[] offsets)Maps the sample values of a coverage from one range to another range.CoverageOperations. selectSampleDimension(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.CoverageOperations. subtract(Coverage source, double[] constants)Subtracts constants (one for each band) from every sample values of the source coverage.CoverageOperations. subtractFrom(Coverage source, double[] constants)Subtracts every sample values of the source coverage from constants (one for each band).Methods in org.geotools.coverage.processing with parameters of type Coverage Modifier and Type Method Description CoverageOperations. absolute(Coverage source)Computes the mathematical absolute value of each sample value.CoverageOperations. add(Coverage source, double[] constants)Adds constants (one for each band) to every sample values of the source coverage.CoverageOperations. add(Coverage source0, Coverage source1)Returns the sum between two coveragesCoverageOperations. crop(Coverage source, Bounds envelope)Crops the image to a specified rectangular area.CoverageOperations. crop(Coverage source, Geometry roi)Crops the image to a specified clipping areaCoverageOperations. divideBy(Coverage source, double[] constants)Divides every sample values of the source coverage by constants (one for each band).protected CoverageOperations. doOperation(String operationName, Coverage source)Applies a process operation with default parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1)Applies a process operation with one parameter.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2)Applies process operation with two parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3)Applies a process operation with three parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4)Applies a process operation with four parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4, String argumentName5, Object argumentValue5)Applies a process operation with five parameters.protected CoverageOperations. doOperation(String operationName, Coverage source, String argumentName1, Object argumentValue1, String argumentName2, Object argumentValue2, String argumentName3, Object argumentValue3, String argumentName4, Object argumentValue4, String argumentName5, Object argumentValue5, String argumentName6, Object argumentValue6)Applies a process operation with six parameters.protected CoverageOperations. doOperation(String operationName, Coverage source0, Coverage source1)Applies a process binary operation on two coverages with default parameters.CoverageOperations. exp(Coverage source)Takes the exponential of the sample values of a coverage.CoverageOperations. extrema(Coverage source)Finds the maximum and minimum pixel values for each band within that region of the coverage.CoverageOperations. invert(Coverage source)Inverts the sample values of a coverage.CoverageOperations. log(Coverage source)Takes the natural logarithm of the sample values of a coverage.CoverageOperations. multiply(Coverage source, double[] constants)Multiplies every sample values of the source coverage by constants (one for each band).CoverageOperations. multiply(Coverage source0, Coverage source1)Returns the multiplication between two coveragesCoverageOperations. resample(Coverage source, CoordinateReferenceSystem crs)Resamples a coverage to the specified coordinate reference system.CoverageOperations. rescale(Coverage source, double[] constants, double[] offsets)Maps the sample values of a coverage from one range to another range.CoverageOperations. selectSampleDimension(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.CoverageOperations. subtract(Coverage source, double[] constants)Subtracts constants (one for each band) from every sample values of the source coverage.CoverageOperations. subtractFrom(Coverage source, double[] constants)Subtracts every sample values of the source coverage from constants (one for each band).
- 
Uses of Coverage in org.geotools.coverage.processing.operationMethods in org.geotools.coverage.processing.operation that return Coverage Modifier and Type Method Description CoverageBandMerge. doOperation(ParameterValueGroup parameters, Hints hints)CoverageCrop. doOperation(ParameterValueGroup parameters, Hints hints)Applies a crop operation to a coverage.CoverageInterpolate. doOperation(ParameterValueGroup parameters, Hints hints)Applies an interpolation to a grid coverage.CoverageMosaic. doOperation(ParameterValueGroup parameters, Hints hints)CoverageResample. doOperation(ParameterValueGroup parameters, Hints hints)Resamples a grid coverage.CoverageSelectSampleDimension. doOperation(ParameterValueGroup parameters, Hints hints)Applies the band select operation to a grid coverage.
- 
Uses of Coverage in org.geotools.coverage.utilMethods in org.geotools.coverage.util with parameters of type Coverage Modifier and Type Method Description static CoordinateReferenceSystemCoverageUtilities. getCRS2D(Coverage coverage)Returns a two-dimensional CRS for the given coverage.static ReferencedEnvelopeCoverageUtilities. getEnvelope2D(Coverage coverage)Returns a two-dimensional envelope for the given coverage.static CoordinateReferenceSystemCoverageUtilities. getHorizontalCRS(Coverage coverage)Returns a two-dimensional horizontal CRS for the given coverage.
 
-