- 积分
- 36094
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-5-13
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 一大碗年糕 于 2025-1-18 13:33 编辑
NCL利用NCL读取ERA5数据时,无法对时间使用calendar_decode类的函数,报错显示:- fatal:Argument type mismatch on argument (0) of (calendar_decode2) can not coerce
- fatal:["Execute.c":8637]:Execute: Error occurred at or near line 13 in file test.ncl
复制代码
原因在于,ERA5时间数据类型为int64,需要转为double才能被解析
https://mailman.ucar.edu/pipermail/ncl-talk/2024-August/019416.html
time_o = f1->valid_time
printVarSummary(time_o)
time_new = todouble(time_o)
copy_VarMeta(time_o,time_new)
printVarSummary(time_new)
重拾NCL中泪目... |
|