plot(0)=gsn_csm_contour_map(wks,CLDTOT,res11) plot(1)=gsn_csm_contour_map(wks,CLDTOT_f,res12) plot(2)=gsn_csm_contour_map(wks,delta_T,res13) plot(3)=gsn_csm_contour_map(wks,CLDLOW,res21) plot(4)=gsn_csm_contour_map(wks,CLDLOW_f,res22) plot(5)=gsn_csm_contour_map(wks...
plot_prob =gsn_csm_contour(wks,prob_z_zheng_tp(index(i),:,:),res2) overlay(plot,plot_prob)
gsn_csm_contour_map:用于绘制等值线图。 gsn_csm_vector:用于绘制矢量图(如风场)。 gsn_csm_fill:用于绘制填色图。 这些函数都有各自的参数,可以用来调整图形的各种属性,如颜色、线条样式、标签等。 3. 准备需要绘制的数据 在绘图之前,需要准备好要绘制的数据。这通常包括加载数据文件、提取需要绘制的数据变量等...
plotW3=gsn_csm_vector(wks,delta_u,delta_v,res1) plotP3=gsn_csm_contour_map(wks,delta_SLP(0,:,:),res3P) overlay(plotP3,plotW3) plot(3)=plotP3 ;resP resP = True ; panel only resources resP@gsnMaximize = True ; maximize plots resP@gsnPanelMainString ="Mar. 850hPa Wind & SLP" ...
plot(1) = gsn_csm_contour( wks, d2, res ) plot(1) = ColorNegDashZeroPosContour(plot(1), "black", "red", "blue") plot(2) = gsn_csm_contour( wks, d3, res ) plot(2) = ColorNegDashZeroPosContour(plot(2), "black", "red", "blue") ...
gsn_define_colormap(wks,”rainbow”)gsn_draw_colormap(wks) ;只画色板plot = gsn_csm_contour_map( wks, var, res ) 定义色板后设置采用的颜色范围: gsn_define_colormap(wks,”ncl_default”)res@gsnSpreadColorStart = 1 ; 色板ncl_default中序号为1的颜色res@gsnSpreadColorEnd = -1 ; 色板ncl_...
2、使用addfile函数或者readnc函数读取数据文件,或者使用generate函数生成数据。3、使用gsnopenwks函数创建绘图窗口,指定绘图类型和输出文件名等参数。4、使用True或者False等逻辑值设置绘图选项,如是否绘制填充色、是否绘制等值线、是否显示等值线标签等。5、使用gsncsmcontour函数或者gsncontour函数绘制等值线...
根据你想绘制图形选择合适的绘图函数,一般都选择gsn_csm_xxx的绘图接口函数,因为它们会比一般的gsn_xxx绘图接口函数多更多的默认设置,我们可以少设置很多属性,能更快完成我们想要的“标准”图形。如: xy = gsn_csm_xy(wks,x,y,res) plot = gsn_csm_contour(wks,data,res) ...
res@cnFillColors=cmap1 ;将色系赋值给填充颜色 plot=gsn_csm_contour(wks,cnvar,res) delete(res@cnLevels) delete(res@cnFillColors) cmap2= read_colormap_file("GMT_haxby") ;选定色系,自定义也行参见其他脚本, res@cnLevels =(/2,5,10,20,40/) ;手动设置要绘制的数据值 ...
在这个脚本中,addfile函数打开名为data.nc的数据文件,把其中的变量var读入之后,用dimsizes函数获取其维度大小。然后,使用gsn_csm_contour_map函数绘制一个等值线图。最后,使用delete函数关闭数据文件。 步骤5:运行NCL脚本 保存好NCL脚本后,回到终端,并使用ncl命令来运行这个脚本。在终端中输入以下命令,并按下回车键运...