File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/plugins/processing/algs/lidar/fusion Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def defineCharacteristics(self):
51
51
self .addParameter (ParameterFile (
52
52
self .INPUT , self .tr ('Input LAS layer' )))
53
53
self .addOutput (OutputFile (
54
- self .OUTPUT , self .tr ('Output file with tabular metric information' ), 'dtm ' ))
54
+ self .OUTPUT , self .tr ('Output file with tabular metric information' ), 'csv ' ))
55
55
above = ParameterString (self .ABOVE , self .tr ('Above' ), '' , False )
56
56
above .isAdvanced = True
57
57
self .addParameter (above )
@@ -75,10 +75,10 @@ def processAlgorithm(self, progress):
75
75
commands .append ('/above:' + unicode (above ))
76
76
firstImpulse = self .getParameterValue (self .FIRSTIMPULSE )
77
77
if firstImpulse :
78
- commands .append ('/firstinpulse:' + firstImpulse )
78
+ commands .append ('/firstinpulse' )
79
79
firstReturn = self .getParameterValue (self .FIRSTRETURN )
80
80
if firstReturn :
81
- commands .append ('/firstreturn:' + firstReturn )
81
+ commands .append ('/firstreturn' )
82
82
htmin = self .getParameterValue (self .HTMIN )
83
83
if unicode (htmin ).strip () != '' :
84
84
commands .append ('/minht:' + unicode (htmin ))
You can’t perform that action at this time.
0 commit comments