terra (version 1.0-10)

pack: pack a Spat* object

Description

Pack a Spat* object so that it can be saved as an R object to disk, or passed over a connection that serializes (e.g. using a computer cluster).

Usage

# S4 method for SpatRaster
pack(x, ...)

# S4 method for SpatVector pack(x, ...)

Arguments

x

SpatVector or SpatRaster

...

additional arguments. None implemented

Value

Packed* object

Examples

Run this code
# NOT RUN {
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
p <- pack(v)
p
vv <- vect(p)
vv
# }

Run the code above in your browser using DataCamp Workspace