-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.py
44 lines (35 loc) · 1.44 KB
/
provider.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
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())
# 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"
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")
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()