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 6ae933802f Handle subsampling as long integers instead of 32 bits integers. This is needed because small overviews of large images require a subsampling which is about as large as the image size. new 76d4d2c198 Review the way that some "multi-values map" are handled. In the netCDF case, group together the domains (set of axes) that are subset or superset of another domain. new 4f66c86c45 Refactor the handling of the HYCOM special case, which is replaced by `VariableTransformer`. The special case was about converting an axis of encoded "year month day" values to instants. We need to handle another case used in AML IWC. The difficulty is that they are climatological data (no particular year) with time values encoded as scharacter strings instead of numbers. 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: .../main/org/apache/sis/io/wkt/AbstractParser.java | 6 +- .../main/org/apache/sis/io/wkt/Element.java | 5 +- .../main/org/apache/sis/io/wkt/Warnings.java | 14 +- .../apache/sis/storage/netcdf/MetadataReader.java | 28 +- .../org/apache/sis/storage/netcdf/base/Axis.java | 18 +- .../apache/sis/storage/netcdf/base/CRSBuilder.java | 16 +- .../apache/sis/storage/netcdf/base/Convention.java | 8 +- .../apache/sis/storage/netcdf/base/Decoder.java | 16 +- .../apache/sis/storage/netcdf/base/FeatureSet.java | 26 +- .../sis/storage/netcdf/base/GridMapping.java | 11 +- .../org/apache/sis/storage/netcdf/base/HYCOM.java | 124 -------- .../sis/storage/netcdf/base/NamedElement.java | 6 + .../org/apache/sis/storage/netcdf/base/Node.java | 27 +- .../apache/sis/storage/netcdf/base/Variable.java | 90 +++--- .../storage/netcdf/base/VariableTransformer.java | 312 +++++++++++++++++++++ .../sis/storage/netcdf/classic/ChannelDecoder.java | 16 +- .../sis/storage/netcdf/classic/GridInfo.java | 22 +- .../sis/storage/netcdf/classic/VariableInfo.java | 41 +-- .../sis/storage/netcdf/ucar/GridWrapper.java | 3 +- .../sis/storage/netcdf/ucar/VariableWrapper.java | 1 + .../sis/storage/sql/feature/FeatureAnalyzer.java | 7 +- .../sis/storage/sql/feature/TableReference.java | 2 +- .../main/org/apache/sis/storage/FeatureNaming.java | 28 +- .../apache/sis/storage/base/MetadataBuilder.java | 10 +- .../org/apache/sis/util/privy/CollectionsExt.java | 69 +++-- .../apache/sis/util/privy/CollectionsExtTest.java | 4 +- 26 files changed, 574 insertions(+), 336 deletions(-) delete mode 100644 endorsed/src/org.apache.sis.storage.netcdf/main/org/apache/sis/storage/netcdf/base/HYCOM.java create mode 100644 endorsed/src/org.apache.sis.storage.netcdf/main/org/apache/sis/storage/netcdf/base/VariableTransformer.java