ee_utils_shp_to_zip: Create a zip file from a sf object

Description Usage Arguments Value See Also Examples

View source: R/ee_utils.R

Description

Create a zip file from a sf object

Usage

1
2
3
4
5
ee_utils_shp_to_zip(
  x,
  filename,
  SHP_EXTENSIONS = c("dbf", "prj", "shp", "shx")
)

Arguments

x

sf object

filename

data source name

SHP_EXTENSIONS

file extension of the files to save into the zip file. By default: "dbf", "prj", "shp", "shx".

Value

Character. The full path of the zip file created.

See Also

Other ee_utils functions: ee_utils_py_to_r(), ee_utils_pyfunc()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
library(rgee)
library(sf)
ee_Initialize(gcs = TRUE)

# Create sf object
nc <- st_read(system.file("shape/nc.shp", package="sf"))
zipfile <- ee_utils_shp_to_zip(nc)

## End(Not run)

csaybar/rgee documentation built on March 11, 2021, 5:48 a.m.