Skip to content
Snippets Groups Projects
__init__.py 1.58 KiB
# -*- coding: utf-8 -*-
"""
/***************************************************************************
 active_bands_evolution
                                 A QGIS plugin
 oui
 Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
                             -------------------
        begin                : 2022-04-06
        copyright            : (C) 2022 by oui2
        email                : oui3@mamacita.com
        git sha              : $Format:%H$
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/
 This script initializes the plugin, making it known to QGIS.
"""


# noinspection PyPep8Naming
def classFactory(iface):  # pylint: disable=invalid-name
    """Load active_bands_evolution class from file active_bands_evolution.

    :param iface: A QGIS interface instance.
    :type iface: QgsInterface
    """
    #
    from .active_channel_evolution import active_channel_evolution
    return active_channel_evolution(iface)