Author: desruisseaux
Date: Mon Oct 9 09:35:15 2017
New Revision: 1811544
URL: http://svn.apache.org/viewvc?rev=1811544&view=rev
Log:
Fix erroneous CRS names.
Modified:
sis/branches/JDK8/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultCoordinateOperationFactoryTest.java
Modified:
sis/branches/JDK8/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultCoordinateOperationFactoryTest.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultCoordinateOperationFactoryTest.java?rev=1811544&r1=1811543&r2=1811544&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultCoordinateOperationFactoryTest.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultCoordinateOperationFactoryTest.java
[UTF-8] Mon Oct 9 09:35:15 2017
@@ -212,8 +212,8 @@ public final strictfp class DefaultCoord
final CoordinateReferenceSystem sourceCRS = parse(
"CompoundCRS[“NTF 4D”," +
" $NTF,\n" +
- " VerticalCRS[“Ellipsoidal height”,\n" +
- " VerticalDatum[“Ellipsoid”],\n" +
+ " VerticalCRS[“Geoidal height”,\n" +
+ " VerticalDatum[“Geoid”],\n" +
" CS[vertical, 1],\n" +
" Axis[“Geoidal height (H)”, up],\n" +
" Unit[“metre”, 1]],\n" +
@@ -229,7 +229,7 @@ public final strictfp class DefaultCoord
assertSame ("targetCRS", targetCRS, operation.getTargetCRS());
assertInstanceOf("operation", ConcatenatedOperation.class, operation);
/*
- * The accuracy of the coordinate operation depends on whether a path
as been found with the help
+ * The accuracy of the coordinate operation depends on whether a path
has been found with the help
* of the EPSG database. See testProjectionAndLongitudeRotation() for
more information.
*/
final boolean isUsingEpsgFactory =
verifyParametersNTF(((ConcatenatedOperation) operation).getOperations(), 2);