Skip to content
Snippets Groups Projects
__init__.py 1.49 KiB
Newer Older
  • Learn to ignore specific revisions
  • unknown's avatar
    unknown committed
    # -*- coding: utf-8 -*-
    """
    /***************************************************************************
    
    unknown's avatar
    unknown committed
     SenseCarbon Time Series Viewer
    
    unknown's avatar
    unknown committed
                                     A QGIS plugin
    
    unknown's avatar
    unknown committed
    
    
    unknown's avatar
    unknown committed
                                 -------------------
            begin                : 2015-08-20
            copyright            : (C) 2015 by HU-Berlin
            email                : bj@geo.hu-berlin.de
            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
    
    unknown's avatar
    unknown committed
        """Load SenseCarbon_TSV class from file sensecarbon_tsv.py.
    
    unknown's avatar
    unknown committed
    
        :param iface: A QGIS interface instance.
        :type iface: QgsInterface
        """
        #
    
        from  timeseriesviewerplugin import TimeSeriesViewerPlugin
        return TimeSeriesViewerPlugin(iface)