QGIS/python/plugins/otbprovider/OtbProviderPlugin.py
Alexander Bruy e1cf15cafd re-add run-time profiling
be friendly to qgis_process
2021-06-21 07:17:36 +03:00

44 lines
1.5 KiB
Python

# -*- coding: utf-8 -*-
"""
***************************************************************************
OtbProviderPlugin.py
---------------------
Date : June 2021
Copyright : (C) 2021 by Alexander Bruy
Email : alexander dot bruy at gmail dot com
***************************************************************************
* *
* 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__ = 'Alexander Bruy'
__date__ = 'June 2021'
__copyright__ = '(C) 2021, Alexander Bruy'
from qgis.core import QgsApplication, QgsRuntimeProfiler
with QgsRuntimeProfiler.profile('Import OTB Provider'):
from otbprovider.OtbAlgorithmProvider import OtbAlgorithmProvider
class OtbProviderPlugin:
def __init__(self):
self.provider = OtbAlgorithmProvider()
def initProcessing(self):
QgsApplication.processingRegistry().addProvider(self.provider)
def initGui(self):
self.initProcessing()
def unload(self):
QgsApplication.processingRegistry().removeProvider(self.provider)