Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
__main__.py 1.44 KiB
# -*- coding: utf-8 -*-

"""
***************************************************************************

    ---------------------
    Date                 : 10.08.2017
    Copyright            : (C) 2017 by Benjamin Jakimow
    Email                : benjamin jakimow at geo dot hu-berlin dot de
***************************************************************************
*                                                                         *
*   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.                                   *
*                                                                         *
***************************************************************************
"""


def run():
    # add site-packages to sys.path
    from eotimeseriesviewer.tests import initQgisApplication

    import qgis.utils
    from qgis.gui import QgisInterface
    qgisIface = isinstance(qgis.utils.iface, QgisInterface)

    if not qgisIface:
        qgsApp = initQgisApplication()

    from eotimeseriesviewer import initAll
    initAll()

    from eotimeseriesviewer.main import TimeSeriesViewer

    ts = TimeSeriesViewer()
    ts.run()

    if not qgisIface:
        qgsApp.exec_()
        qgsApp.exitQgis()



if __name__ == '__main__':

    run()