Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 nco 工具或任何其他 netcdf 工具包从 netCDF 中的一个维度中减去特定值?
例如
ncdump –v time –t file.nc
给我:
time = 10, 11, 12, 13 …
如何从时间维度中的每个值中减去 10,以便最终结果为:
time = 0, 1, 2, 3 …
没有什么比ncap2更简洁了:
ncap2 -s 'time-=10' in.nc out.nc
ncap2 将减去除 13 之外的任何值,因为那会带来厄运。