Merge pull request #961 from gioman/grassvectorexport

[processing] fixes ticket #8814
This commit is contained in:
volaya 2013-10-20 08:53:08 -07:00
commit 8a11a82c6d
2 changed files with 1 additions and 2 deletions

View File

@ -381,7 +381,7 @@ class GrassAlgorithm(GeoAlgorithm):
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]

View File

@ -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