I have a simple GridGeometry2D in Geotools 13.1 that is created like this:
GridEnvelope grid = new GridEnvelope2D(0, 0, 100, 100);Envelope2D envelope = new Envelope2D(CRS.decode("EPSG:3857"), 10.0, 10.0, 1.0, 1.0);GridGeometry2D geom = new GridGeometry2D(grid, envelope);For a quick test, I'm...