From commits-return-13509-apmail-sis-commits-archive=sis.apache.org@sis.apache.org Mon Apr 27 21:10:58 2020 Return-Path: X-Original-To: apmail-sis-commits-archive@www.apache.org Delivered-To: apmail-sis-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id C231519D66 for ; Mon, 27 Apr 2020 21:10:57 +0000 (UTC) Received: (qmail 76179 invoked by uid 500); 27 Apr 2020 21:10:57 -0000 Delivered-To: apmail-sis-commits-archive@sis.apache.org Received: (qmail 76149 invoked by uid 500); 27 Apr 2020 21:10:57 -0000 Mailing-List: contact commits-help@sis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sis-dev@sis.apache.org Delivered-To: mailing list commits@sis.apache.org Received: (qmail 76140 invoked by uid 99); 27 Apr 2020 21:10:57 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2020 21:10:57 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id C8430890A9; Mon, 27 Apr 2020 21:10:56 +0000 (UTC) Date: Mon, 27 Apr 2020 21:10:56 +0000 To: "commits@sis.apache.org" Subject: [sis] branch geoapi-4.0 updated (e474c3d -> b44873a) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158802185605.25793.8777252252159851562@gitbox.apache.org> From: desruisseaux@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: sis X-Git-Refname: refs/heads/geoapi-4.0 X-Git-Reftype: branch X-Git-Oldrev: e474c3dde5b8835132471e2974c92d9dce7658e0 X-Git-Newrev: b44873a08fd4c02c8092d97c9ab9d8d9964218c4 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 e474c3d Replace a NullPointerException (at `build()` invocation time) by a more explicit exception thrown earlier. new f9f9e2b Add missing serial version. new b44873a Initial implementation of Cassini-Soldner projection written from EPSG formulas. This commit provides a direct, non-optimized implementation with almost verbatim copy of formulas published in: 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/geometry/CoordinateFormat.java | 2 +- .../{Polyconic.java => CassiniSoldner.java} | 68 ++++---- .../operation/projection/CassiniSoldner.java | 176 +++++++++++++++++++++ ...g.opengis.referencing.operation.OperationMethod | 1 + .../referencing/provider/ProvidersTest.java | 1 + 5 files changed, 217 insertions(+), 31 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