We have a shape file like this:
library(terra)
#> terra 1.6.7
v <- system.file("ex/lux.shp", package="terra") |> vect()
We can add a field or a column like this:
v[["ID_new_v1"]] <- 1:nrow(v)
v$ID_new_v2 <- 1:nrow(v)
However, I want to add a column from:dat, column my, to all corresponding names in NAME_2 in v
dat=structure(list(ec = c("Diekirch", "Redange"), med.x = c(7, 8),
co.x = c(113L, 590L), my = c(3, 5), co.y = c(113L, 590L),
per = c(3, 9)), row.names = 1:2, class = "data.frame")
You can use
left_join
fromtidyterra
package to join a data frame to shapefile likeYou can also use
merge
function fromterra
package like