Navigation Menu

Skip to content

Commit

Permalink
[processing] fix parameter names in TauDEM algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Nov 26, 2014
1 parent 3c0a9ed commit 0d54a4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -6,4 +6,4 @@ ParameterRaster|-dm|Decay Multiplier Grid|False
ParameterRaster|-wg|Weight Grid|True
ParameterVector|-o|Outlets Shapefile|0|True
ParameterBoolean|-nc|Check for edge contamination|True
OutputRaster|-dsca|Upslope Dependence Grid
OutputRaster|-dsca|Decayed Specific Catchment Area Grid
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/taudem/dropanalysis.py
Expand Up @@ -77,7 +77,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterRaster(self.PIT_FILLED_GRID,
'Pit Filled Elevation Grid', False))
self.addParameter(ParameterRaster(self.ACCUM_STREAM_SOURCE_GRID,
'Contributing Area Grid', False))
'Accumulated Stream Source Grid', False))
self.addParameter(ParameterVector(self.OUTLETS_SHAPE,
'Outlets Shapefile',
[ParameterVector.VECTOR_TYPE_POINT], False))
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/taudem/gridnet.py
Expand Up @@ -71,7 +71,7 @@ def defineCharacteristics(self):
[ParameterVector.VECTOR_TYPE_POINT], True))
self.addParameter(ParameterRaster(self.MASK_GRID, 'Mask Grid', True))
self.addParameter(ParameterNumber(self.THRESHOLD,
'Proportion Threshold', 0, None, 100))
'Mask Threshold', 0, None, 100))

self.addOutput(OutputRaster(self.LONGEST_LEN_GRID,
'Longest Upslope Length Grid'))
Expand Down

0 comments on commit 0d54a4f

Please sign in to comment.