This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch feat/image2polygon in repository https://gitbox.apache.org/repos/asf/sis.git
discard caf730f09f Add image to polygon area algorithm discard db4733200a Improve AWT to JTS conversion logic add 0b665692dc Simplify the default implementation of `getContentPath()`. Add `@since 1.5` Javadoc tag and adjust `{@link}` versus `{@linkplain}`. Minor editions to the Javadoc sentences and a bit of formatting (one sentence per line). add 90aaa358f1 Clarification about the circumstances when `guessCRS` may be invoked. add 2f1112858c Implement getFileSet() on landsat resources add 12d68ec5d1 Resolve shapefile sibling files without going trought parent path which may be null add db6cf1093b More reliable determination of the path to the metadata file used for opening a Landsat store. Opportunistic minor editions. add 71c5b4f09b Add a `Features.getLinkTargets(PropertyType)` method in complement to `getLinkTarget(PropertyType)` method (plural versus singular). Bug fix in `SQLStore` where foreigner keys in queries were followed in the wrong directions (foreigner keys in tables were okay). Minor simplification in exception handling of `DeferredStream` and minor javadoc editions. add 428ee02c5e Add a `PropertyTypeBuilder.replaceBy(…)` method. add 0db3b21989 `SQLStore` should accept queries with a "projection" (in SQL sense) that contains links such as "sis:identifier". add ff4f8725a6 Add a test for the new support of "sis:identifier" in FeatureQuery. add 26bdb313f1 Move flexibility for configuring the builder wrapped by `FeatureProjectionBuilder.Item`. More conservative check of whether the FeatureType is different than the source. add 305ae17810 Improve AWT to JTS conversion logic. new c199c7e63f Add image to polygon area algorithm 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 (caf730f09f) \ N -- N -- N refs/heads/feat/image2polygon (c199c7e63f) 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 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: .../apache/sis/cloud/aws/s3/ClientFileSystem.java | 2 +- .../org.apache.sis.feature/main/module-info.java | 1 + .../org/apache/sis/feature/AbstractOperation.java | 4 +- .../apache/sis/feature/ExpressionOperation.java | 2 +- .../org/apache/sis/feature/FeatureOperations.java | 75 ++- .../main/org/apache/sis/feature/Features.java | 25 +- .../apache/sis/feature/StringJoinOperation.java | 14 + .../sis/feature/builder/AttributeTypeBuilder.java | 14 +- .../sis/feature/builder/FeatureTypeBuilder.java | 10 +- .../sis/feature/builder/OperationWrapper.java | 30 +- .../sis/feature/builder/PropertyTypeBuilder.java | 32 +- .../apache/sis/feature/builder/TypeBuilder.java | 2 +- .../org/apache/sis/feature/internal/Resources.java | 5 + .../sis/feature/internal/Resources.properties | 1 + .../sis/feature/internal/Resources_fr.properties | 1 + .../main/org/apache/sis/feature/package-info.java | 2 +- .../sis/feature/privy/FeatureExpression.java | 87 ++- .../sis/feature/privy/FeatureProjection.java | 341 ++++++++++ .../feature/privy/FeatureProjectionBuilder.java | 741 +++++++++++++++++++++ .../org/apache/sis/feature/privy/FeatureView.java | 131 ++++ .../org/apache/sis/filter/ArithmeticFunction.java | 8 +- .../org/apache/sis/filter/AssociationValue.java | 22 +- .../org/apache/sis/filter/ConvertFunction.java | 19 +- .../apache/sis/filter/DefaultFilterFactory.java | 25 + .../InvalidXPathException.java} | 41 +- .../main/org/apache/sis/filter/LeafExpression.java | 15 +- .../main/org/apache/sis/filter/PropertyValue.java | 75 +-- .../main/org/apache/sis/filter/privy/XPath.java | 18 +- .../apache/sis/filter/sqlmm/FunctionWithSRID.java | 24 +- .../apache/sis/filter/sqlmm/SpatialFunction.java | 36 +- .../sis/geometry/wrapper/jts/ConverterTo2D.java | 227 +++++++ .../sis/geometry/wrapper/jts/ShapeConverter.java | 218 +----- .../feature/builder/FeatureTypeBuilderTest.java | 29 + .../geometry/wrapper/jts/ShapeConverterTest.java | 48 +- .../main/org/apache/sis/storage/landsat/Band.java | 27 +- .../org/apache/sis/storage/landsat/BandGroup.java | 15 + .../apache/sis/storage/landsat/LandsatStore.java | 27 +- .../sis/storage/sql/feature/FeatureIterator.java | 31 +- .../sis/storage/sql/feature/FeatureStream.java | 38 +- .../sis/storage/sql/feature/InfoStatements.java | 8 +- .../sis/storage/sql/feature/QueryAnalyzer.java | 11 +- .../org/apache/sis/storage/sql/feature/Table.java | 48 +- .../sis/storage/sql/feature/TableAnalyzer.java | 14 +- .../org/apache/sis/util/stream/DeferredStream.java | 10 +- .../org/apache/sis/storage/sql/SQLStoreTest.java | 30 +- .../main/org/apache/sis/storage/FeatureQuery.java | 59 +- .../main/org/apache/sis/storage/FeatureSubset.java | 6 +- .../apache/sis/storage/base/FeatureProjection.java | 383 ----------- .../main/org/apache/sis/storage/tiling/Tile.java | 25 +- .../sis/util/privy/UnmodifiableArrayList.java | 3 +- .../sis/storage/shapefile/ShapefileStore.java | 12 +- 51 files changed, 2148 insertions(+), 924 deletions(-) create mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/feature/privy/FeatureProjection.java create mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/feature/privy/FeatureProjectionBuilder.java create mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/feature/privy/FeatureView.java copy endorsed/src/org.apache.sis.feature/main/org/apache/sis/{coverage/MismatchedCoverageRangeException.java => filter/InvalidXPathException.java} (52%) create mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/geometry/wrapper/jts/ConverterTo2D.java delete mode 100644 endorsed/src/org.apache.sis.storage/main/org/apache/sis/storage/base/FeatureProjection.java