Skip to content

Commit a55fbd8

Browse files
committedSep 5, 2017
[FEATURE] Remove Singleparts to Multiparts algorithm
This algorithm is no longer required - it's been replaced by the 'Promote to multipart' and 'Collect geometries" algorithms. Tagged as feature to remember to include in release notes
1 parent 16c4f83 commit a55fbd8

File tree

4 files changed

+1
-129
lines changed

4 files changed

+1
-129
lines changed
 

‎python/plugins/processing/algs/help/qgis.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -544,9 +544,6 @@ qgis:simplifygeometries: >
544544

545545
The algorithm gives a choice of simplification methods, including distance based (the "Douglas-Peucker" algorithm), area based ("Visvalingam" algorithm) and snapping geometries to grid.
546546

547-
qgis:singlepartstomultipart:
548-
549-
550547
qgis:singlesidedbuffer: >
551548
This algorithm buffers lines by a specified distance on one side of the line only.
552549

‎python/plugins/processing/algs/qgis/QGISAlgorithmProvider.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@
144144
from .ShortestPathPointToLayer import ShortestPathPointToLayer
145145
from .ShortestPathPointToPoint import ShortestPathPointToPoint
146146
from .SimplifyGeometries import SimplifyGeometries
147-
from .SinglePartsToMultiparts import SinglePartsToMultiparts
148147
from .SingleSidedBuffer import SingleSidedBuffer
149148
from .Slope import Slope
150149
from .Smooth import Smooth
@@ -292,7 +291,6 @@ def getAlgs(self):
292291
ShortestPathPointToLayer(),
293292
ShortestPathPointToPoint(),
294293
SimplifyGeometries(),
295-
SinglePartsToMultiparts(),
296294
SingleSidedBuffer(),
297295
Slope(),
298296
Smooth(),

‎python/plugins/processing/algs/qgis/SinglePartsToMultiparts.py

Lines changed: 0 additions & 123 deletions
This file was deleted.

‎python/plugins/processing/tests/testdata/qgis_algorithm_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2683,7 +2683,7 @@ tests:
26832683
name: expected/mean_coordinates.gml
26842684
type: vector
26852685

2686-
- algorithm: qgis:singlepartstomultipart
2686+
- algorithm: native:collect
26872687
name: single part to multipart
26882688
params:
26892689
FIELD: id

0 commit comments

Comments
 (0)
Please sign in to comment.