<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. </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"> </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" <gradsusr-request@gradsusr.org> wrote:<br> </font> </div> <br><br> <div class="y_msg_container">Send gradsusr mailing list submissions to<br> <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> <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> <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> <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> 1. Re: Fwrite contd. (Charles Seman - NOAA Federal)<br> 2. Sub: mask file for US land/Ocean (Adv)<br> 3. Great Lakes Wave upgrade (Bill Reilly)<br> 4. Fwrite contd. (Geeta Geeta)<br> 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 <<a ymailto="mailto:charles.seman@noaa.gov" href="mailto:charles.seman@noaa.gov">charles.seman@noaa.gov</a>><br>Subject: Re: [gradsusr] Fwrite contd.<br>To: GrADS Users Forum <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>Message-ID: <<a ymailto="mailto:54C93B7A.2090500@noaa.gov" href="mailto:54C93B7A.2090500@noaa.gov">54C93B7A.2090500@noaa.gov</a>><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 1440 LINEAR 0.125 0.25<br>YDEF 400 LINEAR -49.875 0.25<br>ZDEF 1 LEVELS 1000<br>TDEF 1 LINEAR 00z22apr2011 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>> Hi Davide and all other users.<br>> This message is in continuation to my earlier e-mail in the previous<br>> Volume. I have to sum up all the 8 3 hourly TRMM binary files.<br>><br>> Following was my CTL file.<br>><br>> DSET ^3B42.1104%d2.%h2z.7.precipitation.bin<br>> options template<br>> TITLE Precipitation estimates<br>> UNDEF -9999.9<br>> XDEF 1440 LINEAR -179.875 0.25<br>> YDEF 400 LINEAR -49.875 0.25<br>> ZDEF 1 LEVELS 1000<br>> TDEF 8 LINEAR 06z22apr2011 3hr<br>> VARS 1<br>> data 0 99 3B42 TRMM precipitation estimates [mm/3hr]<br>> ENDVARS<br>><br>> NOW in MY gs file, I forced grads to write the data.<br>> 'reinit'<br>> 'open rfaccum.ctl'<br>> 'define rf1=data(t=1)'<br>> 'define rf2=data(t=2)'<br>> 'define rf3=data(t=3)'<br>> 'define rf4=data(t=4)'<br>> 'define rf5=data(t=5)'<br>> 'define rf6=data(t=6)'<br>> 'define rf7=data(t=7)'<br>> 'define rf8=data(t=8)'<br>> 'define rf=rf1+rf2+rf3+rf4+rf5+rf6+rf7+rf8'<br>> 'd rf'<br>> 'printim figure1.gif'<br>> *_/'set x 1 1440'/_*<br>> *_/'set y 1 400 '/_*<br>> *_/'set fwrite Obs22apr2011.bin'/_*<br>> 'set gxout fwrite'<br>> 'd rf'<br>> 'disable fwrite'<br>> I got same size of O/P file *_/Obs22apr2011.bin. /_*<br>> *_/<br>> 2304000 Jan 27 14:17 3B42.110423.00z.7.precipitation.bin<br>> -rw-r--r-- 1 model staff 2304000 Jan 27 14:18<br>> 3B42.110423.03z.7.precipitation.bin<br>> -rw-r--r-- 1 model staff 2304000 Jan 27 14:22<br>> 3B42_daily.2011.04.22.7.bin<br>> -rw-r--r-- 1 model staff 2304000 Jan 28 13:12 Obs22apr2011.bin<br>><br>> Now when I PLOT Obs22apr2011.bin file, It is only plotting the eastern<br>> hemisphere. (Figures attached).<br>> Following is the CTL file------<br>> SET Obs22apr2011.bin<br>> options big_endian<br>> TITLE Precipitation estimates<br>> UNDEF -9999.9<br>> XDEF 1440 LINEAR -179.875 0.25<br>> YDEF 400 LINEAR -49.875 0.25<br>> ZDEF 1 LEVELS 1000<br>> TDEF 1 LINEAR 00z22apr2011 1dy<br>> VARS 1<br>> data 0 99 3B42 TRMM precipitation estimates [mm/3hr]<br>> ENDVARS<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> ~<br>> "dailyrf.ctl" 11 lines, 305 characters<br>><br>><br>> Kindly suggest.<br>> /_*<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>-- <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> Charles Seman <a ymailto="mailto:Charles.Seman@noaa.gov" href="mailto:Charles.Seman@noaa.gov">Charles.Seman@noaa.gov</a><br> U.S. Department of Commerce / NOAA / OAR<br> Geophysical Fluid Dynamics Laboratory voice: (609) 452-6547<br> 201 Forrestal Road fax: (609) 987-5063<br> Princeton, NJ 08540-6649 <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 <<a ymailto="mailto:advita6@gmail.com" href="mailto:advita6@gmail.com">advita6@gmail.com</a>><br>Subject: [gradsusr] Sub: mask file for US land/Ocean<br>To: GrADS Users Forum <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>Message-ID:<br> <CAHfbfHtZhn7+kjG9Sh=sp9NBGf90O1-OPtS9zFEe_FEtis1+<a ymailto="mailto:Ow@mail.gmail.com" href="mailto:Ow@mail.gmail.com">Ow@mail.gmail.com</a>><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 <<a ymailto="mailto:bill_reilly@compuserve.com" href="mailto:bill_reilly@compuserve.com">bill_reilly@compuserve.com</a>><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: <<a ymailto="mailto:54C9878A.8040100@compuserve.com" href="mailto:54C9878A.8040100@compuserve.com">54C9878A.8040100@compuserve.com</a>><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. 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 <<a ymailto="mailto:geetag54@yahoo.com" href="mailto:geetag54@yahoo.com">geetag54@yahoo.com</a>><br>Subject: [gradsusr] Fwrite contd.<br>To: "<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>" <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>Message-ID:<br> <<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>><br>Content-Type: text/plain; charset="utf-8"<br><br>Dear?pyarimohan?<br>ga-> reinit<br>No hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-> run trmm3hr-accum.gsNo hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-> q fwriteFWrite file is closedFWrite file name is: grads.fwriteFWrite byte order is big_endian ; machine byte order is big_endianga-><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 <<a ymailto="mailto:geeta124@hotmail.com" href="mailto:geeta124@hotmail.com">geeta124@hotmail.com</a>><br>Subject: Re: [gradsusr] gradsusr Digest, Vol 59, Issue 56<br>To: grads grads <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>Message-ID: <<a ymailto="mailto:BLU178-W42411E3E565988F9E252A68A300@phx.gbl" href="mailto:BLU178-W42411E3E565988F9E252A68A300@phx.gbl">BLU178-W42411E3E565988F9E252A68A300@phx.gbl</a>><br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Dear pyarimohan <br>ga-> reinit<br>No hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-> run trmm3hr-accum.gsNo hardcopy metafile openAll files closed; all defined objects releasedAll GrADS attributes have been reinitializedga-> q fwriteFWrite file is closedFWrite file name is: grads.fwriteFWrite byte order is big_endian ; machine byte order is big_endianga-><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>> From: <a ymailto="mailto:gradsusr-request@gradsusr.org" href="mailto:gradsusr-request@gradsusr.org">gradsusr-request@gradsusr.org</a><br>> Subject: gradsusr Digest, Vol 59, Issue 56<br>> To: <a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>> Date: Wed, 28 Jan 2015 12:00:02 -0500<br>> <br>> Send gradsusr mailing list submissions to<br>> <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>> <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>> <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>> <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>> 1. Re: Fwrite contd. (pyarimohan maharana)<br>> 2. New meteogram scripts (Jennifer Adams)<br>> 3. GrADS question re: file downloads (<a ymailto="mailto:webmaster@solargrafix.com" href="mailto:webmaster@solargrafix.com">webmaster@solargrafix.com</a>)<br>> <br>> <br>> ----------------------------------------------------------------------<br>> <br>> Message: 1<br>> Date: Wed, 28 Jan 2015 09:32:35 +0100<br>> From: pyarimohan maharana <<a ymailto="mailto:chiku777rock@gmail.com" href="mailto:chiku777rock@gmail.com">chiku777rock@gmail.com</a>><br>> Subject: Re: [gradsusr] Fwrite contd.<br>> To: GrADS Users Forum <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>> Message-ID:<br>> <CAGdodSdD4HmdB38Ng96-dzXmcBj8Knac_-5O8-b=e4Km=<a ymailto="mailto:CDY0A@mail.gmail.com" href="mailto:CDY0A@mail.gmail.com">CDY0A@mail.gmail.com</a>><br>> Content-Type: text/plain; charset="utf-8"<br>> <br>> Dear Geeta,<br>> <br>> use the "q fwrite" command on the GrADS.<br>> <br>> This gives you the machine byte order and the undef value.<br>> Edit the .CTL file and put the numbers and try to plot.<br>> <br>> This will work.<br>> All the best.<br>> <br>> Regards<br>> Pyarimohan<br>> <br>> <br>> On Wed, Jan 28, 2015 at 8:49 AM, Geeta Geeta <<a ymailto="mailto:geeta124@hotmail.com" href="mailto:geeta124@hotmail.com">geeta124@hotmail.com</a>> wrote:<br>> <br>> > Hi Davide and all other users.<br>> > This message is in continuation to my earlier e-mail in the previous<br>> > Volume. I have to sum up all the 8 3 hourly TRMM binary files.<br>> ><br>> > Following was my CTL file.<br>> ><br>> > DSET ^3B42.1104%d2.%h2z.7.precipitation.bin<br>> > options template<br>> > TITLE Precipitation estimates<br>> > UNDEF -9999.9<br>> > XDEF 1440 LINEAR -179.875 0.25<br>> > YDEF 400 LINEAR -49.875 0.25<br>> > ZDEF 1 LEVELS 1000<br>> > TDEF 8 LINEAR 06z22apr2011 3hr<br>> > VARS 1<br>> > data 0 99 3B42 TRMM precipitation estimates [mm/3hr]<br>> > ENDVARS<br>> ><br>> > NOW in MY gs file, I forced grads to write the data.<br>> > 'reinit'<br>> > 'open rfaccum.ctl'<br>> > 'define rf1=data(t=1)'<br>> > 'define rf2=data(t=2)'<br>> > 'define rf3=data(t=3)'<br>> > 'define rf4=data(t=4)'<br>> > 'define rf5=data(t=5)'<br>> > 'define rf6=data(t=6)'<br>> > 'define rf7=data(t=7)'<br>> > 'define rf8=data(t=8)'<br>> > 'define rf=rf1+rf2+rf3+rf4+rf5+rf6+rf7+rf8'<br>> > 'd rf'<br>> > 'printim figure1.gif'<br>> > *'set x 1 1440'*<br>> > *'set y 1 400 '*<br>> > *'set fwrite Obs22apr2011.bin'*<br>> > 'set gxout fwrite'<br>> > 'd rf'<br>> > 'disable fwrite'<br>> > I got same size of O/P file *Obs22apr2011.bin. *<br>> ><br>> ><br>> ><br>> > *2304000 Jan 27 14:17 3B42.110423.00z.7.precipitation.bin-rw-r--r-- 1<br>> > model staff 2304000 Jan 27 14:18<br>> > 3B42.110423.03z.7.precipitation.bin-rw-r--r-- 1 model staff<br>> > 2304000 Jan 27 14:22 3B42_daily.2011.04.22.7.bin-rw-r--r-- 1 model<br>> > staff 2304000 Jan 28 13:12 Obs22apr2011.binNow when I PLOT<br>> > Obs22apr2011.bin file, It is only plotting the eastern hemisphere. (Figures<br>> > attached). Following is the CTL file------SET Obs22apr2011.binoptions<br>> > big_endianTITLE Precipitation estimatesUNDEF -9999.9XDEF 1440 LINEAR<br>> > -179.875 0.25YDEF 400 LINEAR -49.875 0.25ZDEF 1 LEVELS 1000TDEF 1<br>> > LINEAR 00z22apr2011 1dyVARS 1data 0 99 3B42 TRMM precipitation<br>> > estimates [mm/3hr]ENDVARS~~~~~~~~~~~~~~~"dailyrf.ctl" 11 lines, 305<br>> > charactersKindly suggest. *<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>> -------------- next part --------------<br>> An HTML attachment was scrubbed...<br>> 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>> <br>> ------------------------------<br>> <br>> Message: 2<br>> Date: Wed, 28 Jan 2015 09:27:55 -0500<br>> From: Jennifer Adams <<a ymailto="mailto:jma@cola.iges.org" href="mailto:jma@cola.iges.org">jma@cola.iges.org</a>><br>> Subject: [gradsusr] New meteogram scripts<br>> To: GrADS Users Forum <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>> Message-ID: <<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>><br>> Content-Type: text/plain; charset="windows-1252"<br>> <br>> Dear All,<br>> 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>> <br>> <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>> <a href="ftp://cola.gmu.edu/grads/scripts/meteogram_GDS.gs" target="_blank">ftp://cola.gmu.edu/grads/scripts/meteogram_GDS.gs</a><br>> <br>> 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>> For best results, use GrADS version 2.1. <br>> ?Jennifer<br>> <br>> --<br>> Jennifer M. Adams<br>> Center for Ocean-Land-Atmosphere Studies (COLA)<br>> 111 Research Hall, Mail Stop 2B3<br>> George Mason University<br>> 4400 University Drive<br>> Fairfax, VA 22030 <br>> <br>> <br>> <br>> <br>> <br>> -------------- next part --------------<br>> An HTML attachment was scrubbed...<br>> 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>> <br>> ------------------------------<br>> <br>> Message: 3<br>> Date: Wed, 28 Jan 2015 10:38:49 -0500<br>> From: <<a ymailto="mailto:webmaster@solargrafix.com" href="mailto:webmaster@solargrafix.com">webmaster@solargrafix.com</a>><br>> Subject: [gradsusr] GrADS question re: file downloads<br>> To: <<a ymailto="mailto:gradsusr@gradsusr.org" href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>><br>> Message-ID: <<a ymailto="mailto:E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC" href="mailto:E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC">E98D6BC6ACF04CF3971ACA1F531E5862@JasonPC</a>><br>> Content-Type: text/plain; charset="us-ascii"<br>> <br>> Hello<br>> <br>> <br>> <br>> Is there a way to get GrADS to download the most recent file from the GrADS<br>> Data Server. I see all of the files on that server are saved in directories<br>> according to time. I can download files using sdfopen, but I would like to<br>> automate the process, and have GrADS download the most recent file. <br>> <br>> <br>> <br>> Thanks,<br>> <br>> Jason Warren<br>> <br>> -------------- next part --------------<br>> An HTML attachment was scrubbed...<br>> 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>> <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 56<br>> ****************************************<br> <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>