OVERVIEW. Biomes are communities of organisms with similar adaptations. They are classified according to their predominant vegetation and are characterized by the adaptations of its organisms to a shared physical environment. Biomes are often describe using climate diagrams because climate is the primary environmental factor affecting the distribution and diversity of plants. Specifically, the seasonal patterns of temperature and precipitation affect the length of the growing season of plants. Thus, monitoring these climatic variables through time using climate diagrams is important to understand the environmental factors shaping current biomes. In fact, a reconsideration of the definition of current biomes is taking place as some scientists are starting to include human population size and land use (e.g., % pasture, crops, urbanization) as other important factors shaping them. Today, we will learn to interpret climate diagrams and associate them to current biomes in order to discuss the newly proposed definition of anthropogenic biomes.



Student learning outcomes:


References:


Materials:



1. Climate diagrams


A. Identify a terrestrial biome given its climate diagram

A climate diagram is a summary of average temperature and precipitation and their time course. In ecology, they can be used to describe physical properties affecting biomes.

Let’s visualize patterns of temperature and precipitation associated with three particular biomes below.


Climate diagram A

Questions:

  1. How many variables and what type of variables (e.g., categorical, numerical) climate diagram A has?
  2. If plant growth occurs when temperature > 0°C, how long is the plant growing season in this biome?
  3. When does precipitation exceed evaporation in climate diagram A?
  4. To what biome climate diagram A belongs to? Explain.


Climate diagram B

Questions:

  1. If plant growth occurs when temperature > 0°C, how long is the plant growing season in this biome?
  2. When does evaporation exceed precipitation in climate diagram B?
  3. To what biome climate diagram B belongs to? Explain.


Climate diagram C

Questions:

  1. If plant growth occurs when temperature > 0°C, how long is the plant growing season in this biome?
  2. When does evaporation exceed precipitation in climate diagram C?
  3. Estimate the mean annual temperature and precipitation of this biome.
  4. To what biome climate diagram B belongs to? Explain.


2. Biomes and climate change

Let’s consider here coral reefs. Given the corals’ dependency on solar radiation for photosynthesis and their limited tolerance to seasonal changes in water temperature, this biome is constrained to shallow waters between 30°N and 30°S. However, several decades of climate change and global warming has threatened this biome, motivating questions about its physical boundaries.

Let’s first explore the observed changes in temperature experienced by these biomes and their consequences in Puerto Rico.


A. Import the “puertorico” dataset into RStudio

Let’s import and explore the “puertorico” data. For this, save the data file in your computer “as page source”.

# importing the data
puertorico <- read.csv("puertorico.csv",header=TRUE)

# viewing the data
View(puertorico)


Questions:

  1. What are the variables of interest?
  2. How many observations do we have for each variable?


B. Estimate the mean monthly temperature of coral reefs

Let’s plot the mean monthly temperature of a “normal” year (2004) and a “warm” year (2005). To do this, we first filter the data by these two years. For this, we use the function filter() from the tidyverse package. The first argument in this function is the dataframe, and the subsequent argument is the filtering condition.

# Loading package tidyverse
library(tidyverse)

# Filtering data from 2004 
pr04 <- filter(puertorico,BYYY==2004)

# Viewing the data
View(pr04)

# Filtering data from 2005
pr05 <- filter(puertorico,BYYY==2005)

# Viewing the data
View(pr05)


To get a summary of descriptive statistics of our temperature data, we use the function summarySE() in the Rmisc package. The first argument in this function is the dataframe, and the subsequent arguments are the name of the column containing the variable to be summarized (dependent variable) and the name of the column containing the grouping variable (independent variable).

# Loading package Rmisc 
library(Rmisc)

# summary statistics for year 2004
sum04 <- summarySE(pr04,"SST","BM")
sum04

# summary statistics for year 2005
sum05 <- summarySE(pr05,"SST","BM")
sum05


C. Plot the variation in mean monthly temperature of coral reefs

Let’s use the newly created summary statistics in R objects sum04 and sum05 using the ggplot2 package.

# loading the package ggplot2
library(ggplot2)

# Plotting the average temperature (SST) across months (BM) in 2004 
p1 <- ggplot(sum04,aes(BM,SST)) +
  geom_line() +
  ylim(24,30) +
  theme_classic()+
  scale_x_continuous("Month",breaks=seq(1,12,1)) 

p1

# Plotting the average temperature (SST) across months (BM) in 2005 
p2 <- ggplot(sum05,aes(BM,SST)) +
  geom_line() +
  ylim(24,30) +
  theme_classic()+
  scale_x_continuous("Month",breaks=seq(1,12,1))

p2


Questions:

  1. Do you observe any difference in mean monthly temperature between both years? Explain.
  2. If the historical mean monthly maximum for this region is 28.5°C and the bleaching threshold is 29.5°C, how many weeks of thermal stress these corals experienced in 2005 versus 2004 (approximately)?
  3. The expected temperature in this biome is better represented by year 2004. What would happen if year 2005 becomes the new normal? How would this affect our current definition of this biome?


Coral bleaching is the loss of color a coral experiences after expelling their symbiotic algae from their tissue. Bleaching occurs when corals experience stress due to higher than average temperatures, among other reasons. If coral bleaching takes place for prolong periods of time, corals are likely to die from starvation due to the absence of food from the algae’s photosynthesis (Figure 1).


Figure 1. Temporal sequence of one photo-transect showing the same *Orbicella annularis* colonies in 2001 (A), 2003-2007 (B-F). The arrows points toward the same colony in different years. By 2007, two years after the 2005 mass bleaching (D), the coral colony was dead. Hernández-Pacheco et al. 2011.

Figure 1. Temporal sequence of one photo-transect showing the same Orbicella annularis colonies in 2001 (A), 2003-2007 (B-F). The arrows points toward the same colony in different years. By 2007, two years after the 2005 mass bleaching (D), the coral colony was dead. Hernández-Pacheco et al. 2011.


Challenge 1: Using today’s analysis and previous knowledge, make inferences about the potential consequences of climate change on this biome’s boundaries. For example, what do you predict will happen if the rate of climate change is higher than the rate of evolution within coral populations? How would this affect our current definition of this biome?


3. Anthropogenic biomes

Erle Ellis and Navin Ramankutty (2008) proposed a reconsideration of biomes. In their model, they considered human population, land use (% pasture, crops, irrigation, rice, urban), and land cover (% vegetated) as important factors affecting the distribution of biomes. Their analysis identifies 6 major groups of biomes (Figure 2).


Figure 2. Anthropogenic biomes (Ellis and Ramankutty 2008).

Figure 2. Anthropogenic biomes (Ellis and Ramankutty 2008).


Challenge 2: Compare Ellis and Ramankutty’s model with current models of terrestrial biomes. For example, do you think is it meaningful to discuss about the primary productivity of a tropical seasonal forest biome when most of the native forest have been turned into fertilizer-supplemented and artificially irrigated croplands?


Great Work!