[gradsusr] gradsusr Digest, Vol 3, Issue 41

Guilherme Martins jgmsantos at gmail.com
Wed May 19 12:01:13 EDT 2010


See the link below. See the drawbox.gs. It'll help you.

http://www.atmos.umd.edu/~bguan/grads/GrADS_Scripts.html

Guilherme.

2010/5/19 <gradsusr-request at gradsusr.org>

> Send gradsusr mailing list submissions to
>        gradsusr at gradsusr.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://gradsusr.org/mailman/listinfo/gradsusr
> or, via email, send a message with subject or body 'help' to
>        gradsusr-request at gradsusr.org
>
> You can reach the person managing the list at
>        gradsusr-owner at gradsusr.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of gradsusr digest..."
>
>
> Today's Topics:
>
>   1. How to use draw function (sushant puranik)
>   2. Re: How to use draw function (Heiner K?rnich)
>   3. Re: How to use draw function (hersala)
>   4. Re: How to use draw function (sushant puranik)
>   5. Re: Creating data files (Huddleston, John)
>   6. Re: Creating data files (Alexandre Santos)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 19 May 2010 12:35:37 +0530
> From: sushant puranik <sushantpuranik at gmail.com>
> Subject: [gradsusr] How to use draw function
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <AANLkTikDALtl3-T9v96_3PkfL8F1d8rJmdWZ7UO32cyU at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi
> I am trying to make a rectangle over the region 65 deg to 75 deg east and
> equator to 10 deg north.
> As per instructions in the grads document first of all i made set line 1 1
> 1
> then use draw rec 0 65 10 75 command. but there is no rectangle drawn on
> the
> plot.
>
> In the draw command xlo ylo xhi yhi corresponds to grid point or waht else.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://gradsusr.org/pipermail/gradsusr/attachments/20100519/e9d2858b/attachment-0001.html
>
> ------------------------------
>
> Message: 2
> Date: Wed, 19 May 2010 09:36:18 +0200
> From: Heiner K?rnich <heiner at misu.su.se>
> Subject: Re: [gradsusr] How to use draw function
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <AANLkTinA3fpr9Kh7M5lBQdoAlSz7GgUBuffMnTfDG4bU at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi,
>
> it is actually a little confusing. The draw command uses the coordinates of
> your drawing window. Those coordinates range from 0 to 8.5 and 0 to 11
> inch.
> The coordinates that you were using are the world coordinates. Use the
> function "q w2xy" to convert from world to xy coordinates, eg. for 65 deg
> east and 10 deg north
> q w2xy 65 10
>
> Regards,
> Heiner
>
> On Wed, May 19, 2010 at 9:05 AM, sushant puranik
> <sushantpuranik at gmail.com>wrote:
>
> > Hi
> > I am trying to make a rectangle over the region 65 deg to 75 deg east and
> > equator to 10 deg north.
> > As per instructions in the grads document first of all i made set line 1
> 1
> > 1 then use draw rec 0 65 10 75 command. but there is no rectangle drawn
> on
> > the plot.
> >
> > In the draw command xlo ylo xhi yhi corresponds to grid point or waht
> else.
> >
> >
> >
> > _______________________________________________
> > gradsusr mailing list
> > gradsusr at gradsusr.org
> > http://gradsusr.org/mailman/listinfo/gradsusr
> >
> >
>
>
> --
> Heiner K?rnich
> Dept. of Meteorology            Tel:  +46 8 164333
> Stockholms University, SE-106 91 Stockholm, Sweden
> Email: heiner at misu.su.se   www.misu.su.se/~heiner/<http://www.misu.su.se/%7Eheiner/>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://gradsusr.org/pipermail/gradsusr/attachments/20100519/084da8bc/attachment-0001.html
>
> ------------------------------
>
> Message: 3
> Date: Wed, 19 May 2010 08:39:48 -0300
> From: hersala <hersala at gmail.com>
> Subject: Re: [gradsusr] How to use draw function
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <AANLkTikwNR_o30B06j-yxVPpsfJZR8Lz3P5yhFB7A3Yj at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi Sushant
> I send you a little example that allow to draw a rectangle using world
> coordinates, so you can change the size or change slightly the geographic
> region selected for your plot and the rectangle will be "anchored" to its
> geographic position. This small code shoul by used in a *.gs script.
> Best regards.
>
> Lic. Hern?n Sala
> Instituto Ant?rtico Argentino
>
>
> *Draw rectangle
> 'set line 7 1 6'
> lon1= 135
> lat1= -78
> 'q w2xy 'lon1' 'lat1
> say result
> x1 = subwrd(result,3)
> y1 = subwrd(result,6)
> lon2= 239
> lat2= -70
> 'q w2xy 'lon2' 'lat2
> say result
> x2 = subwrd(result,3)
> y2 = subwrd(result,6)
> 'draw rec 'x1' 'y1' 'x2' 'y2
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://gradsusr.org/pipermail/gradsusr/attachments/20100519/91f73a41/attachment-0001.html
>
> ------------------------------
>
> Message: 4
> Date: Wed, 19 May 2010 18:16:07 +0530
> From: sushant puranik <sushantpuranik at gmail.com>
> Subject: Re: [gradsusr] How to use draw function
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <AANLkTil730cx4h1IfibVnsrD07NWdvShE7ioLf0FhIaF at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Thank you very much. Problem is solved.
>
>
> On Wed, May 19, 2010 at 5:09 PM, hersala <hersala at gmail.com> wrote:
>
> > Hi Sushant
> > I send you a little example that allow to draw a rectangle using world
> > coordinates, so you can change the size or change slightly the geographic
> > region selected for your plot and the rectangle will be "anchored" to its
> > geographic position. This small code shoul by used in a *.gs script.
> > Best regards.
> >
> > Lic. Hern?n Sala
> > Instituto Ant?rtico Argentino
> >
> >
> > *Draw rectangle
> > 'set line 7 1 6'
> > lon1= 135
> > lat1= -78
> > 'q w2xy 'lon1' 'lat1
> > say result
> > x1 = subwrd(result,3)
> > y1 = subwrd(result,6)
> > lon2= 239
> > lat2= -70
> > 'q w2xy 'lon2' 'lat2
> > say result
> > x2 = subwrd(result,3)
> > y2 = subwrd(result,6)
> > 'draw rec 'x1' 'y1' 'x2' 'y2
> >
> >
> >
> >
> >
> > _______________________________________________
> > gradsusr mailing list
> > gradsusr at gradsusr.org
> > http://gradsusr.org/mailman/listinfo/gradsusr
> >
> >
>
>
> --
> Sushant Puranik
> Junior Research Fellow
> Dept. of Atmospheric & Space Sciences,
> University of Pune,
> Pune-07,
> India.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://gradsusr.org/pipermail/gradsusr/attachments/20100519/929469b6/attachment-0001.html
>
> ------------------------------
>
> Message: 5
> Date: Wed, 19 May 2010 08:20:24 -0700
> From: "Huddleston, John" <Huddleston at cira.colostate.edu>
> Subject: Re: [gradsusr] Creating data files
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <
> F367071F539DC64FB75E7D7690B8160D0105BCA7173F at EXVMBX003-2.exch003intermedia.net
> >
>
> Content-Type: text/plain; charset="us-ascii"
>
> Anna
>
> You may want to think about the architecture as 20 600x600 grids. So,
> instead of opening the binary file with LRECL=4, open it with a record
> length of 36000.
>
> Set up a real array of A(600,600,20), initialize it to -999, then read in
> all the data, compute the Z level 1:20 corresponding to your 20 levels,
> compute the (ipos,jpos) given the input (km,km) units, and set the value
> equal to the dBZ.
>
> Then write out each of the records in a do loop like
> IREC=1
> DO I=1,20
> WRITE(15,REC=IREC) ((A(J,K,I),J=1,600),K=1,600)
> IREC=IREC+1
> ENDDO
>
> Your control file becomes much simpler and you have 20 layers of data to
> plot.
>
> Think about it and if you want help, I can help you later with the coding,
> but not now..am working on another project.
>
> John Huddleston, PhD
> Cooperative Institute for Research in the Atmosphere
>
> -----Original Message-----
> From: gradsusr-bounces at gradsusr.org [mailto:gradsusr-bounces at gradsusr.org]
> On Behalf Of Anna Cinzia Marra
> Sent: Tuesday, May 18, 2010 3:47 AM
> To: GrADS Users Forum
> Subject: Re: [gradsusr] Creating data files
>
> Hello Alexandre,
> my radar data file has this structure, as I already told you:
>
> # Fields: z y x DBZ
> # Units: km km km dBZ
> 1 -224.625 -224.625 35
> 1 -224.625 -223.875 28
> 1 -224.625 -223.125 20
> 1 -224.625 -222.375 20
> 1 -224.625 -221.625 18
>
> They are related to a single radar scan (so only one time), but they have
> 20 z levels (from 1 km to 15.25 km every 0.75 km), 600 y points and 600 x
> points (from -224.625 km to 224.625 km every 0.75 km). Both x and y are
> obviously related to longitude and latitude.
>
> I modified radar.f in order to account for my big dataset.
> I modified your control file in the following way
>
> dset ^0dbz.bin
> title  Analysis DBZ
> undef   -32
> xdef     600  linear -224.625 0.75
> ydef     600  linear -224.625 0.75
> zdef     20   levels
>    15.25
>    14.5
>    13.75
>    13
>    12.25
>    11.5
>    10.75
>    10
>     9.25
>     8.5
>     7.75
>     7
>     6.25
>     5.5
>     4.75
>     4
>     3.25
>     2.5
>     1.75
>     1
> tdef     1  linear 22oct2005 1mn
> vars 4
> z        0 999 z(km)
> y        0 999 y(km)
> x        0 999 x(km)
> dbz     20 999 DBZ
> endvars
>
> but I cannot see anything reasonable with grads. What am I wrong?
> Thank again.
> Cinzia
>
> > I Understand. Other question can consult.
> >
> > Alexandre
> >
> >
> >
> >
> >
> > 2010/5/18 Anna Cinzia Marra <a.marra at isac.cnr.it>
> >
> >> Hello John,
> >> thanks a lot, but that's not a problem of fortran. I hhad already
> >> modified
> >> radar.f according to my complete data file. Maybe I am not modifying in
> >> the right way the control file.
> >>
> >> Cinzia
> >>
> >> > Cinzia,
> >> >
> >> > Edit the radar.f file you were sent by Alexandre and change the 4x5
> >> array
> >> > to fit the size of your big dataset.
> >> >
> >> > Change the input name to the name of your input file, Alexandre used
> >> > 'dbz.txt'.
> >> >
> >> > This is not so much a GrADS issue as it is a knowledge of programming
> >> and
> >> > building software.
> >> >
> >> > After you change the array size to fit your dataset, then create the
> >> > executable. e.g. gfortran -o dbz radar.f
> >> >
> >> > Rerun the application, e.g. ./dbz
> >> >
> >> > It will create the datafile dbz.bin and you can use the control file
> >> he
> >> > sent.
> >> >
> >> >
> >> > John Huddleston, PhD
> >> >
> >> >
> >> > -----Original Message-----
> >> > From: gradsusr-bounces at gradsusr.org [mailto:
> >> gradsusr-bounces at gradsusr.org]
> >> > On Behalf Of Anna Cinzia Marra
> >> > Sent: Monday, May 17, 2010 4:09 AM
> >> > To: GrADS Users Forum
> >> > Subject: Re: [gradsusr] Creating data files
> >> >
> >> > Hello,
> >> > unfortunately I am starting now with grads. at the moment I am not
> >> able
> >> to
> >> > display data from the bin file you sent me. I don't know why. Moreover
> >> I
> >> > am not able also to re-obtain that bin file by means of radar.f and I
> >> > cannot send you the complete data file because it is too big.
> >> > I am sorry.
> >> >
> >> > Thank you in advance
> >> >
> >> > Cinzia
> >> >
> >> >> Hello,
> >> >>
> >> >> send the file radar complete with the bin+ctl, please.
> >> >>
> >> >>
> >> >>
> >> >> 2010/5/14 Anna Cinzia Marra <a.marra at isac.cnr.it>
> >> >>
> >> >>> Hello,
> >> >>> thanks a lot. I am trying to convert a complete radar data file, but
> >> I
> >> >>> have some problems with plot.
> >> >>> I will try again.
> >> >>>
> >> >>> Cinzia
> >> >>>
> >> >>> > Hello,
> >> >>> >
> >> >>> > Send the program at fortran more files binary the ctl. With the
> >> >>> binary
> >> >>> +
> >> >>> > ctl
> >> >>> > you can see in the Grads
> >> >>> >
> >> >>> >
> >> >>> >
> >> >>> > 2010/5/13 Anna Cinzia Marra <a.marra at isac.cnr.it>
> >> >>> >
> >> >>> >>
> >> >>> >> Hello,
> >> >>> >>
> >> >>> >> does anybody have a fortran program which converts measured radar
> >> >>> >> reflectivity data to binary files read by grads?
> >> >>> >>
> >> >>> >> Here is an example of my data files:
> >> >>> >>
> >> >>> >> # Fields: z y x DBZ
> >> >>> >> # Units: km km km dBZ
> >> >>> >> 1 -224.625 -224.625 35
> >> >>> >> 1 -224.625 -223.875 28
> >> >>> >> 1 -224.625 -223.125 20
> >> >>> >> 1 -224.625 -222.375 20
> >> >>> >> 1 -224.625 -221.625 18
> >> >>> >> ......................
> >> >>> >>
> >> >>> >> Thank you very much.
> >> >>> >>
> >> >>> >> Cinzia
> >> >>> >>
> >> >>> >>
> >> >>> >> _______________________________________________
> >> >>> >> gradsusr mailing list
> >> >>> >> gradsusr at gradsusr.org
> >> >>> >> http://gradsusr.org/mailman/listinfo/gradsusr
> >> >>> >>
> >> >>> > _______________________________________________
> >> >>> > gradsusr mailing list
> >> >>> > gradsusr at gradsusr.org
> >> >>> > http://gradsusr.org/mailman/listinfo/gradsusr
> >> >>> >
> >> >>>
> >> >>>
> >> >>> _______________________________________________
> >> >>> gradsusr mailing list
> >> >>> gradsusr at gradsusr.org
> >> >>> http://gradsusr.org/mailman/listinfo/gradsusr
> >> >>>
> >> >> _______________________________________________
> >> >> gradsusr mailing list
> >> >> gradsusr at gradsusr.org
> >> >> http://gradsusr.org/mailman/listinfo/gradsusr
> >> >>
> >> >
> >> >
> >> > _______________________________________________
> >> > gradsusr mailing list
> >> > gradsusr at gradsusr.org
> >> > http://gradsusr.org/mailman/listinfo/gradsusr
> >> >
> >> > _______________________________________________
> >> > gradsusr mailing list
> >> > gradsusr at gradsusr.org
> >> > http://gradsusr.org/mailman/listinfo/gradsusr
> >> >
> >> >
> >>
> >>
> >> _______________________________________________
> >> gradsusr mailing list
> >> gradsusr at gradsusr.org
> >> http://gradsusr.org/mailman/listinfo/gradsusr
> >>
> > _______________________________________________
> > gradsusr mailing list
> > gradsusr at gradsusr.org
> > http://gradsusr.org/mailman/listinfo/gradsusr
> >
>
>
> _______________________________________________
> gradsusr mailing list
> gradsusr at gradsusr.org
> http://gradsusr.org/mailman/listinfo/gradsusr
>
>
>
> ------------------------------
>
> Message: 6
> Date: Wed, 19 May 2010 12:55:51 -0300
> From: Alexandre Santos <puffy78 at gmail.com>
> Subject: Re: [gradsusr] Creating data files
> To: GrADS Users Forum <gradsusr at gradsusr.org>
> Message-ID:
>        <AANLkTimnAms7m_XIaYEt9xyrcQeCFxO-kj8liMUlWcSf at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Anna,
>
> send for me the data complete radar , txt, (DBZ). With the data see the
> source at fortran
>
> 2010/5/19 Huddleston, John <Huddleston at cira.colostate.edu>
>
> > Anna
> >
> > You may want to think about the architecture as 20 600x600 grids. So,
> > instead of opening the binary file with LRECL=4, open it with a record
> > length of 36000.
> >
> > Set up a real array of A(600,600,20), initialize it to -999, then read in
> > all the data, compute the Z level 1:20 corresponding to your 20 levels,
> > compute the (ipos,jpos) given the input (km,km) units, and set the value
> > equal to the dBZ.
> >
> > Then write out each of the records in a do loop like
> > IREC=1
> > DO I=1,20
> > WRITE(15,REC=IREC) ((A(J,K,I),J=1,600),K=1,600)
> > IREC=IREC+1
> > ENDDO
> >
> > Your control file becomes much simpler and you have 20 layers of data to
> > plot.
> >
> > Think about it and if you want help, I can help you later with the
> coding,
> > but not now..am working on another project.
> >
> > John Huddleston, PhD
> > Cooperative Institute for Research in the Atmosphere
> >
> > -----Original Message-----
> > From: gradsusr-bounces at gradsusr.org [mailto:
> gradsusr-bounces at gradsusr.org]
> > On Behalf Of Anna Cinzia Marra
> > Sent: Tuesday, May 18, 2010 3:47 AM
> > To: GrADS Users Forum
> > Subject: Re: [gradsusr] Creating data files
> >
> > Hello Alexandre,
> > my radar data file has this structure, as I already told you:
> >
> > # Fields: z y x DBZ
> > # Units: km km km dBZ
> > 1 -224.625 -224.625 35
> > 1 -224.625 -223.875 28
> > 1 -224.625 -223.125 20
> > 1 -224.625 -222.375 20
> > 1 -224.625 -221.625 18
> >
> > They are related to a single radar scan (so only one time), but they have
> > 20 z levels (from 1 km to 15.25 km every 0.75 km), 600 y points and 600 x
> > points (from -224.625 km to 224.625 km every 0.75 km). Both x and y are
> > obviously related to longitude and latitude.
> >
> > I modified radar.f in order to account for my big dataset.
> > I modified your control file in the following way
> >
> > dset ^0dbz.bin
> > title  Analysis DBZ
> > undef   -32
> > xdef     600  linear -224.625 0.75
> > ydef     600  linear -224.625 0.75
> > zdef     20   levels
> >    15.25
> >    14.5
> >    13.75
> >    13
> >    12.25
> >    11.5
> >    10.75
> >    10
> >     9.25
> >     8.5
> >     7.75
> >     7
> >     6.25
> >     5.5
> >     4.75
> >     4
> >     3.25
> >     2.5
> >     1.75
> >     1
> > tdef     1  linear 22oct2005 1mn
> > vars 4
> > z        0 999 z(km)
> > y        0 999 y(km)
> > x        0 999 x(km)
> > dbz     20 999 DBZ
> > endvars
> >
> > but I cannot see anything reasonable with grads. What am I wrong?
> > Thank again.
> > Cinzia
> >
> > > I Understand. Other question can consult.
> > >
> > > Alexandre
> > >
> > >
> > >
> > >
> > >
> > > 2010/5/18 Anna Cinzia Marra <a.marra at isac.cnr.it>
> > >
> > >> Hello John,
> > >> thanks a lot, but that's not a problem of fortran. I hhad already
> > >> modified
> > >> radar.f according to my complete data file. Maybe I am not modifying
> in
> > >> the right way the control file.
> > >>
> > >> Cinzia
> > >>
> > >> > Cinzia,
> > >> >
> > >> > Edit the radar.f file you were sent by Alexandre and change the 4x5
> > >> array
> > >> > to fit the size of your big dataset.
> > >> >
> > >> > Change the input name to the name of your input file, Alexandre used
> > >> > 'dbz.txt'.
> > >> >
> > >> > This is not so much a GrADS issue as it is a knowledge of
> programming
> > >> and
> > >> > building software.
> > >> >
> > >> > After you change the array size to fit your dataset, then create the
> > >> > executable. e.g. gfortran -o dbz radar.f
> > >> >
> > >> > Rerun the application, e.g. ./dbz
> > >> >
> > >> > It will create the datafile dbz.bin and you can use the control file
> > >> he
> > >> > sent.
> > >> >
> > >> >
> > >> > John Huddleston, PhD
> > >> >
> > >> >
> > >> > -----Original Message-----
> > >> > From: gradsusr-bounces at gradsusr.org [mailto:
> > >> gradsusr-bounces at gradsusr.org]
> > >> > On Behalf Of Anna Cinzia Marra
> > >> > Sent: Monday, May 17, 2010 4:09 AM
> > >> > To: GrADS Users Forum
> > >> > Subject: Re: [gradsusr] Creating data files
> > >> >
> > >> > Hello,
> > >> > unfortunately I am starting now with grads. at the moment I am not
> > >> able
> > >> to
> > >> > display data from the bin file you sent me. I don't know why.
> Moreover
> > >> I
> > >> > am not able also to re-obtain that bin file by means of radar.f and
> I
> > >> > cannot send you the complete data file because it is too big.
> > >> > I am sorry.
> > >> >
> > >> > Thank you in advance
> > >> >
> > >> > Cinzia
> > >> >
> > >> >> Hello,
> > >> >>
> > >> >> send the file radar complete with the bin+ctl, please.
> > >> >>
> > >> >>
> > >> >>
> > >> >> 2010/5/14 Anna Cinzia Marra <a.marra at isac.cnr.it>
> > >> >>
> > >> >>> Hello,
> > >> >>> thanks a lot. I am trying to convert a complete radar data file,
> but
> > >> I
> > >> >>> have some problems with plot.
> > >> >>> I will try again.
> > >> >>>
> > >> >>> Cinzia
> > >> >>>
> > >> >>> > Hello,
> > >> >>> >
> > >> >>> > Send the program at fortran more files binary the ctl. With the
> > >> >>> binary
> > >> >>> +
> > >> >>> > ctl
> > >> >>> > you can see in the Grads
> > >> >>> >
> > >> >>> >
> > >> >>> >
> > >> >>> > 2010/5/13 Anna Cinzia Marra <a.marra at isac.cnr.it>
> > >> >>> >
> > >> >>> >>
> > >> >>> >> Hello,
> > >> >>> >>
> > >> >>> >> does anybody have a fortran program which converts measured
> radar
> > >> >>> >> reflectivity data to binary files read by grads?
> > >> >>> >>
> > >> >>> >> Here is an example of my data files:
> > >> >>> >>
> > >> >>> >> # Fields: z y x DBZ
> > >> >>> >> # Units: km km km dBZ
> > >> >>> >> 1 -224.625 -224.625 35
> > >> >>> >> 1 -224.625 -223.875 28
> > >> >>> >> 1 -224.625 -223.125 20
> > >> >>> >> 1 -224.625 -222.375 20
> > >> >>> >> 1 -224.625 -221.625 18
> > >> >>> >> ......................
> > >> >>> >>
> > >> >>> >> Thank you very much.
> > >> >>> >>
> > >> >>> >> Cinzia
> > >> >>> >>
> > >> >>> >>
> > >> >>> >> _______________________________________________
> > >> >>> >> gradsusr mailing list
> > >> >>> >> gradsusr at gradsusr.org
> > >> >>> >> http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >>> >>
> > >> >>> > _______________________________________________
> > >> >>> > gradsusr mailing list
> > >> >>> > gradsusr at gradsusr.org
> > >> >>> > http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >>> >
> > >> >>>
> > >> >>>
> > >> >>> _______________________________________________
> > >> >>> gradsusr mailing list
> > >> >>> gradsusr at gradsusr.org
> > >> >>> http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >>>
> > >> >> _______________________________________________
> > >> >> gradsusr mailing list
> > >> >> gradsusr at gradsusr.org
> > >> >> http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >>
> > >> >
> > >> >
> > >> > _______________________________________________
> > >> > gradsusr mailing list
> > >> > gradsusr at gradsusr.org
> > >> > http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >
> > >> > _______________________________________________
> > >> > gradsusr mailing list
> > >> > gradsusr at gradsusr.org
> > >> > http://gradsusr.org/mailman/listinfo/gradsusr
> > >> >
> > >> >
> > >>
> > >>
> > >> _______________________________________________
> > >> gradsusr mailing list
> > >> gradsusr at gradsusr.org
> > >> http://gradsusr.org/mailman/listinfo/gradsusr
> > >>
> > > _______________________________________________
> > > gradsusr mailing list
> > > gradsusr at gradsusr.org
> > > http://gradsusr.org/mailman/listinfo/gradsusr
> > >
> >
> >
> > _______________________________________________
> > gradsusr mailing list
> > gradsusr at gradsusr.org
> > http://gradsusr.org/mailman/listinfo/gradsusr
> >
> > _______________________________________________
> > gradsusr mailing list
> > gradsusr at gradsusr.org
> > http://gradsusr.org/mailman/listinfo/gradsusr
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://gradsusr.org/pipermail/gradsusr/attachments/20100519/1eda0c56/attachment.html
>
> ------------------------------
>
> _______________________________________________
> gradsusr mailing list
> gradsusr at gradsusr.org
> http://gradsusr.org/mailman/listinfo/gradsusr
>
>
> End of gradsusr Digest, Vol 3, Issue 41
> ***************************************
>



-- 
-----------------------------------------------------------
Guilherme Martins
Instituto Nacional de Pesquisas Espaciais (INPE)
Centro de Previsão de Tempo e Estudos Climáticos (CPTEC)
Grupo de Modelagem da Atmosfera e Interfaces (GMAI)
Telefone(CP): +55 12 3186-8502
Celular(SJC): +55 12 8152-8580 / +55 12 3208-7276
E-mail: guilherme.martins at inpe.br
E-mail alternativo: jgmsantos at gmail.com
Homepage: http://guilhermemartins.hd1.com.br/
-----------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://gradsusr.org/pipermail/gradsusr/attachments/20100519/f3628a8c/attachment-0003.html 


More information about the gradsusr mailing list