<div dir="ltr"><div>At the top of any Example page, you will see:</div><div><br></div><div><font size="-1">Example pages containing:
<b><a href="http://www.ncl.ucar.edu/Applications/concepts_list.shtml">tips</a></b> |
<b><a href="http://www.ncl.ucar.edu/Applications/res_list.shtml">resources</a></b> | 
<b><a href="http://www.ncl.ucar.edu/Applications/func_list.shtml">functions/procedures</a></b><br></font></div><div><br></div><div>Click: <b>resources</b></div><div><b><br></b></div><div>Then search for (say): <b>sfXCellBounds</b></div><div><b><br></b></div><div>A list of examples using that resource will be listed.</div><div><br></div><div>Good Luck<br></div><div><b></b></div><div><font size="-1"></font></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Sep 26, 2019 at 8:15 AM G.Monte--- via ncl-talk <<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Dears all,<br>
I have to plot a scalar field (rain rate) on a contouring map, which is<br>
arranged this way in an ascii file: lat-lon-rain rate.<br>
If I set cnFillMode as "CellFill", the ncl script does not work since I<br>
had to set sf[XY]CellBounds first; unfortunately, I still don't understand<br>
very well how to fill these arrays (probably, I get wrong with the<br>
dimensions to assign them). At the moment, I overcame this inconvenience<br>
by setting cnFillMode as "RasterFill" and cnRasterCellSizeF = 0.0015, but<br>
I think that it should not be the proper way and sf[XY]CellBounds would be<br>
much better for plotting data. I attach the main code lines in the ncl<br>
script:<br>
<br>
;---read longitude<br>
lat = dataf(:,2)<br>
<br>
;---read latitude<br>
lon = dataf(:,3)<br>
<br>
;---read data<br>
rr = dataf(:,4)<br>
<br>
res@mpLimitMode         = "LatLon"<br>
res@mpMinLonF           = 0<br>
res@mpMaxLonF           = 30<br>
res@mpMinLatF           = 35<br>
res@mpMaxLatF           = 50<br>
<br>
res@sfXArray            = lon<br>
res@sfYArray            = lat<br>
<br>
res@pmTickMarkDisplayMode = "Always"<br>
<br>
res@cnFillOn                   = True<br>
res@cnLinesOn                  = False<br>
;res@cnRasterSmoothingOn        = True<br>
res@cnRasterCellSizeF          = 0.0015<br>
res@cnFillMode                 = "RasterFill"<br>
<br>
Can you provide me with some examples of a correct usage of sf[XY]CellBounds?<br>
Thank you in advance,<br>
<br>
Giulio<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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/mailman/listinfo/ncl-talk</a><br>
</blockquote></div>