I need to process a single variable in a netcdf file that actually contains many attributes and variable. I think it is not possible to update a netcdf file (see question How to delete a variable in a Scientific.IO.NetCDF.NetCDFFile?)
My approach is the following:
- get the variable to process from the original file
- process the variable
- copy all data from the original netcdf BUT the processed variable to the final file
- copy the processed variable to the final file
My problem is to code step 3. I started with the following:
def  processing(infile, variable, outfile):
        data = fileH.variables[variable][:]
        # do processing on data...
        # and now save the result
        fileH = NetCDFFile(infile, mode="r")
        outfile = NetCDFFile(outfile, mode='w')
        # build a list of variables without the processed variable
        listOfVariables = list( itertools.ifilter( lamdba x:x!=variable , fileH.variables.keys() ) )
        for ivar in listOfVariables:
             # here I need to write each variable and each attribute
How can I save all data and attribute in a handfull of code without having to rebuild a whole structure of data?
 
     
     
     
     
     
     
    