Assert.assertEquals(40, transformed.getHeight(), DELTA);
}
@Test
public void getCrsTransformCrsTest() throws Exception {
MathTransform mathTransform = geoService.findMathTransform(CRS.decode(LONLAT), CRS.decode(LAMBERT72));
Assert.assertEquals("EPSG:4326->EPSG:31300", ((CrsTransform)mathTransform).getId());
CrsTransform crsTransform = geoService.getCrsTransform(LONLAT, LAMBERT72);
Assert.assertEquals("EPSG:4326->EPSG:31300", crsTransform.getId());
Assert.assertTrue(crsTransform.equals(mathTransform));