[processing] Remove space in GDAL warp which causes issues when alg is called from script.

This commit is contained in:
radosuav 2015-06-15 11:29:20 +02:00
parent 8fbee12106
commit 12c1c869ee

View File

@ -41,7 +41,7 @@ class warp(GdalAlgorithm):
INPUT = 'INPUT'
OUTPUT = 'OUTPUT'
SOURCE_SRS = 'SOURCE_SRS'
DEST_SRS = 'DEST_SRS '
DEST_SRS = 'DEST_SRS'
METHOD = 'METHOD'
METHOD_OPTIONS = ['near', 'bilinear', 'cubic', 'cubicspline', 'lanczos']
TR = 'TR'