Learn R Programming

terra (version 1.4-7)

time: time of SpatRaster layers

Description

Get or set the time of the layers of a SpatRaster.

Usage

# S4 method for SpatRaster
time(x)

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

Arguments

x

SpatRaster

value

"Date", "POSIXt", or numeric

Value

Date

See Also

depth

Examples

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

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

# POSIX (time stored as seconds)
time(s) <- as.POSIXlt(d)
time(s)

# "raw" time
time(s) <- as.numeric(d)
time(s)
# }

Run the code above in your browser using DataLab