This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch geoapi-3.1 in repository https://gitbox.apache.org/repos/asf/sis.git
from 1930d30455 Make consistent with the `main` branch. add 9870dfe9a1 Add hard override of CRS:84 WKT in shapefile prj until we find the problematic WKT element preventing loading in other tools add 114689a6d6 Use Uppercase field type notation in DBF, much better understood by other tools add 02e6ffe626 Add an implementation of `RegisterOperations` (a new interface added in ISO 19111:2019). add 3a6d0acf80 Deprecate `DefaultMathTransformFactory.createParameterizedTransform(ParameterValueGroup, Context)`. This is replaced by a builder. add c00f0421df Refactor the code doing the change of coordinate system (a component of CRS). The `DefaultMathTransformFactory.createCoordinateSystemChange(…)` method is deprecated, replaced by a "Coordinate system conversion" operation understood by the new builder. The builder has been refactored as a separated `ParameterizedTransformBuilder` class. add 1112c88a0c Remove `ReferencingUtilities.builder(…)`, replaced by direct uses of `ParameterizedTransformBuilder`. add 973019be6b Reduce usage of deprecated methods, and consolidation. new eb43834def Merge branch 'geoapi-4.0' into geoapi-3.1: - Implementation of RegisterOperations. - Refactoring of DefaultMathTransformFactory. - Fixes in Shapefile reader (incubator). The 1 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: .../geometry/wrapper/SpatialOperationContext.java | 4 +- .../org/apache/sis/util/iso/AbstractFactory.java | 22 +- .../main/module-info.java | 3 + .../org/apache/sis/io/wkt/MathTransformParser.java | 11 +- .../org/apache/sis/parameter/TensorParameters.java | 12 +- .../main/org/apache/sis/referencing/CRS.java | 3 +- .../sis/referencing/MultiRegisterOperations.java | 445 ++++++++++ .../referencing/factory/IdentifiedObjectSet.java | 5 +- .../factory/MultiAuthoritiesFactory.java | 22 +- .../referencing/factory/sql/EPSGDataAccess.java | 11 +- .../internal/ParameterizedTransformBuilder.java | 880 +++++++++++++++++++ .../operation/AbstractSingleOperation.java | 11 +- .../operation/CoordinateOperationFinder.java | 44 +- .../operation/CoordinateOperationRegistry.java | 82 +- .../operation/DefaultConcatenatedOperation.java | 13 +- .../referencing/operation/DefaultConversion.java | 74 +- .../DefaultCoordinateOperationFactory.java | 26 +- .../operation/LooselyDefinedMethod.java | 3 - .../operation/MathTransformContext.java | 68 +- .../sis/referencing/operation/package-info.java | 14 - .../operation/projection/NormalizedProjection.java | 3 +- .../operation/projection/package-info.java | 5 +- .../operation/provider/AbstractProvider.java | 2 +- .../operation/provider/GeographicToGeocentric.java | 7 +- .../transform/CoordinateSystemTransform.java | 153 +--- .../CoordinateSystemTransformBuilder.java | 255 ++++++ .../transform/DefaultMathTransformFactory.java | 954 +++++---------------- .../operation/transform/MathTransformBuilder.java | 111 +++ .../operation/transform/MathTransformProvider.java | 61 ++ .../referencing/privy/CoordinateOperations.java | 85 +- .../privy/ReferencingFactoryContainer.java | 9 +- .../referencing/privy/ReferencingUtilities.java | 59 -- .../factory/GeodeticObjectFactoryTest.java | 18 +- .../referencing/geoapi/AuthorityFactoryTest.java | 3 +- .../ParameterizedTransformBuilderTest.java | 116 +++ .../projection/MapProjectionTestCase.java | 3 +- .../operation/provider/GeographicOffsetsTest.java | 13 +- .../transform/CoordinateSystemTransformTest.java | 42 +- .../transform/DefaultMathTransformFactoryTest.java | 70 -- .../transform/MathTransformFactoryBase.java | 8 + .../transform/MathTransformFactoryMock.java | 42 +- .../main/org/apache/sis/util/privy/Constants.java | 5 + geoapi/snapshot | 2 +- .../sis/storage/shapefile/ShapefileStore.java | 27 +- .../apache/sis/storage/shapefile/dbf/DBFField.java | 22 +- 45 files changed, 2516 insertions(+), 1312 deletions(-) create mode 100644 endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/MultiRegisterOperations.java create mode 100644 endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/internal/ParameterizedTransformBuilder.java create mode 100644 endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/operation/transform/CoordinateSystemTransformBuilder.java create mode 100644 endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/operation/transform/MathTransformBuilder.java create mode 100644 endorsed/src/org.apache.sis.referencing/test/org/apache/sis/referencing/internal/ParameterizedTransformBuilderTest.java