This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch 1.5-RC2
in repository https://gitbox.apache.org/repos/asf/sis.git
discard ae747c616f Set version number to 1.5.
discard 6aadbd4b8f Remove the modules to be excluded from 1.5 release.
add bf613f9a3f Remove the links to the old version (2015) of WKT 2
specification. Do not replace by newer version (2019) for avoiding maintenance
cost, especially since the links were often referencing specific sections.
add 67df589956 Fix the existing JUnit tests to the 2015 version of WKT2.
It allows us to start implementing the 2019 version without breaking the tests.
add 70af867f4a Complete the support of WKT 2 `USAGE` element and update
the tests accordingly. This first simple WKT2:2019 element gives us a way to
test the distinction between the two versions of WKT 2.
add 062a8de71d Add the support of `AXISMINVALUE`, `AXISMAXVALUE` and
`RANGEMEANING` from ISO 19162:2019.
add c08fea432c Supports the `ENSEMBLE` element at WKT parsing and
formatting time.
add c65d0e793d Add support for `FrameEpoch` element inside the `DYNAMIC`
element.
add 94cdd0cb3b Complete the support of the new WKT keywords for
`GeographicCRS` and other CRS types. Change the default unit of measurement of
`PARAMETER` as clarified in ISO 19162:2019. Replace usage of `Date` by
`java.time` in WKT parsing of temporal CRS.
add 11f6114609 Merge branch 'geoapi-4.0' into geoapi-3.1. This merge
complete the upgrade of the CRS part of WKT 2 to ISO 19162:2019, except for a
some advanced elements such as `GeoidModel` and `Calendar[…]`. This commit does
not include the upgrade for the coordinate operation part.
add 92cb82585e Merge branch 'geoapi-3.1'
new 07d4b45502 Remove the modules to be excluded from 1.5 release.
new 18bd407c39 Set version number to 1.5.
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 (ae747c616f)
\
N -- N -- N refs/heads/1.5-RC2 (18bd407c39)
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 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:
.../main/org/apache/sis/console/CommandRunner.java | 2 +-
.../apache/sis/console/FormattedOutputCommand.java | 6 +
.../org/apache/sis/console/CRSCommandTest.java | 15 +-
.../sis/metadata/iso/citation/Citations.java | 2 +-
.../org/apache/sis/temporal/LenientDateFormat.java | 4 +-
.../sis/metadata/iso/citation/CitationsTest.java | 2 +-
.../sis/coordinate/DefaultCoordinateMetadata.java | 2 +-
.../main/org/apache/sis/io/wkt/AbstractParser.java | 82 +++
.../main/org/apache/sis/io/wkt/Convention.java | 122 ++---
.../main/org/apache/sis/io/wkt/Element.java | 18 +-
.../org/apache/sis/io/wkt/FormattableObject.java | 10 +-
.../main/org/apache/sis/io/wkt/Formatter.java | 102 ++--
.../apache/sis/io/wkt/GeodeticObjectParser.java | 559 ++++++++++++++-------
.../org/apache/sis/io/wkt/MathTransformParser.java | 27 +-
.../main/org/apache/sis/io/wkt/Transliterator.java | 21 +-
.../main/org/apache/sis/io/wkt/WKTFormat.java | 12 +-
.../main/org/apache/sis/io/wkt/package-info.java | 11 +-
.../sis/parameter/DefaultParameterValue.java | 167 +++---
.../org/apache/sis/parameter/TensorParameters.java | 4 +-
.../pending/geoapi/referencing/MissingMethods.java | 167 +++++-
.../sis/referencing/AbstractIdentifiedObject.java | 20 +-
.../main/org/apache/sis/referencing/CRS.java | 12 +-
.../sis/referencing/DefaultObjectDomain.java | 1 +
.../sis/referencing/ImmutableIdentifier.java | 2 -
.../apache/sis/referencing/crs/AbstractCRS.java | 88 ++--
.../sis/referencing/crs/AbstractDerivedCRS.java | 14 +
.../sis/referencing/crs/DefaultCompoundCRS.java | 14 +-
.../sis/referencing/crs/DefaultDerivedCRS.java | 44 +-
.../sis/referencing/crs/DefaultEngineeringCRS.java | 20 +-
.../sis/referencing/crs/DefaultGeocentricCRS.java | 2 -
.../sis/referencing/crs/DefaultGeodeticCRS.java | 43 +-
.../sis/referencing/crs/DefaultGeographicCRS.java | 6 +-
.../sis/referencing/crs/DefaultImageCRS.java | 2 -
.../sis/referencing/crs/DefaultParametricCRS.java | 12 -
.../sis/referencing/crs/DefaultProjectedCRS.java | 14 +-
.../sis/referencing/crs/DefaultTemporalCRS.java | 20 +-
.../sis/referencing/crs/DefaultVerticalCRS.java | 20 +-
.../org/apache/sis/referencing/crs/DynamicCRS.java | 77 +++
.../org/apache/sis/referencing/cs/AbstractCS.java | 2 -
.../sis/referencing/cs/CoordinateSystems.java | 3 +-
.../cs/DefaultCoordinateSystemAxis.java | 109 ++--
.../sis/referencing/cs/DirectionAlongMeridian.java | 2 -
.../sis/referencing/datum/AbstractDatum.java | 32 +-
.../referencing/datum/DefaultDatumEnsemble.java | 76 ++-
.../sis/referencing/datum/DefaultEllipsoid.java | 2 -
.../referencing/datum/DefaultEngineeringDatum.java | 16 +-
.../referencing/datum/DefaultGeodeticDatum.java | 12 +-
.../sis/referencing/datum/DefaultImageDatum.java | 23 +-
.../referencing/datum/DefaultParametricDatum.java | 18 +-
.../referencing/datum/DefaultPrimeMeridian.java | 4 +-
.../referencing/datum/DefaultTemporalDatum.java | 16 +-
.../referencing/datum/DefaultVerticalDatum.java | 11 +-
.../referencing/factory/GeodeticObjectFactory.java | 6 +-
.../referencing/factory/sql/EPSGDataAccess.java | 13 +-
.../org/apache/sis/referencing/internal/Epoch.java | 69 ++-
.../internal/PositionalAccuracyConstant.java | 58 ++-
.../operation/AbstractCoordinateOperation.java | 12 +-
.../operation/DefaultOperationMethod.java | 2 -
.../provider/MercatorAuxiliarySphere.java | 3 +-
.../referencing/operation/provider/Mollweide.java | 3 +-
.../provider/ObliqueMercatorTwoPoints.java | 5 +-
.../transform/DefaultMathTransformFactory.java | 3 +-
.../apache/sis/referencing/privy/WKTKeywords.java | 54 +-
.../apache/sis/referencing/privy/WKTUtilities.java | 87 +---
.../org/apache/sis/geometry/ArrayEnvelopeTest.java | 11 +-
.../apache/sis/geometry/GeneralEnvelopeTest.java | 3 +-
.../test/org/apache/sis/io/wkt/ElementTest.java | 4 +-
.../sis/io/wkt/GeodeticObjectParserTest.java | 143 +++++-
.../test/org/apache/sis/io/wkt/WKTFormatTest.java | 1 +
.../DefaultParameterDescriptorGroupTest.java | 7 +-
.../parameter/DefaultParameterDescriptorTest.java | 6 +-
.../sis/parameter/DefaultParameterValueTest.java | 3 +-
.../org/apache/sis/parameter/TensorValuesTest.java | 5 +-
.../referencing/AbstractReferenceSystemTest.java | 36 +-
.../org/apache/sis/referencing/Assertions.java | 18 +-
.../referencing/crs/DefaultCompoundCRSTest.java | 9 +-
.../sis/referencing/crs/DefaultDerivedCRSTest.java | 4 +-
.../referencing/crs/DefaultEngineeringCRSTest.java | 2 +-
.../referencing/crs/DefaultGeocentricCRSTest.java | 5 +-
.../referencing/crs/DefaultGeographicCRSTest.java | 27 +-
.../sis/referencing/crs/DefaultImageCRSTest.java | 2 +-
.../referencing/crs/DefaultProjectedCRSTest.java | 25 +-
.../referencing/crs/DefaultTemporalCRSTest.java | 2 +-
.../referencing/crs/DefaultVerticalCRSTest.java | 2 +-
.../cs/DefaultCoordinateSystemAxisTest.java | 52 +-
.../referencing/datum/DefaultEllipsoidTest.java | 5 +-
.../datum/DefaultGeodeticDatumTest.java | 12 +-
.../datum/DefaultVerticalDatumTest.java | 4 +-
.../factory/CommonAuthorityFactoryTest.java | 2 +-
.../apache/sis/referencing/internal/EpochTest.java | 22 +-
.../operation/CoordinateOperationFinderTest.java | 6 +-
.../operation/CoordinateOperationRegistryTest.java | 10 +-
.../DefaultConcatenatedOperationTest.java | 4 +-
.../DefaultCoordinateOperationFactoryTest.java | 6 +-
.../operation/DefaultOperationMethodTest.java | 2 +-
.../operation/DefaultTransformationTest.java | 2 +-
.../operation/HardCodedConversions.java | 5 +-
.../referencing/operation/provider/AffineTest.java | 7 +-
.../operation/provider/LongitudeRotationTest.java | 3 +-
.../report/CoordinateOperationMethods.java | 8 +-
.../sis/test/integration/ConsistencyTest.java | 7 +-
.../org/apache/sis/storage/base/PRJDataStore.java | 14 +-
.../apache/sis/storage/esri/WritableStoreTest.java | 2 +-
.../main/org/apache/sis/setup/GeometryLibrary.java | 3 +-
.../main/org/apache/sis/util/Characters.java | 1 -
.../main/org/apache/sis/util/privy/Constants.java | 5 +
.../main/org/apache/sis/util/privy/URLs.java | 5 -
.../org/apache/sis/gui/referencing/WKTPane.java | 2 +
108 files changed, 1817 insertions(+), 1074 deletions(-)
create mode 100644
endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/crs/DynamicCRS.java