<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Dave,</div><div class="gmail_default" style="font-size:small"><br>I&#39;m a bit torn about what to do with the examples, because ideally, we (NCL) would come up with a way to represent all types of &quot;coordinate values&quot; (true 1D coordinate arrays, 2D coordinate arrays, 1D arrays for &quot;random&quot; arrays, and something else for unstructured grids, like hexagonal or triangular meshes) through the NCL variable model.  We&#39;ve always tried to model the NetCDF way of handling these variables, and it doesn&#39;t yet have a way to recognize all types of coordinates.<br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">We have kept the use of lat2d/lon2d attributes in the examples partly because we have advertised them for so long. Because of our strict backwards compatibility rule, we hope to always support this feature unless it becomes unreasonable to do so (which I don&#39;t foresee).</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">We also use this method in our ESMF regridding, because it&#39;s the only way to &quot;sneak&quot; in these special coordinate arrays to the &quot;ESMF_regrid&quot; routine. ESMF_regrid will look for &quot;lat2d/lon2d&quot; attached to the variable, and it will also return lat2d/lon2d if regridding to a curvilinear grid. The same is true for &quot;lon1d/lat1d&quot;, which is a quick-and-dirty way to pass in 1D arrays of lat/lon for a 1D variable that is potentially &quot;random&quot;.<br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">There&#39;s one minor correction to what Dennis said about using one method over the other for plotting: if you have lat2d/lon2d attributes attached to your data when plotting, and you set res@gsnAddCyclic = True, then the gsn_csm_xxxx plotting routines will know how to properly add the cyclic point.  However, if you use sfXArray and sfYArray resources, gsnAddCyclic doesn&#39;t know anything about these. </div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">We have it on our list to modernize many of our aging NCL scripts, and we will add more examples that show the two ways of doing things.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Aug 28, 2015 at 4:15 PM, Dave Allured - NOAA Affiliate <span dir="ltr">&lt;<a href="mailto:dave.allured@noaa.gov" target="_blank">dave.allured@noaa.gov</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Dennis,<div><br></div><div>Thank you for the information about preferred resources <span style="font-size:14px">sfXArray and </span><span style="font-size:14px">sfYArray for 2-D coordinates, and the reason why this is optimal.  I learned something new here.</span></div><div><span style="font-size:14px"><br></span></div><div><span style="font-size:14px">Several NCL examples and at least one documentation page are advocating the less optimal method using lat2d and lon2d attributes.  Perhaps these examples and pages could eventually be updated to use </span><span style="font-size:14px">sfXArray and </span><span style="font-size:14px">sfYArray instead.</span></div><span class="HOEnZb"><font color="#888888"><div><span style="font-size:14px"><br></span></div><div><span style="font-size:14px">--Dave</span></div></font></span><div><div class="h5"><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Aug 28, 2015 at 3:54 PM, Dennis Shea <span dir="ltr">&lt;<a href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Will&#39;s suggestion is correct.<br>
<br>
-----<br>
<br>
FYI: The ***only*** time you should assign the reserved attributes:<br>
@lat2d,   @lon2d is for plotting.<br>
<br>
In fact, the NCL-team would prefer that people use the following<br>
rather than the reserved attributes.<br>
<br>
     res@sfXArraya   = lon2d<br>
     res@sfYArray     = lat2d<br>
     res@trGridType  = &quot;TriangularMesh&quot;<br>
<br>
---<br>
<br>
Each variable having an associated  @lat2d, @lon2d takes up memory.<br>
If 5 variables  a, a@lat2d, a@lon2d, ...  b, c, d, e then each will<br>
require the necessary memory.<br>
Firther, if you write to netCDF via<br>
<br>
     fnc-&gt;A = a<br>
     fnc-&gt;B = b<br>
     fnc-&gt;C = c<br>
     fnc-&gt;D = d<br>
     fnc-&gt;E = e<br>
<br>
Then the lat2d/lon2d arrays will be written 5 times (one for each variable).<br>
<br>
    fnc-&gt;LAT2D = lat2d<br>
    fnc-&gt;LON2D = lon2d<br>
<br>
Will write each variable  only once!<br>
<br>
Cheers<br><br>
<br>
On Fri, Aug 28, 2015 at 3:38 PM, Will Hobbs &lt;<a href="mailto:Will.Hobbs@utas.edu.au" target="_blank">Will.Hobbs@utas.edu.au</a>&gt; wrote:<br>
&gt; Mira<br>
&gt;<br>
&gt; To keep all the attributes from &#39;sf&#39;....<br>
&gt;<br>
&gt;&gt; sf_total = sf(0,:,:)     ;sf_total is now a 2-da array with all the<br>
&gt;&gt;attributes and rightmost dimensions of sf<br>
&gt;&gt; sf_total = dim_sum_n(sf,0)<br>
&gt;<br>
&gt; Will<br>
&gt;<br>
&gt;<br>
&gt; On 29/08/15 5:26 AM, &quot;<a href="mailto:mberdahl@envsci.rutgers.edu" target="_blank">mberdahl@envsci.rutgers.edu</a>&quot;<br>
&gt; &lt;<a href="mailto:mberdahl@envsci.rutgers.edu" target="_blank">mberdahl@envsci.rutgers.edu</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt;Excellent, this worked!  Thank you!<br>
&gt;&gt;I just have a quick follow-up question.  Once I assign the lat and lon to<br>
&gt;&gt;my variables (for example:  sf@lon2d = lon2d, sf@lat2d = lat2d), and then<br>
&gt;&gt;I would like to do a calculation with sf (eg. sf_total = dim_sum_n(sf,0)),<br>
&gt;&gt;it seems I have to assign the the new variable the lat and lon again.  Is<br>
&gt;&gt;there a way to keep the lat and lon following through the calculations<br>
&gt;&gt;without always reassigning them?<br>
&gt;&gt;I hope that makes sense.<br>
&gt;&gt;Thanks,<br>
&gt;&gt;Mira<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; Here is more information about dat with 2-D coordinates.  I was typing<br>
&gt;&gt;&gt; this<br>
&gt;&gt;&gt; up when I saw Will&#39;s reply.  Some of the other examples indicate<br>
&gt;&gt;&gt; that trGridTrype may not be needed with some data sets.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Please see section #2 on this documentation page, for a basic<br>
&gt;&gt;&gt;description.<br>
&gt;&gt;&gt; Notice the several different working examples:<br>
&gt;&gt;&gt; <a href="https://www.ncl.ucar.edu/Document/Graphics/overlays_on_map.shtml" rel="noreferrer" target="_blank">https://www.ncl.ucar.edu/Document/Graphics/overlays_on_map.shtml</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; (Please ignore the link &quot;2D vertical coordinates&quot;, that is not about<br>
&gt;&gt;&gt; geographic surface maps, and can be confusing.)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; The simplest example for making map plots with 2-D coordinates is<br>
&gt;&gt;&gt;example<br>
&gt;&gt;&gt; 3<br>
&gt;&gt;&gt; on this page:<br>
&gt;&gt;&gt; <a href="https://www.ncl.ucar.edu/Applications/ice.shtml" rel="noreferrer" target="_blank">https://www.ncl.ucar.edu/Applications/ice.shtml</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I also like NARR example 4 because it shows how the 2-D coordinate<br>
&gt;&gt;&gt;method<br>
&gt;&gt;&gt; can be used with different map projections:<br>
&gt;&gt;&gt; <a href="http://www.ncl.ucar.edu/Applications/narr.shtml" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/Applications/narr.shtml</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --Dave<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Thu, Aug 27, 2015 at 9:35 PM, Will Hobbs &lt;<a href="mailto:Will.Hobbs@utas.edu.au" target="_blank">Will.Hobbs@utas.edu.au</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Mira<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; It looks like you have 2-d lat and lon arrays associated with your<br>
&gt;&gt;&gt;&gt;data,<br>
&gt;&gt;&gt;&gt; as is often the case with models (especially ocean models).<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; This can be plotted by NCL without regridding, see the examples here:<br>
&gt;&gt;&gt;&gt; <a href="http://www.ncl.ucar.edu/Applications/ease.shtml" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/Applications/ease.shtml</a><br>
&gt;&gt;&gt;&gt; Although you are not using the EASE grid, the principal is exactly the<br>
&gt;&gt;&gt;&gt; same:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; 1. Set your map plot grid type resource<br>
&gt;&gt;&gt;&gt; &gt;res@trGridTrype = &quot;TriangularMesh&quot;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; 2. Set the lat and lon arrays as attributes of the array you are<br>
&gt;&gt;&gt;&gt; plotting,<br>
&gt;&gt;&gt;&gt; so if your array is &#39;x&#39;<br>
&gt;&gt;&gt;&gt; &gt; x@lat2d = LAT<br>
&gt;&gt;&gt;&gt; &gt; x@lon2d = LON<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The just use one of the gsn_csm contour map plotting functions as<br>
&gt;&gt;&gt;&gt; normal.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I hope that&#39;s clear.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Will<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On 28/08/15 1:27 PM, &quot;Yuqiang Zhang&quot; &lt;<a href="mailto:yuqiangzhang.thu@gmail.com" target="_blank">yuqiangzhang.thu@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;Hi Mira,<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;Check the link here<br>
&gt;&gt;&gt;&gt; &gt;<a href="http://www.ncl.ucar.edu/FAQ/" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/FAQ/</a><br>
&gt;&gt;&gt;&gt; &gt;For Q 27:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;When I call one of the gsn_csm_xxxx_map plotting scripts, I get an<br>
&gt;&gt;&gt;&gt; error<br>
&gt;&gt;&gt;&gt; &gt;message about a units attribute not being correct.<br>
&gt;&gt;&gt;&gt; &gt;If you are using one of the gsn_csm_xxx_map functions to overlay data<br>
&gt;&gt;&gt;&gt; on a<br>
&gt;&gt;&gt;&gt; &gt;map, and seeing one or both of the following error messages:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;    (0)   is_valid_lat_ycoord: Warning: The units attribute of<br>
&gt;&gt;&gt;&gt; &gt;    the Y coordinate array is not set to one of the allowable<br>
&gt;&gt;&gt;&gt; &gt;    units values (i.e. &#39;degrees_north&#39;). Your latitude labels<br>
&gt;&gt;&gt;&gt; &gt;    may not be correct.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;    (0)   is_valid_lat_xcoord: Warning: The units attribute of<br>
&gt;&gt;&gt;&gt; &gt;    the X coordinate array is not set to one of the allowable<br>
&gt;&gt;&gt;&gt; &gt;    units values (i.e. &#39;degrees_east&#39;). Your longitude labels<br>
&gt;&gt;&gt;&gt; &gt;    may not be correct.<br>
&gt;&gt;&gt;&gt; &gt;then this means that your data contains coordinate arrays, but the<br>
&gt;&gt;&gt;&gt; &gt;coordinate arrays either don&#39;t have the necessary &quot;units&quot; attribute,<br>
&gt;&gt;&gt;&gt;or<br>
&gt;&gt;&gt;&gt; &gt;it&#39;s<br>
&gt;&gt;&gt;&gt; &gt;not set to one of the allowable values (&quot;degrees_east&quot; for longitude<br>
&gt;&gt;&gt;&gt; &gt;values<br>
&gt;&gt;&gt;&gt; &gt;and &quot;degrees_north&quot; for latitude values).<br>
&gt;&gt;&gt;&gt; &gt;If your coordinate arrays are indeed degrees east and degrees north,<br>
&gt;&gt;&gt;&gt; then<br>
&gt;&gt;&gt;&gt; &gt;you can set the units attribute as follows (this code snippet assumes<br>
&gt;&gt;&gt;&gt; your<br>
&gt;&gt;&gt;&gt; &gt;data array is called &quot;data&quot; and that the coordinate arrays are called<br>
&gt;&gt;&gt;&gt; &gt;&quot;lat&quot;<br>
&gt;&gt;&gt;&gt; &gt;and &quot;lon&quot;):<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;  data&amp;lat@units = &quot;degrees_north&quot;<br>
&gt;&gt;&gt;&gt; &gt;  data&amp;lon@units = &quot;degrees_east&quot;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;Regards,<br>
&gt;&gt;&gt;&gt; &gt;Yuqiang<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;-----Original Message-----<br>
&gt;&gt;&gt;&gt; &gt;From: <a href="mailto:ncl-talk-bounces@ucar.edu" target="_blank">ncl-talk-bounces@ucar.edu</a> [mailto:<a href="mailto:ncl-talk-bounces@ucar.edu" target="_blank">ncl-talk-bounces@ucar.edu</a>] On<br>
&gt;&gt;&gt;&gt; &gt;Behalf<br>
&gt;&gt;&gt;&gt; &gt;Of <a href="mailto:mberdahl@envsci.rutgers.edu" target="_blank">mberdahl@envsci.rutgers.edu</a><br>
&gt;&gt;&gt;&gt; &gt;Sent: Thursday, August 27, 2015 10:21 PM<br>
&gt;&gt;&gt;&gt; &gt;To: <a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt;&gt; &gt;Subject: [ncl-talk] plotting model output where x/y are not lat/lon<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;Hi all,<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;I&#39;m trying to make a simple plot of cumulative snowfall with data from<br>
&gt;&gt;&gt;&gt; a<br>
&gt;&gt;&gt;&gt; &gt;model I did not run.  When I try to make a simple plot, I receive the<br>
&gt;&gt;&gt;&gt; &gt;following error:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;(0)     check_for_y_lat_coord: Warning: Data either does not contain a<br>
&gt;&gt;&gt;&gt; &gt;valid latitude coordinate array or doesn&#39;t contain one at all.<br>
&gt;&gt;&gt;&gt; &gt;(0)     A valid latitude coordinate array should have a &#39;units&#39;<br>
&gt;&gt;&gt;&gt; attribute<br>
&gt;&gt;&gt;&gt; &gt;equal to one of the following values:<br>
&gt;&gt;&gt;&gt; &gt;(0)         &#39;degrees_north&#39; &#39;degrees-north&#39; &#39;degree_north&#39; &#39;degrees<br>
&gt;&gt;&gt;&gt; north&#39;<br>
&gt;&gt;&gt;&gt; &gt;&#39;degrees_N&#39; &#39;Degrees_north&#39; &#39;degree_N&#39; &#39;degreeN&#39; &#39;degreesN&#39; &#39;deg<br>
&gt;&gt;&gt;&gt;north&#39;<br>
&gt;&gt;&gt;&gt; &gt;(0)     check_for_lon_coord: Warning: Data either does not contain a<br>
&gt;&gt;&gt;&gt; valid<br>
&gt;&gt;&gt;&gt; &gt;longitude coordinate array or doesn&#39;t contain one at all.<br>
&gt;&gt;&gt;&gt; &gt;(0)     A valid longitude coordinate array should have a &#39;units&#39;<br>
&gt;&gt;&gt;&gt; attribute<br>
&gt;&gt;&gt;&gt; &gt;equal to one of the following values:<br>
&gt;&gt;&gt;&gt; &gt;(0)         &#39;degrees_east&#39; &#39;degrees-east&#39; &#39;degree_east&#39; &#39;degrees east&#39;<br>
&gt;&gt;&gt;&gt; &gt;&#39;degrees_E&#39; &#39;Degrees_east&#39; &#39;degree_E&#39; &#39;degreeE&#39; &#39;degreesE&#39; &#39;deg east&#39;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;When I dump the file it looks like this:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;netcdf ICE.1983.01-12.f77 {<br>
&gt;&gt;&gt;&gt; &gt;dimensions:<br>
&gt;&gt;&gt;&gt; &gt;        TIME = UNLIMITED ; // (365 currently)<br>
&gt;&gt;&gt;&gt; &gt;        X10_69 = 60 ;<br>
&gt;&gt;&gt;&gt; &gt;        Y18_127 = 110 ;<br>
&gt;&gt;&gt;&gt; &gt;        SECTOR = 2 ;<br>
&gt;&gt;&gt;&gt; &gt;        SECTOR1_1 = 1 ;<br>
&gt;&gt;&gt;&gt; &gt;        ATMLAY14_23 = 10 ;<br>
&gt;&gt;&gt;&gt; &gt;        bnds = 2 ;<br>
&gt;&gt;&gt;&gt; &gt;        ATMLAY23_23 = 1 ;<br>
&gt;&gt;&gt;&gt; &gt;        ATM6H3_3 = 1 ;<br>
&gt;&gt;&gt;&gt; &gt;        OUTLAY = 20 ;<br>
&gt;&gt;&gt;&gt; &gt;        OUTLAY1_1 = 1 ;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;variables:<br>
&gt;&gt;&gt;&gt; &gt;        double TIME(TIME) ;<br>
&gt;&gt;&gt;&gt; &gt;                TIME:units = &quot;HOURS since 1901-01-15 00:00:00&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                TIME:long_name = &quot;time&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                TIME:time_origin = &quot;15-JAN-1901 00:00:00&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                TIME:axis = &quot;T&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;        float DATE(TIME) ;<br>
&gt;&gt;&gt;&gt; &gt;                DATE:units = &quot;YYYYMMDDHH&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                DATE:long_name = &quot;Date(YYYY MM DD HH)&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                DATE:history = &quot;From ICE.f77.1983.01.01-15&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;        double X10_69(X10_69) ;<br>
&gt;&gt;&gt;&gt; &gt;                X10_69:units = &quot;km&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                X10_69:long_name = &quot;x&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                X10_69:point_spacing = &quot;even&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                X10_69:axis = &quot;X&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; double Y18_127(Y18_127) ;<br>
&gt;&gt;&gt;&gt; &gt;                Y18_127:units = &quot;km&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                Y18_127:long_name = &quot;y&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                Y18_127:point_spacing = &quot;even&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                Y18_127:axis = &quot;Y&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;        float LON(Y18_127, X10_69) ;<br>
&gt;&gt;&gt;&gt; &gt;                LON:units = &quot;degrees&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                LON:long_name = &quot;Longitude&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                LON:history = &quot;From ICE.f77.1983.01.01-15&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;        float LAT(Y18_127, X10_69) ;<br>
&gt;&gt;&gt;&gt; &gt;                LAT:units = &quot;degrees&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                LAT:long_name = &quot;Latitude&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;                LAT:history = &quot;From ICE.f77.1983.01.01-15&quot; ;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;Clearly there are lats and lons associated with the x and y spacing,<br>
&gt;&gt;&gt;&gt; but<br>
&gt;&gt;&gt;&gt; &gt;I&#39;m<br>
&gt;&gt;&gt;&gt; &gt;not sure how to tell NCL how to use those.  Does anyone have advice on<br>
&gt;&gt;&gt;&gt; &gt;this?<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;Thanks in advance,<br>
&gt;&gt;&gt;&gt; &gt;Mira<br></blockquote></div></div></div></div></div>
<br>_______________________________________________<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/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div></div>