Understanding and extending the methods of comparing spatial patterns in raster data

spatial
landscape-ecology
spatial-patterns
msca-pf
rstats
Author
Published

November 17, 2024

Methods for comparing spatial patterns in raster data

This is the sixth part of a blog post series on comparing spatial patterns in raster data. More information about the whole series can be found in part one.

The blog post series on comparing spatial patterns in raster data has covered a variety of methods for comparing spatial patterns in raster data, with a focus on (a) comparing two rasters at a time, and (b) using R for the analysis.

The first post listed possible motivations for such comparison, and then described the general considerations when selecting a method for comparing spatial patterns in raster data. They include if the method works for arbitrary regions (or just for overlapping regions), if the method allows the integration of the spatial context of the analysis, and the type of data the method produces (single value, multiple values, or a raster). Next, it provided an inventory of methods for comparing continuous and categorical raster data adapted from Nowosad (2024).

The next four blog posts had a more applied focus – they showed how to use R to compare spatial patterns:

Implementation of the methods

What is important to note is that not all methods are implemented in R, and, thus, the methods presented in the blog posts are a subset of all possible methods for comparing spatial patterns in raster data. This includes Complex Wavelet Structural Similarity Index (Sampat et al. 2009) or the Fuzzy Kappa index (Hagen‐Zanker 2009).1

Moreover, while comparing spatial patterns is a general concept, there may exist some methods developed for specific domains that are not covered in the blog posts. Please let me know if you know about such methods!

Discussion

The introductory blog post summarized many aspects of comparing spatial patterns in raster data, including the type of the rasters (continuous or categorical), the applicability of the method for arbitrary regions, the integration of the spatial context of the analysis, and the type of the data produced by the method.

Next, the presented examples of the use of R for comparing spatial patterns in raster data highlight several additional considerations.

First, a general approach for comparing rasters is calculating the difference between them or their derivatives (e.g., a metric in a moving window). The question here is whether such a difference should be calculated just by subtracting one raster from another or by calculating the absolute difference. The former usually highlights the direction of the change, while the latter highlights the magnitude of the change regardless of the direction. An additional related question is about how to interpret the results of such a comparison- we may easily understand the increase of temperature by 5 degrees, but how can we interpret the increase of the NDVI by 0.1?

Second, some methods are sensitive to the ranges of the values in the rasters, and thus, it is essential to scale the data before the comparison. Omitting this step may lead to incorrect results, as the method may be more sensitive to the range of the values than to the spatial pattern of the data.

Third, another way to look at the comparison methods is by considering the specific questions (aspects) they answer. Some of the methods are focused on specific characteristics of spatial patterns (e.g., roughness, diversity, etc.), and some are interested in encapsulating the general properties of spatial patterns. Thus, the choice of the method should depend on the specific question we want to answer.

Fourth, the topic that was not covered in the blog posts is the preprocessing of the rasters before the comparison. This may include reclassifying the values or clipping the rasters to some extent. The preprocessing may be crucial for the comparison, as it may significantly affect the results of the analysis. These decisions should be made based on the specific question we want to answer.

Fifth, the blog posts showed some technical attributes of the methods and their implementations in R. They have different scalability – some may be applied to large rasters quickly, while some may be computationally expensive. Moreover, the methods require different R skill levels – some of them may be applied with just a few lines of code, while some may require more familiarity with R and numerical methods.

Applications

There are a variaty of reasons for comparing spatial patterns in raster data as listed in the first blog post (from Long and Robertson (2018)):

  • To study change
  • To study similarity
  • To study association
  • To assess spatial models

The above reasons can be expanded based on the specific question we want to answer and how many rasters we wish to compare.

In general, we may think of the comparison of spatial patterns in raster data as one-to-one, one-to-many, or many-to-many. The whole blog post series focussed on the comparison of two rasters, but many methods of the two-raster comparison can be extended to the comparison of multiple rasters (one-to-many or many-to-many).

One-to-many analysis compares the spatial pattern of one raster to the spatial pattern of multiple rasters. For example, we may take a reference raster of a given variable and compare it to multiple rasters of the same variable from different years, regions, etc. Thus, it enables us to find the raster that is most similar to the reference raster.

Many-to-many analysis focuses on the comparison of spatial patterns of multiple rasters. The most basic way of thinking about it is as a way of clustering the rasters based on their spatial patterns. Our goal may be to group areas with similar spatial patterns, and thus, to merge the areas of the most similar rasters to each other.

Extensions and multi-dimensional comparisons

Three approaches for extending the methods to compare multi-dimensional data (source: Abad, 2024)

Many of the presented methods can be extended to compare multi-dimensional data, for example, two raster time series. This, in general, may require one of the approaches:

  1. Treating each layer as a separate raster and compare corresponding layers using the methods described above (a pairwise comparison)
  2. Compressing the data into one dimension (e.g., one raster layer) and then comparing such compressed data
  3. Create temporal or spatiotemporal signatures and compare them using a dissimilarity measure

Looking ahead

This blog post series has explored various approaches to comparing spatial patterns in raster data, from foundational concepts to practical implementations in R. Whether you’re studying environmental change, validating spatial models, or analyzing land use patterns, I hope this series has provided you with practical tools and considerations for your spatial analysis work. As always, I welcome feedback and suggestions for improvements or extensions to these methods. I may also consider writing a follow-up series on the topic, so please let me know if you have any specific questions or issues you’d like to see covered in future posts.

References

Hagen‐Zanker, Alex. 2009. “An Improved Fuzzy Kappa Statistic That Accounts for Spatial Autocorrelation.” International Journal of Geographical Information Science 23 (1): 61–73. https://doi.org/10.1080/13658810802570317.
Long, Jed, and Colin Robertson. 2018. “Comparing Spatial Patterns.” Geography Compass 12 (2): e12356. https://doi.org/10.1111/gec3.12356.
Nowosad, Jakub. 2024. “Comparing Spatial Patterns in Raster Data Using r.” The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences XLVIII-4/W12-2024 (June): 127–33. https://doi.org/10.5194/isprs-archives-xlviii-4-w12-2024-127-2024.
Sampat, M. P., Zhou Wang, S. Gupta, A. C. Bovik, and M. K. Markey. 2009. “Complex Wavelet Structural Similarity: A New Image Similarity Index.” IEEE Transactions on Image Processing 18 (11): 2385–2401. https://doi.org/10.1109/TIP.2009.2025923.

Footnotes

  1. I tried my best to find possible R implementations, but there is still a chance that I missed some.↩︎

Reuse

Citation

BibTeX citation:
@online{nowosad2024,
  author = {Nowosad, Jakub},
  title = {Understanding and Extending the Methods of Comparing Spatial
    Patterns in Raster Data},
  date = {2024-11-17},
  url = {https://jakubnowosad.com/posts/2024-11-17-spatcomp-bp6/},
  langid = {en}
}
For attribution, please cite this work as:
Nowosad, Jakub. 2024. “Understanding and Extending the Methods of Comparing Spatial Patterns in Raster Data.” November 17, 2024. https://jakubnowosad.com/posts/2024-11-17-spatcomp-bp6/.
You can support my work with a coffee: ko-fi