This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/sis.git
from 4bd7092a20 Merge branch 'geoapi-3.1' add 4049ee5d82 Add a DataType.UINT type for distinguishing whether Java2D `DataBuffer.TYPE_INT` should be interpreted as signed or unsigned. The sign of the integer type is ambiguous in Java2D, as it depends on the context. Methods were added in `DataType` for handling this ambiguity. add 8ddfe3bb09 Slight simplification of `DataType` usage when mapping to Java primitive types. add 6ff4ff2fa9 Add a `GeoTiffStoreProvider.open(ParameterValueGroup)` method for taking in account the compression and modifiers parameters. add 37ca8154b9 Replace usage of legacy `StringTokenizer` by `String.split(…)` or alternatives. add afa573ef65 Detect name collision in the fields reported by GDAL. It happens for example when using the Shapefile driver, because field names are truncated to 10 characters. add 4c5563faad Merge branch 'geoapi-4.0' into geoapi-3.1 new ae65a8be08 Merge branch 'geoapi-3.1' 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: .../org/apache/sis/feature/DefaultFeatureType.java | 17 +- .../sis/feature/builder/FeatureTypeBuilder.java | 14 +- .../apache/sis/feature/privy/FeatureUtilities.java | 6 + .../org/apache/sis/image/BandAggregateLayout.java | 8 +- .../apache/sis/image/BandedSampleConverter.java | 2 +- .../main/org/apache/sis/image/DataType.java | 268 ++++++++++++++++----- .../main/org/apache/sis/image/PixelIterator.java | 12 +- .../main/org/apache/sis/image/ResampledImage.java | 2 +- .../main/org/apache/sis/image/Transferer.java | 6 +- .../apache/sis/image/privy/ColorModelBuilder.java | 3 +- .../apache/sis/image/privy/ColorModelFactory.java | 6 +- .../apache/sis/image/privy/ColorScaleBuilder.java | 8 +- .../org/apache/sis/image/privy/ImageUtilities.java | 84 +------ .../org/apache/sis/image/privy/RasterFactory.java | 9 +- .../apache/sis/image/privy/TilePlaceholder.java | 5 +- .../test/org/apache/sis/image/DataTypeTest.java | 42 +++- .../apache/sis/image/privy/ImageUtilitiesTest.java | 16 -- .../apache/sis/metadata/sql/MetadataWriter.java | 8 +- .../apache/sis/metadata/sql/privy/SQLBuilder.java | 13 +- .../sis/referencing/factory/sql/EPSGInstaller.java | 22 +- .../provider/FranceGeocentricInterpolation.java | 18 +- .../org/apache/sis/storage/geotiff/DataSubset.java | 2 +- .../sis/storage/geotiff/GeoTiffStoreProvider.java | 57 ++++- .../sis/storage/geotiff/ImageFileDirectory.java | 2 +- .../org/apache/sis/storage/geotiff/Writer.java | 4 +- .../storage/geotiff/inflater/CopyFromBytes.java | 5 +- .../geotiff/inflater/HorizontalPredictor.java | 5 +- .../geotiff/writer/HorizontalPredictor.java | 5 +- .../storage/geotiff/writer/ReformattedImage.java | 5 +- .../sis/storage/geotiff/writer/TileMatrix.java | 14 +- .../apache/sis/storage/netcdf/base/DataType.java | 2 +- .../org/apache/sis/storage/DataStoreProvider.java | 22 +- .../apache/sis/storage/base/TiledGridResource.java | 2 +- .../org/apache/sis/storage/esri/RasterStore.java | 8 +- .../main/org/apache/sis/util/Version.java | 13 +- .../main/org/apache/sis/gui/coverage/GridView.java | 4 +- .../apache/sis/storage/gdal/FeatureIterator.java | 2 +- .../org/apache/sis/storage/gdal/FeatureLayer.java | 76 ++++-- .../org/apache/sis/storage/gdal/FieldAccessor.java | 33 ++- 39 files changed, 494 insertions(+), 336 deletions(-)