Chapter 9 Geometric operations with rasters

Last updated: 2020-08-12 00:38:32

Aims

Our aims in this chapter are:

  • Make changes in the geometric component of rasters:
    • Mosaicking
    • Resampling
    • Reprojecting
  • Apply focal filters on a raster

We will use the following R packages:

  • stars
  • units

9.1 Mosaicking rasters

In the next few examples, we will prepare a Digital Elevation Model (DEM) raster of Haifa, by mosaicking, subsetting and reprojecting.

We start with two \(5°\times5°\) tiles of elevation data from the Shuttle Radar Topography Mission (SRTM) dataset. The tiles are included as two .tif files in the sample files:

As shown in Figure 9.1, the tiles cover the area of northern Israel including Haifa:

Two elevation tiles from the SRTM datasetTwo elevation tiles from the SRTM dataset

Figure 9.1: Two elevation tiles from the SRTM dataset

The tiles have the same resolution and aligned extents:

They can be mosaicked using the st_mosaic function. The st_mosaic function accepts two or more stars objects—such as dem1 and dem2—and returns a combined raster:

The mosaicked DEM is shown in Figure 9.2:

Merged raster

Figure 9.2: Merged raster

The extent of the resulting raster covers the extents of both inputs:

For the next examples, we “crop” the dem raster according to an extent of \(0.25°\times0.25°\) around Haifa (Figure 9.3).

An $0.25\times0.25$ degrees rectangular extent

Figure 9.3: An \(0.25\times0.25\) degrees rectangular extent

The [ operator can be used to crop the raster (Section 6.2):

The result is shown in Figure 9.4:

Cropped raster

Figure 9.4: Cropped raster

Note that in this example, we need to figure out the row and column indices we are interested in. Later on (Section 10.1), we are going to learn how to crop a raster based on an existing vector layer, which is a more common situation in practice.

9.2 Raster resampling

9.2.1 Resampling

Raster resampling is the process of transferring raster values from the original grid to a different grid (Figure 9.5).

Raster resampling^[https://www.safe.com/transformers/raster-resampler/]

Figure 9.5: Raster resampling42

To demonstrate resampling, we will create a custom stars grid, using the same extent (st_bbox(dem)) but a different resolution. The new resolution is \(0.002°\), which is ~2.4 times the original resolution of \(0.00083°\). The grid is created using st_as_stars:

We can resample a raster using the st_warp function. The first two arguments of st_warp are:

  • The raster to be resampled, where the values come from
  • The raster defining the new grid

Here is the expression to resample the values of the dem raster into the new raster grid:

The original DEM is shown along with the resampled one in Figure 9.6.

DEM resampled by a factor of 2.4, from 0.0008 (left) to 0.002 (right) resolutionDEM resampled by a factor of 2.4, from 0.0008 (left) to 0.002 (right) resolution

Figure 9.6: DEM resampled by a factor of 2.4, from 0.0008 (left) to 0.002 (right) resolution

9.2.2 Nearest neighbor resampling

The st_warp expression from Section 9.2.1 actually used the nearest neighbor resampling method (method="near"), which is the default:

To understand what actually happens in nearest neighbor resampling, let’s take a look at a small part of the raster “before” and “after” images (Figure 9.7). If you look closely, you can see that the values of the original raster are passed to the resampled raster. What happens when there is more than one pixel of the original raster coinciding with a single pixel in the new grid? How can we decide which value is going to be passed? In nearest neighbor resampling, the new raster pixels get the value from the nearest pixel of the original raster. Note that some of the values are “lost” this way, since they were not passed on to the new raster43.

Nearest neighbor resamplingNearest neighbor resampling

Figure 9.7: Nearest neighbor resampling

9.2.3 Bilinear resampling

Bilinear resampling is another resampling method. In bilinear resampling, each new raster cell gets a weighted average of four nearest cells from the input, rather than just one. Bilinear resampling is specified with method="bilinear" in st_warp. Note that use_gdal=TRUE needs to be specified when using any method other than method="near", otherwise the method argument is ignored:

With bilinear resampling, the output raster may is “smoothed”, containing new values which are averages of the original ones (Figure 9.8).

Bilinear resamplingBilinear resampling

Figure 9.8: Bilinear resampling

9.2.4 Average resampling

Another useful method is the average resampling method, where each new cell gets the (non-weighted) average of all overlapping input cells:

The result of average resampling is shown in Figure 9.9:

Average resamplingAverage resampling

Figure 9.9: Average resampling

For example, the value of the top-left pixel the right panel in Figure 9.9 is:

## [1] 308.6

which is the average of all cells it covers in the left panel:

##      [,1] [,2] [,3]
## [1,]  301  286  284
## [2,]  311  316  303
## [3,]  340  328  308

The st_warp supports resampling methods other than "near", "bilinear" and "average", including: "cubic", "cubicspline", "lanczos", "mode", "max", "min", "med", "q1" and "q3".

Bilinear resampling may be preferred when the result is primarily used for visualization, because the result appears smoother. Nearest neighbor resampling, however, is preferable when we are using the result for further analysis, because the original values are preserved. When the input raster is categorical, such as a raster with land cover classes 1, 2, 3, etc., nearest neighbor resampling is the only valid resampling option, because averaging category IDs makes no sense.

In what situations do you think the "average" resampling method is mostly appropriate, while "near" and "bilinear" are not?

9.3 Raster reprojection

Raster reprojection is conceptually related to resampling. The st_warp function is used for reprojection, too. The difference is that, in raster reprojection, we are resampling into a grid which is in a different CRS.

For example, the following expression reprojects the DEM of Haifa from WGS84 (4326) to UTM (32636), using the nearest neighbor resampling method. Note that, in this example, we are not passing a stars object with the destination grid. Instead, we are letting the function to automatically generate the new grid, only specifying the destination CRS (crs=32636) and resolution (cellsize=90):

The original raster (in WGS84) and the reprojected one (in UTM) are shown in Figure 9.10:

Original (left, in WGS84) and reprojected (right, in UTM) `dem` rasterOriginal (left, in WGS84) and reprojected (right, in UTM) `dem` raster

Figure 9.10: Original (left, in WGS84) and reprojected (right, in UTM) dem raster

Note that the coordinate units in the reprojected raster (Figure 9.10) are no longer degrees, but meters. Also, the area contaning non-missing values is slightly rotated compared to the input, because the WGS84 and UTM systems are not parallel, at least in this particular location.

A zoomed-in view (Figure 9.11) of the original raster and the new grid demonstrates that the two are not parallel. Again, note that this time the new grid is in a different CRS, which is why the two grids are not parallel to each other (Figure 9.79.9).

The reprojected raster grid (UTM, black) and the original raster grid (WGS84, in red), displayed in UTM

Figure 9.11: The reprojected raster grid (UTM, black) and the original raster grid (WGS84, in red), displayed in UTM

As another example, let’s reproject the MOD13A3_2000_2019.tif, from its sinusoidal projection to a projection more suitable for the specific region, such as ITM (Table 7.4). First, let’s import the raster from the GeoTiff file:

Then, we can reproject the raster using st_warp. This time we specify just the destination CRS (crs=2039), letting the function automatically determine the resolution:

The original and reprojected rasters are shown in Figure 9.12:

Reprojection of the complete MODIS NDVI raster (left) to ITM (right)Reprojection of the complete MODIS NDVI raster (left) to ITM (right)

Figure 9.12: Reprojection of the complete MODIS NDVI raster (left) to ITM (right)

To see the process of reprojection more clearly, let’s examine a small subset of the NDVI raster:

The original and reprojected raster subsets are shown in Figure 9.13

Reprojection of a small subset of the MODIS NDVI raster (left) to ITM (right)Reprojection of a small subset of the MODIS NDVI raster (left) to ITM (right)

Figure 9.13: Reprojection of a small subset of the MODIS NDVI raster (left) to ITM (right)

What happens in the reprojection can be thought of as a two-step process (Figure 9.14). In the first step, the pixel outlines are reprojected as if they were polygons (Section 7.10), which results in an irregular grid. The grid is then resampled (Section 9.2) to form a regular grid, so that it can be represented by a raster once again.

Reprojection process: the original raster (left), the reprojected raster cells as polygons (middle) and the resampled reprojected raster (right)Reprojection process: the original raster (left), the reprojected raster cells as polygons (middle) and the resampled reprojected raster (right)Reprojection process: the original raster (left), the reprojected raster cells as polygons (middle) and the resampled reprojected raster (right)

Figure 9.14: Reprojection process: the original raster (left), the reprojected raster cells as polygons (middle) and the resampled reprojected raster (right)

9.4 Focal filters

9.4.1 Introduction

So far, we only dealt with arithmetic operations that address the values of each per pixel in isolation from neighboring pixels, as in raster algebra (Section 6.4) or st_apply (Section 6.6.1). Another class of raster operations is where the calculation of each pixels depends on values of neighboring cells.

The most prominent example of a raster calculation based on neighboring cells is moving window calculations, also known as applying a focal filter. With a moving window calculation, raster values are transformed based on the values from a neighborhood surrounding each pixel. The functions applied on the neighborhood are varied, from simple functions such as mean for a low-pass filter (Section 9.4.2) to more complex functions, such as those used to calculate topographic slope and aspect (Section 9.4.49.4.5).

For example, a \(3\times3\) mean filter applied on a raster results in a new raster, where the values are averages of \(3\times3\) neighborhoods centered on that pixel. In Figure 9.15, the highlghted value in the output on the right (18.7) is the average of the highlighted \(3\times3\) neighborhood of the input on the left:

Focal filter^[http://courses.washington.edu/gis250/lessons/raster_analysis1/index.html]

Figure 9.15: Focal filter44

9.4.2 Low pass filter

9.4.2.1 What is a low pass filter?

The purpose of the mean, or low-pass, filter (Figure 9.15) is to produce a smoothed image, where extreme values (possibly noise) are cacelled out. For example, the result of applying a \(3\times3\) mean filter on a uniform image with one extreme value is shown in Figure 9.16.

Low pass filter excample^[http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/how-filter-works.htm]

Figure 9.16: Low pass filter excample45

How was the value of 5.4 obtained, in the result shown in Figure 9.16?

The stars package does not, at the moment, contain a function for focal filtering46. As an exercise, we are going to create our own function for focal filtering. For simplicity, we will restrict ourselves to the case where the focal “window” is \(3\times3\) pixels—which is the most common case.

Our working plan is as follows:

  1. Write a function named get_neighbors that accepts a position of the focal cell (row & column) in a matrix, and returns the 9 values of its \(3\times3\) pixel neighborhood
  2. Write another function named focal2 that accepts a two-dimensional stars object and a function fun, iterates over the cells and applies fun on all \(3\times3\) pixel neighborhoods extracted using get_heighbors

9.4.2.2 The get_neighbors function

We start with a function that accepts a position (row & column) in a matrix and returns a numeric vector with the \(3\times3\) neighborhood, hereby named get_neighbors. The function accepts a matrix m and a position pos. The pos argument is a vector of length two, of the form c(row,column). The function extracts the 9 values in the respective \(3\times3\) neighborhood and returns them as a vector of length 9:

For example, suppose we have a \(5\times5\) matrix m:

Using get_neighbors, we can get the values of just about any \(3\times3\) neighborhood except for the outermost rows and columns (see below). For example, the following expression returns the values of the neighborhood centered on row 3, column 4:

How does the get_neighbors function work? The function first calculates the required range of rows and columns:

Then, the function extracts the corresponding matrix subset:

transposes it:

and converts to a matrix:

Transposing is necessary so that the matrix values are returned by row, rather than the default by column (Section 5.1.4.1).

Note that out function is not designed to operate on the matrix edges, where the \(3\times3\) neighborhood is incomplete. For example, the following expression produces an error:

9.4.2.3 The focal2 function

Now, let’s see how we can use the get_neighbors function to apply a focal filter on a raster. We will use the dem.tif small DEM for demonstration:

First, we create a copy of the raster, named template. The template raster will be used as a “template” when converting the filtered matrix back to a stars object:

Next, we extract the raster values as a matrix:

Note that the function relies on the fact that the stars object has just two dimensions (x and y), in which case input is going to be a matrix. The matrix is transposed, using t, to maintain the right orientation of the values matrix (Figure 6.11). This is important when using functions that distinguish between the north-south and east-west directions, topographic aspect (Section 9.4.5).

Next, we create another matrix to hold the output values. The values are initially set to NA:

Now comes the actual computation. We are using two for loops to go over all raster cells, excluding the first and last rows and columns. For each cell, we:

  • extract the \(3\times3\) neighborhood [i,j],
  • apply a function—such as mean, in this case—on the vector of extracted values, and
  • place the result into the corresponding cell [i,j] in the output.

The complete code of the for loops is as follows:

Note that the function starts at row i=2 and ends at row i=nrow(input)-1. Similarly, it starts at column j=2 and ends at j=ncol(input)-1.

In the end, when both for loops have been completed, the output matrix contains the new, filtered, raster values. What is left to be done is to put the matrix of new values into the template, to get back a stars object. We are using t once again, to transform the matrix back into the “stars” arrangement (Figure 6.11):

The original image (x) and the filtered image (template) are shown in Figure 9.17. The figure highlights one \(3\times3\) neighborhood in the input, and the corresponding average of that neighborhood in the output47.

Focal filter with the `mean` function (left: input, right: result)Focal filter with the `mean` function (left: input, right: result)

Figure 9.17: Focal filter with the mean function (left: input, right: result)

Why do the outermost rows and columns in Figure 9.17 appear empty? Which value do these pixels contain, and where did it come from?

Let’s manually check the calculation of the \(3\times3\) neighborhood highlighted in Figure 9.17:

Why do you think we got NaN values in some of the cells? Can you simulate the situation to see how an NaN values is produced?

Wrapping up out code in a function, called focal2, can be done as follows. The input raster and the function are replaced with parameters named r and fun, respectively:

How can we pass additional parameters to the function we use, such as na.rm=TRUE for mean? The special dots ... argument is used for that. Now, any additional argument(s) passed to focal2 (such as na.rm=TRUE) will be passed on as additional argument(s) to fun:

Now that we have a custom focal filter function focal2, let’s try to apply a different filter, such as a maximum filter:

The reason for the warnings produced by the above expression is that max applied on an empty vector gives -Inf.

To get NA instead, we can use a slightly more complex function that first checks if particular neighborhood contains any non-NA values, any only then applies max:

Recall that we used the same principle when applying the range function with st_apply (Section 6.6.1.4).

The resulting raster x_max is shown in Figure 9.18. Indeed, every pixel value in the output raster is the maximal value among the values in its \(3\times3\) neighborhood:

Focal filter with the `max` function (left: input, right: result)Focal filter with the `max` function (left: input, right: result)

Figure 9.18: Focal filter with the max function (left: input, right: result)

Let’s try the focal2 function on another, bigger raster. For example, we can apply a low pass (i.e., mean) filter on the first layer of the MODIS NDVI raster, as follows:

The original image and the filtered result are shown in Figure 9.19:

Low pass filter resultLow pass filter result

Figure 9.19: Low pass filter result

Why are there NA areas in the raster, even though we used na.rm=TRUE?

9.4.3 Maximum filter

For another example, let’s reconstruct the l_rec raster (Section 6.5):

Given a raster with 0 and 1 values, such as l_rec, we may want to convert all 0 cells neighboring to a 1 cell to become 1. That way, for instance, the areas of the planted forests we see in the center of the image will be come more continuous, which will make it easier to transform those areas into polygons (Section 10.3.2). This can be achieved with a focal filter and the max function:

The original raster and the filtered result are shown in Figure 9.20:

"Buffering" `1` values in a raster with `0`s and `1`s, using a focal filter with `max`"Buffering" `1` values in a raster with `0`s and `1`s, using a focal filter with `max`

Figure 9.20: “Buffering” 1 values in a raster with 0s and 1s, using a focal filter with max

9.4.4 Topographic slope

So far we saw examples where the focal function is a simple built-in one, such as mean or max. In some cases, it is required to use a more complex function. For example, topographic indices such as slope and aspect employ complex functions where direction matters: each of the nine pixels in the \(3\times3\) neignborhood is treated differently. For example, to calculate topographic slope based on elevation values in a \(3\times3\) neignborhood, the following function can be used. Note that the slope calulation also depends on raster resolution, which is passed as an additional parameter named res:

We will not go into details on how the function works. You may refer to the How slope works article in the ArcGIS documentation for an explanation.

For example:

The slope function can be passed to focal2 to apply the slope calculation on the entire dem raster:

It is also convenient to set raster units with set_units (Section 8.3.2.2). The units of slope are decimal degrees (°):

The resulting topographic slope raster is shown in the left panel in Figure 9.21.

9.4.5 Topographic aspect

Another function, as shown below, can be used to calculate topographic aspect:

For details on how the function works, see the How aspect works article in the ArcGIS documentation.

For example:

Again, the aspect function can be passed to focal2 to apply it on the entire raster:

The resulting topographic aspect raster is shown in the right panel in Figure 9.21:

Topographic slope (left) and topographic aspect (right)Topographic slope (left) and topographic aspect (right)

Figure 9.21: Topographic slope (left) and topographic aspect (right)

Note that our custom focal2+get_neighbors functions are quite minimal, and can be improved in several ways:

  • Being able to set neighbor sizes other than \(3\times3\)
  • Dealing with the first/last rows and and columns (see Section G)
  • Dealing with rasters that have more than two dimensions (separate filter per dimension? a three-dimensional filter?)
  • Making the calculation more efficient (e.g., using C/C++ code inside R or using parallel computation)

  1. https://www.safe.com/transformers/raster-resampler/

  2. Assuming the resolution of the new grid is coarser than the resolution of the original raster.

  3. http://courses.washington.edu/gis250/lessons/raster_analysis1/index.html

  4. http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/how-filter-works.htm

  5. The raster package does have such a function, named focal.

  6. The st_as_sf function is used to transform from stars to sf, which we learn about in Section 10.3.