@Test
public void testProjected4D() throws Exception {
CoordinateReferenceSystem targetCRS = CRS.decode("EPSG:3395");
CoordinateReferenceSystem sourceCRS = CRS.decode("EPSG:27572");
sourceCRS = new DefaultCompoundCRS("3D", sourceCRS, DefaultVerticalCRS.ELLIPSOIDAL_HEIGHT);
sourceCRS = new DefaultCompoundCRS("4D", sourceCRS, DefaultTemporalCRS.JULIAN);
CRS.findMathTransform(sourceCRS, targetCRS);
}