category_layer {prioritizr}R Documentation

Category layer

Description

Convert a terra::rast() object where each layer corresponds to a different identifier and values indicate the presence/absence of that category into a terra::rast() object containing categorical identifiers.

Usage

category_layer(x)

## S3 method for class 'Raster'
category_layer(x)

## Default S3 method:
category_layer(x)

Arguments

x

terra::rast() object containing multiple layers. Note that pixels must be 0, 1 or NA values.

Details

This function is provided to help manage data that encompass multiple management zones. For instance, this function may be helpful for interpreting solutions for problems associated with multiple zones that have binary decisions. It is essentially a wrapper for terra::which.lyr().

Value

A terra::rast() object.

See Also

binary_stack().

Examples

# create a binary raster stack
x <- terra::rast(list(
 terra::rast(matrix(c(1, 0, 0, 1, NA, 0), nrow = 3)),
 terra::rast(matrix(c(0, 1, 0, 0, NA, 0), nrow = 3)),
 terra::rast(matrix(c(0, 0, 1, 0, NA, 1), nrow = 3))
))

# plot data
plot(x)

# convert to category layer
y <- category_layer(x)

# plot result
## Not run: 
plot(y)

## End(Not run)

[Package prioritizr version 8.0.3 Index]