R/getDatasets.R

Defines functions getDatasets

Documented in getDatasets

#' @title Download datasets from the harvard dataverse repo
#' @name getDatasets
#' @description
#' Ecoregions and protected area data base are stored on a harvard dataverse repository. This functions check to see if
#' those datasets have been download and will download them if not present.
#'
#' @return A message confirming the datasets were downloaded, along with saving the files to the package's data directory.
#'
#' @references
#' Khoury et al. (2019) Ecological Indicators 98:420-429. \doi{10.1016/j.ecolind.2018.11.016}
#' Carver et al. (2021) GapAnalysis: an R package to calculate conservation indicators using spatial information
#' @importFrom dataverse get_file
#' @importFrom terra rast writeRaster
#' @export

getDatasets <- function(){
  #LOADING FOLDER PARAMETERS
  out_dir <- tools::R_user_dir("GapAnalysis", which = "data")
  if(!file.exists(out_dir)){dir.create(out_dir, recursive = TRUE)}
  
  prot_dir <- paste0(out_dir, "/protectedArea")
  if(!file.exists(prot_dir)){dir.create(prot_dir, recursive = TRUE)}
  
  ecoRegion_dir <- paste0(out_dir, "/ecoRegion")
  if(!file.exists(ecoRegion_dir)){dir.create(ecoRegion_dir, recursive = TRUE)}


  # WDPA file  --------------------------------------------------------------
  proAreaPath <- paste0(prot_dir,"/wdpa_rasterize_all.tif")
  if(!file.exists(proAreaPath)){
    # raw protected areas data
    raw_tif_data <- dataverse::get_file(
      file ="wdpa_rasterized_all.tif",
      dataset = "doi:10.7910/DVN/KQVOSW",
      server = "https://dataverse.harvard.edu"
    )

    # Write the raw data to a temporary file on your disk
    temp_file_path <- tempfile(fileext = ".tif")
    writeBin(raw_tif_data, temp_file_path)

    # Step 5: Read the temporary TIFF file into R using terra
    # The 'rast()' function from the terra package reads the raster data.
    raster_data <- terra::rast(temp_file_path)
    terra::writeRaster(x = raster_data, filename = proAreaPath)
    message("Protected areas files have been downloaded from the dataverse","\n")

  } else {
    message("Protected areas file are already downloaded","\n")
  }


  # ecoregion file ----------------------------------------------------------
  ecoRegionPath <- paste0(prot_dir,"/tnc_terr_ecoregions.gpkg")
  if(!file.exists(ecoRegionPath)){
    # raw data
    raw_eco_data <- dataverse::get_file(
      file ="tnc_terr_ecoregions.gpkg",
      dataset = "doi:10.7910/DVN/WTLNRG",
      server = "https://dataverse.harvard.edu"
    )
    # Write the raw data to a temporary file on your disk
    temp_file_path <- tempfile(fileext = ".gpkg")
    writeBin(raw_eco_data, temp_file_path)

    # Step 5: Read the temporary TIFF file into R using terra
    # The 'rast()' function from the terra package reads the raster data.
    vect_data <- terra::vect(temp_file_path)
    terra::writeVector(x = vect_data, filename = ecoRegionPath)
    message("Ecoregions files have been downloaded from the dataverse","\n")

  } else {
    message("Ecoregions files are already downloaded","\n")
  }
  return(message("DATASETS WERE DOWNLOADED!"))
}

Try the GapAnalysis package in your browser

Any scripts or data that you put into this service are public.

GapAnalysis documentation built on May 12, 2026, 5:07 p.m.