scipy.io.netcdf_file.
createVariable#
- netcdf_file.createVariable(name, type, dimensions)[source]#
为
netcdf_file
对象创建一个空变量,指定其数据类型和它使用的维度。- 参数:
- namestr
新变量的名称。
- typedtype 或 str
变量的数据类型。
- dimensionsstr 序列
变量使用的维度名称列表,按所需的顺序排列。
- 返回值:
- variablenetcdf_variable
新创建的
netcdf_variable
对象。此对象也已添加到netcdf_file
对象中。
注意事项
变量要使用的任何维度都应该已经存在于 NetCDF 数据结构中,或者应该在创建 NetCDF 变量之前通过
createDimension
创建。