Skip to content

Commit 4065d57

Browse files
committedApr 26, 2013
[sextante] fixed problem in otb with filepaths containing whitespaces.
Removed outdated otb descriptions
1 parent f384277 commit 4065d57

File tree

3 files changed

+1
-42
lines changed

3 files changed

+1
-42
lines changed
 

‎python/plugins/sextante/otb/OTBAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def processAlgorithm(self, progress):
159159

160160
for out in self.outputs:
161161
commands.append(out.name)
162-
commands.append(out.value)
162+
commands.append('"' + out.value + '"')
163163
for roiInput, roiFile in self.roiRasters.items():
164164
startX, startY = float(self.roiValues[0]), float(self.roiValues[1])
165165
sizeX = float(self.roiValues[2]) - startX

‎python/plugins/sextante/otb/description/RadiometricVegetationIndices.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

‎python/plugins/sextante/otb/description/RadiometricWaterIndices.txt

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.