This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/sis-site.git
commit 9e64bdcfb11d47e8537744d7e1fc45452e617e75 Author: Martin Desruisseaux <[email protected]> AuthorDate: Mon Dec 26 23:30:24 2022 +0100 Said that SIS can use "http ranges" when reading TIFF files. --- content/formats.md | 8 +++++++- static/templates/release-announce.html | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/content/formats.md b/content/formats.md index f91f1aaa..b88daca2 100644 --- a/content/formats.md +++ b/content/formats.md @@ -117,7 +117,13 @@ See the [SIS developer guide](book/en/developer-guide.html#DataAccess) for more # Accessing data on the cloud -Data files can be located on Amazon S3 storage service. +Most above-cited formats can be read from an HTTP connection. +If the server supports HTTP ranges and if the data file is tiled +(such as Cloud Optimized GeoTIFF), +Apache SIS will try to minimize the amount of bytes downloaded. +HTTP is supported by the base SIS storage modules with no need for additional dependencies. + +Data files can also be located on Amazon S3 storage service. For accessing those data, add the following dependency to the Maven project: {{< highlight xml >}} diff --git a/static/templates/release-announce.html b/static/templates/release-announce.html index d97b2982..368eec76 100644 --- a/static/templates/release-announce.html +++ b/static/templates/release-announce.html @@ -27,6 +27,7 @@ <ul> <li>Read netCDF-3, Cloud Optimized GeoTIFF (including BigTIFF) and Moving Feature CSV data formats</li> <li>Read/write GPX, ASCII Grid, World File, ISO 19115-3 metadata and legacy ISO 19139 compliant XML documents</li> + <li>Leverage Cloud Optimized formats (GeoTIFF) for smaller downloads from HTTP and Amazon S3 storage service</li> <li>Referencing by coordinates (ISO 19111) or by identifiers (ISO 19112)<ul> <li>Well Known Text (WKT) version 1 and 2 (ISO 19162)</li> <li>Geographic Markup Language (GML) version 3.2 (ISO 19136)</li>
