This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git.
from 9824159 Handle reduced-resolution (overview) images as levels in a pyramid of images (Cloud Optimized GeoTIFF convention). new e96b37e `ComputedImage.prefetch(Rectangle)` method for notifying that many tiles will be fetched. It allows implementations to allocate and release resources once for the group of tiles, or to compute them in some specific order (e.g. sequential order during I/O operations). new 57da403 Support the reading of tiles at `RenderedImage.getTile(int, int)` invocation time. This is enabled when loading mode is `RasterLoadingStrategy.AT_GET_TILE_TIME`. new 570e087 Parameter values were not properly compared when the value is a `double[]` array. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/sis/image/BandedSampleConverter.java | 20 +- .../java/org/apache/sis/image/ComputedImage.java | 22 +++ .../java/org/apache/sis/image/ImageAdapter.java | 21 ++- .../java/org/apache/sis/image/PlanarImage.java | 13 ++ .../java/org/apache/sis/image/PrefetchedImage.java | 22 ++- .../java/org/apache/sis/image/ResampledImage.java | 28 +++ .../org/apache/sis/image/SourceAlignedImage.java | 21 +++ .../internal/coverage/j2d/BatchComputedImage.java | 210 +++++++++++++++++++++ .../sis/internal/coverage/j2d/ImageUtilities.java | 73 ++++++- .../coverage/MultiResolutionCoverageLoader.java | 2 + .../sis/parameter/DefaultParameterValue.java | 4 +- .../org/apache/sis/storage/geotiff/DataSubset.java | 2 +- .../sis/internal/storage/TiledDeferredImage.java | 110 +++++++++++ .../sis/internal/storage/TiledGridCoverage.java | 66 +++++-- .../sis/internal/storage/TiledGridResource.java | 23 ++- 15 files changed, 607 insertions(+), 30 deletions(-) create mode 100644 core/sis-feature/src/main/java/org/apache/sis/internal/coverage/j2d/BatchComputedImage.java create mode 100644 storage/sis-storage/src/main/java/org/apache/sis/internal/storage/TiledDeferredImage.java