我试图计算具有特定经度/纬度的选定区域的平均 SPI 值。我做了以下区域,我想计算平均值。
ds_mlw1 = ds.sel(lat=slice(-16.74833, -16.75613), lon=slice(35.27023, 35.27915))
我发现使用 cdo 包效果最好。我收到我的 cdo 无法识别的错误。有人知道如何解决这个问题。
这是我的脚本
from cdo import *
import matplotlib.pyplot as plt
file = 'spi3_6_12_1deg_cru_ts_3_21_1949_2012.nc'
cdo = Cdo()
cdo.debug=True
meanspi = cdo.fldmean(input=file,returnCdf=True).variables['spi3'][:]
我收到以下错误
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-77-7eeb6d09369c> in <module>()
9 import matplotlib.pyplot as plt
10 file = 'spi3_6_12_1deg_cru_ts_3_21_1949_2012.nc'
---> 11 cdo = Cdo()
12 cdo.debug=True
13
FileNotFoundError: [WinError 2] Het 系统 kan het opgegeven bestand niet vinden
含义(系统找不到给定的文件)