This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a change to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git


    omit 83ec1c5135 feat(TileMatrix): add a first version of TileMatrixStatus
     new 5915cf55f7 chore(Storage): add a test to investigate data discovery in 
NetCDF files generated by GDAL using Transverse mercator projection. Fix the 
cause, which was a mismatched number of dimensions between the data cube and 
the matrix in the `GeoTransform` attribute. Fix the CRS definitions, which was 
using wrong names for some elements such as the base CRS of a projected CRS.
     new e96a107208 Resolve remaining logs printed during execution of test. 
This is a continuation of the test logging work which was part of the previous 
commit.
     new 2058a95f8e Avoid a `NullPointerException` to pollute the logs.
     new f4ad53d657 Documentation, minor formatting, suppression of a warning.

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   (83ec1c5135)
            \
             N -- N -- N   refs/heads/geoapi-4.0 (f4ad53d657)

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 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/console/HelpCommandTest.java    |   1 +
 .../sis/coverage/grid/GridDerivationTest.java      |   2 +-
 .../apache/sis/coverage/grid/GridGeometryTest.java |   9 +-
 .../test/org/apache/sis/feature/Assertions.java    |  13 +
 .../main/org/apache/sis/metadata/CacheKey.java     |   2 +-
 .../apache/sis/xml/bind/cat/CodeListAdapter.java   |   2 +-
 .../main/org/apache/sis/referencing/CRS.java       |  19 +-
 .../operation/transform/CopyTransform.java         |   4 +-
 .../operation/transform/MathTransforms.java        |  33 +-
 .../operation/transform/PassThroughTransform.java  |   6 +-
 .../operation/transform/TransformJoiner.java       |  11 +-
 .../sis/storage/geotiff/GeoTiffStoreProvider.java  |   2 +-
 .../org/apache/sis/storage/geotiff/IOBase.java     |  10 +
 .../sis/storage/geotiff/ImageFileDirectory.java    |   4 +-
 .../apache/sis/storage/geotiff/base/Resources.java |   2 +-
 .../sis/storage/geotiff/base/Resources.properties  |   2 +-
 .../storage/geotiff/base/Resources_fr.properties   |   2 +-
 .../sis/storage/geotiff/reader/CRSBuilder.java     | 109 +++-
 .../geotiff/reader/GridGeometryBuilder.java        |   7 +-
 .../sis/storage/geotiff/GeoTiffStoreTest.java      |  18 +-
 .../apache/sis/storage/netcdf/base/CRSBuilder.java |   8 +-
 .../apache/sis/storage/netcdf/base/Convention.java |  16 +-
 .../org/apache/sis/storage/netcdf/base/Grid.java   |   4 +-
 .../sis/storage/netcdf/base/GridMapping.java       | 601 ++++++++++++---------
 .../sis/storage/netcdf/classic/ChannelDecoder.java |   2 +-
 .../sis/storage/netcdf/internal/Resources.java     |   5 +
 .../storage/netcdf/internal/Resources.properties   |   1 +
 .../netcdf/internal/Resources_fr.properties        |   1 +
 .../sis/storage/netcdf/MetadataReaderTest.java     |   6 +-
 .../storage/netcdf/NetcdfStoreProviderTest.java    |  13 +-
 .../apache/sis/storage/netcdf/NetcdfStoreTest.java |  82 ++-
 .../apache/sis/storage/netcdf/base/GridTest.java   |  12 +-
 .../apache/sis/storage/netcdf/base/TestCase.java   |   1 +
 .../transverse-mercator-wrong-geotransform.nc      | Bin 0 -> 2676 bytes
 .../sis/storage/aggregate/JoinFeatureSet.java      |   7 +-
 .../apache/sis/storage/aggregate/package-info.java |   2 +-
 .../org/apache/sis/storage/tiling/TileMatrix.java  |  10 -
 .../sis/storage/tiling/TileMatrixStatus.java       |  48 --
 .../org/apache/sis/storage/DataStoreTestCase.java  |  67 +++
 .../org/apache/sis/storage/FeatureNamingTest.java  |   4 +-
 .../sis/storage/event/StoreListenersTest.java      |   1 +
 .../org/apache/sis/storage/folder/StoreTest.java   |   8 +-
 .../apache/sis/storage/folder/test-data/README.txt |  12 +-
 .../main/org/apache/sis/math/Statistics.java       |   3 +
 .../test/org/apache/sis/test/LoggingWatcher.java   |  43 +-
 45 files changed, 765 insertions(+), 450 deletions(-)
 create mode 100644 
endorsed/src/org.apache.sis.storage.netcdf/test/org/apache/sis/storage/netcdf/transverse-mercator-wrong-geotransform.nc
 delete mode 100644 
endorsed/src/org.apache.sis.storage/main/org/apache/sis/storage/tiling/TileMatrixStatus.java
 create mode 100644 
endorsed/src/org.apache.sis.storage/test/org/apache/sis/storage/DataStoreTestCase.java

Reply via email to