Re: ncl-talk Digest, Vol 63, Issue 32

From: Mary Haley <haley_at_nyahnyahspammersnyahnyah>
Date: Tue, 24 Feb 2009 21:39:55 -0700

Hi all,

I know everybody is getting anxious for V5.1.0, and believe me, I'm
more anxious than all of you put together! :-)

I have the final round of binaries made, but unfortunately I'm away
from my office and can't do the final round of testing just yet.

Qing Bao, I'll email you offline with information.

--Mary

On Feb 24, 2009, at 12:35 AM, Qing BAO wrote:

> Hello,
>
> I'd like to try some new functions in the coming version of NCL.Is
> it possible for me to get 5.1.0 beta version? Or is it sure to be
> released at the end of this month as it's said in the websites?
>
> Thanks!
>
> Best,
>
> Qing Bao
>
> -------------------------------------------------------------
> 发件人:ncl-talk-request
> 发送日期:2009-02-24 02:25:01
> 收件人:ncl-talk
> 抄送:
> 主题:ncl-talk Digest, Vol 63, Issue 32
>
> Send ncl-talk mailing list submissions to
> ncl-talk_at_ucar.edu
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
> or, via email, send a message with subject or body 'help' to
> ncl-talk-request_at_ucar.edu
>
> You can reach the person managing the list at
> ncl-talk-owner_at_ucar.edu
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ncl-talk digest..."
>
>
> Today's Topics:
>
> 1. mpMinLonF around 0 degrees (Patrick Reuter)
> 2. Help - grep SYSTEM_INCLUDE Makefile (Vijay)
> 3. Re: mpMinLonF around 0 degrees (Adam Phillips)
> 4. wrf_dbz/version 5.1.0 on bluefire (jwsmith_at_ucar.edu)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 23 Feb 2009 00:12:09 +0100
> From: "Patrick Reuter" <preuter64_at_yahoo.de>
> Subject: [ncl-talk] mpMinLonF around 0 degrees
> To: "ncl forum" <ncl-talk_at_ucar.edu>
> Message-ID: <20090223001209.927532yuo9b4z6ix_at_webmail.labri.fr>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Dear users,
>
> I have a problem to configure a domain where the mpMinLonF is negative
> (degrees west), and the mpMaxLonF is positive (degrees east): when
> this is the case, the map entire world map is drawn.
>
> I read data in with "fbinrecread", and configure the longitude as
> follows
>
> lon = ispan(0,480,1)*0.05 -6.
> lon!0 = "lon"
> lon_at_long_name = "longitude"
> lon_at_units = "degrees_east"
>
> Then, when I use
>
> res_at_mpMinLonF = -6.
> res_at_mpMaxLonF = 18
>
> , the entire map of the world is drawn (in horizontal direction).
>
> However, for
>
> res_at_mpMinLonF = -6.
> res_at_mpMaxLonF = 0
>
> or
>
>
> res_at_mpMinLonF = 0.
> res_at_mpMaxLonF = 18
>
> everything is fine.
>
> I also tried to set the area via mpLeftCornerLonF and
> mpRightCornerLonF with the limit mode set to corners, but I still get
> the entire world map drawn.
>
> In the attached image, you can see that the x-axis is set to -6 / 18,
> but the entire world is drawn.
>
> Hope my question is clear.
>
> I would appreciate any hint!
>
> Thanks
> Patrick
>
>
>
>
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: strangeNCL.PNG
> Type: image/png
> Size: 13609 bytes
> Desc: not available
> Url : http://mailman.ucar.edu/pipermail/ncl-talk/attachments/
> 20090223/edcad4f7/attachment.png
>
> ------------------------------
>
> Message: 2
> Date: Mon, 23 Feb 2009 16:07:47 +0530
> From: Vijay <bhaskar.bvijay_at_gmail.com>
> Subject: [ncl-talk] Help - grep SYSTEM_INCLUDE Makefile
> To: ncl-talk_at_ucar.edu
> Message-ID:
> <32a24de80902230237y5471c9afp589e9f8fc7b94a6e_at_mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi,
>
> In the customization of NCL build environment,
> * *Test if your system is recognized by NCL build environment*
> Before you try to build NCL, you need to quickly check if
> your system
> will be recognized by the NCL build environment. Type:
> cd $NCARG/config
> ./ymake
> This thing is working. But in the second * *Get name of
> configuration file*
> grep SYSTEM_INCLUDE Makefile
> but it is giving the following error message
> grep: Makefile: No such file or directory
> Now what can I do.
>
> Regards
> B.Vijay Bhaskar
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: http://mailman.ucar.edu/pipermail/ncl-talk/attachments/
> 20090223/cea6363d/attachment.html
>
> ------------------------------
>
> Message: 3
> Date: Mon, 23 Feb 2009 09:56:59 -0700
> From: Adam Phillips <asphilli_at_cgd.ucar.edu>
> Subject: Re: [ncl-talk] mpMinLonF around 0 degrees
> To: Patrick Reuter <preuter64_at_yahoo.de>
> Cc: ncl forum <ncl-talk_at_ucar.edu>
> Message-ID: <49A2D55B.2010607_at_cgd.ucar.edu>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Patrick,
>
> Whenever your mpMinLonF setting is < 0, and your mpMaxLonF setting
> is >
> 0, you need to set mpCenterLonF..
>
> res_at_mpMinLonF = -6.
> res_at_mpMaxLonF = 18
> res_at_mpCenterLonF = (res_at_mpMinLonF+res_at_mpMaxLonF)/2.
>
> http://www.ncl.ucar.edu/Document/Graphics/Resources/
> mp.shtml#mpCenterLonF
> Adam
>
> Patrick Reuter wrote:
>> Dear users,
>>
>> I have a problem to configure a domain where the mpMinLonF is
>> negative
>> (degrees west), and the mpMaxLonF is positive (degrees east): when
>> this
>> is the case, the map entire world map is drawn.
>>
>> I read data in with "fbinrecread", and configure the longitude as
>> follows
>>
>> lon = ispan(0,480,1)*0.05 -6.
>> lon!0 = "lon"
>> lon_at_long_name = "longitude"
>> lon_at_units = "degrees_east"
>>
>> Then, when I use
>>
>> res_at_mpMinLonF = -6.
>> res_at_mpMaxLonF = 18
>>
>> , the entire map of the world is drawn (in horizontal direction).
>>
>> However, for
>>
>> res_at_mpMinLonF = -6.
>> res_at_mpMaxLonF = 0
>>
>> or
>>
>>
>> res_at_mpMinLonF = 0.
>> res_at_mpMaxLonF = 18
>>
>> everything is fine.
>>
>> I also tried to set the area via mpLeftCornerLonF and
>> mpRightCornerLonF
>> with the limit mode set to corners, but I still get the entire
>> world map
>> drawn.
>>
>> In the attached image, you can see that the x-axis is set to -6 / 18,
>> but the entire world is drawn.
>>
>> Hope my question is clear.
>>
>> I would appreciate any hint!
>>
>> Thanks
>> Patrick
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> ---
>>
>>
>> ---------------------------------------------------------------------
>> ---
>>
>> _______________________________________________
>> ncl-talk mailing list
>> List instructions, subscriber options, unsubscribe:
>> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
> --
> --------------------------------------------------------------
> Adam Phillips asphilli_at_ucar.edu
> National Center for Atmospheric Research tel: (303) 497-1726
> ESSL/CGD/CAS fax: (303) 497-1333
> P.O. Box 3000
> Boulder, CO 80307-3000 http://www.cgd.ucar.edu/cas/asphilli
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 23 Feb 2009 11:24:50 -0700
> From: jwsmith_at_ucar.edu
> Subject: [ncl-talk] wrf_dbz/version 5.1.0 on bluefire
> To: ncl-talk_at_ucar.edu
> Message-ID: <20090223112450.0f0whsgge8ggsw8w_at_web3.acd.ucar.edu>
> Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes";
> format="flowed"
>
> Hello All,
>
> I attempted to load NCL Version 5.1.0 up to /ptmp/jwsmith with the
> process below.
> ______________________________________________________________________
> ______
> Version 5.1.0 is still in beta testing. You can try it now by doing
> the following:
>
> - Set the environment variable NCARG_ROOT to /contrib/ncl-5.0.1-beta
>
> setenv NCARG_ROOT /contrib/ncl-5.0.1-beta
>
> or
>
> export NCARG_ROOT= /contrib/ncl-5.0.1-beta
>
> - Make sure you do not have NCARG_LIB set to anything.
>
> - Make sure /contrib/ncl-5.0.1-beta/bin is on your search path
> before /usr/local/bin.
>
> set path=($NCARG_ROOT/bin $path)
>
> or
>
> export PATH=$NCARG_ROOT/bin:$PATH
>
>
> Once you do the above, you can type:
>
> ncl -V
>
> to verify that you are running 5.0.1-beta
>
> Note that the version is "5.0.1-beta", but this will be renamed to
> 5.1.0 at release time.
> ______________________________________________________________________
> _______
>
>
> Mary Haley sent me this process 2 months ago in response to a question
> I had about reflectivity. I have had trouble getting the 5.1.0-beta
> to work. In this process, I was not sure what you meant by - Make
> sure you do not have NCARG_LIB set to anything.
>
> Also, in the case that I cannot get v5.1.0 to work, are there any
> scripts that calculate reflectivity in v5.0?
>
> Thank you,
>
> Jonathan
>
>
>
> ----------------------------------------------------------------
> This message was sent using IMP, the Internet Messaging Program.
>
>
>
> ------------------------------
>
> _______________________________________________
> ncl-talk mailing list
> ncl-talk_at_ucar.edu
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
>
> End of ncl-talk Digest, Vol 63, Issue 32
> ****************************************
>
> _______________________________________________
> ncl-talk mailing list
> List instructions, subscriber options, unsubscribe:
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk

_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Tue Feb 24 2009 - 21:39:55 MST

This archive was generated by hypermail 2.2.0 : Tue Mar 03 2009 - 09:53:57 MST