将Python字典保存到netCDF4文件

时间:2015-12-23 11:30:44

标签: python dictionary hdf5 netcdf

我正在学习使用Python模块进行netCDF4(以及一般的netCDF4)。使用HDF5文件格式,有一种将Python词典翻译成HDF5数据结构的自然方法 - 使用组的属性:

While i
 temp = Cells(i, column).Value
 last = Right(temp, 4)
 Cells(i, 1).offset(, column).Value = last
 i = i + 1
 If Cells(i, column).Value < 1 Then
 i = 0
End If
**Wend**  

智能netCDF4的方法是什么?

1 个答案:

答案 0 :(得分:4)

类似的东西:

parameters = {'a':1.0, 'b':2.0, 'c':3.0}
f = netCDF4.Dataset('test.nc', 'w')
parms = f.createGroup('parameters')
for k,v in parameters.items():
    setattr(parms, k, v)