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 aeaadf2f05 GeoTIFF writer should throw an exception instead of logging a warning when the CRS or the "grid to CRS" transform cannot be encoded. new 65d1d016d1 In case of error while writing a GeoTIFF file, restore the file to its previous state. new a95fbd4ab4 Allow GeoTIFF writer to encode "grid to CRS" where the vertical component is non-linear. new ae291c6dec Delete leftover temporary files during Geopackage test. new 78771af452 Avoid triple-slash for starting a comment, because they are reserved for Markdown in latest Java versions. 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: .../main/org/apache/sis/image/Visualization.java | 18 +-- .../sis/metadata/privy/ReferencingServices.java | 20 +-- .../apache/sis/xml/bind/IdentifierMapAdapter.java | 16 +-- .../sis/xml/bind/ModifiableIdentifierMap.java | 16 +-- .../main/org/apache/sis/io/wkt/Element.java | 20 +-- .../referencing/internal/ServicesForMetadata.java | 20 +-- .../operation/CoordinateOperationFinder.java | 68 ++++------ .../operation/provider/MapProjection.java | 14 +- .../operation/CoordinateOperationFinderTest.java | 10 +- .../referencing/operation/provider/NADCONTest.java | 10 +- .../referencing/operation/provider/NTv2Test.java | 10 +- .../apache/sis/storage/geotiff/GeoTiffStore.java | 1 - .../sis/storage/geotiff/ImageFileDirectory.java | 90 ++++++------- .../org/apache/sis/storage/geotiff/Writer.java | 118 +++++++++-------- .../sis/storage/geotiff/reader/CRSBuilder.java | 50 +++---- .../geotiff/reader/GridGeometryBuilder.java | 20 +-- .../sis/storage/geotiff/writer/GeoEncoder.java | 144 +++++++++++++-------- .../sis/storage/geotiff/writer/TileMatrix.java | 11 +- .../sis/storage/geotiff/GeoTiffStoreTest.java | 111 ++++++++++++++++ .../sis/storage/xml/stream/StaxStreamReader.java | 10 +- .../sis/storage/xml/stream/StaxStreamWriter.java | 10 +- .../apache/sis/io/stream/ChannelDataOutput.java | 28 ++++ .../apache/sis/storage/esri/WritableStoreTest.java | 8 +- .../main/org/apache/sis/measure/AngleFormat.java | 47 +++---- .../org/apache/sis/util/collection/RangeSet.java | 6 +- .../sis/storage/geopackage/GpkgStoreTest.java | 16 ++- .../conformance/CoreConformanceTest.java | 2 +- .../sis/storage/shapefile/ShapefileStore.java | 2 +- .../sis/storage/shapefile/dbf/DBFIOTest.java | 2 +- .../sis/storage/shapefile/shp/ShapeIOTest.java | 2 +- 30 files changed, 536 insertions(+), 364 deletions(-) create mode 100644 endorsed/src/org.apache.sis.storage.geotiff/test/org/apache/sis/storage/geotiff/GeoTiffStoreTest.java