Skip to content
Snippets Groups Projects
installation.rst 1.52 KiB
Newer Older
  • Learn to ignore specific revisions
  • .. include:: icon_links.rst
    
    ============
    Installation
    ============
    
    
    
    .. important:: The EO TSV plugin requires `QGIS Version 3.4 or higher <https://www.qgis.org/en/site/forusers/download.html>`_
    
    
    QGIS 3 Plugin Installation
    --------------------------
    
    #. Open QGIS
    #. In the menu bar go to :menuselection:`Plugins --> Manage and Install Plugins...`
    #. Switch to the **All** tab and search for ``EO Time Series Viewer``
    
       .. figure:: img/install_plugin.png
    
    #. Click on :guilabel:`Install Plugin` to start the installation
    #. Start the EO Time Series Viewer via the |icon| icon or from the menu bar :menuselection:`Raster --> EO Time Series Viewer`
    
    Fabian Thiel's avatar
    Fabian Thiel committed
    Developers
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    ----------
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    1. Please follow http://enmap-box.readthedocs.io/en/latest/dev_section/dev_installation.html to set up your IDE for developing a QGIS python application and ensure that git and git-lfs is installed.
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    2. Clone the eo-time-series-viewer repository and checkout the development branch::
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
            git clone https://bitbucket.org/jakimowb/eo-time-series-viewer.git
            git checkout develop
            git lfs checkout
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    3. Make the repository *eo-time-series-viewer* folder accessible to your python project
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    4. Call *timeseriesviewer/main.py* or the folliwing code to start the EO Time Series Viewer::
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
        from timeseriesviewer.utils import initQgisApplication
        qgsApp = initQgisApplication()
        ts = TimeSeriesViewer(None)
        ts.run()
        qgsApp.exec_()
        qgsApp.exitQgis()
    
    .. todo:: add detailed description how to setup an IDE to run the EO Time Series Viewer without QGIS