Object
CoverageAggregator
Creates a grid coverage resource from an aggregation of an arbitrary number of other resources.
This class accepts heterogeneous resources (a data lake), organizes them in a tree
of resources as described in the next section, then performs different kinds of aggregation:
- Creation of a data cube from a collection of slices:
If a collection of
GridCoverageResource
instances represent the same phenomenon (for example Sea Surface Temperature) over the same geographic area but at different dates and times.CoverageAggregator
can be used for building a single data cube with a time axis. - Aggregation of bands: Resources having different sample dimensions can be combined in a single resource.
Generated resource tree
All source coverages should share the same CRS and have the same ranges (sample dimensions). If this is not the case, then the source coverages will be grouped in different aggregates with an uniform CRS and set of ranges in each sub-aggregates. More specifically,CoverageAggregator
organizes resources as below,
except that parent nodes having only one child are omitted:
Root aggregate ├─ All coverages with same sample dimensions #1 │ └─ ... └─ All coverages with same sample dimensions #2 ├─ Coverages with equivalent reference systems #1 │ └─ ... └─ Coverages with equivalent reference systems #2 ├─ Slices with compatible "grid to CRS" #1 ├─ Slices with compatible "grid to CRS" #2 └─ ...Where:
- Equivalent reference systems means two
CoordinateReferenceSystem
instances for whichUtilities.equalsIgnoreMetadata(Object, Object)
returnstrue
. - Compatible grid to CRS means two grid to CRS transforms which are identical (with small tolerance for rounding errors) except for the translation terms, with the additional condition that the translations, when expressed in units of grid cell indices, can differ only by integer amounts of cells.
- Slices means source coverages declared to this aggregator by calls to
add(…)
methods, after they have been incorporated in a data cube by this aggregator. Above tree does not contain the individual slices, but data cubes containing all slices that can fit.
Multi-threading and concurrency
Alladd(…)
methods can be invoked concurrently from arbitrary threads.
It is okay to load GridCoverageResource
instances in parallel threads
and add those resources to CoverageAggregator
without synchronization.
However, the final build()
method is not thread-safe;
that method shall be invoked from a single thread after all sources have been added
and no more addition are in progress.- Since:
- 1.3
-
Constructor Summary
ConstructorDescriptionCreates an initially empty aggregator with no listeners.CoverageAggregator
(StoreListeners listeners) Creates an initially empty aggregator with the given listeners. -
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(GridCoverage coverage) Adds the given coverage.void
add
(GridCoverageResource resource) Adds the given resource.void
addAll
(Stream<? extends GridCoverageResource> resources) Adds all grid resources provided by the given stream.void
addComponents
(Aggregate resource) Adds all components of the given aggregate.void
addRangeAggregate
(GridCoverageResource... sources) Adds a resource whose range is the aggregation of the ranges of a sequence of resources.void
addRangeAggregate
(GridCoverageResource[] sources, int[][] bandsPerSource) Adds a resource whose range is the aggregation of the specified bands of a sequence of resources.build()
Deprecated.build
(GenericName identifier) Builds a resource which is the aggregation or concatenation of all components added to this aggregator.Returns the colorization algorithm to apply on computed images.Returns the algorithm to apply when more than one grid coverage can be found at the same grid index.void
setColorizer
(Colorizer colorizer) Sets the colorization algorithm to apply on computed images.void
setMergeStrategy
(MergeStrategy strategy) Sets the algorithm to apply when more than one grid coverage can be found at the same grid index.Returns a string representation for debugging purposes.
-
Constructor Details
-
CoverageAggregator
public CoverageAggregator()Creates an initially empty aggregator with no listeners.- Since:
- 1.4
-
CoverageAggregator
Creates an initially empty aggregator with the given listeners.- Parameters:
listeners
- listeners of the parent resource, ornull
if none. This is usually the listeners of theDataStore
.
-
-
Method Details
-
add
Adds the given coverage. This method can be invoked from any thread.- Parameters:
coverage
- coverage to add.- Since:
- 1.4
-
add
Adds the given resource. This method can be invoked from any thread. This method does not recursively decomposes anAggregate
into its component. If such decomposition is desired, seeaddComponents(Aggregate)
instead.- Parameters:
resource
- resource to add.- Throws:
DataStoreException
- if the resource cannot be used.
-
addComponents
Adds all components of the given aggregate. This method can be invoked from any thread. It delegates toadd(GridCoverageResource)
for each component in the aggregate which is an instance ofGridCoverageResource
. Components that are themselves instance ofAggregate
are decomposed recursively.- Parameters:
resource
- resource to add.- Throws:
DataStoreException
- if a component of the resource cannot be used.- "TODO:"
- Instead of ignoring non-coverage instances, we should put them in a separated aggregate.
-
addAll
Adds all grid resources provided by the given stream. This method can be invoked from any thread. It delegates toadd(GridCoverageResource)
for each element in the stream.Aggregate
instances are added as-is (not decomposed in their components).- Parameters:
resources
- resources to add.- Throws:
DataStoreException
- if a resource cannot be used.- See Also:
-
addRangeAggregate
Adds a resource whose range is the aggregation of the ranges of a sequence of resources. This method combines homogeneous grid coverage resources by "stacking" their sample dimensions (bands). The grid geometry is typically the same for all resources, but some variations described below are allowed. The number of sample dimensions in the aggregated coverage is the sum of the number of sample dimensions in each individual resource.This convenience method delegates to
addRangeAggregate(GridCoverageResource[], int[][])
. See that method for more information on restrictions.- Parameters:
sources
- resources whose bands shall be aggregated, in order.- Throws:
DataStoreException
- if an error occurred while fetching the grid geometry or sample dimensions from a resource.IllegalGridGeometryException
- if a grid geometry is not compatible with the others.- Since:
- 1.4
- See Also:
-
addRangeAggregate
public void addRangeAggregate(GridCoverageResource[] sources, int[][] bandsPerSource) throws DataStoreException Adds a resource whose range is the aggregation of the specified bands of a sequence of resources. This method performs the same work thanaddRangeAggregate(GridCoverageResource...)
, but with the possibility to specify the sample dimensions to retain in each source coverage. ThebandsPerSource
argument specifies the sample dimensions to keep, in order. That array can benull
for selecting all sample dimensions in all source coverages, or may containnull
elements for selecting all sample dimensions of the corresponding coverage. An empty array element (i.e. zero sample dimension to select) discards the corresponding source coverage.Restrictions
- All resources shall use the same coordinate reference system (CRS).
- All resources shall have the same domain, except for the grid extent and the translation terms which can vary by integer numbers of grid cells.
- All grid extents shall intersect and the intersection area shall be non-empty.
- If coverage data are stored in
RenderedImage
instances, then all images shall use the same data type.
- Parameters:
sources
- resources whose bands shall be aggregated, in order.bandsPerSource
- sample dimensions for each source. May benull
or may containnull
elements.- Throws:
DataStoreException
- if an error occurred while fetching the grid geometry or sample dimensions from a resource.IllegalGridGeometryException
- if a grid geometry is not compatible with the others.IllegalArgumentException
- if some band indices are duplicated or outside their range of validity.- Since:
- 1.4
- See Also:
-
getColorizer
Returns the colorization algorithm to apply on computed images. This algorithm is used for all resources added byaddRangeAggregate(GridCoverageResource[], int[][])
,- Returns:
- colorization algorithm to apply on computed image, or
null
for default. - Since:
- 1.4
-
setColorizer
Sets the colorization algorithm to apply on computed images. This algorithm applies to all resources added byaddRangeAggregate(GridCoverageResource[], int[][])
, including resources already added before this method is invoked. If this method is never invoked, the default value isnull
.- Parameters:
colorizer
- colorization algorithm to apply on computed image, ornull
for default.- Since:
- 1.4
-
getMergeStrategy
Returns the algorithm to apply when more than one grid coverage can be found at the same grid index. This is the most recent value set by a call tosetMergeStrategy(MergeStrategy)
, ornull
if no strategy has been specified. In the latter case, aSubspaceNotSpecifiedException
will be thrown byGridCoverage.render(GridExtent)
if more than one source coverage (slice) is found for a specified grid index.- Returns:
- algorithm to apply for merging source coverages at the same grid index, or
null
if none.
-
setMergeStrategy
Sets the algorithm to apply when more than one grid coverage can be found at the same grid index. The new strategy applies to the next coverages to be added; previously added coverage may or may not be impacted by this change (see below). For avoiding hard-to-predict behavior, this method should be invoked before to add the first coverage.Effect on previously added coverages
The merge strategy of previously added coverages is not modified by this method call, except for coverages (slices) that become part of the same aggregatedGridCoverageResource
(data cube) than a coverage added after this method call. In such case, the strategy set by this call tosetMergeStrategy(…)
prevails. Said otherwise, the merge strategy of a data cube is the strategy which was active at the time of the most recently added slice for that data cube.- Parameters:
strategy
- new algorithm to apply for merging source coverages at the same grid index, ornull
if none.
-
build
Builds a resource which is the aggregation or concatenation of all components added to this aggregator. The returned resource will be an instance ofGridCoverageResource
if possible, or an instance ofAggregate
if some heterogeneity in grid geometries or sample dimensions prevents the concatenation of all coverages in a single resource.An identifier can optionally be specified for the resource. This identifier will be used if this method creates an aggregated or concatenated resource, but it will be ignored if this method returns directly one of the resource specified to the
add(…)
methods.Multi-threading
If theadd(…)
andaddAll(…)
methods were invoked in background threads, then all additions must be finished before this method is invoked.- Parameters:
identifier
- identifier to assign to the aggregated resource, ornull
if none.- Returns:
- the aggregation or concatenation of all components added to this aggregator.
- Since:
- 1.4
-
build
Deprecated.Replaced bybuild(GenericName)
. -
toString
Returns a string representation for debugging purposes.
-
build(GenericName)
.