Pattern-based Spatial Analysis - core ideas

spatial
pattern
spatiotemporal
geopat
sil
Author
Published

July 6, 2018


Blog posts in the series introducing GeoPAT 2 - a software for pattern-based spatial and temporal analysis:

  1. GeoPAT 2: Software for Pattern-Based Spatial and Temporal Analysis
  2. Pattern-based Spatial Analysis - core ideas
  3. Finding similar local landscapes
  4. Quantifying temporal change of landscape pattern
  5. Pattern-based regionalization
  6. Moving beyond pattern-based analysis: Additional applications of GeoPAT 2

This is a second blog post in the series introducing GeoPAT 2 - a software for pattern-based spatial and temporal analysis. The first one focused on providing a background of this open-source software. Here, I will explain the three core ideas behind the pattern-based spatial analysis including what is a motifel, signature, and similarity metric.

Motifel

Most of the spatial raster analyses use single pixels as its main unit of analysis. Each pixel has one value (e.g. land cover class) and relatively small size (e.g. 90 meters). The value of a single pixel can show a local property, however, it says nothing about a local spatial pattern.

Therefore, the question is how a local pattern can be depicted? In our approach, we consider a square block of pixels as a representation of a local pattern (“motif”). This block of pixels is called a motifel and it is an elementary unit of the pattern-based spatial analysis.

In the figure below, you can see a land cover map divided into a set of motifels. Each motifel consists of a large number of pixels and depicts a local pattern.

An example of a grid divided into motifels

It is worth to mention that a simple rule to decide on a size of a motifel doesn’t exist. The decision depends on the input data (e.g. its resolution, number of classes), type of a pattern, its variability, etc. However, a rule of thumb is to look closely at your data and keep in mind two things:

  1. There should be enough pixels to create a pattern. That is why GeoPAT 2 does not allow for a mofitels smaller than 10 by 10 pixels.
  2. Single motifels usually should not encapsulate many different patterns.

Signature

Motifel is a spatial data representation preferable by humans as our pattern processing capabilities were improved in millions of years of evolution. However, computers cannot see patterns in the same way as we do, and we need to transform the spatial pattern data into a form recognizable by machines. Fortunately, there are many ways to do so and GeoPAT 2 offers some of them. They are called signatures.

The simplest signature of a motifel is its composition (Cartesian product, prod) - a number of cells of each map category. It is a very compact representation, although it doesn’t contain information related to the configuration of categories. This is a role for the following signature - spatial co-occurrence of categories (cooc). Spatial co-occurrence of categories is a \(k\) by \(k\) square matrix, where \(k\) is a number of classes in a landscape. Class co-occurrence matrix counts a number of pairs of classes assigned to neighboring cells. Next, the co-occurrence matrix is transformed into a normalized co-occurrence histogram. In this signature, a landscape with \(k\) classes can be represented by the co-occurrence histogram of \((k^2 + k)/2\) elements. Importantly, a \(k\) number of them is related to the class composition and \((k^2 - k)/2\) is related to the class configuration.

Two representations of a motifel: (a) composition (Cartesian product), (b) spatial co-occurrence of categories

Take a look at the example above and compare information depicted by the compositional and co-occurrence histograms. The first one shows that each land cover category occupies a very similar proportion of the area. The second one provides more information - it counts how often different categories are adjacent to each other. These histograms also have some important properties - rotated or mirrored version of a landscape will still have the same non-spatial representation.

The signatures mentioned above are suitable for a numeric comparison between motifels using similarity metrics (more about them below). There are three additionals signatures - “landscape indices” (lind), “selected landscape indices” (linds), and “Shannon entropy” (ent), and their role is mostly limited to describing motifels.

Similarity metric

Two of the signatures mentioned above, prod and cooc, have a special power - they allow for comparisons between any pair of motifels. In a similar way, as a human can look at two images and decide if they are similar or not, GeoPAT 2 can take two motifels and compare their signatures. It also has important advantages comparing to a human perception. Firstly, the GeoPAT 2 results are consistent and reproducible, while human perception can be erratic and differs between individuals. Secondly, GeoPAT 2 gives a numerical value of similarity between two motifels.

As an example, consider the three motifels below. They are represented using the co-occurrence histograms.

Comparision of three motifels (landscapes) using spatial co-occurrence of categories

To calculate a similarity between them we need to have a way to measure how these histograms are alike. GeoPAT 2 has several similarity metrics that were build to compare two histograms. It includes Jensen Shannon divergence (jsd), Triangular (tri), Wave-Hedges distance (wh), and Jaccard distance (jac). They are explained in detail in the GeoPAT 2 manual.

I’ve calculated the Jensen Shannon divergence values between the three examples from the above figure. The smaller this value is the more similar are two motifels. The results are, as expected, consistent with the human perception. The first and third motifel are the most similar with the jsd value of 0.003 - both motifels have only three categories and their patterns are analogous. The second motifel is less similar to both the first one (the jsd value of 0.115) and the third one (the jsd value of 0.089). It has an additional land cover category (“grassland”), different proportions of land cover categories and their configurations.

Comparision of the Jensen Shannon divergence values between the example motifels (landscapes)
1 2 3
1 0.000 0.115 0.003
2 0.115 0.000 0.089
3 0.003 0.089 0.000

What’s next

Understanding the three main ideas behind pattern-based spatial analysis - what is a motifel, signature, and similarity metric - opens a large number of possibilities. In the next blog posts, I will apply them to answer several questions using the real data.

Reuse

Citation

BibTeX citation:
@online{nowosad2018,
  author = {Nowosad, Jakub},
  title = {Pattern-Based {Spatial} {Analysis} - Core Ideas},
  date = {2018-07-06},
  url = {https://jakubnowosad.com/posts/2018-07-06-pattern-based-spatial-analysis-core-ideas},
  langid = {en}
}
For attribution, please cite this work as:
Nowosad, Jakub. 2018. “Pattern-Based Spatial Analysis - Core Ideas.” July 6, 2018. https://jakubnowosad.com/posts/2018-07-06-pattern-based-spatial-analysis-core-ideas.