0

我正在尝试根据每日最高和每日最低 netcdf 文件计算平均每日温度,因此执行了以下任务。但这并没有给我结果。你能帮我解决这个问题吗?

C:\nco>ncks -A G:\CORDEX\ACCESS1-0\RCP45\tasmin.nc G:\CORDEX\ACCESS1-0\RCP45\tasmax.nc

已复制 1 个文件。1 个文件已移动。

C:\nco>ncap2 -s "tasavg=(tasmin+tasmax)/2" G:\CORDEX\ACCESS1-0\RCP45\tasmax.nc G:\CORDEX\ACCESS1-0\RCP45\tasavg.nc

ncap2: ERROR malloc() returns error on Unable to malloc() value buffer when retrieving variable from disk request for 985675200 B = 962573 k
B = 940 MB = 0 GB
ncap2: malloc() error is "Not enough space"
ncap2: User-supplied supplemental error message is "nco_var_get()"
ncap2: INFO NCO has reported a malloc() failure. malloc() failures usually indicate that your machine does not have enough free memory (RAM+swap) to perform the requested operation. 

你能帮我解决这个问题吗

4

1 回答 1

0

它清楚地表明 RAM 是不够的。您可能需要释放一些内存并尝试运行上述命令。

于 2016-12-11T19:16:56.857 回答