per06522
Results
1
comments of
per06522
If you are re-opening the netcdf file, you should try this ``` import gc import netCDF4 as nc nc.Dataset("abc.nc", "r") gc.collect() a = nc.Dataset("abc.nc", "r+") ```