This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch geoapi-3.1
in repository https://gitbox.apache.org/repos/asf/sis.git
from 4589e86bfb Merge of automatic reorganization of imports order.
add 11a7a3936f Fix an exception when showing pixel coordinates of a 3D
image in the JavaFX application. Also fix misleading direction symbols and
adjust some documentation. The pixel coordinates are needed at least for
debugging.
add 6988814b79 Avoid an `IllegalGridGeometryException` when a pyramid
contains no "grid to CRS" transform.
add 681836128c Add a way to create an `EngineeringCRS` for a grid geometry
which contains only an extent.
add 9ead214688 Fix the interleave type of RGB profile in HEIF files.
add 5b82429ee8 When computing the sub-region to read from a large untiled
raster, pixel coordinates need to be converted to sample value coordinates.
This conversion was done in TIFF reader but missing in HEIF reader. Since the
conversion is not obvious, add a helper `Builder` class.
add ccd08e213e Fix a wrong handling of subsampling in the HEIF reader.
add 3c5edfa91e Make possible to use a pyramided TIFF image even if there
is no "grid to CRS" transform.
add cc658331f7 Consolidate the use of default resolution in a new
`GridGeometry.defaultToGridCRS(Identifier)` method. The goal is to handle
missing "grid to CRS" transform in a way which is consistent between TIFF and
HEIF.
add 5df73a7e8f If the `gridToCRS` transform is not available, fallback on
resolution. This commit uses the information provided by the previous commit.
add b87ed440db Fix the notification of tile read events which was lost
after the image to show changed. Fix the display of pixel values which was
broken when the coverage has no CRS.
new efcc2b768f Merge branch 'geoapi-4.0' into geoapi-3.1.
The 1 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/coverage/grid/DefaultEvaluator.java | 27 +++-
.../apache/sis/coverage/grid/GridCRSBuilder.java | 43 ++++--
.../apache/sis/coverage/grid/GridDerivation.java | 88 ++++++++---
.../org/apache/sis/coverage/grid/GridExtent.java | 33 +++-
.../org/apache/sis/coverage/grid/GridGeometry.java | 79 +++++++---
.../grid/IncompleteGridGeometryException.java | 8 +-
.../sis/coverage/grid/ResampledGridCoverage.java | 2 +-
.../sis/coverage/grid/TranslatedTransform.java | 3 +-
.../main/org/apache/sis/image/ComputedImage.java | 1 +
.../image/internal/shared/BatchComputedImage.java | 5 +-
.../image/internal/shared/SampleModelBuilder.java | 5 +-
.../sis/coverage/grid/GridDerivationTest.java | 36 ++++-
.../org/apache/sis/map/coverage/RenderingData.java | 14 +-
.../org/apache/sis/geometry/CoordinateFormat.java | 6 +-
.../main/org/apache/sis/geometry/package-info.java | 2 +-
.../apache/sis/referencing/NamedIdentifier.java | 6 +-
.../sis/storage/geotiff/ImageFileDirectory.java | 10 +-
.../apache/sis/storage/geotiff/reader/Type.java | 3 +-
.../sis/storage/geotiff/inflater/CCITTRLETest.java | 1 +
.../apache/sis/io/stream/HyperRectangleWriter.java | 14 +-
.../main/org/apache/sis/io/stream/Region.java | 171 ++++++++++++++++++++-
.../org/apache/sis/storage/internal/Resources.java | 5 +
.../sis/storage/internal/Resources.properties | 1 +
.../sis/storage/internal/Resources_fr.properties | 1 +
.../apache/sis/storage/tiling/TileReadEvent.java | 21 ++-
.../sis/storage/tiling/TiledGridCoverage.java | 42 ++++-
.../main/org/apache/sis/util/ArraysExt.java | 20 ++-
.../main/org/apache/sis/storage/geoheif/Image.java | 2 +-
.../apache/sis/storage/geoheif/ImageResource.java | 38 ++++-
.../org/apache/sis/storage/geoheif/Pyramid.java | 25 +--
.../sis/storage/geoheif/UncompressedImage.java | 53 +++----
.../isobmff/mpeg/UncompressedFrameConfig.java | 7 +-
.../apache/sis/gui/coverage/CoverageCanvas.java | 9 +-
.../apache/sis/gui/coverage/StyleController.java | 2 +-
.../org/apache/sis/gui/map/OperationFinder.java | 2 +-
.../org/apache/sis/gui/map/ValuesFormatter.java | 4 +-
.../org/apache/sis/gui/map/ValuesUnderCursor.java | 23 ++-
.../org/apache/sis/gui/referencing/MenuSync.java | 7 +-
.../gui/referencing/RecentReferenceSystems.java | 10 +-
.../main/org/apache/sis/gui/referencing/Utils.java | 2 +
40 files changed, 655 insertions(+), 176 deletions(-)