我有一个来自 netCDF 文件的对象,它具有以下属性:
float32 zeta(time, y, x)
long_name: free surface height
units: meter
unlimited dimensions: time
current shape = (200, 52, 52)
filling off
)
我需要通过在 Python 中读取所有其他元素来减少这个元素。我试过了
temp = data.variables['zeta']
zeta_pck = temp[::2].copy()
但它不起作用,因为 print zeta_pck.shape 的输出(100,52,52)
仅采用第一个维度