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 0515946 Coverage : add PixelIterator getNumBands and getSampleRange
methods
new b9a0ead Move the calculation of sample range into getSampleRange()
method since this information is expected to be requested only one or none at
all. Take in account the number of bits per pixel. Reorder a few methods for
keeping related methods together. Minor formatting.
new 4a14235 SampleDimension.getNodataValues() should returns the "no data
values" as NaN values.
new 4d757f3 Add netCDF convention for Global Change Observation Mission -
Climate (GCOM-C).
new a6762e8 Defines a customized CoordSysBuilder (from UCAR API) as a
fallback when the UCAR library could not create a coordinate system using
default conventions. This is required (but not sufficient) for decoding GCOM-W
files.
The 4 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/coverage/SampleDimension.java | 17 +-
.../java/org/apache/sis/image/PixelIterator.java | 95 ++++---
.../apache/sis/coverage/SampleDimensionTest.java | 15 +-
.../org/apache/sis/image/LinearIteratorTest.java | 14 +-
ide-project/NetBeans/build.xml | 7 +
storage/sis-earth-observation/pom.xml | 6 +
.../apache/sis/internal/earth/netcdf/GCOM_C.java | 309 +++++++++++++++++++++
.../apache/sis/internal/earth/netcdf/GCOM_W.java | 207 ++++++++++++++
.../sis/internal/earth/netcdf}/package-info.java | 7 +-
.../org.apache.sis.internal.netcdf.Convention | 2 +
.../org/apache/sis/internal/netcdf/Convention.java | 2 +-
.../internal/netcdf/ucar/CSBuilderFallback.java | 90 ++++++
.../sis/internal/netcdf/ucar/DecoderWrapper.java | 11 +
.../sis/internal/netcdf/ucar/GridWrapper.java | 48 +++-
.../apache/sis/storage/netcdf/GridResource.java | 34 +--
15 files changed, 793 insertions(+), 71 deletions(-)
create mode 100644
storage/sis-earth-observation/src/main/java/org/apache/sis/internal/earth/netcdf/GCOM_C.java
create mode 100644
storage/sis-earth-observation/src/main/java/org/apache/sis/internal/earth/netcdf/GCOM_W.java
copy {core/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/cat =>
storage/sis-earth-observation/src/main/java/org/apache/sis/internal/earth/netcdf}/package-info.java
(75%)
create mode 100644
storage/sis-earth-observation/src/main/resources/META-INF/services/org.apache.sis.internal.netcdf.Convention
create mode 100644
storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/CSBuilderFallback.java