;---Necessary for contours to be overlaid correctly on WRF projection res@tfDoNDCOverlay = True ; res@tfDoNDCOverlay = "NDCViewport" ; can use this in NCL V6.5.0 or later ;---Temperature filled contour plot tf_res = res tf_res@cnFillOn = True tf_res@cnLevelSelectionMode = "Explic...
总结为一句话:总降水=RAINNC + RAINC + RAINSH,其中RAINC和RAINSH根据物理参数化方案的设置可能为0。 需要注意的是,降雨是个累积量,而不是瞬时值,在wrfout中如果需要得到模拟起止日期内的降雨,需要将最后一个时刻的降雨量减去第一个时刻的降雨量。 以上为NCL绘制的wrfout降水分布,代码如下: ;*** load "$N...
“` sudo apt-add-repository “debhttp://www2.mmm.ucar.edu/wrf/OnLineTutorial/compilation_tutorial/UbuIntrepid/myroot/deb/” “` – 更新软件包信息: “` sudo apt-get update “` – 安装NCL: “` sudo apt-get install ncl-ncarg “` 2. 运行NCL脚本 在终端中,可以使用以下命令来运行NCL脚本: ...
这是关于在我的系统中运行WRF模型的参考。在运行geogrid.exe之前,我正在尝试运行文件plotgrids.ncl,以确保域位于正确的位置。在我的终端(Ubuntu)nclutil/plotgrids.ncl中运行以下命令会得到以下错误:ncl: /lib/x86_64-linux-gnu/libssl.so.10: version'libssl.so.10' n ...
下面是一个保存为PNG格式的简单示例代码:```nclbeginwks_type = "png"wks_name = "myplot.png"wks_res = 1200gsn_define_colormap("gui_default")plot = gsn_contour(wks, data, res)frame(wks)end```上述代码将生成一个名为"myplot.png"的PNG格式文件,分辨率为1200dpi,颜色映射使用NCL...
NCL--站点数据插值成格点 NCL--站点数据插值成格点 ;读取原始数据及其经纬度 a = asciiread("/public/home/ncl/wrfout/pm25-2013-11-china.txt",(/row,col/),"float")lat = a(:,1)lon = a(:,2)pm25 = a(:,3)olon=fspan(72,138,132);设置插值范围及格点数,即空间分辨率 olat=fspan(17,57...
ncl中文使用说明.pptx,NCAR Command Language(NCL)一、简介1.1 正确安装NCL,windows下的安装可以参考如下地址。/bbs/thread-37043-1-1.html/bbs/thread-37043-1-1.html1.2 运行方式ncl 文件名.nclNCL的函数可以通过以下方式连接load “myfoo.ncl”二、语法2.1 符号; 后面
latitude (时间和维度) Trajectories (轨迹) Tropical strip plots (热带带状图) Vectors (向量) WRF-VAPOR(3D) (使用水蒸气NCL分析WRF-ARM数 据3D) XY plots (XY坐标图) Plot Types:generic(一般的画图类型) Contours(等高线(通用的高水平画图接口)) Streamlines(流线(高水平通用接口)) Vectors(向量(通用高...
wks = gsn_open_wks("x11","wrf_contour_map") ; "ps", "pdf", "png" gsn_define_colormap(wks,"OceanLakeLandSnow") ;---Set some resources res = True res@gsnMaximize = True ; maximize plot in frame res@cnFillOn = True ; turn on contour fill ...
latitude (时间和维度) Trajectories (轨迹) Tropical strip plots (热带带状图) Vectors (向量) WRF-VAPOR(3D) (使用水蒸气NCL分析WRF-ARM数 据3D) XY plots (XY坐标图) Plot Types:generic(一般的画图类型) Contours(等高线(通用的高水平画图接口)) Streamlines(流线(高水平通用接口)) Vectors(向量(通用高...