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 ecee3c9 Build configuration: upgrade Maven dependencies. new a7dc22f Resolve more issues with the use of axis direction such as "South along 90° East". It fixes some exceptions that were thrown when using Polar Stereographic projection. new 031330c Adopt "colinear" as a valid spelling. While "collinear" seems more widely used, "colinear" is the spelling used by Java2D and is used in current SIS public API. 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: .../apache/sis/coverage/grid/DimensionReducer.java | 2 +- .../org/apache/sis/coverage/grid/GridGeometry.java | 2 +- .../sis/coverage/grid/GridDerivationTest.java | 27 ++++ .../sis/internal/referencing/AxesMapper.java | 160 +++++++++++++++++++++ .../sis/internal/referencing/AxisDirections.java | 73 ++++------ .../sis/referencing/cs/CoordinateSystems.java | 26 +++- .../sis/referencing/cs/DirectionAlongMeridian.java | 15 +- .../apache/sis/referencing/cs/package-info.java | 2 +- .../sis/internal/referencing/AxesMapperTest.java | 97 +++++++++++++ .../internal/referencing/AxisDirectionsTest.java | 27 ++-- .../sis/test/suite/ReferencingTestSuite.java | 1 + ide-project/NetBeans/nbproject/genfiles.properties | 2 +- ide-project/NetBeans/nbproject/project.xml | 3 + .../org/apache/sis/internal/netcdf/Linearizer.java | 43 ++---- 14 files changed, 378 insertions(+), 102 deletions(-) create mode 100644 core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/AxesMapper.java create mode 100644 core/sis-referencing/src/test/java/org/apache/sis/internal/referencing/AxesMapperTest.java