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 0de784f0e4 Reorganize import statements with a better separation of test dependencies. new f7dabc89f1 Replace `api` dependency to Glassfish by a pair of `compileOnly` and `runtimeOnly`. The intend is to avoid that this dependency appears in Maven pom files. new b12a8b466a Add `ImageOutputStream` support in `StorageConnector`. new 313bfa0ac1 Add compression support for GeoTIFF. Only "Deflate" is supported for now. 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: endorsed/build.gradle.kts | 3 +- .../main/module-info.java | 2 +- .../apache/sis/storage/geotiff/Compression.java | 155 +++++++++++++++++++++ .../apache/sis/storage/geotiff/GeoTiffStore.java | 17 ++- .../sis/storage/geotiff/GeoTiffStoreProvider.java | 12 +- .../org/apache/sis/storage/geotiff/Writer.java | 18 ++- .../sis/storage/geotiff/base/Compression.java | 2 +- .../storage/geotiff/writer/CompressionChannel.java | 84 +++++++++++ .../sis/storage/geotiff/writer/TileMatrix.java | 102 ++++++++++---- .../org/apache/sis/storage/geotiff/writer/ZIP.java | 102 ++++++++++++++ .../org/apache/sis/storage/geotiff/WriterTest.java | 1 + .../apache/sis/io/stream/ChannelDataOutput.java | 10 ++ .../sis/io/stream/ChannelImageOutputStream.java | 14 ++ .../org/apache/sis/storage/StorageConnector.java | 109 ++++++++++----- .../org/apache/sis/util/resources/Vocabulary.java | 5 + .../sis/util/resources/Vocabulary.properties | 1 + .../sis/util/resources/Vocabulary_fr.properties | 1 + 17 files changed, 567 insertions(+), 71 deletions(-) create mode 100644 endorsed/src/org.apache.sis.storage.geotiff/main/org/apache/sis/storage/geotiff/Compression.java create mode 100644 endorsed/src/org.apache.sis.storage.geotiff/main/org/apache/sis/storage/geotiff/writer/CompressionChannel.java create mode 100644 endorsed/src/org.apache.sis.storage.geotiff/main/org/apache/sis/storage/geotiff/writer/ZIP.java