copyDatasetFiles | R Documentation |
copyDatasetFiles()
copies all the files associated with a dataset.
Wrapper for GDALCopyDatasetFiles()
in the GDAL API.
copyDatasetFiles(new_filename, old_filename, format = "")
new_filename |
New name for the dataset (copied to). |
old_filename |
Old name for the dataset (copied from). |
format |
Raster format short name (e.g., "GTiff"). If set to empty
string |
Logical TRUE
if no error or FALSE
on failure.
If format
is set to an empty string ""
(the default) then the function
will try to identify the driver from old_filename
. This is done
internally in GDAL by invoking the Identify
method of each registered
GDALDriver
in turn. The first driver that successful identifies the file
name will be returned. An error is raised if a format cannot be determined
from the passed file name.
GDALRaster-class
, create()
, createCopy()
,
deleteDataset()
, renameDataset()
, vsi_copy_file()
lcp_file <- system.file("extdata/storm_lake.lcp", package="gdalraster")
ds <- new(GDALRaster, lcp_file)
ds$getFileList()
ds$close()
lcp_tmp <- file.path(tempdir(), "storm_lake_copy.lcp")
copyDatasetFiles(lcp_tmp, lcp_file)
ds_copy <- new(GDALRaster, lcp_tmp)
ds_copy$getFileList()
ds_copy$close()
deleteDataset(lcp_tmp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.