Interface GridCoverageResource

All Superinterfaces:
Data­Set, Resource
All Known Subinterfaces:
Writable­Grid­Coverage­Resource
All Known Implementing Classes:
Abstract­Grid­Coverage­Resource

public interface GridCoverageResource extends DataSet
Access to data values in a n-dimensional grid. A coverage is a kind of function with the following properties:
  • The function input is a position valid in the coverage domain. In the particular case of Grid­Coverage, the domain is described by a grid geometry.
  • The function output is a record of values in the coverage range. In the particular case of Grid­Coverage, the range is described by a list of sample dimensions.
A coverage resource may be a member of Aggregate if a single file can provide many rasters.
Since:
1.0
  • Method Details

    • getGridGeometry

      GridGeometry getGridGeometry() throws DataStoreException
      Returns the valid extent of grid coordinates together with the conversion from those grid coordinates to real world coordinates. A grid geometry contains the following information:
      • The minimum and maximum grid coordinates as integers (the Grid Extent). The minimum coordinates are typically (0,0, …, 0) but not necessarily.
      • The minimum and maximum "real world" coordinates (the Envelope). Those coordinates are typically, but not necessarily, latitudes and longitudes or projected coordinates, together with altitudes and dates.
      • A description of the datum and axes of above "real world" coordinates (the Coordinate Reference System).
      • The conversion from grid coordinates to "real world" coordinates. This conversion is often, but not necessarily, a linear relationship. Axis order or direction may be changed by the conversion. For example, row indices may be increasing toward down while latitude coordinates are increasing toward up.
      • An estimation of grid resolution for each "real world" axis.
      The grid returned by this method should be equal to the grid returned by read(null).get­Grid­Geometry(). However, the grid geometry returned by this method is allowed to be only approximate if computing accurate information would be prohibitively expensive, or if the grid geometry depends on the exact argument value given to the read(…) method. At least, the number of dimensions should match.
      Returns:
      extent of grid coordinates together with their mapping to "real world" coordinates.
      Throws:
      Data­Store­Exception - if an error occurred while reading definitions from the underlying data store.
      See Also:
    • getSampleDimensions

      List<SampleDimension> getSampleDimensions() throws DataStoreException
      Returns the ranges of sample values together with the conversion from samples to real values. Sample dimensions contain the following information:
      • The range of valid sample values, typically but not necessarily as positive integers.
      • A transfer function for converting sample values to real values, for example measurements of a geophysics phenomenon. The transfer function is typically defined by a scale factor and an offset, but is not restricted to such linear equations.
      • The units of measurement of "real world" values after their conversions from sample values.
      • The sample values reserved for missing values.
      The returned list should never be empty. If the coverage is an image to be used only for visualization purposes (i.e. the image does not contain any classification data or any measurement of physical phenomenon), then list size should be equal to the number of bands in the image and sample dimension names may be "Red", "Green" and "Blue" for instance. Those sample dimensions do not need to contain any category.

      The list returned by this method should be equal to the list returned by read(null).get­Sample­Dimensions(). However, the sample dimensions returned by this method is allowed to be only approximate if computing accurate information would be prohibitively expensive, or if the sample dimensions depend on the domain argument (area of interest) given to the read(…) method. At least, the number of sample dimensions should match.

      Returns:
      ranges of sample values together with their mapping to "real values".
      Throws:
      Data­Store­Exception - if an error occurred while reading definitions from the underlying data store.
      See Also:
    • getResolutions

      default List<double[]> getResolutions() throws DataStoreException
      Returns the preferred resolutions (in units of CRS axes) for read operations in this data store. If the storage supports pyramid, then the list should contain the resolution at each pyramid level ordered from finest (smallest numbers) to coarsest (largest numbers) resolution. Otherwise the list contains a single element which is the grid geometry resolution, or an empty list if no resolution is applicable to the coverage (e.g. because non-constant).

      Each element shall be an array with a length equals to the number of CRS dimensions. In each array, value at index i is the cell size along CRS dimension i in units of the CRS axis i.

      Note that arguments given to subset(…) or read(…) methods are not constrained to the resolutions returned by this method. Those resolutions are only hints about resolution values where read operations are likely to be more efficient.

      Returns:
      preferred resolutions for read operations in this data store, or an empty array if none.
      Throws:
      Data­Store­Exception - if an error occurred while reading definitions from the underlying data store.
      Since:
      1.2
      See Also:
    • subset

      Requests a subset of the coverage. The filtering can be applied in two aspects:
      • The returned Grid­Coverage­Resource may contain a smaller domain (grid extent).
      • The returned Grid­Coverage­Resource may contain a smaller range (less sample dimensions).

      The returned subset may be a view of this set, i.e. changes in this Grid­Coverage­Resource may be reflected immediately on the returned subset (and conversely), but not necessarily. However, the returned subset may not have the same capabilities as this Grid­Coverage­Resource. In particular, write operations may become unsupported after complex queries.

      Default implementation

      The default implementation delegates to Coverage­Query​.execute(Grid­Coverage­Resource) if the given query is an instance of Coverage­Query, or throws Unsupported­Query­Exception otherwise.
      Parameters:
      query - definition of domain (grid extent) and range (sample dimensions) filtering applied at reading time.
      Returns:
      resulting coverage resource (never null).
      Throws:
      Unsupported­Query­Exception - if the given query is not valid for this Grid­Coverage­Resource. This includes query validation errors.
      Data­Store­Exception - if another error occurred while processing the query.
      Since:
      1.1
      See Also:
    • read

      GridCoverage read(GridGeometry domain, int... ranges) throws DataStoreException
      Loads a subset of the grid coverage represented by this resource. If a non-null grid geometry is specified, then this method will try to return a grid coverage matching the given grid geometry on a best-effort basis; the coverage actually returned may have a different resolution, cover a different area in a different CRS, etc. The general contract is that the returned coverage should not contain less data than a coverage matching exactly the given geometry.

      The returned coverage shall contain the exact set of sample dimensions specified by the range argument, in the specified order (the "best-effort basis" flexibility applies only to the grid geometry, not to the ranges). All ranges values shall be between 0 inclusive and get­Sample­Dimensions().size() exclusive, without duplicated values.

      While this method name suggests an immediate reading, some implementations may defer the actual reading at a later stage.

      Parameters:
      domain - desired grid extent and resolution, or null for reading the whole domain.
      ranges - 0-based indices of sample dimensions to read, or null or an empty sequence for reading them all.
      Returns:
      the grid coverage for the specified domain and ranges.
      Throws:
      Disjoint­Extent­Exception - if the given domain does not intersect the resource extent.
      Illegal­Argument­Exception - if the given domain or ranges are invalid for another reason.
      Data­Store­Exception - if an error occurred while reading the grid coverage data.
    • getLoadingStrategy

      default RasterLoadingStrategy getLoadingStrategy() throws DataStoreException
      Returns an indication about when the "physical" loading of raster data will happen. This is the strategy actually applied by this resource implementation, not necessarily the strategy given in the last call to set­Loading­Strategy(…).

      The default strategy is to load raster data at read(…) method invocation time.

      Returns:
      current raster data loading strategy for this resource.
      Throws:
      Data­Store­Exception - if an error occurred while fetching data store configuration.
      Since:
      1.1
    • setLoadingStrategy

      default boolean setLoadingStrategy(RasterLoadingStrategy strategy) throws DataStoreException
      Sets the preferred strategy about when to do the "physical" loading of raster data. Implementations are free to ignore this parameter or to replace the given strategy by the closest alternative that this resource can support.
      Parameters:
      strategy - the desired strategy for loading raster data.
      Returns:
      true if the given strategy has been accepted, or false if this implementation replaced the given strategy by an alternative.
      Throws:
      Data­Store­Exception - if an error occurred while setting data store configuration.
      Since:
      1.1