This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch geoapi-3.1
in repository https://gitbox.apache.org/repos/asf/sis.git
from 9c02e400ee Merge branch 'geoapi-4.0' into geoapi-3.1
add c6cd7789c8 Add a self-consistency test for GeoHEIF, similar to the
existing self-consistency check of GeoTIFF.
add 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.
add 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 e3537fc7c1 Merge branch 'geoapi-4.0' into geoapi-3.1. Contains a fix
in netCDF parsing of GDAL's "GeoTransform" attribute.
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:
endorsed/build.gradle.kts | 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/referencing/CRS.java | 19 +-
.../operation/transform/CopyTransform.java | 4 +-
.../operation/transform/MathTransforms.java | 33 +-
.../sis/storage/geoheif}/SelfConsistencyTest.java | 8 +-
.../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 +-
.../sis/storage/geotiff/SelfConsistencyTest.java | 2 +
.../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 | 603 ++++++++++++---------
.../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
.../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 +-
.../apache/sis/storage/test/SubsampledImage.java | 21 +-
.../test/org/apache/sis/test/LoggingWatcher.java | 43 +-
.../test/org/apache/sis/test/OptionalTestData.java | 8 +-
netbeans-project/nbproject/project.properties | 2 +
41 files changed, 783 insertions(+), 384 deletions(-)
copy
endorsed/src/{org.apache.sis.storage.netcdf/test/org/apache/sis/storage/netcdf
=>
org.apache.sis.storage.geoheif/test/org/apache/sis/storage/geoheif}/SelfConsistencyTest.java
(90%)
create mode 100644
endorsed/src/org.apache.sis.storage.netcdf/test/org/apache/sis/storage/netcdf/transverse-mercator-wrong-geotransform.nc
create mode 100644
endorsed/src/org.apache.sis.storage/test/org/apache/sis/storage/DataStoreTestCase.java