This is an automated email from the ASF dual-hosted git repository.
alexismanin pushed a change to branch fix/image-tile-matrix-get-tile
in repository https://gitbox.apache.org/repos/asf/sis.git
discard c99b7c431e fix(Image): fix ReshapedImage.singleTile to strictly return
the designated tile, and only this tile.
discard 08b1e097d7 fix(Storage): Properly handle user "getTiles" requests when
requesting multidimensional extents
discard 62bbf09a54 chore(Storage): improve ImageTileMatrix test to verify
multiple ways to acquire tiles
discard a0449bf1b4 fix(Storage): Fix ImageTileMatrix tile indices to work with
slices in N dimensions.
discard 90837fcefb test(Storage): add a test that shows a bug in
ImageTileMatrix when trying to get the resource of a 3D tile
discard 5297d25a3c chore(Build): ugrade Gradle wrapper to 8.14.4 to allow
building with JDK 24
add bfc9eed9b6 Replace some usages of `ReadOnlyObjectWrapper` by
`SimpleObjectProperty` in places where the read-only aspect of the property was
not really used.
add 16a4b9549e Show summary of GeoHEIF box when the tree node is
collapsed. Navigation among HEIF boxes is not easy, so we are trying to help.
add 0ab3a59500 Minor refactoring of the `PropertyFormat` internal class
for making it more convenient to extend.
add 130aab7172 Apply to ISO-19115 metadata the same mechanism used by
GeoHEIF for summarizing metadata.
new c8e75db2e8 chore(Build): ugrade Gradle wrapper to 8.14.4 to allow
building with JDK 24
new a3b5fc9d28 test(Storage): add a test that shows a bug in
ImageTileMatrix when trying to get the resource of a 3D tile
new c773e2ca4d fix(Storage): Fix ImageTileMatrix tile indices to work with
slices in N dimensions.
new 0b70760026 chore(Storage): improve ImageTileMatrix test to verify
multiple ways to acquire tiles
new 180ee38a6a fix(Storage): Properly handle user "getTiles" requests when
requesting multidimensional extents
new 1d55e786a1 fix(Image): fix ReshapedImage.singleTile to strictly return
the designated tile, and only this tile.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (c99b7c431e)
\
N -- N -- N refs/heads/fix/image-tile-matrix-get-tile
(1d55e786a1)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 6 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:
.../org/apache/sis/metadata/MetadataStandard.java | 2 +-
.../org/apache/sis/metadata/TitleProperty.java | 2 +-
.../main/org/apache/sis/metadata/TreeNode.java | 6 +-
.../org/apache/sis/metadata/TreeNodeChildren.java | 35 +-
.../org/apache/sis/metadata/TreeTableView.java | 14 +-
.../apache/sis/metadata/ValueExistencePolicy.java | 104 +++--
.../main/org/apache/sis/metadata/package-info.java | 2 +-
.../main/org/apache/sis/xml/bind/gcx/Anchor.java | 9 +-
.../apache/sis/metadata/TreeNodeChildrenTest.java | 14 +-
.../test/org/apache/sis/metadata/TreeNodeTest.java | 11 +-
.../org/apache/sis/metadata/TreeTableViewTest.java | 3 +-
.../apache/sis/storage/metadata/NodeSummary.java | 59 +++
.../main/org/apache/sis/io/CompoundFormat.java | 77 ++--
.../main/org/apache/sis/io/LineAppender.java | 6 +-
.../main/org/apache/sis/math/StatisticsFormat.java | 14 +-
.../sis/util/AbstractInternationalString.java | 22 +-
.../sis/util/collection/TreeTableFormat.java | 27 ++
.../sis/util/internal/shared/PropertyFormat.java | 74 ++--
.../sis/util/internal/shared/TreeTableForGUI.java | 42 ++
.../apache/sis/storage/geoheif/GeoHeifStore.java | 2 +-
.../org/apache/sis/storage/isobmff/Extension.java | 10 +-
.../org/apache/sis/storage/isobmff/FullBox.java | 15 +-
.../org/apache/sis/storage/isobmff/Reader.java | 8 +
.../org/apache/sis/storage/isobmff/TreeNode.java | 459 ++++++++++++++-------
.../storage/isobmff/base/ColourInformation.java | 2 +-
.../sis/storage/isobmff/base/CombinaisonType.java | 2 +-
.../apache/sis/storage/isobmff/base/Copyright.java | 1 +
.../sis/storage/isobmff/base/EntityToGroup.java | 2 +
.../storage/isobmff/base/FDItemInfoExtension.java | 2 +-
.../apache/sis/storage/isobmff/base/FileType.java | 2 +-
.../sis/storage/isobmff/base/HandlerReference.java | 2 +-
.../storage/isobmff/base/IdentifiedMediaData.java | 2 +-
.../apache/sis/storage/isobmff/base/ItemInfo.java | 12 +-
.../sis/storage/isobmff/base/ItemInfoEntry.java | 7 +-
.../sis/storage/isobmff/base/ItemLocation.java | 2 +-
.../sis/storage/isobmff/base/ItemProperties.java | 22 +-
.../isobmff/base/ItemPropertyAssociation.java | 13 +-
.../sis/storage/isobmff/base/PrimaryItem.java | 2 +-
.../isobmff/base/SingleItemTypeReference.java | 2 +-
.../sis/storage/isobmff/base/TrackHeader.java | 7 +-
.../apache/sis/storage/isobmff/geo/ModelCRS.java | 3 +-
.../sis/storage/isobmff/geo/ModelTiePoint.java | 23 +-
.../isobmff/geo/TiledImageConfiguration.java | 11 +-
.../sis/storage/isobmff/image/CreationTime.java | 1 +
.../storage/isobmff/image/ModificationTime.java | 1 +
.../sis/storage/isobmff/image/UserDescription.java | 1 +
.../apache/sis/storage/isobmff/mpeg/Component.java | 1 +
.../isobmff/mpeg/UncompressedFrameConfig.java | 2 +-
.../apache/sis/gui/coverage/BandRangeTable.java | 6 +-
.../sis/gui/coverage/ImagePropertyExplorer.java | 12 +-
.../org/apache/sis/gui/dataset/FeatureTable.java | 19 +-
.../sis/gui/internal/IdentityValueFactory.java | 4 +-
.../sis/gui/internal/PropertyValueFormats.java | 4 +-
.../sis/gui/internal/PropertyValueFormatter.java | 2 +-
.../org/apache/sis/gui/metadata/MetadataTree.java | 157 ++++---
.../sis/gui/metadata/StandardMetadataTree.java | 10 +-
.../org/apache/sis/gui/metadata/package-info.java | 2 +-
57 files changed, 913 insertions(+), 445 deletions(-)
create mode 100644
endorsed/src/org.apache.sis.storage/main/org/apache/sis/storage/metadata/NodeSummary.java
create mode 100644
endorsed/src/org.apache.sis.util/main/org/apache/sis/util/internal/shared/TreeTableForGUI.java