Basic Filtering and Styling with Expressions (QGIS3)

Contributed by: Steven Kim

Expressions offer a powerful way to manipulate attribute values, geometries and variables to dynamically modify map features on the fly. This tutorial is an introduction to some common expressions and how they are used in map making.

Overview of the task

We will use expressions to filter features by attribute from a Natural Earth country layer, and then style them to create a map of South East Asia with each country styled in a shade of green.

../../_images/output2.png

Get the data

  1. Natural Earth has the admin shapefiles for countries. On the downloads page look for Cultural option under the Medium scale data.

../../_images/data118.png
  1. Download the Admin 0 - Countries shapefile. You will see the ne_50m_admin_0_countries.zip file downloaded which is used for this tutorial.

../../_images/data25.png

For convenience, you may directly download a copy of the above layer from below:

ne_50m_admin_0_countries.zip

Data Source [NATURALEARTH]

Procedure

  1. Locate the Natural_Earth_quick_start.zip file in the QGIS Browser and expand it. Select the ne_50m_admin_0_countries.shp file and drag it to the canvas.

../../_images/1148.png
  1. A new layer ne_50m_admin_0_countries will now be loaded in QGIS and you should see a map of the world. Click on Open Layer Styling Panel.

../../_images/2125.png
  1. Switch from Single Symbol to Rule-based.

../../_images/366.png
  1. Double-click on the default rule to enter the Edit Rule dialog.

../../_images/435.png
  1. To filter using an expression, click the Filter ε.

../../_images/531.png
  1. You have entered the Expression Builder. This dialog provides the main interface to write expressions and can be accessed in many ways. It contains an input box on the left, a list of functions in the middle and a help box on the right.

../../_images/630.png
  1. From the list in the middle, expand Fields and Values to explore the fields found in the ne_50m_admin_0_countries layer.

../../_images/730.png
  1. Click to select SUBREGION field and click All Unique on the right panel to view all unique subregion values.

../../_images/829.png
  1. After exploring, select the Expression box on the left to input the expression as follows and click OK.

"SUBREGION" = 'South-Eastern Asia'
../../_images/930.png
  1. You should see SE Asia. Pan and zoom to the center to the region in your map window.

../../_images/1037.png
  1. Now that we have used an expression to filter features, let us use an expression to color each country based on a field MAPCOLOR7. Scroll-down to the Symbol options in the styling panel and select Simple Fill to bring up styling options such as fill color, line color and more. Click on Data define override button for the Fill color and select Edit… on the menu.

../../_images/1149.png
  1. This brings up the Expression Builder dialog for Fill color. Enter the following expression:

set_color_part(ramp_color('Greens',scale_linear("MAPCOLOR7",1,7,0.2,1)),'alpha',100)

This expression contains multiple functions: set_color_part() to set alpha or transparency, ramp_color() to apply a color ramp and scale_linear() to use the field MAPCOLOR7 in setting the color for each country. In this example, we are using greens, setting the alpha at 100 out of 255 and scaling MAPCOLOR7 from it’s original range of 1-7 to 0.2-1, which will look nice with ramp_color.

../../_images/1240.png

備註

The Natural Earth data layer has several fields named MAPCOLOR7, MAPCOLOR8 etc. These fields contain numeric values that are used to color the map so that adjacent polygons aren’t the same color. There are versions with 7,8,9 or 13 colors.

  1. Click OK to exit the dialog. At the Edit Rule dialog, change Stroke Style to No Line. You should see the countries in green now. Click Apply.

../../_images/1338.png
  1. We have created a beautifully styled map by filtering and applying a color ramp to the data layer by just using expressions.

../../_images/1435.png

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