landscapemetrics (version 1.4.4)

get_unique_values: get_unique_values

Description

This function returns the unique values of an object.

Usage

get_unique_values(x, simplify, verbose)

# S3 method for numeric get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for matrix get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for RasterLayer get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for list get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for RasterStack get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for RasterBrick get_unique_values(x, simplify = FALSE, verbose = TRUE)

# S3 method for stars get_unique_values(x, simplify = FALSE, verbose = TRUE)

Arguments

x

vector, matrix or Raster* object

simplify

If true, a vector will be returned instead of a list for 1-dimensional input

verbose

If true, warning messages are printend

Details

Fast and memory friendly Rcpp implementation to find the unique values of an object.

Examples

Run this code
# NOT RUN {
get_unique_values(landscape)

landscape_stack <- raster::stack(landscape, landscape, landscape)
get_unique_values(landscape_stack)

landscape_matrix <- raster::as.matrix(landscape)
get_unique_values(landscape_matrix)

x_vec <- c(1, 2, 1, 1, 2, 2)
get_unique_values(x_vec)

landscape_list <- list(landscape, landscape_matrix, x_vec)
get_unique_values(landscape_list)

# }

Run the code above in your browser using DataCamp Workspace