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 09243ef Merge branch 'fix/mask-image-is-back' into geoapi-4.0 new 42f40fa Remove a hack which is not needed anymore when building with Java 17. new b6f2655 Dissociate the process loading data in `GridView` and `CoverageCanvas`. Previous version was systematically loading data in `GridView` (even if it was not visible) then gave the `GridCoverage` reference to `CoverageCanvas` in order to load data only once. This new version loads data independently; we will rely more on `DataStore` resource caching. This separation is needed because `GridView` and `CoverageCanvas` will not load the same data anymore after we take pyramid i [...] The 2 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: .../sis/gui/coverage/BandSelectionListener.java | 16 +- .../org/apache/sis/gui/coverage/CellFormat.java | 6 +- .../apache/sis/gui/coverage/CoverageControls.java | 192 ++++++++------------- .../apache/sis/gui/coverage/CoverageExplorer.java | 123 +++++++------ .../org/apache/sis/gui/coverage/GridControls.java | 47 ++--- .../java/org/apache/sis/gui/coverage/GridView.java | 138 +++++++-------- .../org/apache/sis/gui/coverage/ImageRequest.java | 121 +++++++------ .../sis/gui/coverage/InterpolationConverter.java | 112 ++++++++++++ .../sis/gui/coverage/PropertyPaneCreator.java | 65 +++++++ .../apache/sis/gui/coverage/ViewAndControls.java | 39 +++-- .../apache/sis/gui/dataset/ResourceExplorer.java | 185 ++++++++++---------- .../org/apache/sis/gui/dataset/SelectedData.java | 7 +- .../org/apache/sis/gui/dataset/WindowManager.java | 2 +- .../apache/sis/gui/metadata/MetadataSummary.java | 1 - core/sis-build-helper/pom.xml | 10 +- .../org/apache/sis/internal/doclet/Doclet.java | 36 +--- .../org/apache/sis/internal/doclet/Taglet.java | 6 +- .../apache/sis/internal/doclet/package-info.java | 2 +- 18 files changed, 619 insertions(+), 489 deletions(-) create mode 100644 application/sis-javafx/src/main/java/org/apache/sis/gui/coverage/InterpolationConverter.java create mode 100644 application/sis-javafx/src/main/java/org/apache/sis/gui/coverage/PropertyPaneCreator.java