The Processing Framework in QGIS provides an environment within QGIS to run native and third-party algorithms for processing data. It contains a nice batch processing interface that allows one to execute an algorithm on several layers easily. Batch processing is a useful tool that can save manual effort and help you automate repetitive tasks.
We will take several global vector layers and clip them to the extent of Africa in a single batch command.
Natural Earth has several global vector layers. Download the following layers
For convenience, you may directly download a geopackage containing the above layers from below:
Data Source: [NATURALEARTH]
zip
or the gpkg
entry and select the ne_10m_admin_0_countries
layer. Drag the layer to the canvas.ne_10m_admin_0_countries
layer and select Open Attribute Table.Note
Tip: You can also use the keyboard shortcut F6
to open the attribute table of the selected layer.
ne_10m_admin_0_countries
layer and select Filter."CONTINENT" = 'Africa'
ne_10m_railroads
, ne_10m_ports
and ne_10m_urban_areas
in the QGIS Browser panel. Hold the Ctrl
key and click each layer to select them. Once selected, drag them to the canvas.ne_10m_admin_0_countries
and click OK.clipped_
and click Save.Fill with parameter values
as the Autofill mode. Select Input layer
as the Parameter to use. This setting will add the input file name to the output along with the specified clipped_
filename. This is important to ensure all the output files have unique names and they do not overwrite each other.Note
Tip: QGIS can now run Processing tasks in the background without blocking the user interface. So if your batch process is taking long, you can close the dialog and continue to work on other tasks in QGIS while the process keeps running in the background.
Ctrl
key and select the layers. Drag them to the canvas to load them in QGIS.clipped_ne_10m_ports
, clipped_ne_10m_railroads
and clipped_ne_10m_urban_areas
layers. Click OK.clipped_layers
.GIS Workflows typically involve many steps - with each step generating intermediate output that is used by the next step. If you change the input data or want to tweak a parameter, you will need to run through the entire process again manually. Fortunately, QGIS has a graphical modeler built-in that can help you define your workflow and run it with a single invocation. You can also run these workflows as a batch over a large number of inputs.
We will take a point layer of maritime piracy incidents and create a processing model to produce a density map by aggregating them over a global hexagonal grid.
National Geospatial-Intelligence Agency’s Maritime Safety Information portal provides a shapefile of all incidencts of maritine piracy in the form on Anti-shipping Activity Messages. Download the Arc Shape file version of the database.
Natural Earth has several global vector layers. Download the 10m Physical Vectors - Land containing Land polygons.
For convenience, you may directly download a copy of the above layers from below:
Data Source: [NGA_MSI] [NATURALEARTH]
ne_10m_land.zip
and select the ne_10m_land.shp
layer. Drag the layer to the canvas. Next, locate the ASAM_shp.zip
file. Expand it and select the asam_data_download/ASAM_events.shp
layer and drag it on to the canvas.ASAM_events.shp
layer does not have projection information associated with it, so you will be prompted to select a CRS in the Coordinate Reference System Selector. Here, the points are in the Latitude and Longitude coordinates, so select the WGS 84
CRS and click OK.piracy hexbin
as the Name of the model and projects
as the Groups. Click the Save button.piracy_hexbin
.Input Points
as the Parameter name and Point
as the Geometry type. This input represents the piracy incidents point layer.Base Layer
as the Parameter name and Polygon
as the Geometry type. This input represents the natural earth global land layer.Grid Size
as the Parameter name and click OK.Reproject layer
algorithm and drag it to the canvas.Note
The necessity of this reprojection step will become clear shortly. The grid generation algorithm requires us to specify the extent of the grid in the unit of the Project CRS. We can supply this reprojected layer to compute this extent.
Base Layer
as the Input layer. Check the Use project CRS as the Target CRS. Click OK.Create grid
algorithm and drag it to the canvas.Hexagon (polygon)
as the Grid type. Select Extent of 'Reprojected' from algorithm 'Reproject Layer'
as the Grid extent. Click the 123 button under the Horizonal spacing label and choose Model input.Grid Size
input for Using model input. Repeat the same process for Vertical Spacing. Click OK.Extract by location
algorithm and drag it to the canvas.'Grid' from algorithm 'Generate Grid'
, Where the features (geometric predicate) as Intersect
and By compating to the features from as Input points
. Click OK.Count points in polygon
algorithm. Search and drag it to the canvas.'Extracted (location)' from algorithm 'Extract by location'
as the value for Polygons. The Points layer would be Input Points
. At the bottom, name the Count output layer as Aggregated
. Click OK.Mollweide
in the Filter box and select World_Mollweide EPSG:54009
as the CRS. Click OK.piracy_hexbin
model in the Processing Toolbox and double-click it.ne_10m_land
and the Input Points layer is ASAM_events
. The Grid Size needs to be specified in the units of the selected CRS. The World_Mollweide CRS unit is meters, so we specify 100000
m (100 Kms) as the Grid Size. Click Run to start the processing pipeline. Once the process finishes, click Close.Aggregated
loaded as the result of the model. As you explore, you will notice the layer contains an attribute called NUMPOINTS
containing the number of piracy incidents points contained within that
grid feature. Let’s style this layer to display this information better.
Right-click the Aggregated
layer and select Properties.Graduated
symbology and NUMPOINTS
as the Column. Click Change..
next to Symbol label.Viridis
ramp. Click the dropdown again and select Invert Color Ramp to reverse the order of color.Natural Breaks (Jenks)
as the Mode and click Classify and click OK.Note
see Basic Vector Styling for a detailed explanation of different modes.
ASAM_events
layer. You will see a nice visualization of piracy hotspots across the globe.Now that you have encoded the full data pipeline in the model, it is easy to reproduce your results. A model also allows you to experiment quickly without manually repeating each intermediate step every time. If your inputs change over time, say an updated database of piracy is released after a few months, you can run your model on that input to generate a similar visualization without having to remember each step.
Multi-criteria weighted-overlay analysis is the process of the allocating areas on the basis of a variety of attributes that the selected areas should possess. Although this is a common GIS operation, it is best performed in the raster space using a grid-based approach.
Note
Vector vs Raster Overlays
You can do the overlay analysis on vector layers using geoprocessing tools such as buffer, dissolve, difference and intersection. This method is ideal if you wanted to find a binary suitable/non-suitable answer and you are working with a handful of layers.
Working in the raster space gives you a ranking of the suitability - not just the best suited site. It also allows you to combine any number of input layers easily and assign different weights to each criteria. In general, this is the preferred approach for site suitability.
This tutorial goes through the typical workflow for performing a site-suitability analysis - converting source vector data to appropriate rasters, re-classify them and perform mathematical operations.
In this tutorial, we will identify the suitable areas for development, that are
We will use vector data layers from OpenStreetMap (OSM). OSM is a global database of freely available base map data. Geofabrik provides daily updated shapefiles of OpenStreetMap datasets.
We will be using the OSM data layers for the state of Assam in India. Geofabrik India shapefiles were downloaded, clipped to the state boundary and packaged in a single GeoPackage file. You can download a copy of the geopackage from the link below:
Data Source: [GEOFABRIK]
assam.gpkg
file in QGIS Browser. Expand it and drag each of the 5 individual data layers to the map canvas. You will see boundary
, roads
, protected_regions
, water_polygons
and water_polylines
layers loaded in the Layers panel.boundary
layer as the extent for all the rasters. Go to . Search for and locate the algorithm. Double-click to launch it.roads
as the Input layer. We want to create an output raster where pixel values are 1 where there is a road and 0 where there are no roads. Enter 1
as the A fixed value to burn. The input layers are in a projected CRS with meters are the unit. Select Geoferenced units
as the Output raster size units. We will set the resolution of the output raster to be 15 meters. Select 15
as both Width/Horizontal resolution and Height/Vertical resolution. Next, click the ... button next to Output extent and select boundary
for Use extent for.Not set
.
This is important because when raster calculator (which we will use
later) encounters a pixel with nodata value in any layer, it sets the
output to nodata as well, resulting is wrong output. Set the Rasterized output raster as raster_roads.tif
and click Run.batch-processing
tutorial to learn more about batch processing. Right-click the Rasterize (vector to raster)
algorithm and select Execute as Batch Process.boundary
, protected_regions
, water_polygons
and water_polylines
layers and click OK.Fill with parameter values
as the Autofill mode and Input layer
as the Parameter to use. Click OK.raster_
. The batch processing interface will autocomplete the name with the layer name and fill in all rows. Make sure the Load layers on completion box is checked and click OK.raster_water_merged.tif
and click Run."raster_water_polygons@1" + "raster_water_polylines@1"![]()
raster_water.tif
and click Run."raster_water_merged@1" > 0![]()
raster_water
now has pixels with only 0 and 1 values.raster_roads
as the Input layer. Choose Georeferenced coordinates
as the Distance units. As the input layers are in a projected CRS with meters as the units, enter 5000
(5 kilometers) as the Maximum distance to be generated. Make sure the Nodata value to use for the destination proximity raster value is Not set
. Name the output file as roads_proximity.tif
and click Run.Note
It make take upto 15 minutes for this process to run. It is a computationaly intensive algorithm that needs to compute distance for each pixel of the input raster and our input contains over 1 billion pixels.
roads_proximity
will be added to the Layers panel. To visualize it better, let’s change the default styling. Click the Open the Layer Styling panel button in the Layers panel. Change the Max value to 5000
under Color gradient.raster_water
layer with same parameters and name the output water_proximity.tif
.0-1000m –> 100
1000-5000m –> 50
>5000m –> 10
Enter the following expression that applies the above criteria on the input. Click the ... button next to Reference layer(s) and select ``roads_proximity` layer. Name the output roads_reclass.tif
and click Run.
100*("roads_proximity@1"<=1000) + 50*("roads_proximity@1">1000)*("roads_proximity@1"<=5000) + 10*("roads_proximity@1">5000)
roads_proximity
will be added to the Layers
panel. This layer has only 3 different values, 10, 50 and 100
indicating relative suitability of the pixels with regards to distance
from roads. Open algorithm again.water_proximity
layer. Here the scheme will be reverse, where pixels that are further away from water shall have higher score.0-1000m –> 10
1000 -5000m —> 50
>5000m –> 100
Enter the following expression that applies the above criteria on the input. Click the ... button next to Reference layer(s) and select ``water_proximity` layer. Name the output water_reclass.tif
and click Run.
100*("water_proximity@1">5000) + 50*("water_proximity@1">1000)*("water_proximity@1"<=5000) + 10*("water_proximity@1"<1000)
raster_boundary@1
at the end to discard pixel values outside of the state boundary. Click the ... button next to Reference layer(s) and select raster_boundary
layer. Name the output overlay.tif
and click Run.("roads_reclass@1" + "water_reclass@1")*("raster_protected_regions@1" != 1 )*"raster_boundary@1"![]()
Note
In this example, we are giving equal weight to
both road and water proximity. In real-life scenario, you may have
multiple criteria with different importance. You can simulate that by
multiplying the rasters with appropriate weights in the above
expression. For example, if proximity to roads is twice as importance as
proximity away from water, you can multiply the roads_reclass
raster with 2
in the expression above.
overlay
will be added to the Layers
panel. The pixel values in this raster range from 0 to 200 - where 0 is
the least suitable and 200 is the most suitable area for development.
Click the Open the Layer Styling panel button in the Layers panel.singleband_pseudocolor
renderer and the Spectral
color ramp. Click Classify to apply the color ramp to the raster.overlay
layer.Inverted Polygons
rendered to the vector boundary layer. Scroll down in the Layers panel and locate the boundary
layer. Select Inverted Polygons
as the renderer and leave other options to default.boundary
layer and select Move to Top.overlay
raster clipped to the boundary
layer. This is the final output that shows areas within the state that are suitable for development.The previous assignment dealt with the problem of calculating risk areas for transportation of hazardous material (HazMat). This task is to design an analysis model that performs those calculations automatically. Another model will be designed in order to calculate how many people that are disturbed by noise from the trams in Norrköping.
Create a new map document in QGIS and import data from this GeoPackage file. Select "SWEREF99/RT90 2.5 gon V emulation" CRS for the project and for all layers (please refer to instruction in the Lab 1 assignment). Create a new model and call it HazMat. The first subtask is to design a model that can perform the following steps
Use the model to do an overlay operation between the building layer and a bufferzone that covers 80 m on each side of the centerline for road alternative no 1. Create a map layout in that clearly shows the buildings and parts of buildings that, according to the risk distances, not are suitable for permanent living.
The second task concerns noise from trams. People living in houses that face the tram lines often complain about this and the task is to create a model that can calculate the number of people that live within 30 m from the tracks. You should use the tools buffer, extract by location and basic statistics for fields.
Prepare a map that shows the central part of the town and those buildings (only) that are near the tram lines as well as those population centroids (only) that are within 30 meters.
Summary of things to submit
Submit the two different map layouts described above. Include the images of both models in the report.