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 ab515ea614 Accept materialized views in SQL queries. new aa27c5dff7 Add internal utility methods which will be needed for GeoHEIF: - For using arrays of long as keys in a hash map. - For aligning pixel coordinates to tiles border. new b925009bef Make color model and sample model builders more flexible in preparation for GeoHEIF reader. new d7e30273d6 Support `ChannelImageInputStream` (internal class). This is needed for data stores that do a mix of own work and work delegated to Image I/O. new 372de6b8ce Make possible to handle tiles that are not created by `TiledGridCoverage.Iterator` itself. new 64f25a5066 Allow `HyperRectangleReader` to store the values in an existing array instead of allocating a new one. The 5 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: .../main/org/apache/sis/image/DataType.java | 5 +- .../main/org/apache/sis/image/MaskImage.java | 2 +- .../main/org/apache/sis/image/RecoloredImage.java | 3 +- .../apache/sis/image/privy/ColorModelBuilder.java | 309 ++++++++++++++------- .../apache/sis/image/privy/ColorModelFactory.java | 35 ++- .../org/apache/sis/image/privy/ImageUtilities.java | 8 +- .../apache/sis/image/privy/SampleModelBuilder.java | 35 ++- .../org/apache/sis/image/BandSelectImageTest.java | 2 +- .../apache/sis/image/privy/ImageUtilitiesTest.java | 16 +- .../sis/image/privy/SampleModelBuilderTest.java | 22 +- .../org/apache/sis/storage/geotiff/DataSubset.java | 2 +- .../sis/storage/geotiff/ImageFileDirectory.java | 9 +- .../org/apache/sis/io/stream/ChannelDataInput.java | 174 ++++++------ .../org/apache/sis/io/stream/DataTransfer.java | 28 +- .../apache/sis/io/stream/HyperRectangleReader.java | 28 +- .../apache/sis/io/stream/MemoryDataTransfer.java | 22 +- .../main/org/apache/sis/io/stream/Region.java | 13 +- .../org/apache/sis/storage/AbstractResource.java | 10 +- .../org/apache/sis/storage/StorageConnector.java | 71 +++-- .../org/apache/sis/storage/aggregate/Group.java | 22 +- .../org/apache/sis/storage/base/ArrayOfLongs.java | 86 ++++++ .../apache/sis/storage/base/TiledGridCoverage.java | 27 +- .../org/apache/sis/storage/esri/RasterStore.java | 2 +- .../apache/sis/storage/esri/RawRasterReader.java | 20 +- .../apache/sis/storage/esri/RawRasterStore.java | 16 +- .../sis/io/stream/HyperRectangleReaderTest.java | 10 +- .../apache/sis/storage/StorageConnectorTest.java | 16 ++ .../main/org/apache/sis/util/privy/Numerics.java | 19 ++ .../org/apache/sis/pending/jdk/JDK18Test.java} | 28 +- .../org/apache/sis/util/privy/NumericsTest.java | 26 +- .../org/apache/sis/storage/gdal/TiledResource.java | 2 +- 31 files changed, 716 insertions(+), 352 deletions(-) create mode 100644 endorsed/src/org.apache.sis.storage/main/org/apache/sis/storage/base/ArrayOfLongs.java copy endorsed/src/{org.apache.sis.metadata/test/org/apache/sis/metadata/iso/identification/DefaultKeywordsTest.java => org.apache.sis.util/test/org/apache/sis/pending/jdk/JDK18Test.java} (61%)