* in longitude or latitude and 1 cm in height.
*/
final double[] array1 = new double[array0.length];
final double[] array2 = new double[array0.length];
transform .transform(array0, 0, array1, 0, array0.length/dimension);
transform.inverse().transform(array1, 0, array2, 0, array1.length/dimension);
assertPointsEqual("transform(Geographic --> Geocentric --> Geographic)", array0, array2,
new double[] {0.1/3600, 0.1/3600, 0.01});
/*
* Compare the distances between "special" points with expected distances.
* This test the ellipsoid orthodromic distance computation as well.