ncdf4 (version 1.16.1)

nc_close: Close a netCDF File

Description

Closes an open netCDF file, which flushes any unwritten data to disk. Always close a netCDF file when you are done with it! You are risking data loss otherwise.

Usage

nc_close( nc )

Arguments

nc

An object of class ncdf4 (as returned by either function nc_open or function nc_create.

Details

Data written to a netCDF file is cached in memory, for better performance. This data is only written out to disk when the file is closed. Therefore, always remember to close a netCDF file when done with it.

References

http://dwpierce.com/software

See Also

nc_sync.

Examples

Run this code
# NOT RUN {
nc <- nc_open("salinity.nc")
# }
# NOT RUN {
data <- ncvar_get( nc )	# Read the "only" var in the file
# }
# NOT RUN {
nc_close(nc)
# }

Run the code above in your browser using DataLab