QGIS Plugin to connect and use openEO compliant backends.
Compatible with backends compliant with openEO API version 1.0.0 and above.
Compatible with QGIS >= 3.40 (tested on 3.40.4, 3.40.13, and 3.44.5)
The openEO QGIS Plugin "OpenEO" allows connecting to openEO backends, list the user (batch) jobs and load the resulting images into a new QGIS Layer. For creating process graphs, it is recommended to use the openEO Web Editor or one of the other clients.
- List all openEO compliant backends listed at the openEO Hub
- Connect to an openEO compliant backend
- Authenticate connections to backends: Supports:
- Basic authentication (username, password)
- OpenID Connect authentication (device code flow)
- List available collections, Web services, and Batch Jobs in the Qgis Browser
- Add Preview of available Collections as QGIS Layers
- Add web services as QGIS Layers
- Add Batch Job results as QGIS Layers
- View Details for:
- Connections
- Batch Jobs
- Collections
- Web Services
- View logs of batch jobs and web services
- Open the official openEO Web Editor in the systems system browser
This plugin supports visualizing the following file formats and web services within QGIS:
| Service type | Support |
|---|---|
| XYZ | Yes |
| WMTS | Yes, KVP encoding only |
| Service type | Support |
|---|---|
| XYZ | Yes |
| WMTS | Yes, KVP encoding only |
| File type | Data Type | Support |
|---|---|---|
| GeoTIFF | Raster | Yes |
| GeoJSON | Vector | Yes |
| NetCDF | Vector & Raster | Yes, raster only |
| Geoparquet | Vector | Yes |
| ZARR | Raster | Not supported |
| GIF/JPEG/PNG | Raster | Not supported |
| CSV | Tabular | Not supported |
| JSON | Tabular | Not supported by QGIS |
See #167 for more details.
Need some additional features? Leave an issue at this repository!
There are two options on installing the plugin to your local QGIS Desktop application:
This is the recommended way if you want to get the most recent stable version of the plugin.
- Start QGIS Desktop application
- Go to "Plugins" and then "Manage and Install Plugins"
- Go to "Not Installed" and search for "openEO"
- Click on "openEO" and click "Install"
- The openEO logo should be visible in the toolbar
This is the recommended way if you want to get the most recent version of the plugin.
-
Download or clone the repository
git clone https://github.com/Open-EO/openeo-qgis-plugin -
Navigate into the plugin directory
cd openeo-qgis-plugin -
Compress the plugin directory as a ZIP file
zip -r openeo_plugin.zip openeo_plugin(on Linux/Mac) -
Start QGIS Desktop application
-
Go to "Plugins" and then "Manage and Install Plugins"
-
Go to "Install from ZIP", choose the newly created zip file, and click "Install Plugin"
-
The plugin "qpip" will be installed as a dependency. This is currently used to install the required openeo python client dependencies
- Press "OK" on the Plugin Dependencies Manager prompt, then press "OK" on the qpip prompt
-
After a successful installation, an "openEO" entry will be visible in the QGIS browser on the left side
The github release version is accessible on the GitHub releases page.
- Download the zip
"openeo_plugin.zip"archive. - Open the plugin manager of QGIS
"Plugins"->"Manage and Install Plugins"- Select
"Install from ZIP". - Browse to the downloaded ZIP archive, install and activate it.
If the installation of qpip or openeo does not happen automatically, try installing qpip beforehand using the plugin manager.
If use of qpip is not possible, pip install openeo may be used to install the necessary python dependency.
- After successful installation, an "openEO" entry will be visible in the QGIS Browser (the resource manager that can usually be found on the left side).
- Create a new openEO connection by right clicking and either selecting a provider from the available list provided by openEO Hub or entering connection details by yourself.
- You may now expand the openEO entry with the little "Plus" symbol that appears next to it.
- (Optional) Right click on the created connection and select "log In" to authenticate your connection.
- You can find collections, batch jobs, and web services that are visible to the authenticated user inside the folder icons with the corresponding names.
For setting up your development environment it is highly recommended to install the plugin-reloader plugin for qgis to prevent constant qgis restarts.
Once you have cloned the repository in your working directory, create a Symlink of the openeo_plugin folder into the ./python/plugins directory that is located within your qgis profile directory. This will ensure that changes you make to the plugin will appear within qgis upon use of the plugin reloader.
example: (linux)
cd openeo-qgis-plugin
ln -s openeo_plugin /home/{USER}/.local/share/QGIS/QGIS3/profiles/defaultTo build the plugin GUI files you will need the pb_tool CLI tool.
To compile the ui of the plugin, run the compile_ui.sh-script in the root directory of this repository:
(note, this requires pyqt6-tools to be installed pip install pyqt6-tools)
./compile_ui.shCompiling is needed any time the resources.py file needs to be rebuilt and the .ui files are modified.
Upon changes to .pre-commit-config.yaml, run pre-commit install



