如何使用 cdo 从 netcdf 文件中提取除指定时间步之外的所有时间步

How to extract all timesteps except the specified timesteps from a netcdf file using cdo

我们通常使用 'cdo seltimestep' 到 select 我们想要从 netcdf 文件提取到仅包含我们指定的日期的输出文件中的日期。

cdo seltimestep,6,10,11 2000-03.nc 03-days.nc

但现在我们想做相反的事情,我们想 select 除了指定的那些日子之外的所有日子。在 cdo 中有没有办法做到这一点?

您可以按以下方式使用运算符delete

cdo delete,timestep=6,10,11 ifile ofile