Installation
Important
The EO TSV plugin requires QGIS Version 3.10 or higher
QGIS 3 Plugin Installation
Developers
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.
Clone the eo-time-series-viewer repository and checkout the development branch:
git clone https://bitbucket.org/jakimowb/eo-time-series-viewer.git git checkout develop git lfs checkout
Make the repository eo-time-series-viewer folder accessible to your python project
Call timeseriesviewer/main.py or the folliwing code to start the EO Time Series Viewer:
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