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