Learn R Programming

terra (version 0.7-4)

rstk: Create a SpatStack

Description

Methods to create a SpatStack. This is an object to hold "sub-datasets", each a SpatRaster that in most cases will have multiple layers.

sds_info provides information about sub-datasets in a file.

Usage

# S4 method for character
rstk(x, ids=0, ...)

# S4 method for SpatRaster rstk(x, name="sd1", ...)

# S4 method for list rstk(x, ...)

sds_info(filename, ...)

Arguments

x

character (filename) or SpatRaster, or list of SpatRaster objects

ids

optional. vector of integer subdataset ids. Ignored if the first value is not a postive integer

name

character to name the sub-dataset

...

additional arguments. Can be other SpatRaster objects if x is a SpatRaster

filename

character

Value

SpatStack

Examples

Run this code
# NOT RUN {
s <- rast(system.file("ex/logo.tif", package="terra"))   
x <- rstk(s, "first")
y <- c(x, second=s)

# extract the second SpatRaster
y[2]
# }

Run the code above in your browser using DataLab