terra (version 1.7-71)

names: Names of Spat* objects

Description

Get or set the names of the layers of a SpatRaster or the attributes of a SpatVector.

See set.names for in-place setting of names.

Usage

# S4 method for SpatRaster
names(x)

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

# S4 method for SpatRasterDataset names(x)

# S4 method for SpatRasterDataset names(x)<-value

# S4 method for SpatVector names(x)

# S4 method for SpatVector names(x)<-value

Value

character

Arguments

x

SpatRaster, SpatRasterDataset, or SpatVector

value

character (vector)

Examples

Run this code
s <- rast(ncols=5, nrows=5, nlyrs=3)
nlyr(s)
names(s)
names(s) <- c("a", "b", "c")
names(s)

# SpatVector names
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
names(v)
names(v) <- paste0(substr(names(v), 1, 2), "_", 1:ncol(v))
names(v)

Run the code above in your browser using DataLab