Skip to content

Commit

Permalink
Merge pull request #961 from gioman/grassvectorexport
Browse files Browse the repository at this point in the history
[processing] fixes ticket #8814
  • Loading branch information
volaya committed Oct 20, 2013
2 parents ac88d9f + 10312cc commit 8a11a82
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/grass/GrassAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def processAlgorithm(self, progress):

if isinstance(out, OutputVector):
filename = out.value
command = 'v.out.ogr -c -e -z input=' + out.name + uniqueSufix
command = 'v.out.ogr -s -c -e -z input=' + out.name + uniqueSufix
command += ' dsn="' + os.path.dirname(out.value) + '"'
command += ' format=ESRI_Shapefile'
command += ' olayer=' + os.path.basename(out.value)[:-4]
Expand Down
1 change: 0 additions & 1 deletion python/plugins/processing/grass/description/v.delaunay.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ v.delaunay - Creates a Delaunay triangulation from an input vector map containin
Vector (v.*)
ParameterVector|input|Input vector layer|0|False
ParameterBoolean|-r|Use only points in current region|True
ParameterBoolean|-l|Output triangulation as a graph (lines), not areas|True
OutputVector|output|Delaunay triangulation

0 comments on commit 8a11a82

Please sign in to comment.