-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprovider.py
40 lines (33 loc) · 1.47 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
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import os
from qgis.core import QgsProcessingProvider
from qgis.PyQt.QtGui import QIcon
from .sunposition import SunPositionAlgorithm
from .moonposition import MoonPositionAlgorithm
from .daynight import DayNightAlgorithm
from .planetpositions import PlanetPositionsAlgorithm
class EarthSunMoonProvider(QgsProcessingProvider):
def unload(self):
QgsProcessingProvider.unload(self)
def loadAlgorithms(self):
self.addAlgorithm(SunPositionAlgorithm())
self.addAlgorithm(MoonPositionAlgorithm())
self.addAlgorithm(DayNightAlgorithm())
self.addAlgorithm(PlanetPositionsAlgorithm())
def icon(self):
return QIcon(os.path.dirname(__file__) + '/icons/sun.svg')
def id(self):
return 'earthsunmoon'
def name(self):
return 'Earth, sun, moon & planets'
def longName(self):
return self.name()