{
final AffineTransform atr = AffineTransform.getTranslateInstance(5, 5);
atr.concatenate(getAffineTransform(coverage));
final MathTransform tr = ProjectiveTransform.create(atr);
CoordinateReferenceSystem crs = coverage.getCoordinateReferenceSystem();
crs = new DefaultDerivedCRS("Translated", crs, tr, crs.getCoordinateSystem());
assertEquals(asCRS,
showProjected(coverage, crs, null, hints, useGeophysics));
// Same operation, given the translation in the GridGeometry argument rather than the CRS.
final GridGeometry2D gg = new GridGeometry2D(null, tr, null);