use of org.apache.sis.referencing.datum.DefaultEllipsoid in project sis by apache.
the class SecondDefiningParameterTest method testMarshalling.
/**
* Tests marshalling of an ellipsoid.
*
* @throws JAXBException if an error occurred during the marshalling process.
*/
@Test
public void testMarshalling() throws JAXBException {
final DefaultEllipsoid ellipsoid = DefaultEllipsoid.createEllipsoid(Collections.singletonMap(DefaultEllipsoid.NAME_KEY, "Clarke 1866"), 6378206.4, 6356583.8, Units.METRE);
final SecondDefiningParameter sdp = new SecondDefiningParameter(ellipsoid, false);
assertXmlEquals(ELLIPSOID, marshal(sdp), "xmlns:*", "xsi:schemaLocation");
}
use of org.apache.sis.referencing.datum.DefaultEllipsoid in project sis by apache.
the class CoordinateOperationTest method testGeocentricTransform.
/**
* Tests a "geographic to geocentric" conversion.
*
* @throws FactoryException if an error occurred while creating a test CRS.
* @throws TransformException if an error occurred while testing a coordinate conversion.
*/
@Test
public void testGeocentricTransform() throws FactoryException, TransformException {
final Random random = new Random(661597560);
/*
* Gets the math transform from WGS84 to a geocentric transform.
*/
final Ellipsoid ellipsoid = CommonCRS.WGS84.ellipsoid();
final CoordinateReferenceSystem sourceCRS = AbstractCRS.castOrCopy(CommonCRS.WGS84.geographic3D()).forConvention(AxesConvention.RIGHT_HANDED);
final CoordinateReferenceSystem targetCRS = CommonCRS.WGS84.geocentric();
final CoordinateOperation operation = opFactory.createOperation(sourceCRS, targetCRS);
transform = operation.getMathTransform();
final int dimension = transform.getSourceDimensions();
assertEquals("Source dimension", 3, dimension);
assertEquals("Target dimension", 3, transform.getTargetDimensions());
assertSame("Inverse transform", transform, transform.inverse().inverse());
validate();
/*
* Constructs an array of random points. The first 8 points
* are initialized to know values. Other points are left random.
*/
final double[] cartesianDistance = new double[4];
final double[] orthodromicDistance = new double[4];
// Must be divisible by 3.
final double[] array0 = new double[900];
for (int i = 0; i < array0.length; i++) {
final int range;
switch(i % 3) {
// Longitude
case 0:
range = 360;
break;
// Latitidue
case 1:
range = 180;
break;
// Altitude
case 2:
range = 10000;
break;
// Should not happen
default:
range = 0;
break;
}
array0[i] = random.nextDouble() * range - (range / 2);
}
// 24°N 35°E 8km
array0[0] = 35.0;
// 24°N 35°E 8km
array0[1] = 24.0;
// 24°N 35°E 8km
array0[2] = 8000;
// … about 80 km away
array0[3] = 34.8;
// … about 80 km away
array0[4] = 24.7;
// … about 80 km away
array0[5] = 5000;
cartesianDistance[0] = 80284.00;
// Not really exact.
orthodromicDistance[0] = 80302.99;
array0[6] = 0;
array0[7] = 0.0;
array0[8] = 0;
// Antipodes; distance should be 2*6378.137 km
array0[9] = 180;
// Antipodes; distance should be 2*6378.137 km
array0[10] = 0.0;
// Antipodes; distance should be 2*6378.137 km
array0[11] = 0;
cartesianDistance[1] = ellipsoid.getSemiMajorAxis() * 2;
orthodromicDistance[1] = ellipsoid.getSemiMajorAxis() * PI;
array0[12] = 0;
array0[13] = -90;
array0[14] = 0;
// Antipodes; distance should be 2*6356.752 km
array0[15] = 180;
// Antipodes; distance should be 2*6356.752 km
array0[16] = +90;
// Antipodes; distance should be 2*6356.752 km
array0[17] = 0;
cartesianDistance[2] = ellipsoid.getSemiMinorAxis() * 2;
orthodromicDistance[2] = 20003931.46;
array0[18] = 95;
array0[19] = -38;
array0[20] = 0;
// Antipodes
array0[21] = -85;
// Antipodes
array0[22] = +38;
// Antipodes
array0[23] = 0;
cartesianDistance[3] = 12740147.19;
orthodromicDistance[3] = 20003867.86;
/*
* Transforms all points, and then inverse transform them. The resulting
* array2 should be equal to array0 except for rounding errors. We tolerate
* maximal error of 0.1 second 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);
for (int i = 0; i < array0.length; ) {
assertEquals("Longitude", array2[i], array0[i], 0.1 / 3600);
i++;
assertEquals("Latitude", array2[i], array0[i], 0.1 / 3600);
i++;
assertEquals("Height", array2[i], array0[i], 0.01);
i++;
}
/*
* Compares the distances between "special" points with expected distances.
* This tests the ellipsoid orthodromic distance computation as well.
* We require a precision of 10 centimetres.
*/
for (int i = 0; i < array0.length / 6; i++) {
final int base = i * 6;
final double cartesian = MathFunctions.magnitude(array1[base + 0] - array1[base + 3], array1[base + 1] - array1[base + 4], array1[base + 2] - array1[base + 5]);
if (i < cartesianDistance.length) {
assertEquals("Cartesian distance", cartesianDistance[i], cartesian, 0.1);
}
/*
* Compares with orthodromic distance. Distance is computed using an ellipsoid
* at the maximal altitude (i.e. the length of semi-major axis is increased to
* fit the maximal altitude).
*/
try {
final double altitude = max(array0[base + 2], array0[base + 5]);
final DefaultEllipsoid ellip = DefaultEllipsoid.createFlattenedSphere(Collections.singletonMap(Ellipsoid.NAME_KEY, "Temporary"), ellipsoid.getSemiMajorAxis() + altitude, ellipsoid.getInverseFlattening(), ellipsoid.getAxisUnit());
double orthodromic = ellip.orthodromicDistance(array0[base + 0], array0[base + 1], array0[base + 3], array0[base + 4]);
orthodromic = hypot(orthodromic, array0[base + 2] - array0[base + 5]);
if (i < orthodromicDistance.length) {
assertEquals("Orthodromic distance", orthodromicDistance[i], orthodromic, 0.1);
}
assertTrue("Distance consistency", cartesian <= orthodromic);
} catch (ArithmeticException exception) {
// Orthodromic distance computation didn't converge. Ignore...
}
}
}
use of org.apache.sis.referencing.datum.DefaultEllipsoid in project sis by apache.
the class SecondDefiningParameterTest method testMarshallingSphere.
/**
* Tests marshalling of a sphere.
*
* @throws JAXBException if an error occurred during the marshalling process.
*/
@Test
public void testMarshallingSphere() throws JAXBException {
final DefaultEllipsoid ellipsoid = DefaultEllipsoid.createEllipsoid(Collections.singletonMap(DefaultEllipsoid.NAME_KEY, "Sphere"), 6371000, 6371000, Units.METRE);
final SecondDefiningParameter sdp = new SecondDefiningParameter(ellipsoid, false);
assertXmlEquals(SPHERE, marshal(sdp), "xmlns:*", "xsi:schemaLocation");
}
Aggregations