-
Notifications
You must be signed in to change notification settings - Fork 297
Closed
Labels
Peloton 🚴♂️Target a breakaway issue to be caught and closed by the pelotonTarget a breakaway issue to be caught and closed by the peloton
Description
Currently writing Iris data to netcdf creates a new file. In the case where we are using Iris to process a large amount of data (in my case a 30 year global hindcast), we need to be able process timestep-by-timestep and append the processed result at each timestep to the existing netcdf file, as we don't have enough computer memory to hold all the timesteps at once. An example of what we would like to do is here, using NetCDF4 to append, but we would like to be able to accomplish this with Iris.
http://nbviewer.ipython.org/5777643
The relevant code snippet is:
nc = netCDF4.Dataset('cfsr.nc','r+')
for i in range(10):
url='http://nomads.ncdc.noaa.gov/thredds/dodsC/modeldata/\
cmd_ocnh/2009/200905/200905%2.2d/ocnh01.gdas.200905%2.2d00.grb2' % (i+1,i+1)
print url
cubes = iris.load(url)
t = cubes[4]
slice=t.extract(iris.Constraint(longitude=lambda cell: -77.+360. < cell < -63.0+360.,latitude=lambda cell: 34. < cell < 46.0))
nc.variables['Potential_temperature'][i,:,:,:]=slice.data
Metadata
Metadata
Labels
Peloton 🚴♂️Target a breakaway issue to be caught and closed by the pelotonTarget a breakaway issue to be caught and closed by the peloton