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 617c6d0 fix(Feature): Do not fail decoding a linestring with only
three points whose first and last are the same.
new 28e8dc3 Keep the previous order of import statements for now. We will
need some mechanism for handling that automatically in the future, but for now
the intent is to reduce the risk of merge conflicts when the "geoapi-4.0"
branch will be merged to "geoapi-3.1" and "master" branches.
new e8a77fa Resolve a race condition during class initialization: a
Factory.INSTANCE field may be temporarily null during Factory class
initialization if the initialization of that class started before Geometries
class initialization.
new b2d5797 Remove empty implementations of methods that were removed
from GeoAPI-pending.
new d0c9b54 Add a window for showing data (Features in current version,
coverages in a future commit).
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:
.../main/java/org/apache/sis/gui/DataViewer.java | 34 ++--
.../org/apache/sis/gui/dataset/DataWindow.java | 83 ++++++++++
.../org/apache/sis/gui/dataset/FeatureLoader.java | 2 +-
.../org/apache/sis/gui/dataset/FeatureTable.java | 174 +++++++++++++-------
.../apache/sis/gui/dataset/ResourceExplorer.java | 183 +++++++++++++++++++--
.../org/apache/sis/gui/dataset/ResourceTree.java | 13 +-
.../org/apache/sis/gui/metadata/package-info.java | 2 +-
.../apache/sis/internal/gui/ExceptionReporter.java | 10 ++
.../org/apache/sis/internal/gui/Resources.java | 30 ++++
.../apache/sis/internal/gui/Resources.properties | 8 +-
.../sis/internal/gui/Resources_fr.properties | 10 +-
.../apache/sis/internal/feature/Geometries.java | 54 ++----
.../sis/internal/feature/GeometryFactories.java | 73 ++++++++
.../sis/internal/feature/GeometryWrapper.java | 4 -
.../apache/sis/internal/feature/jts/Factory.java | 19 +--
.../sis/internal/feature/GeometriesTestCase.java | 11 +-
16 files changed, 551 insertions(+), 159 deletions(-)
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/dataset/DataWindow.java
create mode 100644
core/sis-feature/src/main/java/org/apache/sis/internal/feature/GeometryFactories.java