-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlightSimulatorTools.py
62 lines (45 loc) · 1.99 KB
/
FlightSimulatorTools.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
"""Flight Simulator Tools
.. note:: 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.
"""
__author__ = '(C) 2020 by Mathieu Pellerin'
__date__ = '05/09/2020'
__copyright__ = 'Copyright 2020, Mathieu Pellerin'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
import os
from FlightSimulatorTools.algorithms import FlightPlanMakerProcessingAlgorithm
from qgis.core import QgsApplication, QgsProcessingProvider
from qgis.PyQt.QtGui import QIcon
VERSION = '0.1'
class FlightSimulatorToolsProvider(QgsProcessingProvider):
def __init__(self): # pylint: disable=useless-super-delegation
QgsProcessingProvider.__init__(self)
def loadAlgorithms(self): # pylint: disable=missing-docstring
for alg in [FlightPlanMakerProcessingAlgorithm]:
self.addAlgorithm(alg())
def id(self): # pylint: disable=missing-docstring
return 'flightsimulatortools'
def name(self): # pylint: disable=missing-docstring
return 'Flight Simulator Tools'
def longName(self): # pylint: disable=missing-docstring
return 'Various Flight Simulator Tools'
def icon(self): # pylint: disable=missing-docstring
return QIcon(os.path.join(os.path.dirname(__file__),'icon.svg'))
def versionInfo(self):
# pylint: disable=missing-docstring
return '0.1'
class FlightSimulatorToolsPlugin:
def __init__(self, iface):
super().__init__()
self.iface = iface
self.plugin_dir = os.path.dirname(__file__)
self.provider = FlightSimulatorToolsProvider()
def initGui(self):
QgsApplication.processingRegistry().addProvider(self.provider)
def unload(self):
QgsApplication.processingRegistry().removeProvider(self.provider)
self.provider = None