<div dir="ltr"><div><div>Thanks David, your suggestion solved a couple of things: first, it took care of ncl_filedump, and also has my environment set up properly to run 6.3.0 out of my local directory; it seems that aliasing things is not a substitute for setting paths correctly. One last little bit a fun, a direct example of what I was describing. Here is the same GRIB file header as reported by 6.1.2:<br><br>[cpc-work2 ~]$ ncl_filedump /cpc/home/ebecker/ghcn_cams/ghcn_cams_1948_cur_t126.grb<br><br> Copyright (C) 1995-2013 - All Rights Reserved<br> University Corporation for Atmospheric Research<br> NCAR Command Language Version 6.1.2<br> The use of this software is governed by a License Agreement.<br> See <a href="http://www.ncl.ucar.edu/">http://www.ncl.ucar.edu/</a> for more details.<br><br>Variable: f<br>Type: file<br>filename:    ghcn_cams_1948_cur_t126<br>path:    /cpc/home/ebecker/ghcn_cams/ghcn_cams_1948_cur_t126.grb<br>   file global attributes:<br>   dimensions:<br>      initial_time0_hours = 828<br>      lat_126 = 190<br>      lon_126 = 384<br>   variables:<br>      float TMP_126_HTGL_123 ( initial_time0_hours, lat_126, lon_126 )<br><br>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br><br></div>and here is 6.3.0, notice the different variable name:<br><br>[cpc-work2 ~]$ ncl_filedump /cpc/home/ebecker/ghcn_cams/ghcn_cams_1948_cur_t126.grb<br><br> Copyright (C) 1995-2015 - All Rights Reserved<br> University Corporation for Atmospheric Research<br> NCAR Command Language Version 6.3.0<br> The use of this software is governed by a License Agreement.<br> See <a href="http://www.ncl.ucar.edu/">http://www.ncl.ucar.edu/</a> for more details.<br><br>Variable: f<br>Type: file<br>filename:    ghcn_cams_1948_cur_t126<br>path:    /cpc/home/ebecker/ghcn_cams/ghcn_cams_1948_cur_t126.grb<br>   file global attributes:<br>   dimensions:<br>      initial_time0_hours = 828<br>      lat_126 = 190<br>      lon_126 = 384<br>   variables:<br>      float TMP_126_HTGL_S123 ( initial_time0_hours, lat_126, lon_126 )<br><br>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br></div><br> I am guessing this means that when NCL opens a GRIB file and you give it a variable name, it matches up what you asked for with a GRIB table and accesses the data that way, and that 6.1.2 and 6.3.0 have different GRIB table versions. Is this correct?<br><div><div><br><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 2, 2017 at 5:52 PM, David Brown <span dir="ltr">&lt;<a href="mailto:dbrown@ucar.edu" target="_blank">dbrown@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">ncl_filedump is a csh script that runs NCL It finds NCL by looking in<br>
the user&#39;s path. If you have your path set to use NCL 6.1.2 then it<br>
doesn&#39;t matter which version of ncl_filedump you use. It will always<br>
find the 6.1.2 version of NCL. So it makes sense that if you source<br>
your .bashrc to use NCL 6.3.0, then ncl_filedump will use the 6.3.0<br>
version of NCL and give you the new name of this variable with the<br>
&#39;S&#39;.  The errors you are getting are caused by you running NCL 6.1.2<br>
but trying to bring in 6.3.0 versions of the NCL source-code function<br>
libraries. You can see this from your output.<br>
<span class=""> Copyright (C) 1995-2013 - All Rights Reserved<br>
 University Corporation for Atmospheric Research<br>
 NCAR Command Language Version 6.1.2<br>
</span>...<br>
<span class="">fatal:syntax error: line 631 in file<br>
/cpc/home/dbarandiaran/ncl-6.<wbr>3.0/lib/ncarg/nclscripts/<wbr>utilities.ncl<br>
before or near ; Draw box.<br>
<br>
</span>-----<br>
This is probably a result of having your PATH and NCARG_ROOT<br>
environment variables out of sync.<br>
<br>
Try setting them as follows on the command line:<br>
<br>
export NCARG_ROOT=/cpc/home/<wbr>dbarandiaran/ncl-6.3.0/l<br>
export PATH=$NCARG_ROOT/bin:$PATH<br>
<br>
 -dave<br>
<br>
<br>
<br>
<br>
<br>
<br>
On Thu, Feb 2, 2017 at 2:34 PM, Daniel Barandiaran - NOAA Affiliate<br>
<div class="HOEnZb"><div class="h5">&lt;<a href="mailto:daniel.barandiaran@noaa.gov">daniel.barandiaran@noaa.gov</a>&gt; wrote:<br>
&gt; Indeed. More strangeness: When I use ncl_filedump the variable is listed as<br>
&gt; TMP_126_HTGL_123, not..._S123. If I am running 6.1.2 then the script will<br>
&gt; read ..._123 but not _S123. When I source my .bashrc to use 6.3.0, then the<br>
&gt; script will read ..._S123 but not ..._123. Furthermore, even if I alias<br>
&gt; ncl_filedump to the 6.3.0/bin/ncl_filedump, it still executes using 6.1.2,<br>
&gt; which results in some errors, and still lists the variable as ..._123:<br>
&gt;<br>
&gt;  Copyright (C) 1995-2013 - All Rights Reserved<br>
&gt;  University Corporation for Atmospheric Research<br>
&gt;  NCAR Command Language Version 6.1.2<br>
&gt;  The use of this software is governed by a License Agreement.<br>
&gt;  See <a href="http://www.ncl.ucar.edu/" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/</a> for more details.<br>
&gt; fatal:syntax error: line 631 in file<br>
&gt; /cpc/home/dbarandiaran/ncl-6.<wbr>3.0/lib/ncarg/nclscripts/<wbr>utilities.ncl before<br>
&gt; or near ; Draw box.<br>
&gt;<br>
&gt;     gsn_polygon_ndc(wks,xbox+xpos(<wbr>i),ybox+ypos(i),gnres) ; Draw box.<br>
&gt; ^<br>
&gt;<br>
&gt;<br>
&gt; fatal:syntax error: possibly an undefined procedure<br>
&gt;<br>
&gt; fatal:syntax error: line 634 in file<br>
&gt; /cpc/home/dbarandiaran/ncl-6.<wbr>3.0/lib/ncarg/nclscripts/<wbr>utilities.ncl before<br>
&gt; or near \n<br>
&gt;     gsn_polyline_ndc(wks,xbox+<wbr>xpos(i),ybox+ypos(i),lnres)<br>
&gt; ------------------------------<wbr>----------------------------^<br>
&gt;<br>
&gt;<br>
&gt; fatal:syntax error: possibly an undefined procedure<br>
&gt;<br>
&gt; fatal:syntax error: line 638 in file<br>
&gt; /cpc/home/dbarandiaran/ncl-6.<wbr>3.0/lib/ncarg/nclscripts/<wbr>utilities.ncl before<br>
&gt; or near \n<br>
&gt;<br>
&gt; gsn_text_ndc(wks,label_<wbr>strings(i),font_space+xpos(i),<wbr>ypos(i)+font_space,txres)<br>
&gt; ------------------------------<wbr>------------------------------<wbr>-------------------------^<br>
&gt;<br>
&gt;<br>
&gt; fatal:syntax error: possibly an undefined procedure<br>
&gt;<br>
&gt; fatal:Syntax Error in block, block not executed<br>
&gt;<br>
&gt; fatal:error at line 645 in file<br>
&gt; /cpc/home/dbarandiaran/ncl-6.<wbr>3.0/lib/ncarg/nclscripts/<wbr>utilities.ncl<br>
&gt;<br>
&gt;<br>
&gt; Variable: f<br>
&gt; Type: file<br>
&gt; filename:    ghcn_cams_1948_cur_t126<br>
&gt; path:    /cpc/home/ebecker/ghcn_cams/<wbr>ghcn_cams_1948_cur_t126.grb<br>
&gt;    file global attributes:<br>
&gt;    dimensions:<br>
&gt;       initial_time0_hours = 828<br>
&gt;       lat_126 = 190<br>
&gt;       lon_126 = 384<br>
&gt;    variables:<br>
&gt;       float TMP_126_HTGL_123 ( initial_time0_hours, lat_126, lon_126 )<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Feb 2, 2017 at 4:23 PM, Dennis Shea &lt;<a href="mailto:shea@ucar.edu">shea@ucar.edu</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Punch line:<br>
&gt;&gt;<br>
&gt;&gt; GRIB is a moving target  :-(<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Feb 2, 2017 at 2:18 PM, David Brown &lt;<a href="mailto:dbrown@ucar.edu">dbrown@ucar.edu</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hi Daniel,<br>
&gt;&gt;&gt; I think the problem is simply that the name of this variable has been<br>
&gt;&gt;&gt; changed for more recent versions of NCL. I found the file you are<br>
&gt;&gt;&gt; trying to read at <a href="http://ftp.cpc.ncep.noaa.gov" rel="noreferrer" target="_blank">ftp.cpc.ncep.noaa.gov</a>. ncl_filedump now reports the<br>
&gt;&gt;&gt; name as TMP_126_HTGL_S123. The name change was made in order to<br>
&gt;&gt;&gt; characterize the last number as representing a statistical processing<br>
&gt;&gt;&gt; method defined in this GRIB1 table:<br>
&gt;&gt;&gt; <a href="http://www.nco.ncep.noaa.gov/pmb/docs/on388/table5.html" rel="noreferrer" target="_blank">http://www.nco.ncep.noaa.gov/<wbr>pmb/docs/on388/table5.html</a>, where 123 is<br>
&gt;&gt;&gt; listed as &quot;Average of N uninitialized analyses, starting at the<br>
&gt;&gt;&gt; reference time, at intervals of P2&quot;.<br>
&gt;&gt;&gt; Sorry for the confusion, but particularly with GRIB files, it is<br>
&gt;&gt;&gt; important to recognize that NCL creates these names based on<br>
&gt;&gt;&gt; information in the GRIB file. As the code evolves, occasionally names<br>
&gt;&gt;&gt; have needed to be modified slightly. Anytime you encounter the message<br>
&gt;&gt;&gt; that a variable is not in the file, it is wise to use ncl_filedump to<br>
&gt;&gt;&gt; see if the name actually appears in the file.<br>
&gt;&gt;&gt;  -dave<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Thu, Feb 2, 2017 at 1:46 PM, Daniel Barandiaran - NOAA Affiliate<br>
&gt;&gt;&gt; &lt;<a href="mailto:daniel.barandiaran@noaa.gov">daniel.barandiaran@noaa.gov</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt; Here is the relevant code for the problem with the GRIB read:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<wbr>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<wbr>;;;;;;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; f<br>
&gt;&gt;&gt; &gt; =addfile(&quot;/cpc/home/ebecker/<wbr>ghcn_cams/ghcn_cams_1948_cur_<wbr>t126.grb&quot;,&quot;r&quot;)<br>
&gt;&gt;&gt; &gt; TIME  = cd_calendar(f-&gt;initial_time0_<wbr>hours,0)<br>
&gt;&gt;&gt; &gt; inntime     = dimsizes(TIME(:,0))<br>
&gt;&gt;&gt; &gt; inyrmin     = 1981<br>
&gt;&gt;&gt; &gt; inyrmax     = toint(datmaxyr)<br>
&gt;&gt;&gt; &gt; innyr = inyrmax - inyrmin + 3<br>
&gt;&gt;&gt; &gt; ntime = innyr * 12<br>
&gt;&gt;&gt; &gt; tind  := ind(TIME(:,0).ge.inyrmin)<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; year  = fspan(inyrmin,inyrmax+2,innyr)<br>
&gt;&gt;&gt; &gt; year!0      = &quot;year&quot;<br>
&gt;&gt;&gt; &gt; year&amp;year   = year<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; time  = fspan(0,ntime-1,ntime)<br>
&gt;&gt;&gt; &gt; time!0      = &quot;time&quot;<br>
&gt;&gt;&gt; &gt; time&amp;time   = time<br>
&gt;&gt;&gt; &gt; time@units  = &quot;months since 1981-01-01 00:00:00&quot;<br>
&gt;&gt;&gt; &gt; delete(TIME)<br>
&gt;&gt;&gt; &gt; TIME  = cd_calendar(time,0)<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; lat   = f-&gt;lat_126({minlat:maxlat})<br>
&gt;&gt;&gt; &gt; nlat  = dimsizes(lat)<br>
&gt;&gt;&gt; &gt; lon   = f-&gt;lon_126({minlon:maxlon})<br>
&gt;&gt;&gt; &gt; nlon  = dimsizes(lon)<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; lat!0 = &quot;lat&quot;<br>
&gt;&gt;&gt; &gt; lat&amp;lat     = lat<br>
&gt;&gt;&gt; &gt; lat@units   = &quot;degrees_north&quot;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; lon!0 = &quot;lon&quot;<br>
&gt;&gt;&gt; &gt; lon&amp;lon     = lon<br>
&gt;&gt;&gt; &gt; lon@units   = &quot;degrees_east&quot;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; tin   = f-&gt;TMP_126_HTGL_123(tind,{<wbr>minlat:maxlat},{minlon:maxlon}<wbr>)<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<wbr>;;;;;;;;;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; And the error code that comes out:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; fatal:[&quot;Execute.c&quot;:6332]:<wbr>variable (TMP_126_HTGL_123) is not in file (f)<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; fatal:[&quot;Execute.c&quot;:8575]:<wbr>Execute: Error occurred at or near line 163 in<br>
&gt;&gt;&gt; &gt; file<br>
&gt;&gt;&gt; &gt; tmp_cv_fcst_namer.ncl<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<wbr>;;;;;;;;;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; This script works fine in 6.1.2, and the variable name is given<br>
&gt;&gt;&gt; &gt; explicitly<br>
&gt;&gt;&gt; &gt; rather than using a GRIB table.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; On Thu, Feb 2, 2017 at 3:23 PM, Mary Haley &lt;<a href="mailto:haley@ucar.edu">haley@ucar.edu</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Hi Daniel,<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Unfortunately you won&#39;t be able to point to a 6.3.0 contributed.ncl<br>
&gt;&gt;&gt; &gt;&gt; while<br>
&gt;&gt;&gt; &gt;&gt; using a 6.1.2 &quot;ncl&quot;, because it is very likely that contributed.ncl is<br>
&gt;&gt;&gt; &gt;&gt; depending on a new built-in function that&#39;s only available in the<br>
&gt;&gt;&gt; &gt;&gt; 6.3.0 ncl<br>
&gt;&gt;&gt; &gt;&gt; executable.<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; We should try to figure out why you can&#39;t open your GRIB file with<br>
&gt;&gt;&gt; &gt;&gt; 6.3.0.<br>
&gt;&gt;&gt; &gt;&gt; We try *very hard* to be backwards compatible, but sometimes with GRIB<br>
&gt;&gt;&gt; &gt;&gt; files, there are things we have to change, usually having to do with<br>
&gt;&gt;&gt; &gt;&gt; variable names. I don&#39;t know if that&#39;s what&#39;s happening in your case.<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Are you getting an error? It would be helpful if we could see it.<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Also in NCL V6.2.0, which was released between 6.1.2 and 6.3.0, there<br>
&gt;&gt;&gt; &gt;&gt; were<br>
&gt;&gt;&gt; &gt;&gt; some updates to the GRIB reader. Maybe this update is affecting you?<br>
&gt;&gt;&gt; &gt;&gt; You can<br>
&gt;&gt;&gt; &gt;&gt; read more about these updates at:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; <a href="http://www.ncl.ucar.edu/prev_releases.shtml#FileIOImprovements6.2.0" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/prev_<wbr>releases.shtml#<wbr>FileIOImprovements6.2.0</a><br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Also, you might want to read the &quot;file I/O improvements&quot; section of<br>
&gt;&gt;&gt; &gt;&gt; our<br>
&gt;&gt;&gt; &gt;&gt; 6.3.0 release notes:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; <a href="http://www.ncl.ucar.edu/current_release.shtml#Improvements6.3.0" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/<wbr>current_release.shtml#<wbr>Improvements6.3.0</a><br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; --Mary<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; On Thu, Feb 2, 2017 at 12:17 PM, Daniel Barandiaran - NOAA Affiliate<br>
&gt;&gt;&gt; &gt;&gt; &lt;<a href="mailto:daniel.barandiaran@noaa.gov">daniel.barandiaran@noaa.gov</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; It seems a little strange to me as well, but the bottom line is that<br>
&gt;&gt;&gt; &gt;&gt;&gt; I<br>
&gt;&gt;&gt; &gt;&gt;&gt; could open the GRIB file no problem using the 6.1.2 installed on our<br>
&gt;&gt;&gt; &gt;&gt;&gt; server,<br>
&gt;&gt;&gt; &gt;&gt;&gt; but could not using my test-install of 6.3.0. Paths in our machine<br>
&gt;&gt;&gt; &gt;&gt;&gt; are<br>
&gt;&gt;&gt; &gt;&gt;&gt; preset, and I&#39;m not even sure exactly where they all point to. In<br>
&gt;&gt;&gt; &gt;&gt;&gt; order to<br>
&gt;&gt;&gt; &gt;&gt;&gt; ensure I was running the test install I put an alias in my .bashrc,<br>
&gt;&gt;&gt; &gt;&gt;&gt; and I<br>
&gt;&gt;&gt; &gt;&gt;&gt; made sure to set $NCAR_ROOT to point to the test install as well.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Thu, Feb 2, 2017 at 2:03 PM, Guido Cioni &lt;<a href="mailto:guidocioni@gmail.com">guidocioni@gmail.com</a>&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Hey Daniel,<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; I’m sure that someone will be more useful than me but…aren’t GRIB<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; library supposed to be independent from NCL?<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Maybe there is something wrong on GRIB API and not on the<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; installation<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; of NCL, or maybe you didn’t set the GRIB_API path properly? Just<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; saying,<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; don’t know whether it is relevant or not :)<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Cheers<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Il giorno 02 feb 2017, alle ore 19:13, Daniel Barandiaran - NOAA<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Affiliate &lt;<a href="mailto:daniel.barandiaran@noaa.gov">daniel.barandiaran@noaa.gov</a>&gt; ha scritto:<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Our work machine here at CPC is running ncl-6.1.2. I requested an<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; update<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; and got turned down by the IT folks; their reason had something to<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; do with<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; old netCDF packages and an eventual upgrade of our Linux<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; environment, at<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; which time it would be easier to upgrade. In the meantime I tried to<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; unpack<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; the latest binaries into my personal work directory and set paths<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; appropriately, but sure enough there were some serious problems,<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; like not<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; being able to read variables out of a GRIB file. I have therefore<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; mostly<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; resigned myself to working with 6.1.2, but this morning I thought<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; that a lot<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; of the functions I am pining for reside in contributed.ncl, so I was<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; wondering if I could point to the contributed.ncl that came with<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; 6.3.0 while<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; still running 6.1.2? And what about the ESMF regridding, could I<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; point to<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; the ESMF_regridding.ncl script and use those functions as well?<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Danny Barandiaran, Ph.D.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Contract Scientist-INNOVIM<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Climate Prediction Center/NCEP/NWS, W/NP5<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; National Center for Weather and Climate Prediction<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; ncl-talk mailing list<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt;&gt; &gt;&gt;&gt; Danny Barandiaran, Ph.D.<br>
&gt;&gt;&gt; &gt;&gt;&gt; Contract Scientist-INNOVIM<br>
&gt;&gt;&gt; &gt;&gt;&gt; Climate Prediction Center/NCEP/NWS, W/NP5<br>
&gt;&gt;&gt; &gt;&gt;&gt; National Center for Weather and Climate Prediction<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; ncl-talk mailing list<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; --<br>
&gt;&gt;&gt; &gt; Danny Barandiaran, Ph.D.<br>
&gt;&gt;&gt; &gt; Contract Scientist-INNOVIM<br>
&gt;&gt;&gt; &gt; Climate Prediction Center/NCEP/NWS, W/NP5<br>
&gt;&gt;&gt; &gt; National Center for Weather and Climate Prediction<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt; &gt; ncl-talk mailing list<br>
&gt;&gt;&gt; &gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; &gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt;&gt; &gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt; ncl-talk mailing list<br>
&gt;&gt;&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Danny Barandiaran, Ph.D.<br>
&gt; Contract Scientist-INNOVIM<br>
&gt; Climate Prediction Center/NCEP/NWS, W/NP5<br>
&gt; National Center for Weather and Climate Prediction<br>
&gt;<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Danny Barandiaran, Ph.D.<br></div>Contract Scientist-INNOVIM<br><span style="color:rgb(0,0,0)"><span style="background-color:rgb(255,255,255)"><span><font size="2"><span style="font-family:arial,helvetica,sans-serif">Climate Prediction Center/NCEP/NWS, W/NP5 <br>National Center for Weather and Climate Prediction</span></font></span></span></span><br><br></div></div>
</div>