Working with WMS Data

Warnung

This tutorial is now obsolete. A new and updated version is available at Working with WMS Data (QGIS3)

Often you need reference data layers for your basemap or to display your results in the context of other datasets. Many organizations publish datasets online that can be readily used in GIS. A popular standard for publishing maps online is called WMS (Web Map Service). This is a better choice for using reference layers as you get access to rich datasets in your GIS without the hassle of downloading or styling the data.

Aufgabenübersicht

In this tutorial, we will load layers of Mineral Resources published by USGS.

Data Source: [MRDATA]

Arbeitsablauf

  1. Open QGIS and go to on Layer ‣ Add WMS Layer….

../_images/1279.png
  1. In the Layers tab, click on New.

../_images/2187.png
  1. Name your connection. This is not the name of the layer but the name of service which is offering the WMS layer. A single service usually offers multiple layers that can be added to your project. The URL that you need to access a WMS layer is called GetCapabilities. When you access a WMS server with this parameter in the URL, it returns a list of layers available along with various metadata. In this case, name the connection as MRDATA USGS and the GetCapabilities URL as http://mrdata.usgs.gov/services/ca?request=getcapabilities&service=WMS&version=1.1.1&. Click OK.

../_images/3129.png
  1. Next, click on the Connect button to fetch the list of layers available. You will notice different IDs listed next to the layers. ID 0 means you get a map of all the layers. If you do not want all the layers, you can expand the list by clicking on + icon and selecting the layer of interest. Select the layer 0 for this tutorial.

../_images/480.png
  1. In the Image encoding section, you need to choose an image format. Image formats matter a great deal and which one you choose depends on your use case. Here are some pointers

    • Quality: PNG is a lossless compressed image format. JPEG is lossy compressed format. TIFF can be either. That means the quality of PNG images will be better compared to JPEG. If your main purpose is to print a map, use PNG.

    • Speed: Since PNG images are uncompressed and thus larger in size, they will take longer to load. If you are using the layer in your project as a reference layer and need to zoom/pan a lot, use JPEG.

    • Client Support: QGIS supports most of the formats, but if you are developing web applications, browsers usually do not support TIFF, so you should choose another format.

    • Type of data: If your layers are primarily vector, PNG will give better results. For imagery layers, JPEG is usually a better choice.

    For this tutorial, choose JPEG as the format. Change the Layer name if you wish and click Add.

../_images/574.png
  1. You will see the layer loaded in the QGIS canvas. You can zoom/pan around just like any other layer. The way WMS service works is that every time you zoom/pan, it sends your viewport coordinates to the server and the server creates an image for that viewport and return it to the client. So there will be some delay before you see the image for the area after you have zoomed in. Also, since the data you see is an image, there is no way to query for attributes like in a regular vector/imagery layer.

../_images/671.png
  1. You can, however, see some metadata about the layer. Right-click the layer and choose Properties.

../_images/770.png
  1. You will notice that the Properties dialog looks different and has fewer tabs. You can go to the Metadata tab to learn more about the WMS service and the layers.

../_images/868.png

If you want to give feedback or share your experience with this tutorial, please comment below. (requires GitHub account)