<div style="line-height:1.7;color:#000000;font-size:10px;font-family:Arial"><div>Hi Mary,</div><div>&nbsp; Thank you for help. I had assumed that the given azimuth was the middle of 5 degree. I mean that &nbsp;azimuth 0 represent 357.5-2.5, and 355 represent &nbsp;352.5-357.5. I had thought that the data cover the whole circle. But the &nbsp;shade only cover 0-355. Maybe I should use the way you suggest. &nbsp;Thank you!</div><br><br><br><br><div style="position:relative;zoom:1">--<br><div>Best regards,</div><div>Guanhuan Wen</div><div style="clear:both"></div></div><div id="divNeteaseMailCard"></div><br>At 2017-04-26 22:22:37, "Mary Haley" &lt;haley@ucar.edu&gt; wrote:<br> <blockquote id="isReplyContent" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid"><div dir="ltr"><div class="gmail_default" style="font-size:small">Hello,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I'm not sure I understand. You said you didn't have any data from 355 to 0, so I believe that's exactly what the plot is showing you.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">When you plot data over a global map, we sometimes see this kind of thing because the longitude point doesn't go all the way from -180 to 180, or from 0 to 360. In that case, we set a special resource:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">&nbsp; &nbsp;res@gsnAddCyclic = True</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">which simply creates a new data array that has more more element in the longitude direction (nlat x (nlon+1)) and we copy the first data point at the first longitude point to the end of this array, so you are effectively closing the gap.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">gsnAddCyclic is only for map plots, but you could do something similar for your contour plot.&nbsp; Here's what the "add cyclic point" code looks like:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; dims = dimsizes(pr)</font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; ny &nbsp; = dims(0)</font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; mx &nbsp; = dims(1)</font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; mx1 &nbsp;= mx+1</font></div><div class="gmail_default"><font face="monospace, monospace"><br></font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; pr_cyclic &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = new((/ny, mx1/),typeof(pr))</font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; pr_cyclic(:,0:mx-1) = pr &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; pass everything &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</font></div><div class="gmail_default"><font face="monospace, monospace">&nbsp; &nbsp; pr_cyclic(:,mx) &nbsp; &nbsp; = (/ pr(:,0) /) &nbsp;; value only</font></div><div class="gmail_default"><br></div><div class="gmail_default">You will need to do the same thing for x and y, so I suggest making a function, like "make _cyclic" and calling it for pr, x, and y.</div><div class="gmail_default"><br></div><div class="gmail_default">By the way, if you have NCL V6.1.0 or later, You don't need to use NhlNewColor. You can now use named colors directly. So, instead of this:</div><div class="gmail_default"><br></div><div class="gmail_default"><div style="color:rgb(0,0,0);font-family:arial">&nbsp; cnres@cnMissingValFillColor = NhlNewColor(wks,.7,.7,.7)</div><div><br></div><div>you can use this:</div><div><br></div><div><div style="color:rgb(0,0,0)"><font face="monospace, monospace">&nbsp; cnres@cnMissingValFillColor = "gray"</font></div></div></div><div class="gmail_default"><br></div><div class="gmail_default">You can see all the named colors at:</div><div class="gmail_default"><br></div><div class="gmail_default"><a href="http://www.ncl.ucar.edu/Document/Graphics/named_colors.shtml">http://www.ncl.ucar.edu/Document/Graphics/named_colors.shtml</a><br></div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 24, 2017 at 2:46 AM, wen <span dir="ltr">&lt;<a href="mailto:wenguanhuan@163.com" target="_blank">wenguanhuan@163.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="line-height:1.7;color:#000000;font-size:10px;font-family:Arial"><br><br><br><div>hi all,</div><div>&nbsp; &nbsp;I am ploting r-theta data. Theta is from 0 to 355 at an interval of 5. However, the there is blank at the angular of 355-0. Do anybody know why. My script is attached bellow.&nbsp;</div><div><div>;*****************************<wbr></wbr>******************</div><div>; radar_1.ncl</div><div>;</div><div>; Concepts illustrated:</div><div>; &nbsp; - Plotting radar (r,theta) data</div><div>; &nbsp; - Adding shading or color fill to areas on a contour plot with missing data</div><div>; &nbsp; - Drawing raster contours</div><div>; &nbsp; - Drawing cell-filled contours</div><div>; &nbsp; - Using triangular meshes to create contours</div><div>;*****************************<wbr></wbr>******************</div><div>load "$NCARG_ROOT/lib/ncarg/<wbr></wbr>nclscripts/csm/gsn_code.ncl"</div><div>load "$NCARG_ROOT/lib/ncarg/<wbr></wbr>nclscripts/csm/gsn_csm.ncl"</div><div>load "$NCARG_ROOT/lib/ncarg/<wbr></wbr>nclscripts/csm/contributed.<wbr></wbr>ncl"</div><div><br></div><div>begin</div><div><span class="m_-974354147950016633Apple-tab-span" style="white-space:pre-wrap">        </span></div><div><span class="m_-974354147950016633Apple-tab-span" style="white-space:pre-wrap">        </span>pi &nbsp; &nbsp; &nbsp; = &nbsp;4.0*atan(1.)</div><div>&nbsp; deg2rad &nbsp;= &nbsp;pi/180.</div><div>&nbsp; rad2deg &nbsp;= &nbsp;45./atan(1.)</div><div><br></div><div>&nbsp; &nbsp;</div><div>&nbsp; a = 6371.</div><div>&nbsp;</div><div>&nbsp; r = ispan(0,500,10)&nbsp;</div><div>&nbsp; theta &nbsp;= ispan(0,355,5)</div><div><br></div><div>&nbsp; y = conform_dims((/dimsizes(r),<wbr></wbr>dimsizes(theta)/),r,0)*cos(<wbr></wbr>conform_dims((/dimsizes(r),<wbr></wbr>dimsizes(theta)/),theta,1)*<wbr></wbr>deg2rad)</div><div>&nbsp; x = conform_dims((/dimsizes(r),<wbr></wbr>dimsizes(theta)/),r,0)*sin(<wbr></wbr>conform_dims((/dimsizes(r),<wbr></wbr>dimsizes(theta)/),theta,1)*<wbr></wbr>deg2rad)</div><div><br></div><div>; &nbsp;x = r*sin(theta*deg2rad)</div><div>&nbsp;&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>;print(lat+" "+lon )</div><div>&nbsp;</div><div>&nbsp;<span class="m_-974354147950016633Apple-tab-span" style="white-space:pre-wrap">        </span>tcnum = systemfunc("cut -d ' ' -f 1 land_tcnum_time.dat")</div><div><span class="m_-974354147950016633Apple-tab-span" style="white-space:pre-wrap">        </span>ltime = systemfunc("cut -d ' ' -f 2 land_tcnum_time.dat")</div><div><br></div><div>&nbsp;i = 3</div><div><br></div><div>&nbsp;tcdir = "land_gd_tc/"</div><div>&nbsp;tcfile = tcnum(i)+".dat"</div><div>&nbsp;tmp = asciiread(tcdir+tcfile,-1,"<wbr></wbr>integer")</div><div>&nbsp;ntime = dimsizes(tmp)/6</div><div>&nbsp;data = onedtond(tmp,(/ntime,6/))</div><div>&nbsp;</div><div>&nbsp;index = ind(ltime(i).eq.data(:,0))</div><div>&nbsp;lat0 = data(index,2)*0.01</div><div>&nbsp;lon0 = data(index,3)*0.01</div><div>&nbsp;</div><div>&nbsp;a0 = a*cos(lat0*deg2rad)</div><div>&nbsp;&nbsp;</div><div>&nbsp;</div><div>&nbsp; lat = y/(a*deg2rad)+lat0</div><div>&nbsp; lon = x/(a0*deg2rad)+lon0</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;fd = "/gza/g3/wengh/TC/TRMM/"+<wbr></wbr>tcnum(i)+"/"</div><div>&nbsp;fn = systemfunc("ls "+fd+"3B42."+str_get_cols(<wbr></wbr>ltime(i),0,7)+"."+str_get_<wbr></wbr>cols(ltime(i),8,9)+"*.HDF")</div><div>&nbsp;f = addfile(fn,"r")&nbsp;</div><div>&nbsp;pre = f-&gt;precipitation</div><div>&nbsp;</div><div>&nbsp;latgrid = fspan(-49.875,49.875,400)</div><div>&nbsp;longrid = fspan(-179.875,179.875,1440)</div><div>&nbsp;</div><div>&nbsp;pre!0 = "lon"</div><div>&nbsp;pre!1 = "lat"</div><div>&nbsp;</div><div>&nbsp;pre&amp;lon = longrid</div><div>&nbsp;pre&amp;lat = latgrid</div><div>&nbsp;</div><div><br></div><div>pr = new((/dimsizes(r),dimsizes(<wbr></wbr>theta)/),typeof(pre))</div><div><br></div><div>do i=0,dimsizes(r)-1</div><div>&nbsp;do j=0,dimsizes(theta)-1</div><div>&nbsp; nlat = ind_nearest_coord(lat(i,j),<wbr></wbr>latgrid,0)</div><div>&nbsp; nlon = ind_nearest_coord(lon(i,j),<wbr></wbr>longrid,0)</div><div>&nbsp; pr(i,j) = (/pre(nlon,nlat)/)</div><div>&nbsp;end do</div><div>end do</div><div>&nbsp;</div><div>&nbsp;</div><div>;print(pr(0,0)+" "+x(0,0)+" "+y(0,0))</div><div><br></div><div>;exit</div><div>&nbsp;</div><div><br></div><div>graphicname = get_script_prefix_name() &nbsp;</div><div>wks = gsn_open_wks("eps" ,graphicname) &nbsp;</div><div>;gsn_define_colormap(wks,"gui_<wbr></wbr>default")</div><div>gsn_define_colormap(wks,"<wbr></wbr>precip2_15lev")</div><div>;gsn_define_colormap(wks,"<wbr></wbr>radar")</div><div>;gsn_define_colormap(wks,"<wbr></wbr>precip2_17lev")</div><div>colors = ispan(4,17,1)</div><div>;colors(0) = 2</div><div><br></div><div><br></div><div>&nbsp; cnres &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = True</div><div>; &nbsp;cnres@gsnMaximize &nbsp; &nbsp; &nbsp; = True</div><div><br></div><div>&nbsp; cnres@sfXArray &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= x&nbsp;</div><div>&nbsp; cnres@sfYArray &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= y</div><div>&nbsp; cnres@cnFillOn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= True</div><div>&nbsp; cnres@cnLinesOn &nbsp; &nbsp; &nbsp; &nbsp; = False</div><div>; &nbsp;cnres@cnFillMode &nbsp; &nbsp; &nbsp; &nbsp;= "RasterFill" &nbsp; &nbsp; &nbsp;; this mode is fastest</div><div>&nbsp; cnres@trGridType &nbsp; &nbsp; &nbsp; &nbsp;= "TriangularMesh"</div><div>&nbsp; cnres@lbLabelAutoStride = True</div><div>; &nbsp;contour = gsn_csm_contour(wks,pr,cnres)</div><div><br></div><div>; The CellFill mode is slower but draws more outlying data</div><div>; and lets you fill in the missing value arrays, giving a good</div><div>; sense of the circular extent of the plot.</div><div><br></div><div>&nbsp; cnres@cnFillMode &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= &nbsp;"CellFill"</div><div>&nbsp; cnres@cnMissingValFillColor = NhlNewColor(wks,.7,.7,.7)</div><div>&nbsp; cnres@cnLevelSelectionMode = "ExplicitLevels" &nbsp; &nbsp; ; set manual contour levels</div><div>&nbsp; cnres@cnLevels &nbsp; &nbsp; &nbsp; = ispan(1,13,1) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; set min contour level</div><div>&nbsp; cnres@cnFillColors &nbsp; = colors</div><div><br></div><div><br></div><div>&nbsp; contour = gsn_csm_contour(wks,pr,cnres)</div><div>end</div><div><br></div></div><img src="cid:556c3a66$1$15bad14d326$Coremail$wenguanhuan$163.com" style="width:780px;height:1008px;border:none"><br><div style="zoom:1">--<br><div>Best regards,</div><div>Guanhuan Wen</div><div style="clear:both"></div></div></div><br><br><span title="neteasefooter"><p>&nbsp;</p></span><br>______________________________<wbr></wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr></wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br><br><span title="neteasefooter"><p>&nbsp;</p></span>