<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div style="RIGHT: auto"><SPAN style="RIGHT: auto">Dear Mary,<VAR id=yui-ie-cursor></VAR></SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"></SPAN>&nbsp;</div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto">In my home folder there are three files as ".bashrc"&nbsp;&nbsp; ".bash_profile" and ".profile". In the descrption of .profile that if ".bash_profile" exist, then ".profile" doesn't work. </SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"></SPAN>&nbsp;</div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto">When do "source .bash_profile", it will also run ".bashrc". If only run ".bashrc", it is not complete. So I have to always manually run ".bash_profile". I still wonder why ".bash_profile" did not run automatically. </SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"></SPAN>&nbsp;</div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto">-----------my ".bash_profile" as:-------------</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># To the extent possible under law, the author(s) have dedicated all<BR># copyright and related and neighboring rights to this software to the<BR># public domain worldwide. This software is distributed without any warranty.<BR># You should have received a copy of the CC0 Public Domain Dedication along<BR># with this software.<BR># If not, see &lt;<A href="http://creativecommons.org/publicdomain/zero/1.0/">http://creativecommons.org/publicdomain/zero/1.0/</A>&gt;.</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># base-files version 4.1-1</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># ~/.bash_profile: executed by bash(1) for login shells.</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># The latest version as installed by the Cygwin Setup program can<BR># always be found at /etc/defaults/etc/skel/.bash_profile</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># Modifying /etc/skel/.bash_profile directly will prevent<BR># setup from updating it.</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># The copy in your home directory (~/.bash_profile) is yours, please<BR># feel free to customise it to create a shell<BR># environment to your liking.&nbsp; If you feel a change<BR># would be benifitial to all, please feel free to send<BR># a patch to the cygwin mailing list.</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># User dependent .bash_profile file</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># source the users bashrc if it exists<BR>if [ -f "${HOME}/.bashrc" ] ; then<BR>&nbsp; source "${HOME}/.bashrc"<BR>fi</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto">source /home/ychen/.bashrc</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># Set PATH so it includes user's private bin if it exists<BR># if [ -d "${HOME}/bin" ] ; then<BR>#&nbsp;&nbsp; PATH="${HOME}/bin:${PATH}"<BR># fi</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># Set MANPATH so it includes users' private man if it exists<BR># if [ -d "${HOME}/man" ]; then<BR>#&nbsp;&nbsp; MANPATH="${HOME}/man:${MANPATH}"<BR># fi</SPAN></div>
<div style="BACKGROUND-COLOR: transparent; FONT-STYLE: normal; FONT-FAMILY: times new roman, new york, times, serif; COLOR: rgb(0,0,0); FONT-SIZE: 16px; RIGHT: auto"><SPAN style="RIGHT: auto"># Set INFOPATH so it includes users' private info if it exists<BR># if [ -d "${HOME}/info" ]; then<BR>#&nbsp;&nbsp; INFOPATH="${HOME}/info:${INFOPATH}"<BR># fi<BR></SPAN></div>
<div><BR></div>
<DIV style="FONT-FAMILY: times new roman, new york, times, serif; FONT-SIZE: 12pt">
<DIV style="FONT-FAMILY: times new roman, new york, times, serif; FONT-SIZE: 12pt">
<DIV dir=ltr><FONT size=2 face=Arial>
<DIV style="BORDER-BOTTOM: #ccc 1px solid; BORDER-LEFT: #ccc 1px solid; PADDING-BOTTOM: 0px; LINE-HEIGHT: 0; MARGIN: 5px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; HEIGHT: 0px; FONT-SIZE: 0px; BORDER-TOP: #ccc 1px solid; BORDER-RIGHT: #ccc 1px solid; PADDING-TOP: 0px" class=hr contentEditable=false readonly="true"></DIV><B><SPAN style="FONT-WEIGHT: bold">From:</SPAN></B> Mary Haley &lt;haley@ucar.edu&gt;<BR><B><SPAN style="FONT-WEIGHT: bold">To:</SPAN></B> Mark Chan &lt;cym263@yahoo.com&gt; <BR><B><SPAN style="FONT-WEIGHT: bold">Cc:</SPAN></B> "ncl-install@ucar.edu" &lt;ncl-install@ucar.edu&gt; <BR><B><SPAN style="FONT-WEIGHT: bold">Sent:</SPAN></B> Saturday, September 15, 2012 12:10 AM<BR><B><SPAN style="FONT-WEIGHT: bold">Subject:</SPAN></B> Re: [ncl-install] [ncl-talk] NCL install into Cygwin<BR></FONT></DIV><BR>Mark,<BR><BR>It may be a different file, like ".bashrc" or ".profile".&nbsp; You can see if you have these files with:<BR><BR>ls -a
 ~/.<BR><BR>I've seen cases where users had one or more of these files, and usually it's the .profile file that is executed automatically.<BR><BR>--Mary<BR><BR>On Sep 14, 2012, at 1:02 AM, Mark Chan wrote:<BR><BR>&gt; <BR>&gt; Dear NCL developer,<BR>&gt;&nbsp; <BR>&gt; I would like to use NCL in cygwin. I want to ask why the ".bash_profile" was not executed automatically when I start up cygwin ( I have to do as "source .bash_profile" manually).<BR>&gt; I know this is a linux question but I would appreciate it if you could give any help.<BR>&gt;&nbsp; <BR>&gt; With my best regards,<BR>&gt; Mark <BR>&gt; <BR>&gt; ----- Forwarded Message -----<BR>&gt; From: Mary Haley &lt;<A href="mailto:haley@ucar.edu" ymailto="mailto:haley@ucar.edu">haley@ucar.edu</A>&gt;<BR>&gt; To: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt; <BR>&gt; Cc: NCL Helpline &lt;<A href="mailto:ncl-talk@ucar.edu"
 ymailto="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</A>&gt; <BR>&gt; Sent: Wednesday, September 12, 2012 4:08 AM<BR>&gt; Subject: Re: [ncl-talk] NCL install into Cygwin<BR>&gt; <BR>&gt; Dear Mark,<BR>&gt; <BR>&gt; In the future, please post NCL installation questions to <A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A> (<A href="http://mailman.ucar.edu/mailman/listinfo/ncl-install" target=_blank>http://mailman.ucar.edu/mailman/listinfo/ncl-install</A>).<BR>&gt; <BR>&gt; It looks like your NCARG_ROOT environment variable is not set, or is not set correctly. For information on setting NCARG_ROOT, read:<BR>&gt; <BR>&gt; <A href="http://www.ncl.ucar.edu/Download/install.shtml#SetNCARG_ROOT" target=_blank>http://www.ncl.ucar.edu/Download/install.shtml#SetNCARG_ROOT</A><BR>&gt; <BR>&gt; --Mary<BR>&gt; <BR>&gt; On Sep 10, 2012, at 2:27 AM, Mark Chan wrote:<BR>&gt; <BR>&gt; &gt; <BR>&gt; &gt; Dear NCL
 developer,<BR>&gt; &gt; <BR>&gt; &gt; I have installed Cygwin into my MS windows and also intall NCL into it. However, when I do a run test, got the error message as below.<BR>&gt; &gt; I found I don"t have "ncarg" folder in the path as "$NCARG_ROOT/lib/ncarg". Could you please give some suggestion?<BR>&gt; &gt; <BR>&gt; &gt; Thanks a lot!<BR>&gt; &gt; Mark <BR>&gt; &gt; <BR>&gt; &gt; -------NCL run test-------------------------------------------<BR>&gt; &gt; $ ncl map_only_1.ncl<BR>&gt; &gt;&nbsp; Copyright (C) 1995-2011 - All Rights Reserved<BR>&gt; &gt;&nbsp; University Corporation for Atmospheric Research<BR>&gt; &gt;&nbsp; NCAR Command Language Version 6.0.0<BR>&gt; &gt;&nbsp; The use of this software is governed by a License Agreement.<BR>&gt; &gt;&nbsp; See <A href="http://www.ncl.ucar.edu/" target=_blank>http://www.ncl.ucar.edu/</A> for more details.<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:Unable to
 load System Resource File (null)<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:WorkstationClassInitialize:Unable to access rgb color database - named colors unsupported:[errno=2]<BR>&gt; &gt; NDV_COLORMAP_PATH environment variable not set:<BR>&gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; defaulting to .:$NCARG_ROOT/lib/ncarg/colormaps<BR>&gt; &gt; warning:["Palette.c":1527]:NhlLoadColormapFiles: Invalid directory encountered in colormap path specification<BR>&gt; &gt; fatal:Could not open
 ($NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl)<BR>&gt; &gt; fatal:error at line 9 in file map_only_1.ncl<BR>&gt; &gt; <BR>&gt; &gt; ---------NCL code-------------<BR>&gt; &gt; ;================================================;<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"<BR>&gt; &gt; ; ================================================;<BR>&gt; &gt; begin<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; wks&nbsp; = gsn_open_wks("ps","maponly")&nbsp; &nbsp; ; open a ps file<BR>&gt; &gt;&nbsp; plot = gsn_csm_map_ce(wks,False)&nbsp; &nbsp; &nbsp; &nbsp; ; draw global map<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; end<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; From: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; &gt; Subject: NCL install into Cygwin<BR>&gt; &gt; Date: September 8,
 2012 7:33:19 PM MDT<BR>&gt; &gt; To: "<A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>" &lt;<A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>&gt;<BR>&gt; &gt; Reply-To: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Dear NCL developer,<BR>&gt; &gt; <BR>&gt; &gt; I have installed Cygwin into my MS windows and also intall NCL into it. However, when I do a run test, got the error message as below.<BR>&gt; &gt; I found I don"t have "ncarg" folder in the path as "$NCARG_ROOT/lib/ncarg". Could you please give some suggestion?<BR>&gt; &gt; <BR>&gt; &gt; Thanks a lot!<BR>&gt; &gt; Mark <BR>&gt; &gt; <BR>&gt; &gt; -------NCL run test-------------------------------------------<BR>&gt; &gt; $ ncl map_only_1.ncl<BR>&gt; &gt;&nbsp; Copyright (C) 1995-2011 - All
 Rights Reserved<BR>&gt; &gt;&nbsp; University Corporation for Atmospheric Research<BR>&gt; &gt;&nbsp; NCAR Command Language Version 6.0.0<BR>&gt; &gt;&nbsp; The use of this software is governed by a License Agreement.<BR>&gt; &gt;&nbsp; See <A href="http://www.ncl.ucar.edu/" target=_blank>http://www.ncl.ucar.edu/</A> for more details.<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:Unable to load System Resource File (null)<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt;
 warning:WorkstationClassInitialize:Unable to access rgb color database - named colors unsupported:[errno=2]<BR>&gt; &gt; NDV_COLORMAP_PATH environment variable not set:<BR>&gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; defaulting to .:$NCARG_ROOT/lib/ncarg/colormaps<BR>&gt; &gt; warning:["Palette.c":1527]:NhlLoadColormapFiles: Invalid directory encountered in colormap path specification<BR>&gt; &gt; fatal:Could not open ($NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl)<BR>&gt; &gt; fatal:error at line 9 in file map_only_1.ncl<BR>&gt; &gt; <BR>&gt; &gt; ---------NCL code-------------<BR>&gt; &gt; ;================================================;<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"<BR>&gt; &gt; ; ================================================;<BR>&gt; &gt; begin<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; wks&nbsp; = gsn_open_wks("ps","maponly")&nbsp; &nbsp; ; open a ps
 file<BR>&gt; &gt;&nbsp; plot = gsn_csm_map_ce(wks,False)&nbsp; &nbsp; &nbsp; &nbsp; ; draw global map<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; end<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; ncl-talk mailing list<BR>&gt; &gt; List instructions, subscriber options, unsubscribe:<BR>&gt; &gt; <A href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target=_blank>http://mailman.ucar.edu/mailman/listinfo/ncl-talk</A><BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; From: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; Subject: Fw: [ncl-talk] NCL install into Cygwin<BR>&gt; Date: September 13, 2012 8:53:00 PM MDT<BR>&gt; To: "<A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>" &lt;<A href="mailto:ncl-install@ucar.edu"
 ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>&gt;<BR>&gt; Reply-To: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; <BR>&gt; <BR>&gt; Dear NCL developer,<BR>&gt;&nbsp; <BR>&gt; I would like to use NCL in cygwin. I want to ask why the ".bash_profile" was not executed automatically when I start up cygwin ( I have to do as "source .bash_profile" manually).<BR>&gt; I know this is a linux question but I would appreciate it if you could give any help.<BR>&gt;&nbsp; <BR>&gt; With my best regards,<BR>&gt; Mark <BR>&gt; <BR>&gt; ----- Forwarded Message -----<BR>&gt; From: Mary Haley &lt;<A href="mailto:haley@ucar.edu" ymailto="mailto:haley@ucar.edu">haley@ucar.edu</A>&gt;<BR>&gt; To: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt; <BR>&gt; Cc: NCL Helpline &lt;<A href="mailto:ncl-talk@ucar.edu"
 ymailto="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</A>&gt; <BR>&gt; Sent: Wednesday, September 12, 2012 4:08 AM<BR>&gt; Subject: Re: [ncl-talk] NCL install into Cygwin<BR>&gt; <BR>&gt; Dear Mark,<BR>&gt; <BR>&gt; In the future, please post NCL installation questions to <A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A> (<A href="http://mailman.ucar.edu/mailman/listinfo/ncl-install" target=_blank>http://mailman.ucar.edu/mailman/listinfo/ncl-install</A>).<BR>&gt; <BR>&gt; It looks like your NCARG_ROOT environment variable is not set, or is not set correctly. For information on setting NCARG_ROOT, read:<BR>&gt; <BR>&gt; <A href="http://www.ncl.ucar.edu/Download/install.shtml#SetNCARG_ROOT" target=_blank>http://www.ncl.ucar.edu/Download/install.shtml#SetNCARG_ROOT</A><BR>&gt; <BR>&gt; --Mary<BR>&gt; <BR>&gt; On Sep 10, 2012, at 2:27 AM, Mark Chan wrote:<BR>&gt; <BR>&gt; &gt; <BR>&gt; &gt; Dear NCL
 developer,<BR>&gt; &gt; <BR>&gt; &gt; I have installed Cygwin into my MS windows and also intall NCL into it. However, when I do a run test, got the error message as below.<BR>&gt; &gt; I found I don"t have "ncarg" folder in the path as "$NCARG_ROOT/lib/ncarg". Could you please give some suggestion?<BR>&gt; &gt; <BR>&gt; &gt; Thanks a lot!<BR>&gt; &gt; Mark <BR>&gt; &gt; <BR>&gt; &gt; -------NCL run test-------------------------------------------<BR>&gt; &gt; $ ncl map_only_1.ncl<BR>&gt; &gt;&nbsp; Copyright (C) 1995-2011 - All Rights Reserved<BR>&gt; &gt;&nbsp; University Corporation for Atmospheric Research<BR>&gt; &gt;&nbsp; NCAR Command Language Version 6.0.0<BR>&gt; &gt;&nbsp; The use of this software is governed by a License Agreement.<BR>&gt; &gt;&nbsp; See <A href="http://www.ncl.ucar.edu/" target=_blank>http://www.ncl.ucar.edu/</A> for more details.<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:Unable to
 load System Resource File (null)<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:WorkstationClassInitialize:Unable to access rgb color database - named colors unsupported:[errno=2]<BR>&gt; &gt; NDV_COLORMAP_PATH environment variable not set:<BR>&gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; defaulting to .:$NCARG_ROOT/lib/ncarg/colormaps<BR>&gt; &gt; warning:["Palette.c":1527]:NhlLoadColormapFiles: Invalid directory encountered in colormap path specification<BR>&gt; &gt; fatal:Could not open
 ($NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl)<BR>&gt; &gt; fatal:error at line 9 in file map_only_1.ncl<BR>&gt; &gt; <BR>&gt; &gt; ---------NCL code-------------<BR>&gt; &gt; ;================================================;<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"<BR>&gt; &gt; ; ================================================;<BR>&gt; &gt; begin<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; wks&nbsp; = gsn_open_wks("ps","maponly")&nbsp; &nbsp; ; open a ps file<BR>&gt; &gt;&nbsp; plot = gsn_csm_map_ce(wks,False)&nbsp; &nbsp; &nbsp; &nbsp; ; draw global map<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; end<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; From: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; &gt; Subject: NCL install into Cygwin<BR>&gt; &gt; Date: September 8,
 2012 7:33:19 PM MDT<BR>&gt; &gt; To: "<A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>" &lt;<A href="mailto:ncl-install@ucar.edu" ymailto="mailto:ncl-install@ucar.edu">ncl-install@ucar.edu</A>&gt;<BR>&gt; &gt; Reply-To: Mark Chan &lt;<A href="mailto:cym263@yahoo.com" ymailto="mailto:cym263@yahoo.com">cym263@yahoo.com</A>&gt;<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Dear NCL developer,<BR>&gt; &gt; <BR>&gt; &gt; I have installed Cygwin into my MS windows and also intall NCL into it. However, when I do a run test, got the error message as below.<BR>&gt; &gt; I found I don"t have "ncarg" folder in the path as "$NCARG_ROOT/lib/ncarg". Could you please give some suggestion?<BR>&gt; &gt; <BR>&gt; &gt; Thanks a lot!<BR>&gt; &gt; Mark <BR>&gt; &gt; <BR>&gt; &gt; -------NCL run test-------------------------------------------<BR>&gt; &gt; $ ncl map_only_1.ncl<BR>&gt; &gt;&nbsp; Copyright (C) 1995-2011 - All
 Rights Reserved<BR>&gt; &gt;&nbsp; University Corporation for Atmospheric Research<BR>&gt; &gt;&nbsp; NCAR Command Language Version 6.0.0<BR>&gt; &gt;&nbsp; The use of this software is governed by a License Agreement.<BR>&gt; &gt;&nbsp; See <A href="http://www.ncl.ucar.edu/" target=_blank>http://www.ncl.ucar.edu/</A> for more details.<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt; warning:Unable to load System Resource File (null)<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; fatal:GetSysAppDir:Unable to get a default value for the system App Resource directory<BR>&gt; &gt; warning:["Resources.c":734]:Unable to set appSysDir to default value - Using NULL<BR>&gt; &gt; warning:Unable to Get System Resource File Name?<BR>&gt; &gt;
 warning:WorkstationClassInitialize:Unable to access rgb color database - named colors unsupported:[errno=2]<BR>&gt; &gt; NDV_COLORMAP_PATH environment variable not set:<BR>&gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; defaulting to .:$NCARG_ROOT/lib/ncarg/colormaps<BR>&gt; &gt; warning:["Palette.c":1527]:NhlLoadColormapFiles: Invalid directory encountered in colormap path specification<BR>&gt; &gt; fatal:Could not open ($NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl)<BR>&gt; &gt; fatal:error at line 9 in file map_only_1.ncl<BR>&gt; &gt; <BR>&gt; &gt; ---------NCL code-------------<BR>&gt; &gt; ;================================================;<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"<BR>&gt; &gt; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"<BR>&gt; &gt; ; ================================================;<BR>&gt; &gt; begin<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; wks&nbsp; = gsn_open_wks("ps","maponly")&nbsp; &nbsp; ; open a ps
 file<BR>&gt; &gt;&nbsp; plot = gsn_csm_map_ce(wks,False)&nbsp; &nbsp; &nbsp; &nbsp; ; draw global map<BR>&gt; &gt; <BR>&gt; &gt;&nbsp; end<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; ncl-talk mailing list<BR>&gt; &gt; List instructions, subscriber options, unsubscribe:<BR>&gt; &gt; <A href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target=_blank>http://mailman.ucar.edu/mailman/listinfo/ncl-talk</A><BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; _______________________________________________<BR>&gt; ncl-install mailing list<BR>&gt; List instructions, subscriber options, unsubscribe:<BR>&gt; <A href="http://mailman.ucar.edu/mailman/listinfo/ncl-install" target=_blank>http://mailman.ucar.edu/mailman/listinfo/ncl-install</A><BR><BR><BR><BR></DIV></DIV></div></body></html>