Filename of the NetCDF dataset to be opened. If the underlying NetCDF library supports OPeNDAP, con may be an OPeNDAP URL.
write
If FALSE (default), the dataset will be opened read-only. If TRUE, the dataset will be opened read-write.
share
The buffer scheme. If FALSE (default), dataset access is buffered and cached for performance. However, if one or more processes may be reading while another process is writing the dataset, set to TRUE.
prefill
The prefill mode. If TRUE (default), newly defined variables are initialised with fill values when they are first accessed. This allows unwritten array elements to be detected when reading, but it also implies duplicate writes if all elements are subsequently written with user-specified data. Enhanced write performance can be obtained by setting prefill=FALSE.
...
Arguments passed to or from other methods (not used).
Value
Object of class "NetCDF" which points to the NetCDF dataset.
Details
This function opens an existing NetCDF dataset for access. By default, the dataset is opened read-only. If write=TRUE, then the dataset can be changed. This includes appending or changing data, adding dimensions, variables, and attributes.
# NOT RUN {## Create a void NetCDF datasetnc <- create.nc("open.nc")
close.nc(nc)
## Open the NetCDF dataset for writingnc <- open.nc("open.nc", write=TRUE)
close.nc(nc)
# }