Skip to content

Commit

Permalink
added error handling for too big rasters
Browse files Browse the repository at this point in the history
I ran into memory problems with big rasters. Now the error message points the user to this potential error source.
  • Loading branch information
anitagraser committed Mar 31, 2014
1 parent 04d7169 commit 9ef91a2
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -95,7 +95,11 @@
progress.setPercentage(int(current * total))

rasterBand = raster.GetRasterBand(i + 1)
data = rasterBand.ReadAsArray()
try:
data = rasterBand.ReadAsArray()
except:
raise GeoAlgorithmExecutionException(
'Error reading raster data. File might be too big.')
layer.ResetReading()
feature = layer.GetNextFeature()
while feature is not None:
Expand Down

0 comments on commit 9ef91a2

Please sign in to comment.