【发布时间】:2016-09-06 22:52:03
【问题描述】:
我想在 netcdf 文件中将常量 c 下的所有值设置为 c 本身:file .nc
使用气候数据运营商 (CDO) 的解决方案是
cdo mul -gec,$c file.nc file.nc t1.nc
cdo add -mulc,$c -ltc,$c file.nc t1.nc output.nc
rm -f t1.nc
但是有没有更简洁/更短的方法来做到这一点?
【问题讨论】:
标签: bash netcdf nco cdo-climate