Understanding 'sp' Objectss

To work efficiently with the simple features data frame (SFDF) objects used in the MazamaSpatialUtils package, it is important to understand the S4 object classes that make up the sp package. This vignette introduces simple concepts associated with R's object classes so that newcomers to this style of coding can work efficiently with SFDFs.

Objects in R

Unlike C, Java or python, R is a proudly "functional language". The basic element is a function rather than an object. Over the years, various object systems have been developed for R and these are concisely explained in the Object Oriented Programming chapter from Wickham's Advanced R.

We will discuss on S3 and S4 objects with a focus on how to tell which is which and how to manipulate them.

S3 Objects

When programming in R (as opposed to scripting), it is important to understand the fundamental nature of the "things" you are working with. The most common type of "thing" is an object of type S3. We will start by investigating a familiar function and its return value and learn the following:

What is an S3 Object

# Plot a histogram but save the return value
h <- hist(rnorm(100), plot = FALSE)

# Query this 'object'
typeof(h)
class(h)
attributes(h)
names(h)

OK. So h has an internal storage type (typeof()) of list; and a class attribute of histogram. A simpler way to state this would be to say that "h is a list of class histogram."

Accessing S3 components

You can access elements of this object in normal "list" fashion:

# What types of elements do we have?

str(lapply(h, class))

# Let's look a "counts"
h$counts

# Or, alternatively
h[["counts"]]

Calling S3 "methods"

Let's examine how R creates different plots for different types of "things".

# Lets set up some more "objects"
h1 <- 1:10        # Numbers 1-10

layout(matrix(seq(2)))
plot(h)
plot(h1)
layout(1)

This capability demonstrates something called "method dispatch" where a top level function assess the class of an S3 object and calls the appropriate sub-function.

class(h)
class(h1)

methods("plot")

It turns out there are lots of "plot" functions. If you try to plot an object of class histogram you will end up calling plot.histogram whereas plotting an object of class integer ends up calling plot.default.

S4 Objects

While S3 objects are simple, they do no allow many of the fancier features associated with "Object Oriented Programming" (OOP). As R evolved, people came up with S4 objects to address this. We won't go into the details about what is possible but just point out how to use S4 objects from the sp package.

What is an S4 Object

The MazamaSpatialUtils package uses sp and creates S4 objects:

# Load the 'SimpleCountries' dataset
library(MazamaSpatialUtils)
data("SimpleCountries")

class(SimpleCountries)
typeof(SimpleCountries)

# It's big so we don't just print out the attributes
a <- attributes(SimpleCountries)
class(a)
names(a)

Accessing S4 components

# S4 objects have 'slots'
slotNames(SimpleCountries)

# Access slots using 'slot()' or '@'
class(slot(SimpleCountries, "data"))
class(SimpleCountries@data)

SFDF Objects

Each simple features data frame is an S4 object with a 1:1 relationship between records (rows) in the @data dataframe and Polygons S4 objects in the @polygons list. This makes it possible to use some functions like subset() that work on dataframes. The following code shows how to work with them.

# Compare 'data' and 'polygons' slots
nrow(SimpleCountries@data)
length(SimpleCountries@polygons)

# Look at the first record
str(SimpleCountries@data[1,])

# We can also use normal dataframe syntax to access columns of data
SimpleCountries$countryName[1]

# Magic happens when we plot using normal dataframe syntax
plot(SimpleCountries[1,])

# Here is a more advanced example using pipes
SimpleCountries %>% 
  subset(UN_region == 150) %>% 
  subset(countryCode != "RU") %>% 
  plot()

SimpleCountries %>%
  subset(countryCode %in% c("DE", "AT", "CH")) %>%
  plot(col = 'red', add = TRUE)

title("German Speakers in Europe")

Best of luck making interesting maps!

Mazama Science



MazamaScience/MazamaSpatialUtils documentation built on Sept. 14, 2023, 6 p.m.