System.out.println("Band " + iBand + " :");
System.out.println(" DataType: " + band.getDataType());
System.out.println(" Size (" + band.getXSize() + "," + band.getYSize() + ")");
System.out.println(" PaletteInterp: " + gdal.GetColorInterpretationName(band.GetRasterColorInterpretation()));
for (int iOver = 0; iOver < band.GetOverviewCount(); iOver++)
{
Band over = band.GetOverview(iOver);
System.out.println(" OverView " + iOver + " :");
System.out.println(" DataType: " + over.getDataType());
System.out.println(" Size (" + over.getXSize() + "," + over.getYSize() + ")");