ENGLISH ENGLISH | SPANISH SPANISH

Working Example 4: projecting to different temporal period

Climate change has significantly altered precipitation and temperature trends over the past century, impacting ecosystem functioning, productivity, stability, and biodiversity (Araujo et al. 2006). Anthropogenic temperature increases have been linked to ecosystem alterations, such as nutrient eutrophication and increased fire frequencies, posing pressure on species (Hauntier et al. 2015). Furthermore, changes in rainfall patterns, extreme weather events, and ocean acidification may contribute to a potential mass extinction of biodiversity (Barnosky et al. 2011).

One of the major impacts of climate change on species is habitat alteration, leading to shifts in distribution patterns and a reorganization of biodiversity (Brambilla et al. 2022). Species distributions may remain constant in certain areas known as climate refuges or contract and expand depending on adaptation abilities and climate stability (Brambilla et al. 2022). These changes can also disrupt vital ecological interactions. In Colombia, climate change is expected to significantly affect diversity, causing shifts (Velásquez-Tibatá, Salaman and Graham, 2013), physiological adaptations, local extinctions of populations, and modifications of ecosystems and ecosystem services (Anderson et al. 2010; Gutierrez and Echeverri, 2021).

Percentage of area affected by biome in multimodel ensembles of climate change. Taken from Gutierrez and Echeverri (2021).

Niche models have become essential tools to study the impacts of climate change on species distributions, allowing for improved forecasting of future distributional areas compared to earlier methods. These models have been used to evaluate single species’ distribution shifts, identify populations at risk, and explore composite future projections for entire faunas and floras (Peterson et al. 2002; Midgley et al. 2003; Thomas et al. 2004). They have also been applied in spatial conservation planning to consider current and future suitable distributional areas for European plant species (Araújo et al. 2004). Niche models help in identifying critical conservation areas and biodiversity corridors (Williams et al. 2005; Phillips et al. 2008). Despite uncertainties and debates, niche models provide valuable insights into the potential impacts of climate change on species distributions and inform conservation efforts.

Environmental Data and Ocurrences

If you skip the last section, extract the files inside of the “.zip” folder example to the main root folder. It will write a folder called example having three other folders: Bias_file, Data, and Occurrences.

  • Data folder, where you will find
    • env_vars environmental variables representing climatic and other factors of current and future scenarios. The resolution of this layers are 10 km.
      • other folder to store environmental variables no related to climatic factors like topographic or remote sensing data.
      • worldclim folder to store climatic variables, in this case the data come from the worldclim database
    • biogeographic_shp useful biogeographic shapes in order to be used as template for training models or select areas of interest.
  • Occurrences folder, you will find three spreadsheets in “.csv” format. Each “.csv” stores occurrence data using three columns called “species”, “lon” and “lat”. Go to last section for more information.

In this example, we are going to work with occurrences of the Velvet-fronted or Euphonia concinna.

First, we are going to call some libraries

library(maps)
library(dplyr)
library(ggplot2)
library(sf)
library(terra)

As usual, lets to explore de data

dataSp <- read.csv("example/Occurrences/single_species_4.csv")

Explore the dataSp object. Notice the change in column names.

names(dataSp)
## [1] "scientificName" "latitude"       "longitude"
nrow(dataSp)
## [1] 388
ncol(dataSp)
## [1] 3

Plot the occurrences

col <- read_sf("example/Data/biogeographic_shp/nacional_wgs84.shp")
dataSp.points <- dataSp |>
  st_as_sf(coords = c("longitude", "latitude"), crs = sf::st_crs("EPSG:4326"))
ggplot() + 
    geom_sf(data = col, fill = "transparent", color = "black") +
    geom_sf(data = dataSp.points, color = "blue")

In this example, we will delve deeper into our understanding of the structure of the future folder and its associated files. The future variables are sourced from the WorldClim database. The available data represents the 2021 IPCC sixth assessment report derived from the Coupled Model Intercomparison Projects 6 (CMIP6) downscaled future climate projections. These projections are organized according to different global climate models (GCMs) and Shared Socioeconomic Pathways (SSPs), which explore potential changes in global society, demographics, and economics over the course of the next century. Collectively, these pathways are referred to as the “Shared Socioeconomic Pathways” (SSPs). For further information, you can review sources here and here.