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.
我有一个包含十分钟分辨率数据的 netCDF 文件。我想从中提取每小时数据并编写一个新的 netCDF 文件,该文件在原始十分钟文件中抓取每小时顶部的数据。我认为我会使用 ncks -d hyperslab 标志来做到这一点,但我不完全确定这是否是最好的方法。
是的,最好的方法是使用
ncks -d time,min,max,stride in.nc out.nc
例如,
ncks -d time,0,,6 in.nc out.nc