6 changes: 6 additions & 0 deletions python/plugins/sextante/grass/description/r.random.raster.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
r.randon.raster
r.random.raster - Create random raster
Raster (r.*)
ParameterRaster|raster|Name of input raster map|False
ParameterNumericalValue|value|The number of points to allocate |None|None|1
OutputRaster|output|Output layer
4 changes: 2 additions & 2 deletions python/plugins/sextante/grass/description/v.to.points.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ v.to.points - Create points along input lines
Vector (v.*)
ParameterVector|input|Input lines layer|1|False
ParameterString|dmax|Maximum distance between points in map units|100
ParameterBoolean|-n|Write line nodes|True
ParameterBoolean|-v|Write line vertices|True
ParameterBoolean|-i|Interpolate points between line vertices|False
OutputVector|output|Output vector map where points will be written

OutputVector|output|Output vector map where points will be written
2 changes: 1 addition & 1 deletion python/plugins/sextante/otb/OTBAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def processAlgorithm(self, progress):
self.roiVectors[param.value] = roiFile
else:
commands.append(param.value)
if isinstance(param, ParameterRaster):
elif isinstance(param, ParameterRaster):
commands.append(param.name)
if self.hasROI:
roiFile = SextanteUtils.getTempFilename('tif')
Expand Down