Skip to content

Commit d7c4247

Browse files
author
volayaf
committedJun 1, 2012
added iimproved GRASS algorithm description by M. Neteler and patch for #5674 by M.Metz
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@205 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent 24fec70 commit d7c4247

File tree

153 files changed

+249
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+249
-302
lines changed
 

‎src/sextante/grass/GrassAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def processAlgorithm(self, progress):
238238
command += " output=\"" + filename + "\""
239239
commands.append(command)
240240
if isinstance(out, OutputVector):
241-
command = "v.out.ogr -e input=" + out.name
241+
command = "v.out.ogr -ce input=" + out.name
242242
command += " dsn=\"" + os.path.dirname(out.value) + "\""
243243
command += " format=ESRI_Shapefile"
244244
command += " olayer=" + os.path.basename(out.value)[:-4]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
i.attcorr
2-
Atmospheric correction
3-
Imagery (i.*)
4-
ParameterRaster|iimg|Name of input raster map|False
5-
ParameterBoolean|-a|Input from ETM+ image taken after July 1, 2000|False
6-
ParameterBoolean|-b|Input from ETM+ image taken before July 1, 2000|False
7-
ParameterRaster|ialt|Input altitude raster map in m (optional)|True
8-
ParameterRaster|ivis|Input visibility raster map in km (optional)|True
9-
ParameterFile|icnd|Name of input text file|False
10-
ParameterRange|iscl|Input imagery range [0,255]|0,255
11-
ParameterBoolean|-o|Try to increase computation speed when altitude and/or visibility map is used|True
12-
OutputRaster|oimg|Name for output raster map
13-
ParameterBoolean|-f|Output raster is floating point|False
14-
ParameterRange|oscl|Rescale output raster map [0,255]|0,255
15-
1+
i.atcorr
2+
i.atcorr - Performs atmospheric correction using the 6S algorithm.
3+
Imagery (i.*)
4+
ParameterRaster|iimg|Name of input raster map|False
5+
ParameterBoolean|-a|Input from ETM+ image taken after July 1, 2000|False
6+
ParameterBoolean|-b|Input from ETM+ image taken before July 1, 2000|False
7+
ParameterRaster|ialt|Input altitude raster map in m (optional)|True
8+
ParameterRaster|ivis|Input visibility raster map in km (optional)|True
9+
ParameterFile|icnd|Name of input text file|False
10+
ParameterRange|iscl|Input imagery range [0,255]|0,255
11+
ParameterBoolean|-o|Try to increase computation speed when altitude and/or visibility map is used|True
12+
OutputRaster|oimg|Name for output raster map
13+
ParameterBoolean|-f|Output raster is floating point|False
14+
ParameterRange|oscl|Rescale output raster map [0,255]|0,255
15+

0 commit comments

Comments
 (0)
Please sign in to comment.