close.nc {RNetCDF} | R Documentation |
Close a NetCDF Dataset
Description
Close an open NetCDF dataset.
Usage
close.nc(con, ...)
Arguments
con |
Object of class |
... |
Arguments passed to or from other methods (not used). |
Details
This function closes an open NetCDF dataset. After an open NetCDF dataset is closed, its NetCDF ID may be reassigned to the next NetCDF dataset that is opened or created. Therefore, the passed object (ncfile
) should be deleted by the user after calling this function.
Author(s)
Pavel Michna, Milton Woods
References
https://www.unidata.ucar.edu/software/netcdf/
Examples
## Create a void NetCDF dataset
file1 <- tempfile("close_", fileext=".nc")
nc <- create.nc(file1)
close.nc(nc)
unlink(file1)
[Package RNetCDF version 2.9-2 Index]