mirror of
https://github.com/qgis/QGIS.git
synced 2025-06-19 00:02:48 -04:00
Merge pull request #961 from gioman/grassvectorexport
[processing] fixes ticket #8814
This commit is contained in:
commit
8a11a82c6d
@ -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]
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user