This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git
from 7eee5e5401 Test warning by registering a listener instead of watching
the logger.
new ac5b23c3f8 feat(Geometry): implement several geometry types
new e88cd848af feat(GML): add GML geometry bindings
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:
.../main/module-info.java | 1 +
.../org.apache.sis.geometry/main/module-info.java | 7 +
.../org/apache/sis/geometries/CompoundCurve.java | 86 +-
.../org/apache/sis/geometries/GeometryFactory.java | 111 ++
.../org/apache/sis/geometries/GeometryVisitor.java | 2 +-
.../org/apache/sis/geometries/MultiSurface.java | 9 +-
.../main/org/apache/sis/geometries/Orientable.java | 11 +-
.../main/org/apache/sis/geometries/Polyhedron.java | 2 +-
.../main/org/apache/sis/geometries/Solid.java | 36 +-
.../sis/geometries/conics/CircularString.java | 76 +-
.../internal/shared/AbstractGeometry.java | 30 +
.../internal/shared/DefaultCircularString.java | 65 ++
.../internal/shared/DefaultCompoundCurve.java | 106 ++
...efaultPolygon.java => DefaultCurvePolygon.java} | 57 +-
.../internal/shared/DefaultGeometryCollection.java | 25 +-
.../internal/shared/DefaultMultiCurve.java | 28 +-
.../internal/shared/DefaultMultiLineString.java | 5 +
.../internal/shared/DefaultMultiPolygon.java | 5 +
...LineString.java => DefaultMultiPolyhedron.java} | 25 +-
.../internal/shared/DefaultMultiSurface.java | 33 +-
.../internal/shared/DefaultPolyhedralSurface.java | 107 ++
.../internal/shared/DefaultPolyhedron.java | 137 +++
.../internal/shared/DefaultRawMultiPoint.java | 28 +-
.../internal/shared/DefaultReversedCurve.java | 132 +++
.../internal/shared/DefaultReversedSurface.java | 107 ++
...iCurve.java => DefaultTriangulatedSurface.java} | 40 +-
.../main/org/apache/sis/gml/AbstractGMLReader.java | 421 +++++++
.../main/org/apache/sis/gml/AbstractGMLWriter.java | 277 +++++
.../org/apache/sis/gml/DOMXMLStreamReader.java | 698 ++++++++++++
.../main/org/apache/sis/gml/GML2Reader.java | 387 +++++++
.../main/org/apache/sis/gml/GML2Tags.java | 73 ++
.../main/org/apache/sis/gml/GML2Writer.java | 268 +++++
.../main/org/apache/sis/gml/GML3Reader.java | 1184 ++++++++++++++++++++
.../main/org/apache/sis/gml/GML3Tags.java | 109 ++
.../main/org/apache/sis/gml/GML3Writer.java | 488 ++++++++
.../main/org/apache/sis/gml/GMLCRS.java | 187 ++++
.../main/org/apache/sis/gml/GMLGeometryReader.java | 45 +
.../main/org/apache/sis/gml/GMLGeometryWriter.java | 61 +
.../main/org/apache/sis/gml/GMLReader.java | 147 +++
.../main/org/apache/sis/gml/GMLVersion.java} | 20 +-
.../main/org/apache/sis/gml/GMLWriter.java | 122 ++
.../org/apache/sis/gml/JAXBGeometryAdapter.java | 103 ++
.../org/apache/sis/gml/PositionListBuilder.java | 187 ++++
.../main/org/apache/sis/gml}/package-info.java | 7 +-
.../test/org/apache/sis/gml/2/box.gml | 4 +
.../test/org/apache/sis/gml/2/linearring.gml | 4 +
.../test/org/apache/sis/gml/2/linestring.gml | 4 +
.../test/org/apache/sis/gml/2/linestring_coord.gml | 6 +
.../test/org/apache/sis/gml/2/multigeometry.gml | 13 +
.../test/org/apache/sis/gml/2/multilinestring.gml | 13 +
.../test/org/apache/sis/gml/2/multipoint.gml | 13 +
.../test/org/apache/sis/gml/2/multipolygon.gml | 21 +
.../test/org/apache/sis/gml/2/no_namespace.gml | 4 +
.../test/org/apache/sis/gml/2/point.gml | 4 +
.../test/org/apache/sis/gml/2/point_coord.gml | 7 +
.../test/org/apache/sis/gml/2/polygon.gml | 13 +
.../test/org/apache/sis/gml/3/compositecurve.gml | 8 +
.../test/org/apache/sis/gml/3/compositesolid.gml | 10 +
.../test/org/apache/sis/gml/3/compositesurface.gml | 12 +
.../test/org/apache/sis/gml/3/curve.gml | 8 +
.../test/org/apache/sis/gml/3/curve_arc.gml | 8 +
.../test/org/apache/sis/gml/3/envelope.gml | 5 +
.../test/org/apache/sis/gml/3/linearring.gml | 4 +
.../org/apache/sis/gml/3/linestring_poslist.gml | 4 +
.../test/org/apache/sis/gml/3/multicurve.gml | 13 +
.../test/org/apache/sis/gml/3/multigeometry.gml | 13 +
.../test/org/apache/sis/gml/3/multipoint.gml | 13 +
.../apache/sis/gml/3/multipoint_pointmembers.gml | 11 +
.../test/org/apache/sis/gml/3/multisurface.gml | 21 +
.../test/org/apache/sis/gml/3/orientablecurve.gml | 8 +
.../org/apache/sis/gml/3/orientablesurface.gml | 12 +
.../test/org/apache/sis/gml/3/point.gml | 4 +
.../test/org/apache/sis/gml/3/polygon_exterior.gml | 13 +
.../test/org/apache/sis/gml/3/ring.gml | 12 +
.../test/org/apache/sis/gml/3/solid.gml | 16 +
.../test/org/apache/sis/gml/3/surface.gml | 12 +
.../gml/3/tolerance_legacy_style_new_namespace.gml | 8 +
.../gml/3/tolerance_new_style_old_namespace.gml | 4 +
.../org/apache/sis/gml/DOMXMLStreamReaderTest.java | 221 ++++
.../org/apache/sis/gml}/DocumentComparator.java | 8 +-
.../test/org/apache/sis/gml/GML2ReaderTest.java | 339 ++++++
.../test/org/apache/sis/gml/GML2WriterTest.java | 220 ++++
.../test/org/apache/sis/gml/GML3ReaderTest.java | 658 +++++++++++
.../test/org/apache/sis/gml/GML3WriterTest.java | 386 +++++++
.../test/org/apache/sis/gml/GMLReaderTest.java | 126 +++
.../test/org/apache/sis/gml/GMLWriterTest.java | 82 ++
.../test/org/apache/sis/gml/GeometryAssert.java | 147 +++
.../apache/sis/gml/JAXBGeometryAdapterTest.java | 195 ++++
.../test/org/apache/sis/gml/TestCase.java | 129 +++
.../test/org/apache/sis/gml/TestData.java | 105 ++
90 files changed, 8825 insertions(+), 171 deletions(-)
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultCircularString.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultCompoundCurve.java
copy
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/{DefaultPolygon.java
=> DefaultCurvePolygon.java} (62%)
copy
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/{DefaultLineString.java
=> DefaultMultiPolyhedron.java} (60%)
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultPolyhedralSurface.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultPolyhedron.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultReversedCurve.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultReversedSurface.java
copy
incubator/src/org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/{DefaultMultiCurve.java
=> DefaultTriangulatedSurface.java} (56%)
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/AbstractGMLReader.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/AbstractGMLWriter.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/DOMXMLStreamReader.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML2Reader.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML2Tags.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML2Writer.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML3Reader.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML3Tags.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GML3Writer.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GMLCRS.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GMLGeometryReader.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GMLGeometryWriter.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GMLReader.java
copy incubator/src/{org.apache.sis.cql/main/module-info.java =>
org.apache.sis.geometry/main/org/apache/sis/gml/GMLVersion.java} (70%)
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/GMLWriter.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/JAXBGeometryAdapter.java
create mode 100644
incubator/src/org.apache.sis.geometry/main/org/apache/sis/gml/PositionListBuilder.java
copy
incubator/src/{org.apache.sis.storage.json/main/org/apache/sis/storage/coveragejson
=> org.apache.sis.geometry/main/org/apache/sis/gml}/package-info.java (86%)
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/box.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/linearring.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/linestring.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/linestring_coord.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/multigeometry.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/multilinestring.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/multipoint.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/multipolygon.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/no_namespace.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/point.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/point_coord.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/2/polygon.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/compositecurve.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/compositesolid.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/compositesurface.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/curve.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/curve_arc.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/envelope.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/linearring.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/linestring_poslist.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/multicurve.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/multigeometry.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/multipoint.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/multipoint_pointmembers.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/multisurface.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/orientablecurve.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/orientablesurface.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/point.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/polygon_exterior.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/ring.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/solid.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/surface.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/tolerance_legacy_style_new_namespace.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/3/tolerance_new_style_old_namespace.gml
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/DOMXMLStreamReaderTest.java
copy {endorsed/src/org.apache.sis.metadata/test/org/apache/sis/xml/test =>
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml}/DocumentComparator.java
(99%)
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GML2ReaderTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GML2WriterTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GML3ReaderTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GML3WriterTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GMLReaderTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GMLWriterTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/GeometryAssert.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/JAXBGeometryAdapterTest.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/TestCase.java
create mode 100644
incubator/src/org.apache.sis.geometry/test/org/apache/sis/gml/TestData.java