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 d8b9343 Move some metadata fields in a separated `ImageMetadataBuilder` class. The goal is to make their life cycle more visible, especially `XMLMetadata` which causes confusing metadata tree if not merged last. new afc247a Add a `Citations.WMO` constant for the World Meteorological Organization. new 9dde363 Provide a way to alter parameter values of inverse operation in a call to `ContextualParameters.inverse(…)`. new 33d5d46 Add "Rotated Latitude/Longitude" coordinate operation. The 3 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: .../sis/metadata/iso/citation/Citations.java | 14 +- .../sis/metadata/iso/citation/package-info.java | 2 +- .../apache/sis/metadata/sql/MetadataFallback.java | 9 +- .../org/apache/sis/metadata/sql/Citations.sql | 9 +- .../referencing/provider/RotatedNorthPole.java | 150 +++++++++ .../referencing/provider/RotatedSouthPole.java | 154 +++++++++ .../referencing/provider/package-info.java | 2 +- .../operation/transform/ContextualParameters.java | 107 ++++-- .../transform/CoordinateSystemTransform.java | 2 +- .../transform/EllipsoidToCentricTransform.java | 6 +- .../operation/transform/RotatedPole.java | 357 +++++++++++++++++++++ .../operation/transform/package-info.java | 2 +- ...g.opengis.referencing.operation.OperationMethod | 2 + .../referencing/provider/ProvidersTest.java | 4 +- .../operation/transform/RotatedPoleTest.java | 118 +++++++ .../sis/test/suite/ReferencingTestSuite.java | 1 + 16 files changed, 897 insertions(+), 42 deletions(-) create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/RotatedNorthPole.java create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/RotatedSouthPole.java create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/RotatedPole.java create mode 100644 core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/transform/RotatedPoleTest.java