Skip to content

Commit d4c38f9

Browse files
committedNov 29, 2016
[FEATURE][processing] Remove duplicate fill holes algorithm
The Fill_holes script is duplicated by the DeleteHoles algorithm, and the DeleteHoles algorithm has many advantages: - it's a full algorithm rather than a script - uses qgis geometry classes and maintains curves/z/m - has unit tests - doesn't rely on non-standard external library (shapely) (marked as feature for inclusion in release notes)
1 parent 45a52df commit d4c38f9

File tree

2 files changed

+1
-45
lines changed

2 files changed

+1
-45
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class DeleteHoles(GeoAlgorithm):
4141
def defineCharacteristics(self):
4242
self.name, self.i18n_name = self.trAlgorithm('Delete holes')
4343
self.group, self.i18n_group = self.trAlgorithm('Vector geometry tools')
44-
self.tags = self.tr('remove,delete,drop,holes,rings')
44+
self.tags = self.tr('remove,delete,drop,holes,rings,fill')
4545

4646
self.addParameter(ParameterVector(self.INPUT,
4747
self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POLYGON]))

‎python/plugins/processing/algs/qgis/scripts/Fill_holes.py

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

0 commit comments

Comments
 (0)
Please sign in to comment.