Is it possible to delete a variable from a Scientific.IO.NetCDF.NetCDFFile
? If a file is opened like so:
nc = Scientific.IO.NetCDF.NetCDFFile("File.nc", "a")
neither a
del nc.variables["var"]
nor a
nc.variables["var"] = None
will delete the variable var
.
Thx in advance for any insight.