<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif;font-size:12px"><div id="yui_3_16_0_1_1422505578713_17552" dir="ltr"><span>Thanks for the help Chuck.&nbsp;</span></div><div id="yui_3_16_0_1_1422505578713_17552" dir="ltr"><span>It worked.</span></div><div></div><div id="yui_3_16_0_1_1422505578713_17553">&nbsp;</div><div id="yui_3_16_0_1_1422505578713_17555"><div id="yui_3_16_0_1_1422505578713_17554">Geeta. </div></div> <div class="qtdSeparateBR"><br><br></div><div class="yahoo_quoted" style="display: block;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif; font-size: 12px;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif; font-size: 12px;"> <div dir="ltr"> <font size="2" face="Arial"> On Thursday, 29 January 2015 10:13 AM, "gradsusr-request@gradsusr.org" &lt;gradsusr-request@gradsusr.org&gt; wrote:<br> </font> </div>  <br><br> <div class="y_msg_container">Send gradsusr mailing list submissions to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr-request@gradsusr.org" href="mailto:gradsusr-request@gradsusr.org">gradsusr-request@gradsusr.org</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr-owner@gradsusr.org" href="mailto:gradsusr-owner@gradsusr.org">gradsusr-owner@gradsusr.org</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of gradsusr digest..."<br><br><br>Today's Topics:<br><br>&nbsp;  1. Re: Fwrite contd. (Charles Seman - NOAA Federal)<br>&nbsp;  2. Sub: mask file for US land/Ocean (Adv)<br>&nbsp;  3. Great Lakes Wave upgrade (Bill Reilly)<br>&nbsp;  4. Fwrite contd. (Geeta Geeta)<br>&nbsp;  5. Re: gradsusr Digest, Vol 59, Issue 56 (Geeta Geeta)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Wed, 28 Jan 2015 14:41:46 -0500<br>From: Charles Seman - NOAA Federal &lt;<a ymailto="mailto:charles.seman@noaa.gov" href="mailto:charles.seman@noaa.gov">charles.seman@noaa.gov</a>&gt;<br>Subject: Re: [gradsusr] Fwrite contd.<br>To: GrADS Users Forum &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:54C93B7A.2090500@noaa.gov" href="mailto:54C93B7A.2090500@noaa.gov">54C93B7A.2090500@noaa.gov</a>&gt;<br>Content-Type: text/plain; charset=windows-1252; format=flowed<br><br>Geeta,<br><br>It may be because the longitude range is (-179.875,179.875); try to use <br>lon, lat to define obs variables within longitude range (0.,360.).<br><br>In your GrADS script, try this:<br><br>'open rfaccum.ctl'<br>'set lon 0.125 359.875'<br>'set lat -49.875 49.875'<br>'set z 1' ;* just to be sure<br>'set t 1' ;* just to be sure<br>'define rf1=data(t=1)'<br>...<br>'printim figure1.gif'<br>'set gxout fwrite'<br>'set lon 0.125 359.875' ;* just to be sure<br>'set lat -49.875 49.875' ;* just to be sure<br>'set z 1' ;* just to be sure<br>'set t 1' ;* just to be sure<br>'d rf'<br>'disable fwrite'<br><br>Then, make a GrADS ctl file Obs22apr2011.ctl for Obs22apr2011.bin which <br>uses the parameters:<br><br>XDEF&nbsp; 1440 LINEAR 0.125 0.25<br>YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25<br>ZDEF&nbsp;  1 LEVELS 1000<br>TDEF 1 LINEAR&nbsp; 00z22apr2011&nbsp; 1dy<br><br>now for Obs22apr2011.ctl you can use x, y coordinates...<br><br>'open Obs22apr2011.ctl'<br>'set gxout shaded'<br>'set x 1 1440'<br>'set y 1 400'<br>'set z 1'<br>'set t 1'<br>'d data'<br><br>Hope this helps,<br>Chuck<br><br>On 01/28/2015 02:49 AM, Geeta Geeta wrote:<br>&gt; Hi Davide and all other users.<br>&gt; This message is in continuation to my earlier e-mail in the previous<br>&gt; Volume. I have to sum up all the 8 3 hourly TRMM binary files.<br>&gt;<br>&gt; Following was my CTL file.<br>&gt;<br>&gt; DSET ^3B42.1104%d2.%h2z.7.precipitation.bin<br>&gt; options template<br>&gt; TITLE&nbsp; Precipitation estimates<br>&gt; UNDEF&nbsp; -9999.9<br>&gt; XDEF 1440 LINEAR&nbsp; -179.875 0.25<br>&gt; YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25<br>&gt; ZDEF&nbsp;  1 LEVELS 1000<br>&gt; TDEF 8 LINEAR&nbsp; 06z22apr2011&nbsp; 3hr<br>&gt; VARS 1<br>&gt; data&nbsp; 0&nbsp;  99&nbsp; 3B42 TRMM precipitation estimates [mm/3hr]<br>&gt; ENDVARS<br>&gt;<br>&gt; NOW in MY gs file, I forced grads to write the data.<br>&gt; 'reinit'<br>&gt; 'open rfaccum.ctl'<br>&gt; 'define rf1=data(t=1)'<br>&gt; 'define rf2=data(t=2)'<br>&gt; 'define rf3=data(t=3)'<br>&gt; 'define rf4=data(t=4)'<br>&gt; 'define rf5=data(t=5)'<br>&gt; 'define rf6=data(t=6)'<br>&gt; 'define rf7=data(t=7)'<br>&gt; 'define rf8=data(t=8)'<br>&gt; 'define rf=rf1+rf2+rf3+rf4+rf5+rf6+rf7+rf8'<br>&gt; 'd rf'<br>&gt; 'printim figure1.gif'<br>&gt; *_/'set x 1 1440'/_*<br>&gt; *_/'set y 1 400 '/_*<br>&gt; *_/'set fwrite&nbsp; Obs22apr2011.bin'/_*<br>&gt; 'set gxout fwrite'<br>&gt; 'd rf'<br>&gt; 'disable fwrite'<br>&gt; I got same size of O/P file *_/Obs22apr2011.bin. /_*<br>&gt; *_/<br>&gt; 2304000 Jan 27 14:17 3B42.110423.00z.7.precipitation.bin<br>&gt; -rw-r--r--&nbsp; &nbsp; 1 model&nbsp; &nbsp; staff&nbsp; &nbsp; &nbsp;  2304000 Jan 27 14:18<br>&gt; 3B42.110423.03z.7.precipitation.bin<br>&gt; -rw-r--r--&nbsp; &nbsp; 1 model&nbsp; &nbsp; staff&nbsp; &nbsp; &nbsp;  2304000 Jan 27 14:22<br>&gt; 3B42_daily.2011.04.22.7.bin<br>&gt; -rw-r--r--&nbsp; &nbsp; 1 model&nbsp; &nbsp; staff&nbsp; &nbsp; &nbsp;  2304000 Jan 28 13:12 Obs22apr2011.bin<br>&gt;<br>&gt; Now when I PLOT Obs22apr2011.bin file, It is only plotting the eastern<br>&gt; hemisphere. (Figures attached).<br>&gt; Following is the CTL file------<br>&gt; SET Obs22apr2011.bin<br>&gt; options big_endian<br>&gt; TITLE&nbsp; Precipitation estimates<br>&gt; UNDEF&nbsp; -9999.9<br>&gt; XDEF&nbsp; 1440 LINEAR -179.875 0.25<br>&gt; YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25<br>&gt; ZDEF&nbsp;  1 LEVELS 1000<br>&gt; TDEF 1 LINEAR&nbsp; 00z22apr2011&nbsp; 1dy<br>&gt; VARS 1<br>&gt; data&nbsp; 0&nbsp;  99&nbsp; 3B42 TRMM precipitation estimates [mm/3hr]<br>&gt; ENDVARS<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; ~<br>&gt; "dailyrf.ctl" 11 lines, 305 characters<br>&gt;<br>&gt;<br>&gt; Kindly suggest.<br>&gt; /_*<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; gradsusr mailing list<br>&gt; <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>&gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>&gt;<br><br>-- <br><br>Please note that <a ymailto="mailto:Charles.Seman@noaa.gov" href="mailto:Charles.Seman@noaa.gov">Charles.Seman@noaa.gov</a> should be considered my NOAA<br>email address, not <a ymailto="mailto:cjs@gfdl.noaa.gov." href="mailto:cjs@gfdl.noaa.gov.">cjs@gfdl.noaa.gov.</a><br><br>********************************************************************<br>&nbsp; Charles Seman&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a ymailto="mailto:Charles.Seman@noaa.gov" href="mailto:Charles.Seman@noaa.gov">Charles.Seman@noaa.gov</a><br>&nbsp; U.S. Department of Commerce / NOAA / OAR<br>&nbsp; Geophysical Fluid Dynamics Laboratory&nbsp; &nbsp; &nbsp; &nbsp;  voice: (609) 452-6547<br>&nbsp; 201 Forrestal Road&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fax: (609) 987-5063<br>&nbsp; Princeton, NJ&nbsp; 08540-6649&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.gfdl.noaa.gov/~cjs/" target="_blank">http://www.gfdl.noaa.gov/~cjs/</a><br>********************************************************************<br><br>"The contents of this message are mine personally and do not reflect any<br>official or unofficial position of the United States Federal Government,<br>the United States Department of Commerce, or NOAA."<br><br><br>------------------------------<br><br>Message: 2<br>Date: Wed, 28 Jan 2015 16:13:13 -0600<br>From: Adv &lt;<a ymailto="mailto:advita6@gmail.com" href="mailto:advita6@gmail.com">advita6@gmail.com</a>&gt;<br>Subject: [gradsusr] Sub: mask file for US land/Ocean<br>To: GrADS Users Forum &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;CAHfbfHtZhn7+kjG9Sh=sp9NBGf90O1-OPtS9zFEe_FEtis1+<a ymailto="mailto:Ow@mail.gmail.com" href="mailto:Ow@mail.gmail.com">Ow@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>Hi,<br>I would like to do the same calculation shown below, only over US land<br>region. Could someone help me with mask file ? or else explain me how to<br>use basemap shape file to mask the ocean. Is that possible to do?<br>An example of taking an area average of data only over land, given a mask<br>grid:<br><br>ave(aave(maskout(p,mask.3(t=1)),x=1,x=72,y=1,y=46),t=1,t=30)<br>say result<br><br>Thanks,<br>Adv<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150128/0f53efbd/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150128/0f53efbd/attachment-0001.html </a><br><br>------------------------------<br><br>Message: 3<br>Date: Thu, 29 Jan 2015 02:06:18 +0100<br>From: Bill Reilly &lt;<a ymailto="mailto:bill_reilly@compuserve.com" href="mailto:bill_reilly@compuserve.com">bill_reilly@compuserve.com</a>&gt;<br>Subject: [gradsusr] Great Lakes Wave upgrade<br>To: <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>Message-ID: &lt;<a ymailto="mailto:54C9878A.8040100@compuserve.com" href="mailto:54C9878A.8040100@compuserve.com">54C9878A.8040100@compuserve.com</a>&gt;<br>Content-Type: text/plain; charset=windows-1252; format=flowed<br><br>Hello all:<br><br>I have a question:<br><br>I downloaded the new Great Lakes Wave GRIB files today the same way I <br>always do, and then I used wgrib2 to prepare the data for using in GrADS <br>(like I've been doing every day for years), which all went fine.&nbsp; But <br>when trying to open the files in GrADS I get the error "SDF file has no <br>discernable X coordinate". I've never had this problem with the old GLW <br>data files, what's different now?... I know the file names and <br>resolution is different, but what about the data itself?<br><br>If anybody can help me I'd really appreciate it.<br><br>Regards,<br><br>Bill<br><br>--<br><br>Bill Reilly<br>(+34) 686-110-748<br><br><a ymailto="mailto:bill@passageweather.com" href="mailto:bill@passageweather.com">bill@passageweather.com</a><br>www.passageweather.com<br><br><br><br><br><br>------------------------------<br><br>Message: 4<br>Date: Thu, 29 Jan 2015 04:34:17 +0000 (UTC)<br>From: Geeta Geeta &lt;<a ymailto="mailto:geetag54@yahoo.com" href="mailto:geetag54@yahoo.com">geetag54@yahoo.com</a>&gt;<br>Subject: [gradsusr] Fwrite contd.<br>To: "<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>" &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:235282296.1031293.1422506057419.JavaMail.yahoo@mail.yahoo.com" href="mailto:235282296.1031293.1422506057419.JavaMail.yahoo@mail.yahoo.com">235282296.1031293.1422506057419.JavaMail.yahoo@mail.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>Dear?pyarimohan?<br>ga-&gt; reinit<br>No hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-&gt; run trmm3hr-accum.gsNo hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-&gt; q fwriteFWrite file is closedFWrite file name is: grads.fwriteFWrite byte order is big_endian ; machine byte order is big_endianga-&gt;<br>the CTL file looks like...............SET Obs22apr2011.binoptions big_endianTITLE ?Precipitation estimatesUNDEF ?-9999.9XDEF ?1440 LINEAR -179.875 0.25YDEF ?400 LINEAR ?-49.875 ?0.25ZDEF ? 1 LEVELS 1000TDEF 1 LINEAR ?00z22apr2011 ?1dyVARS 1data ?0 ? 99 ?3B42 TRMM precipitation estimates [mm/3hr]ENDVARS<br>But still the data is plotted only in the EASTERN hemisphere.?Geeta.<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150129/4316f9c4/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150129/4316f9c4/attachment-0001.html </a><br><br>------------------------------<br><br>Message: 5<br>Date: Thu, 29 Jan 2015 10:04:59 +0530<br>From: Geeta Geeta &lt;<a ymailto="mailto:geeta124@hotmail.com" href="mailto:geeta124@hotmail.com">geeta124@hotmail.com</a>&gt;<br>Subject: Re: [gradsusr] gradsusr Digest, Vol 59, Issue 56<br>To: grads grads &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:BLU178-W42411E3E565988F9E252A68A300@phx.gbl" href="mailto:BLU178-W42411E3E565988F9E252A68A300@phx.gbl">BLU178-W42411E3E565988F9E252A68A300@phx.gbl</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Dear pyarimohan <br>ga-&gt; reinit<br>No hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-&gt; run trmm3hr-accum.gsNo hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-&gt; q fwriteFWrite file is closedFWrite file name is: grads.fwriteFWrite byte order is big_endian ; machine byte order is big_endianga-&gt;<br>the CTL file looks like...............SET Obs22apr2011.binoptions big_endianTITLE&nbsp; Precipitation estimatesUNDEF&nbsp; -9999.9XDEF&nbsp; 1440 LINEAR -179.875 0.25YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25ZDEF&nbsp;  1 LEVELS 1000TDEF 1 LINEAR&nbsp; 00z22apr2011&nbsp; 1dyVARS 1data&nbsp; 0&nbsp;  99&nbsp; 3B42 TRMM precipitation estimates [mm/3hr]ENDVARS<br>But still the data is plotted only in the EASTERN hemisphere. Geeta.<br>&gt; From: <a ymailto="mailto:gradsusr-request@gradsusr.org" href="mailto:gradsusr-request@gradsusr.org">gradsusr-request@gradsusr.org</a><br>&gt; Subject: gradsusr Digest, Vol 59, Issue 56<br>&gt; To: <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>&gt; Date: Wed, 28 Jan 2015 12:00:02 -0500<br>&gt; <br>&gt; Send gradsusr mailing list submissions to<br>&gt; &nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>&gt; <br>&gt; To subscribe or unsubscribe via the World Wide Web, visit<br>&gt; &nbsp;&nbsp;&nbsp; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>&gt; or, via email, send a message with subject or body 'help' to<br>&gt; &nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr-request@gradsusr.org" href="mailto:gradsusr-request@gradsusr.org">gradsusr-request@gradsusr.org</a><br>&gt; <br>&gt; You can reach the person managing the list at<br>&gt; &nbsp;&nbsp;&nbsp; <a ymailto="mailto:gradsusr-owner@gradsusr.org" href="mailto:gradsusr-owner@gradsusr.org">gradsusr-owner@gradsusr.org</a><br>&gt; <br>&gt; When replying, please edit your Subject line so it is more specific<br>&gt; than "Re: Contents of gradsusr digest..."<br>&gt; <br>&gt; <br>&gt; Today's Topics:<br>&gt; <br>&gt;&nbsp; &nbsp; 1. Re: Fwrite contd. (pyarimohan maharana)<br>&gt;&nbsp; &nbsp; 2. New meteogram scripts (Jennifer Adams)<br>&gt;&nbsp; &nbsp; 3. GrADS question re: file downloads (<a ymailto="mailto:webmaster@solargrafix.com" href="mailto:webmaster@solargrafix.com">webmaster@solargrafix.com</a>)<br>&gt; <br>&gt; <br>&gt; ----------------------------------------------------------------------<br>&gt; <br>&gt; Message: 1<br>&gt; Date: Wed, 28 Jan 2015 09:32:35 +0100<br>&gt; From: pyarimohan maharana &lt;<a ymailto="mailto:chiku777rock@gmail.com" href="mailto:chiku777rock@gmail.com">chiku777rock@gmail.com</a>&gt;<br>&gt; Subject: Re: [gradsusr] Fwrite contd.<br>&gt; To: GrADS Users Forum &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>&gt; Message-ID:<br>&gt; &nbsp;&nbsp;&nbsp; &lt;CAGdodSdD4HmdB38Ng96-dzXmcBj8Knac_-5O8-b=e4Km=<a ymailto="mailto:CDY0A@mail.gmail.com" href="mailto:CDY0A@mail.gmail.com">CDY0A@mail.gmail.com</a>&gt;<br>&gt; Content-Type: text/plain; charset="utf-8"<br>&gt; <br>&gt; Dear Geeta,<br>&gt; <br>&gt; use the "q fwrite" command on the GrADS.<br>&gt; <br>&gt; This gives you the machine byte order and the undef value.<br>&gt; Edit the .CTL file and put the numbers and try to plot.<br>&gt; <br>&gt; This will work.<br>&gt; All the best.<br>&gt; <br>&gt; Regards<br>&gt; Pyarimohan<br>&gt; <br>&gt; <br>&gt; On Wed, Jan 28, 2015 at 8:49 AM, Geeta Geeta &lt;<a ymailto="mailto:geeta124@hotmail.com" href="mailto:geeta124@hotmail.com">geeta124@hotmail.com</a>&gt; wrote:<br>&gt; <br>&gt; &gt; Hi Davide and all other users.<br>&gt; &gt; This message is in continuation to my earlier e-mail in the previous<br>&gt; &gt; Volume. I have to sum up all the 8 3 hourly TRMM binary files.<br>&gt; &gt;<br>&gt; &gt; Following was my CTL file.<br>&gt; &gt;<br>&gt; &gt; DSET ^3B42.1104%d2.%h2z.7.precipitation.bin<br>&gt; &gt; options template<br>&gt; &gt; TITLE&nbsp; Precipitation estimates<br>&gt; &gt; UNDEF&nbsp; -9999.9<br>&gt; &gt; XDEF 1440 LINEAR&nbsp; -179.875 0.25<br>&gt; &gt; YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25<br>&gt; &gt; ZDEF&nbsp;  1 LEVELS 1000<br>&gt; &gt; TDEF 8 LINEAR&nbsp; 06z22apr2011&nbsp; 3hr<br>&gt; &gt; VARS 1<br>&gt; &gt; data&nbsp; 0&nbsp;  99&nbsp; 3B42 TRMM precipitation estimates [mm/3hr]<br>&gt; &gt; ENDVARS<br>&gt; &gt;<br>&gt; &gt; NOW in MY gs file, I forced grads to write the data.<br>&gt; &gt; 'reinit'<br>&gt; &gt; 'open rfaccum.ctl'<br>&gt; &gt; 'define rf1=data(t=1)'<br>&gt; &gt; 'define rf2=data(t=2)'<br>&gt; &gt; 'define rf3=data(t=3)'<br>&gt; &gt; 'define rf4=data(t=4)'<br>&gt; &gt; 'define rf5=data(t=5)'<br>&gt; &gt; 'define rf6=data(t=6)'<br>&gt; &gt; 'define rf7=data(t=7)'<br>&gt; &gt; 'define rf8=data(t=8)'<br>&gt; &gt; 'define rf=rf1+rf2+rf3+rf4+rf5+rf6+rf7+rf8'<br>&gt; &gt; 'd rf'<br>&gt; &gt; 'printim figure1.gif'<br>&gt; &gt; *'set x 1 1440'*<br>&gt; &gt; *'set y 1 400 '*<br>&gt; &gt; *'set fwrite&nbsp; Obs22apr2011.bin'*<br>&gt; &gt; 'set gxout fwrite'<br>&gt; &gt; 'd rf'<br>&gt; &gt; 'disable fwrite'<br>&gt; &gt; I got same size of O/P file *Obs22apr2011.bin. *<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; *2304000 Jan 27 14:17 3B42.110423.00z.7.precipitation.bin-rw-r--r--&nbsp; &nbsp; 1<br>&gt; &gt; model&nbsp; &nbsp; staff&nbsp; &nbsp; &nbsp;  2304000 Jan 27 14:18<br>&gt; &gt; 3B42.110423.03z.7.precipitation.bin-rw-r--r--&nbsp; &nbsp; 1 model&nbsp; &nbsp; staff<br>&gt; &gt; 2304000 Jan 27 14:22 3B42_daily.2011.04.22.7.bin-rw-r--r--&nbsp; &nbsp; 1 model<br>&gt; &gt;&nbsp; staff&nbsp; &nbsp; &nbsp;  2304000 Jan 28 13:12 Obs22apr2011.binNow when I PLOT<br>&gt; &gt; Obs22apr2011.bin file, It is only plotting the eastern hemisphere. (Figures<br>&gt; &gt; attached). Following is the CTL file------SET Obs22apr2011.binoptions<br>&gt; &gt; big_endianTITLE&nbsp; Precipitation estimatesUNDEF&nbsp; -9999.9XDEF&nbsp; 1440 LINEAR<br>&gt; &gt; -179.875 0.25YDEF&nbsp; 400 LINEAR&nbsp; -49.875&nbsp; 0.25ZDEF&nbsp;  1 LEVELS 1000TDEF 1<br>&gt; &gt; LINEAR&nbsp; 00z22apr2011&nbsp; 1dyVARS 1data&nbsp; 0&nbsp;  99&nbsp; 3B42 TRMM precipitation<br>&gt; &gt; estimates [mm/3hr]ENDVARS~~~~~~~~~~~~~~~"dailyrf.ctl" 11 lines, 305<br>&gt; &gt; charactersKindly suggest. *<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; gradsusr mailing list<br>&gt; &gt; <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>&gt; &gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>&gt; &gt;<br>&gt; &gt;<br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150128/b3dd0576/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150128/b3dd0576/attachment-0001.html </a><br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; Message: 2<br>&gt; Date: Wed, 28 Jan 2015 09:27:55 -0500<br>&gt; From: Jennifer Adams &lt;<a ymailto="mailto:jma@cola.iges.org" href="mailto:jma@cola.iges.org">jma@cola.iges.org</a>&gt;<br>&gt; Subject: [gradsusr] New meteogram scripts<br>&gt; To: GrADS Users Forum &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>&gt; Message-ID: &lt;<a ymailto="mailto:BDB74825-E437-4D2D-A42C-62C515D2D551@cola.iges.org" href="mailto:BDB74825-E437-4D2D-A42C-62C515D2D551@cola.iges.org">BDB74825-E437-4D2D-A42C-62C515D2D551@cola.iges.org</a>&gt;<br>&gt; Content-Type: text/plain; charset="windows-1252"<br>&gt; <br>&gt; Dear All,<br>&gt; I have posted my new scripts to download the required data and draw a 10-day meteogram. Some comments appear at the top of each script with instructions on how to use them. In my testing, it took about 10-12 minutes to download the data to a local file.<br>&gt; <br>&gt; <a href="ftp://cola.gmu.edu/grads/scripts/meteogram_subset_GDS.gs" target="_blank">ftp://cola.gmu.edu/grads/scripts/meteogram_subset_GDS.gs</a><br>&gt; <a href="ftp://cola.gmu.edu/grads/scripts/meteogram_GDS.gs" target="_blank">ftp://cola.gmu.edu/grads/scripts/meteogram_GDS.gs</a><br>&gt; <br>&gt; Links in the GrADS script library <a href="http://iges.org/grads/gadoc/library.html" target="_blank">http://iges.org/grads/gadoc/library.html </a>has also been updated. <br>&gt; For best results, use GrADS version 2.1. <br>&gt; ?Jennifer<br>&gt; <br>&gt; --<br>&gt; Jennifer M. Adams<br>&gt; Center for Ocean-Land-Atmosphere Studies (COLA)<br>&gt; 111 Research Hall, Mail Stop 2B3<br>&gt; George Mason University<br>&gt; 4400 University Drive<br>&gt; Fairfax, VA 22030 <br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150128/fab17869/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150128/fab17869/attachment-0001.html </a><br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; Message: 3<br>&gt; Date: Wed, 28 Jan 2015 10:38:49 -0500<br>&gt; From: &lt;<a ymailto="mailto:webmaster@solargrafix.com" href="mailto:webmaster@solargrafix.com">webmaster@solargrafix.com</a>&gt;<br>&gt; Subject: [gradsusr] GrADS question re: file downloads<br>&gt; To: &lt;<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>&gt; Message-ID: &lt;<a ymailto="mailto:E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC" href="mailto:E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC">E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC</a>&gt;<br>&gt; Content-Type: text/plain; charset="us-ascii"<br>&gt; <br>&gt; Hello<br>&gt; <br>&gt;&nbsp; <br>&gt; <br>&gt; Is there a way to get GrADS to download the most recent file from the GrADS<br>&gt; Data Server. I see all of the files on that server are saved in directories<br>&gt; according to time. I can download files using sdfopen, but I would like to<br>&gt; automate the process, and have GrADS download the most recent file. <br>&gt; <br>&gt;&nbsp; <br>&gt; <br>&gt; Thanks,<br>&gt; <br>&gt; Jason Warren<br>&gt; <br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150128/c5ffbde9/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150128/c5ffbde9/attachment-0001.html </a><br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; _______________________________________________<br>&gt; gradsusr mailing list<br>&gt; <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>&gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>&gt; <br>&gt; <br>&gt; End of gradsusr Digest, Vol 59, Issue 56<br>&gt; ****************************************<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp; &nbsp;  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20150129/a73becce/attachment.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20150129/a73becce/attachment.html </a><br><br>------------------------------<br><br>_______________________________________________<br>gradsusr mailing list<br><a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br><a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br><br><br>End of gradsusr Digest, Vol 59, Issue 57<br>****************************************<br><br><br></div>  </div> </div>  </div> </div></body></html>