Skip to content

Commit 2890dfd

Browse files
committedFeb 24, 2013
[sextante] changed saga cmdname method and modified merge raster algorithm description
1 parent eb64c07 commit 2890dfd

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed
 

‎python/plugins/sextante/saga/SagaAlgorithm.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,3 +385,9 @@ def checkBeforeOpeningParametersDialog(self):
385385

386386
def helpFile(self):
387387
return os.path.join(os.path.dirname(__file__), "help", self.name.replace(" ", "") + ".html")
388+
389+
def commandLineName(self):
390+
name = self.provider.getName().lower() + ":" + self.cmdname.lower()
391+
validChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:"
392+
name = ''.join(c for c in name if c in validChars)
393+
return name

‎python/plugins/sextante/saga/description/DecisionTree.txt

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

‎python/plugins/sextante/saga/description/Merging.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ ParameterMultipleInput|GRIDS|Grids to Merge|3|False
55
ParameterSelection|TYPE|Preferred data storage type|[0] 1 bit;[1] 1 byte unsigned integer;[2] 1 byte signed integer;[3] 2 byte unsigned integer;[4] 2 byte signed integer;[5] 4 byte unsigned integer;[6] 4 byte signed integer;[7] 4 byte floating point;[8] 8 byte floating point
66
ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
77
ParameterSelection|OVERLAP|Overlapping Cells|[0] mean value;[1] first value in order of grid list
8-
ParameterNumber|MERGE_INFO_MESH_SIZE|Cell Size|0.0|None|1.0
98
OutputRaster|MERGED|Merged Grid

0 commit comments

Comments
 (0)
Please sign in to comment.