time {terra}R Documentation

time of SpatRaster layers

Description

Get or set the time of the layers of a SpatRaster. Experimental. Currently only Date's allowed.

Usage

## S4 method for signature 'SpatRaster'
time(x)

## S4 replacement method for signature 'SpatRaster'
time(x)<-value

Arguments

x

SpatRaster

value

"Date", "POSIXt", or numeric

Value

Date

See Also

depth

Examples

s <- rast(system.file("ex/logo.tif", package="terra"))   

time(s) <- as.Date("2001-05-04") + 0:2
time(s)

[Package terra version 1.2-10 Index]