stack_2data: Creates a data.frame of species' references from RasterStack

Description Usage Arguments Value Examples

View source: R/pam_helpers.R

Description

Creates a data.frame of species' references that contains longitude, latitude, and species name, using a RasterStack or a RasterBrick as input.

Usage

1
stack_2data(species_layers)

Arguments

species_layers

RasterStack or RasterBrick object. Each layer must be named as the species that it represents, and values in each layer must be 1 (presence) and 0 (absence).

Value

A data.frame of species geographic records derived from values of presence in each layer from the RasterStack.

Examples

1
2
3
4
5
6
7
8
# Data
rsp <- raster::stack(system.file("extdata/sp_layers.tif",
                                 package = "biosurvey"))
names(rsp) <- paste0("Species_", 1:5)

# Species data from RasterStack
sp_data <- stack_2data(species_layers = rsp)
summary(sp_data)

biosurvey documentation built on Sept. 16, 2021, 1:07 a.m.