Skip to content

Commit 52ccc43

Browse files
rudivsdetlevn
andcommitted
[feature] Adapted k-neighbour concave hull plugin as QGIS 3 algorithm
Co-authored-by: Detlev Neumann <dneumann@geospatial-services.de>
1 parent 6fcc162 commit 52ccc43

File tree

4 files changed

+716
-2
lines changed

4 files changed

+716
-2
lines changed
Loading

python/plugins/processing/algs/qgis/ConcaveHull.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ def initAlgorithm(self, config=None):
6969
self.addParameter(QgsProcessingParameterBoolean(self.NO_MULTIGEOMETRY,
7070
self.tr('Split multipart geometry into singleparts geometries'), defaultValue=False))
7171

72-
self.addParameter(QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Concave hull'), type=QgsProcessing.TypeVectorPolygon))
72+
self.addParameter(QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Output layer'), type=QgsProcessing.TypeVectorPolygon))
7373

7474
def name(self):
7575
return 'concavehull'
7676

7777
def displayName(self):
78-
return self.tr('Concave hull')
78+
return self.tr('Concave hull (using alpha shapes algorithm)')
7979

8080
def processAlgorithm(self, parameters, context, feedback):
8181
layer = self.parameterAsSource(parameters, ConcaveHull.INPUT, context)

0 commit comments

Comments
 (0)