use of org.apache.sis.metadata.iso.extent.DefaultGeographicBoundingBox in project sis by apache.
the class BursaWolfParametersTest method createED87_to_WGS84.
/**
* Returns the parameters for the <cite>ED87 to WGS 84 (1)</cite> transformation (EPSG:1146).
* Area of validity is the North Sea: 5.05°W to 11.13°E in longitude and 51.04°N to 62.0°N in latitude.
*/
static BursaWolfParameters createED87_to_WGS84() {
final BursaWolfParameters bursaWolf = new BursaWolfParameters(GeodeticDatumMock.WGS84, new DefaultExtent("Europe - North Sea", new DefaultGeographicBoundingBox(-5.05, 11.13, 51.04, 62.0), null, null));
bursaWolf.tX = -82.981;
bursaWolf.tY = -99.719;
bursaWolf.tZ = -110.709;
bursaWolf.rX = -0.5076;
bursaWolf.rY = 0.1503;
bursaWolf.rZ = 0.3898;
bursaWolf.dS = -0.3143;
bursaWolf.verify(PrimeMeridianMock.GREENWICH);
assertFalse("isIdentity", bursaWolf.isIdentity());
assertFalse("isTranslation", bursaWolf.isTranslation());
return bursaWolf;
}
Aggregations