Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Processing] Fix TypeError in Zonal Statistics algorithm
Fixes #14412
  • Loading branch information
radosuav authored and alexbruy committed Mar 9, 2016
1 parent 107d30a commit 29bf95c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions python/plugins/processing/tools/raster.py
Expand Up @@ -64,8 +64,14 @@ def scanraster(layer, progress):


def mapToPixel(mX, mY, geoTransform):
(pX, pY) = gdal.ApplyGeoTransform(
gdal.InvGeoTransform(geoTransform)[1], mX, mY)
try:
# GDAL 1.x
(pX, pY) = gdal.ApplyGeoTransform(
gdal.InvGeoTransform(geoTransform)[1], mX, mY)
except TypeError:
# GDAL 2.x
(pX, pY) = gdal.ApplyGeoTransform(
gdal.InvGeoTransform(geoTransform), mX, mY)
return (int(pX), int(pY))


Expand Down

0 comments on commit 29bf95c

Please sign in to comment.