*/
RenderedImage back = PlanarImage.wrapRenderedImage(target).getAsBufferedImage();
coverage = factory.create("Test", back, DefaultGeographicCRS.WGS84,
identity, new GridSampleDimension[]{band.geophysics(true)}, null, null);
back = coverage.view(ViewType.PACKED).getRenderedImage();
assertEquals(DataBuffer.TYPE_BYTE, back.getSampleModel().getDataType());
sourceData = source.getData().getSamples(0, 0, SIZE, SIZE, 0, (double[]) null);
targetData = back.getData().getSamples(0, 0, SIZE, SIZE, 0, (double[]) null);
CategoryListTest.compare(sourceData, targetData, 1.0 + EPS);
/*