diff --git a/contrib/geomason/sim/io/geo/GDALImporter.java b/contrib/geomason/sim/io/geo/GDALImporter.java index 31c939ff7..8208864df 100644 --- a/contrib/geomason/sim/io/geo/GDALImporter.java +++ b/contrib/geomason/sim/io/geo/GDALImporter.java @@ -125,7 +125,7 @@ private static void readIntegerBased(int xSize, int ySize, Band band, IntGrid2D for (int currRow = 0; currRow < ySize; currRow++) { - //result = band.ReadRaster(0, currRow, xSize, 1, line); + result = band.ReadRaster(0, currRow, xSize, 1, line); if (result != gdalconstConstants.CE_None) { throw new RuntimeException("Problem reading raster"); @@ -158,7 +158,7 @@ private static void readDoubleBased(int xSize, int ySize, Band band, DoubleGrid2 for (int currRow = 0; currRow < ySize; currRow++) { - //result = band.ReadRaster(0, currRow, xSize, 1, line); + result = band.ReadRaster(0, currRow, xSize, 1, line); if (result != gdalconstConstants.CE_None) { throw new RuntimeException("Problem reading raster");