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 962eba9 Portrayal : add MapLayer.opacity property and
MapItem.getEnvelope method
new b239be0 Minor simplification in array creation, and checkstyle fix.
new e11eee1 Implement parallel (multi-threaded) computation of isolines.
new cfd1379 Enable parallel execution of isoline computation in JavaFX
viewer.
new 5ac3ea3 Increase minimal tile size for isoline computation, because
our algorithm operates better on large tiles.
The 4 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/gui/coverage/CoverageCanvas.java | 15 +-
.../apache/sis/gui/coverage/IsolineRenderer.java | 51 ++-
.../org/apache/sis/gui/coverage/RenderingData.java | 11 +-
.../sis/internal/feature/j2d/PathBuilder.java | 22 +-
.../internal/processing/image/CompoundFuture.java | 202 +++++++++++
.../internal/processing/image/IsolineTracer.java | 102 +++++-
.../sis/internal/processing/image/Isolines.java | 191 ++++++++--
.../internal/processing/image/TiledProcess.java | 394 +++++++++++++++++++++
.../apache/sis/util/collection/WeakHashSet.java | 12 +-
.../sis/util/collection/WeakValueHashMap.java | 13 +-
.../test/java/org/apache/sis/util/ClassesTest.java | 2 +-
11 files changed, 933 insertions(+), 82 deletions(-)
create mode 100644
core/sis-feature/src/main/java/org/apache/sis/internal/processing/image/CompoundFuture.java
create mode 100644
core/sis-feature/src/main/java/org/apache/sis/internal/processing/image/TiledProcess.java