# NOT RUN {
# read spatial object
nc <- sf::st_read(system.file("shape/nc.shp", package="sf"), quiet = TRUE)
# create temp file
tf <- tempfile(fileext = '.parquet')
on.exit(unlink(tf))
# write out object
st_write_parquet(obj = nc, dsn = tf)
# In Python, read the new file with geopandas.read_parquet(...)
# read back into R
nc_p <- st_read_parquet(tf)
# }
Run the code above in your browser using DataLab