This function returns one of 'vector' or 'raster' depending on the input class.
Note
Although stars
object is a little ambiguous
whether to classify vector or raster,
it will be considered raster in this package.
See also
Other Helper functions:
dep_check()
,
dep_switch()
,
get_clip_ext()
,
par_def_q()
,
reproject_std()
,
reproject_to_raster()
Examples
if (FALSE) { # \dontrun{
library(sf)
library(terra)
options(sf_use_s2 = FALSE)
nc_path <- system.file("gpkg/nc.gpkg", package = "sf")
nc_sf <- sf::st_read(nc_path)
datamod(nc_sf)
ra_path <- system.file("ex/elev.tif", package = "terra")
ra <- terra::rast(ra_path)
datamod(ra)
} # }