QGIS Web Feature Services

Overview
Creative Commons License: CC-BY Questions:
  • How to use WFS webservice to access and import GIS data through Galaxy

Objectives:
  • Deal with QGIS execution management

  • Access, filter, and import GIS data using WFS webservice

Requirements:
Time estimation: 0 hours 30 minutes
Supporting Materials:
Published: Oct 11, 2023
Last modification: Jan 19, 2024
License: Tutorial Content is licensed under Creative Commons Attribution 4.0 International License. The GTN Framework is licensed under MIT
purl PURL: https://gxy.io/GTN:T00367
version Revision: 22

Based on this QGIS official tutorial, you will learn here how to access, filter and import GIS data through WFS web service using QGIS Galaxy interactive tool:

In the Geographical Information System landscape, there is existing standards to help users deal with remote data. The most common web services are Web Map Services (WMS) and Web Feature Services (WFS). If WMS allows users only to access and display maps stored remotely, WFS is giving access to the features of data so you can modify it and create your own data and maps.

Agenda

In this tutorial, we will cover:

  1. Managing QGIS Galaxy interactive tool
  2. Web Feature Services
    1. Loading WFS layer
    2. Querying a WFS layer
  3. Conclusion

Managing QGIS Galaxy interactive tool

QGIS is now integrated in Galaxy as an interactive tool. This kind of tool works differently than classical tools as it allows the user to interact with a dedicated graphical interface.

To use QGIS, you need to use the dedicated form, you can specify input datasets from your history you want to use in QGIS, or not ;), then press the execute button to launch a QGIS instance. When the graphical user interface of QGIS is ready to be used, a URL will be displayed at the top of the Galaxy center panel. If you don’t see it, you can see and access it through the “Active InteractiveTools” space of the “User” menu or you can click on galaxy-eye on the tool in the history.

Once you finish your work on QGIS, if you want to reuse data and/or the entire project, you need to save files in the “output” folder (which you can find in the “working” directory). Then, quit QGIS properly through the “Project” Menu tab top left and click on “Exit QGIS”.

Hands-on: Deploy your own QGIS instance
  1. Create a new history for this tutorial
  2. Deploy a QGIS instance
  3. Access QGIS
  4. Save your project in /working/output folder

Web Feature Services

Loading WFS layer

Hands-on: Loading WFS layer
  1. Go to the top left of QGIS and click on “Layer”
  2. Click on the 1st option “Data Source Manager”
  3. Select “WFS / OGC API - Features” on the left part of the pop-up panel
  4. Click the “New” button
  5. In the dialog that appears, enter the Name as nsidc and the URL as http://nsidc.org/cgi-bin/atlas_south?version=1.1.0.

    You can expand the QGIS left panel (where there are 3 dots, vertically) to access the “clipboard” menu and paste the content you want to paste on a QGIS form. Then, click outside of this panel to collapse it, and you can click for example on the url field to paste the URL from your clipboard

    Image of QGIS interface with on the left the clipboard panel in transparent where you can use the copy paste option.

  6. Click OK, then you can create the connection with the “connect” button to see a list of available layers
  7. Find and select the antarctica_country_border (Antartica border) layer
  8. Find and select, holding the “CTRL” button, the south_poles_wfs (South border) layer
  9. Unselect “only request features overlapping the view extent” option then click “add” Image of QGIS interface to help you see which layers to select in the WFS / OGC API features.
  10. You now have Antarctica border displayed with a symbol showing the south pole Image of QGIS interface showing the resulting map from the selection of your layers.
  11. You can double click each layer at the bottom left to modify symbology, notably color for “south_poles_wfs” modifying the symbol by selecting for example “effect drop shadow” click on “Save Symbol…” and add a label Geographic South Pole Image of QGIS interface to show you to click on the button "effect drop shadow" to make the south pole more visible on your map. Image of QGIS interface to show you how to add a title and change the color of your south pole marker.
  12. And to “antarctica_country_border”. Image of QGIS interface showing how to change the background or color of the geographical zone here Antarctica.

Querying a WFS layer

Even if you can select, download and display entire WFS layers, it is often more efficient to interrogate a layer before loading it to QGIS. This is a major interest of the use of such web services, as you can save internet bandwidth by selecting only parts of layer you want in your own QGIS instance.

Hands-on: Querying a WFS layer
  1. In the WFS server already created in the first step of this tutorial, there is a layer called countries (excluding Antarctica). If we want to know where is South Africa related to the south_poles_wfs, there are several manners to operate. One can load the entire layer of countries (excluding Antarctica) and then use it locally, or we can save bandwidth and only load locally the needed information concerning South Africa. We will here use the second manner, querying the WFS layer to obtain only information we will use in our QGIS instance.
  2. Go to the top left of QGIS and click on “Layer”
  3. Click on the 1st option “Data Source Manager”
  4. Select “WFS / OGC API - Features” then the already connected nsidc server
  5. Select the countries (excluding Antarctica) layer and click “Build query” button Image of QGIS interface to help you see which layers to select in the WFS / OGC API features.
  6. On the new dialog box, you can copy/paste this query: SELECT * FROM country_borders_excluding_antarctica WHERE "Countryeng" = 'South Africa' using the clipboard functionality from the left QGIS panel to make a “bridge” between your local clipboard and the virtualized QGIS one. Image of QGIS interface to help you see what to write in the "SQL query composer".
  7. Clicking OK, you can now see the SQL query on a dedicated column of the layers table. Image of QGIS interface showing you the results of the SQL command on the selection of layers in the WFS / OGC API features.
  8. Clicking the “Add” button, you now have the South Africa layer added and displayed on QGIS. Image of QGIS interface showing the resulting map of all your changes since the beginning of the tutorial.
Question
  1. Are you seeing how QGIS shows the fact that a layer is resulting from a query made on a larger layer?
  1. There is a dedicated “filter” icon next to the name of the layer.

Conclusion

You just did a classical GIS operation, accessing remote data using WFS webservice through QGIS, retrieving features of interest you can share broadly through Galaxy!