<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
Hi, Matt -- Please see comments inline... <div><br><div><div>On Mar 16, 2008, at 9:40 PM, Matt Alonso wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Hello folks,<br><br>I've been silent on this list for a while so let me start by saying thank you to all the developers and all the users for their hard work in getting Grads 2.0 out the door.<br><br>The issue I am having could very well be as a result of my own ignorance but I am unable to find the solution.  The issue comes about when I am trying to display a time series of WaveWatch 3 data with more than one NetCDF data file (they all have the same spatial attributes) open at a time.  Here is some environment information:<br> <br>-64bit machine running HostGIS linux (for all intents and purposes it is a slightly modified version of slackware)<br>-GrADS 2.0.a1</blockquote>Did you build GrADS from source on this machine? </div><div><br><blockquote type="cite">-NetCDF files are all generated with wgrib2 v0.1.7.1 using the command "wgrib2_v0.1.7.1 wna.t&lt;fcst time&gt;.grib.grib2 -netcdf &lt;fcst time&gt;.nc" (the executable is pointing to the correct wgrib2)</blockquote>Looks like you have converted grib2 into netcdf -- one file per forecast time. Is that right? </div><div><br><blockquote type="cite">The problem comes about when I am attempting to display time series of several runs by setting the lat and lon to constants, setting the time equal to all time periods in the file ('set t 1 61'), and displaying the values from particular files by looping over all the files via 'set dfile &lt;file number&gt;'.  When the script runs I get the following output:<br> <br>NetCDF Error (gancgrid, nc_get_vara_double): NetCDF: Start+count exceeds dimension bound</blockquote>There are some bugs in the gancgrid() routine in 2.0.a1 that I believe have been fixed for the next release. The gancgrid() routine is designed for speeding up the I/O from OPeNDAP servers, but it can work for non-pdef non-templated local netcdf files too. The non-templated condition for calling gancgrid() is what's missing in 2.0.a1 plus some other bug fixes in the subroutine itself. </div><div><br class="webkit-block-placeholder"></div><div>You can bypass the gancgrid() routine by changing one line of code in gaio.c (lines 212-216) and re-compiling:</div><div><br class="webkit-block-placeholder"></div><div><div>  /*   if (!strncmp(pgrid-&gt;pfile-&gt;name,"http://",7)) { */</div><div>  if ((!strncmp(pgrid-&gt;pfile-&gt;name,"http://",7)) || ((pfi-&gt;ncflg==1) &amp;&amp; (pfi-&gt;ppflag==0))) {</div><div>    rc = gancgrid(gr,gru,id,jd,d,dx);</div><div>    return (rc);</div><div>  }</div><div><br class="webkit-block-placeholder"></div><div>If you un-comment out the first line and comment out the second -- i.e., call gancgrid only for opendap data sets -- then the I/O should work. </div><div><br class="webkit-block-placeholder"></div><div>However, it sounds like you are also making a mistake in the way you are templating your netcdf files. If you have one file per forecast time, you can aggregate them into one data set (with XDFOPEN and OPTIONS TEMPLATE) so there's no need to have each time step be in a separate data set. Also, when you call the smth9() function, which dimensions are varying? </div><div><br class="webkit-block-placeholder"></div><div>Jennifer</div><div><br class="webkit-block-placeholder"></div></div><div><br><blockquote type="cite"><br>Data Request Error:  Error for variable 'ugrd_surface'<br>Operation Error:  Error from mag function<br>  Error ocurred at column 1<br> DISPLAY error:  Invalid expression<br>  Expression = smth9(mag(ugrd_surface,vgrd_surface)*1.9)<br><br>The command being run is "d smth9(mag(ugrd_surface,vgrd_surface)*1.9)" (although it seems to occur for any and all variables) and the above error only occurs when attempting to display data for any file other than #1.  If I manually set all the dimension data (lat, lon, etc) for one file at a time and then close that file and open the next in the series it works fine.  What am I doing wrong?<br> <br>Thanks in advance for all of your help and please let me know if any more information is needed.<br><br>Cheers,<br>Matt<br><br></blockquote></div><br><div> <span class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><span class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><span class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><div>--</div><div>Jennifer M. Adams</div><div>IGES/COLA</div><div>4041 Powder Mill Road, Suite 302</div><div>Calverton, MD 20705</div><div><a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a></div><div><br class="khtml-block-placeholder"></div><br class="Apple-interchange-newline"></span></span></span> </div><br></div></body></html>