| as_stars {ursa} | R Documentation |
Raster coercion to `stars`
Description
Coercion from raster ursaRaster object to raster stars object defined in package stars.
Usage
as_stars(obj)
Arguments
obj |
Object of class |
Details
Simple coercion to stars object of package stars. Currently, color tables and attribution tables are not supported.
Value
Object of class stars for argument of class ursaRaster. Otherwise, NULL.
Author(s)
Nikita Platonov platonov@sevin.ru
Examples
session_grid(NULL)
a <- ursa_dummy(3)
x <- as_stars(a)
class(x)
if (requireNamespace("stars")) {
print(x)
b <- as_ursa(x)
print(a)
print(b)
}
[Package ursa version 3.10.4 Index]