Yes, thanks!
It works, but the syntax is setattr(flle2,att,getattr(file1,att))
2011/11/14 Jeff Whitaker :
> On 11/14/11 10:04 AM, Giovanni Plantageneto wrote:
>>
>> Hi everybody,
>> I am using netCDF4 library to read and write from netcdf files. I
>> would like to copy all the attributes of one fi
In Python you use setattr to set an object's attribute whose name is stored
into a variable:
setattr(file2, att, file1.getncatt(att))
-=- Olivier
2011/11/14 Giovanni Plantageneto
> Hi everybody,
> I am using netCDF4 library to read and write from netcdf files. I
> would like to copy all the at
On 11/14/11 10:04 AM, Giovanni Plantageneto wrote:
> Hi everybody,
> I am using netCDF4 library to read and write from netcdf files. I
> would like to copy all the attributes of one file to another one, in a
> way like this:
>
> ---
>
> from netCDF4 import Dataset as ncdf
>
> file1 = ncdf('file1.nc
Hi everybody,
I am using netCDF4 library to read and write from netcdf files. I
would like to copy all the attributes of one file to another one, in a
way like this:
---
from netCDF4 import Dataset as ncdf
file1 = ncdf('file1.nc', mode='r', format='NETCDF4_CLASSIC')
...
file2 = ncdf('file1.nc',