This is an automated email from the ASF dual-hosted git repository.
jsorel pushed a change to branch feat/sourceDomainExpansion
in repository https://gitbox.apache.org/repos/asf/sis.git.
from 6e8b8eb Best effort implementation of coverage query source domain
expansion parameter
add afdf695 When there is no direct Bursa-Wolf parameters between two
CRS, accepts an indirect transformation through a common hub (typically WGS
84). This is a partial revert of commit
504e3ce3bfd44c6aea1ff9f4d5ba298d4b0a22f2 (November 14, 2013) together with new
code for updating positional accuracy. An arbitrary value of 100 metres is
taken when the domains of validity intersect, and 3000 metres (presumed worst
case scenario) otherwise.
add 5227d01 Add a WraparoundTransform, to be used in a next commit for
resampling images crossing the anti-meridian.
new c0e5729 Merge branch 'geoapi-4.0' into feat/sourceDomainExpansion
new fbd5f31 Add coverage query expansion test cases, add readonly memory
grid resource
The 2 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:
.../coverage/grid/ResampledGridCoverageTest.java | 2 +-
.../sis/internal/referencing/AnnotatedMatrix.java | 140 +++++++
.../sis/internal/referencing/ExtentSelector.java | 33 +-
.../referencing/PositionalAccuracyConstant.java | 40 +-
.../internal/referencing/WraparoundTransform.java | 417 +++++++++++++++++++++
.../referencing/datum/DefaultGeodeticDatum.java | 53 ++-
.../operation/CoordinateOperationFinder.java | 15 +-
.../referencing/operation/matrix/MatrixSIS.java | 2 +-
.../operation/transform/ConcatenatedTransform.java | 4 +-
.../operation/transform/MathTransforms.java | 5 +-
.../referencing/WraparoundTransformTest.java | 135 +++++++
.../apache/sis/referencing/crs/HardCodedCRS.java | 47 ++-
.../sis/referencing/crs/HardCodedCRSTest.java | 4 +-
.../apache/sis/referencing/cs/HardCodedAxes.java | 9 +-
.../org/apache/sis/referencing/cs/HardCodedCS.java | 9 +-
.../datum/DefaultGeodeticDatumTest.java | 44 ++-
.../sis/referencing/datum/HardCodedDatum.java | 8 +-
.../operation/CoordinateOperationFinderTest.java | 74 +++-
.../sis/test/suite/ReferencingTestSuite.java | 1 +
.../sis/internal/storage/MemoryGridResource.java | 143 +++++++
.../internal/storage/query/CoverageQueryTest.java | 120 ++++++
.../apache/sis/test/suite/StorageTestSuite.java | 1 +
22 files changed, 1258 insertions(+), 48 deletions(-)
create mode 100644
core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/AnnotatedMatrix.java
create mode 100644
core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/WraparoundTransform.java
create mode 100644
core/sis-referencing/src/test/java/org/apache/sis/internal/referencing/WraparoundTransformTest.java
create mode 100644
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/MemoryGridResource.java
create mode 100644
storage/sis-storage/src/test/java/org/apache/sis/internal/storage/query/CoverageQueryTest.java