from qgis.PyQt.QtCore import QCoreApplication from .utils.algo import SKAlgorithm from .icons import QIcon_ClusterTool class ClusterAlgorithm(SKAlgorithm): """ """ TYPE = "cluster" TMP_DIR = "iamap_cluster" def tr(self, string): """ Returns a translatable string with the self.tr() function. """ return QCoreApplication.translate("Processing", string) def createInstance(self): return ClusterAlgorithm() def name(self): """ Returns the algorithm name, used for identifying the algorithm. This string should be fixed for the algorithm, and must not be localised. The name should be unique within each provider. Names should contain lowercase alphanumeric characters only and no spaces or other formatting characters. """ return "cluster" def displayName(self): """ Returns the translated algorithm name, which should be used for any user-visible display of the algorithm name. """ return self.tr("Clustering") def group(self): """ Returns the name of the group this algorithm belongs to. This string should be localised. """ return self.tr("") def groupId(self): """ Returns the unique ID of the group this algorithm belongs to. This string should be fixed for the algorithm, and must not be localised. The group id should be unique within each provider. Group id should contain lowercase alphanumeric characters only and no spaces or other formatting characters. """ return "" def shortHelpString(self): """ Returns a localised short helper string for the algorithm. This string should provide a basic description about what the algorithm does and the parameters and outputs associated with it.. """ return self.tr( f"Cluster a raster. Only KMeans is thoughfully tested. Other algorithms are implemented as is by sklearn. {self.get_help_sk_methods()}" ) def icon(self): return QIcon_ClusterTool