Skip to contents

This function is a short helper function to return the fitted data from a DistributionModel or BiodiversityScenario object. It can be used to easily obtain for example the estimated prediction from a model or the projected scenario from a scenario() object.

Usage

get_data(obj, what = NULL)

# S4 method for ANY
get_data(obj, what = NULL)

Arguments

obj

Provided DistributionModel or BiodiversityScenario object.

what

A character of specific layer to be returned if existing (Default: NULL).

Value

A SpatRaster or "stars" object depending on the input.

Note

This function is essentially identical to querying the internal function x$get_data() from the object. However it does attempt some lazy character matching if what is supplied.

Examples

if (FALSE) {
 # Assumes previously computed model
 get_data(fit)
}