configure时出现configure: error: Can't find or link to the hdf5 library. Configure with --disable-netcdf-4 or see config.log for errors.,即使用with-hdf5=指定了hdf5库的路径也不行。
只需要手动指定LDFLAGS和CPPFLAGS就可以了,原因是co...
使用ncl画图的时候,遇到错误gsn_add_cyclic: Warning: The range of your longitude data is not 360.
仔细检查之后,发现并不是字面上出错的原因,而是画图时一个变量同时绑定了lat/lon和lat2d/lon2d。由于我想用lat2d/lon2d却不想用lat/lon,但它默认使用的是lat/lon,这就需要我将lat/lon删除。...