*/
final GridCoverage2D coverage; // The final grid coverage.
final BufferedImage image; // The GridCoverage's data.
final WritableRaster raster; // The image's data as a raster.
final Rectangle2D bounds; // The GridCoverage's envelope.
final GridSampleDimension band; // The only image's band.
band = new GridSampleDimension("Temperature", new Category[] {
new Category("No data", null, 0),
new Category("Land", null, 1),
new Category("Cloud", null, 2),
new Category("Temperature", null, BEGIN_VALID, 256, SCALE, OFFSET)
}, CELSIUS);