scipy.io.netcdf_file.

createDimension#

netcdf_file.createDimension(name, length)[源代码]#

向 NetCDF 数据结构的维度部分添加一个维度。

请注意,此函数仅添加一个新维度,变量可以引用该维度。如果需要,维度的值应使用 createVariable 添加为变量,并引用此维度。

参数:
namestr

维度的名称(例如,“lat”或“time”)。

lengthint

维度的长度。

另请参阅

createVariable