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 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.
new 1112c88a0c Remove `ReferencingUtilities.builder(…)`, replaced by
direct uses of `ParameterizedTransformBuilder`.
new 973019be6b Reduce usage of deprecated methods, and consolidation.
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:
.../org/apache/sis/io/wkt/MathTransformParser.java | 11 +-
.../sis/referencing/MultiRegisterOperations.java | 2 +-
.../referencing/factory/IdentifiedObjectSet.java | 5 +-
.../referencing/factory/sql/EPSGDataAccess.java | 12 ++-
.../internal/ParameterizedTransformBuilder.java | 95 +++++++++++-------
.../operation/AbstractSingleOperation.java | 11 +-
.../operation/CoordinateOperationFinder.java | 2 +-
.../operation/CoordinateOperationRegistry.java | 31 +++++-
.../referencing/operation/DefaultConversion.java | 16 +--
.../DefaultCoordinateOperationFactory.java | 9 +-
.../sis/referencing/operation/package-info.java | 14 ---
.../operation/projection/NormalizedProjection.java | 3 +-
.../CoordinateSystemTransformBuilder.java | 29 +-----
.../transform/DefaultMathTransformFactory.java | 102 +++++--------------
.../operation/transform/MathTransformBuilder.java | 111 +++++++++++++++++++++
.../referencing/privy/ReferencingUtilities.java | 37 -------
.../projection/MapProjectionTestCase.java | 3 +-
.../transform/MathTransformFactoryMock.java | 51 +++++++---
.../apache/sis/util/privy/MetadataServices.java | 2 +-
geoapi/snapshot | 2 +-
20 files changed, 302 insertions(+), 246 deletions(-)
create mode 100644
endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/operation/transform/MathTransformBuilder.java