From commits-return-13376-apmail-sis-commits-archive=sis.apache.org@sis.apache.org Tue Mar 17 07:45:56 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 1201E19949 for ; Tue, 17 Mar 2020 07:45:55 +0000 (UTC) Received: (qmail 9805 invoked by uid 500); 17 Mar 2020 07:45:55 -0000 Delivered-To: apmail-sis-commits-archive@sis.apache.org Received: (qmail 9784 invoked by uid 500); 17 Mar 2020 07:45:55 -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 9775 invoked by uid 99); 17 Mar 2020 07:45:55 -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; Tue, 17 Mar 2020 07:45:55 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D791F8DACC; Tue, 17 Mar 2020 07:45:54 +0000 (UTC) Date: Tue, 17 Mar 2020 07:45:54 +0000 To: "commits@sis.apache.org" Subject: [sis] branch feat/resample updated (66224b2 -> d107907) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158443115464.9847.9569970265782140540@gitbox.apache.org> From: jsorel@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: sis X-Git-Refname: refs/heads/feat/resample X-Git-Reftype: branch X-Git-Oldrev: 66224b2a22b12b4f978db0f66c4ea47040d28785 X-Git-Newrev: d107907695a2f865234a897df9fa8ab11581a241 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. jsorel pushed a change to branch feat/resample in repository https://gitbox.apache.org/repos/asf/sis.git. discard 66224b2 feat(Resample): draft resampling classes add b37fde6 Try to produce better identifiers and title for netCDF variables. The identifier excludes the "long_name" attribute, which is sometime more like a sentence than an identifier (the standard name or variable name provides more stable identifiers). Conversely the `metadata.citation.title` uses the "long_name" attribute as first choice, formatted in a way more like English sentence (with '_' and CamelCase replaced by space). Variable names are declared as citation identifier [...] add 791558a Allow DecimalFormat precision to be set even if the CRS is unknown (in which case a generic number format is used). new d107907 feat(Resample): draft resampling classes This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (66224b2) \ N -- N -- N refs/heads/feat/resample (d107907) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. 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: .../sis/gui/metadata/IdentificationInfo.java | 30 ++++ .../org/apache/sis/internal/gui/Resources.java | 5 + .../apache/sis/internal/gui/Resources.properties | 1 + .../sis/internal/gui/Resources_fr.properties | 1 + .../org/apache/sis/geometry/CoordinateFormat.java | 13 +- .../java/org/apache/sis/util/CharSequences.java | 181 +++++++++++++++++++-- .../org/apache/sis/util/CharSequencesTest.java | 26 ++- .../apache/sis/internal/netcdf/RasterResource.java | 96 ++++++++--- .../org/apache/sis/internal/netcdf/Variable.java | 25 +-- .../apache/sis/internal/netcdf/impl/GridInfo.java | 2 +- .../sis/internal/netcdf/impl/VariableInfo.java | 3 +- .../apache/sis/storage/netcdf/MetadataReader.java | 4 +- .../sis/internal/storage/AbstractGridResource.java | 4 +- .../sis/internal/storage/AbstractResource.java | 40 ++++- .../internal/storage/ConcatenatedFeatureSet.java | 2 +- .../sis/internal/storage/MetadataBuilder.java | 18 +- .../storage/ConcatenatedFeatureSetTest.java | 5 +- 17 files changed, 390 insertions(+), 66 deletions(-)