This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sis.git.
from fd8015a Implement "Modified Azimuthal Equidistant" projection method (without derivative
for now). https://issues.apache.org/jira/browse/SIS-237
new 38d2165 Fix name of a renamed field.
new b2b99c3 Deprecate a method which is not used in practice and cause compatibility
problem with JDK 14.
new f2e8a22 Merge the implementation of Cassini-Soldner projection from "geoapi-4.0"
development branch. JIRA: https://issues.apache.org/jira/browse/SIS-218 IP-review: https://svn.apache.org/repos/asf/sis/ip-review/CassiniSoldner.html
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:
.../{Polyconic.java => CassiniSoldner.java} | 68 ++---
.../operation/builder/LocalizationGridBuilder.java | 2 +-
.../operation/projection/CassiniSoldner.java | 287 +++++++++++++++++++++
...g.opengis.referencing.operation.OperationMethod | 1 +
.../referencing/provider/ProvidersTest.java | 1 +
.../operation/projection/CassiniSoldnerTest.java | 149 +++++++++++
.../transform/MathTransformFactoryMock.java | 2 +-
.../sis/test/suite/ReferencingTestSuite.java | 1 +
.../main/java/org/apache/sis/util/Characters.java | 12 +-
.../java/org/apache/sis/util/CharactersTest.java | 27 +-
10 files changed, 489 insertions(+), 61 deletions(-)
copy core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/{Polyconic.java
=> CassiniSoldner.java} (74%)
create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/projection/CassiniSoldner.java
create mode 100644 core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/projection/CassiniSoldnerTest.java
|