Uses of Class
org.geotools.coverage.grid.GridCoverageFactory
-
Packages that use GridCoverageFactory Package Description org.geotools.coverage Coverage implementation.org.geotools.coverage.grid GridCoverage2D implementation.org.geotools.coverage.grid.io org.geotools.coverage.io.util org.geotools.coverage.processing Coverage processing implementations.org.geotools.gce.imagemosaic org.geotools.renderer.lite.gridcoverage2d SLD 1.0 and SE RasterSymbolizer support classes -
-
Uses of GridCoverageFactory in org.geotools.coverage
Methods in org.geotools.coverage that return GridCoverageFactory Modifier and Type Method Description static GridCoverageFactory
CoverageFactoryFinder. getGridCoverageFactory(Hints hints)
Returns the first implementation ofGridCoverageFactory
matching the specified hints.Methods in org.geotools.coverage that return types with arguments of type GridCoverageFactory Modifier and Type Method Description static Set<GridCoverageFactory>
CoverageFactoryFinder. getGridCoverageFactories(Hints hints)
Returns a set of all available implementations for theGridCoverageFactory
interface. -
Uses of GridCoverageFactory in org.geotools.coverage.grid
Constructors in org.geotools.coverage.grid with parameters of type GridCoverageFactory Constructor Description GridCoverageBuilder(GridCoverageFactory factory)
Creates a builder initialized to default values. -
Uses of GridCoverageFactory in org.geotools.coverage.grid.io
Fields in org.geotools.coverage.grid.io declared as GridCoverageFactory Modifier and Type Field Description protected GridCoverageFactory
AbstractGridCoverage2DReader. coverageFactory
GridCoverageFactory
instance. -
Uses of GridCoverageFactory in org.geotools.coverage.io.util
Methods in org.geotools.coverage.io.util with parameters of type GridCoverageFactory Modifier and Type Method Description static GridCoverage
Utilities. compute(Object input, int imageIndex, boolean needTransformation, boolean isEmptyRequest, boolean useJAI, ImageReadParam imageReadParam, boolean useMultithreading, GridSampleDimension[] sampleDimensions, ImageReaderSpi imageReaderSpi, String coverageName, GridCoverageFactory coverageFactory, MathTransform raster2Model, CoordinateReferenceSystem coordinateReferenceSystem, GeneralBounds envelope2D)
Compute the coverage request and produce a grid coverage.static GridCoverage
Utilities. createCoverage(ImageReaderSpi spi, Object input, int imageIndex, ImageReadParam imageReadParam, boolean useJAI, boolean useMultithreading, boolean newTransform, GridSampleDimension[] sampleDimensions, String coverageName, GridCoverageFactory coverageFactory, MathTransform raster2Model, CoordinateReferenceSystem coordinateReferenceSystem, GeneralBounds coverageEnvelope2D)
This method creates the GridCoverage2D from the underlying file given a specified envelope, and a requested dimension.static GridCoverage
Utilities. createCoverageFromImage(GridCoverageFactory coverageFactory, String coverageName, int imageIndex, PlanarImage image, MathTransform raster2Model, CoordinateReferenceSystem spatialReferenceSystem2D, GeneralBounds coverageEnvelope2D, GridSampleDimension[] sampleDimensions)
Creates aGridCoverage
for the providedPlanarImage
using theMathTransform
that was provided for this coverage. -
Uses of GridCoverageFactory in org.geotools.coverage.processing
Methods in org.geotools.coverage.processing that return GridCoverageFactory Modifier and Type Method Description protected static GridCoverageFactory
Operation2D. getFactory(Hints hints)
Returns the factory to use for creating newGridCoverage2D
objects. -
Uses of GridCoverageFactory in org.geotools.gce.imagemosaic
Methods in org.geotools.gce.imagemosaic that return GridCoverageFactory Modifier and Type Method Description GridCoverageFactory
RasterManager. getCoverageFactory()
-
Uses of GridCoverageFactory in org.geotools.renderer.lite.gridcoverage2d
Methods in org.geotools.renderer.lite.gridcoverage2d that return GridCoverageFactory Modifier and Type Method Description GridCoverageFactory
BaseCoverageProcessingNode. getCoverageFactory()
TheGridCoverageFactory
we will internally use for build intermediate and outputGridCoverage2D
.GridCoverageFactory
CoverageProcessingNode. getCoverageFactory()
TheGridCoverageFactory
we will internally use for build intermediate and outputGridCoverage2D
.GridCoverageFactory
StyleVisitorCoverageProcessingNodeAdapter. getCoverageFactory()
Methods in org.geotools.renderer.lite.gridcoverage2d with parameters of type GridCoverageFactory Modifier and Type Method Description static GridCoverage2D
GridCoverageRendererUtilities. affine(GridCoverage2D coverage, Interpolation interpolation, AffineTransform affineTransform, double[] bkgValues, boolean useInputSampleDimensions, GridCoverageFactory gridCoverageFactory, Hints hints)
Apply an affineTransformation to a GridCoveragestatic List<GridCoverage2D>
GridCoverageRendererUtilities. displace(List<GridCoverage2D> coverages, ProjectionHandler handler, GeneralBounds destinationEnvelope, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, GridCoverageFactory gridCoverageFactory)
Displaces a list of coverages, using a ProjectionHandler to eventually split into proper envelopes.List<GridCoverage2D>
GridCoverageReaderHelper. readCoverages(GeneralParameterValue[] readParams, ProjectionHandler handler, GridCoverageFactory gridCoverageFactory)
Reads the data taking into account advanced projection handling in order to deal with date line crossing, poles and other projection trouble areas.static List<GridCoverage2D>
GridCoverageRendererUtilities. reproject(List<GridCoverage2D> coverages, CoordinateReferenceSystem destinationCRS, Interpolation interpolation, GeneralBounds destinationEnvelope, double[] bkgValues, GridCoverageFactory gridCoverageFactory, Hints hints)
Reproject the specified list of coveragesstatic GridCoverage2D
GridCoverageRendererUtilities. reproject(GridCoverage2D coverage, CoordinateReferenceSystem destinationCRS, Interpolation interpolation, GeneralBounds destinationEnvelope, double[] bkgValues, GridCoverageFactory gridCoverageFactory, Hints hints)
Reproject a coverage to the specified destination, eventually adding a ROI if missing
-