Skip to content
Snippets Groups Projects
provider.py 1.44 KiB
Newer Older
paul.tresson_ird.fr's avatar
paul.tresson_ird.fr committed
from qgis.core import QgsProcessingProvider

from .encoder import EncoderAlgorithm
from .reduction import ReductionAlgorithm
from .clustering import ClusterAlgorithm
from .similarity import SimilarityAlgorithm
from .ml import MLAlgorithm
paul.tresson_ird.fr's avatar
paul.tresson_ird.fr committed
from .icons import QIcon_EncoderTool


class IAMapProvider(QgsProcessingProvider):
    def loadAlgorithms(self, *args, **kwargs):
        self.addAlgorithm(EncoderAlgorithm())
        self.addAlgorithm(ReductionAlgorithm())
        self.addAlgorithm(ClusterAlgorithm())
        self.addAlgorithm(SimilarityAlgorithm())
        self.addAlgorithm(MLAlgorithm())
paul.tresson_ird.fr's avatar
paul.tresson_ird.fr committed
        # add additional algorithms here
        # self.addAlgorithm(MyOtherAlgorithm())

    def id(self, *args, **kwargs):
        """The ID of your plugin, used for identifying the provider.

        This string should be a unique, short, character only string,
        eg "qgis" or "gdal". This string should not be localised.
        """
        return "iamap"
paul.tresson_ird.fr's avatar
paul.tresson_ird.fr committed

    def name(self, *args, **kwargs):
        """The human friendly name of your plugin in Processing.

        This string should be as short as possible (e.g. "Lastools", not
        "Lastools version 1.0.1 64-bit") and localised.
        """
        return self.tr("IAMap")
paul.tresson_ird.fr's avatar
paul.tresson_ird.fr committed

    def icon(self):
        """Should return a QIcon which is used for your provider inside
        the Processing toolbox.
        """
        return QIcon_EncoderTool

    def longName(self) -> str:
        return self.name()