<div dir="ltr">Hi Najib,<div>The errors you are receiving are telling you what is wrong and at what line. You have four syntax errors, the first three being caused as you are using a comma (,) instead of a semi-colon (;) for comments. (Thus, replace each of the three , with a ;.) The fourth syntax error is because you have this at line 120:</div><div><span style="font-size:12.8px">res@tmXBLabelFontHeightF =</span></div><div><span style="font-size:12.8px">You need to specify a value to the right of the equal sign, say, 0.020.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Another error message is due to this line:</span></div><div><span style="font-size:12.8px">ncl 107> res@xyLineColors = (/"black",\"red", "green",\"blue",\ "orange","yellow",\"gray",\"pu</span><span style="font-size:12.8px"><wbr>rple","majenta",\"orchid1","pl</span><span style="font-size:12.8px"><wbr>um1",\"magenta4""pink1",\"maro</span><span style="font-size:12.8px"><wbr>on","lightpink4"/)</span><br style="font-size:12.8px"><span style="font-size:12.8px">fatal:syntax error: line 107 before or near =</span><br style="font-size:12.8px"><span style="font-size:12.8px">res@xyLineColors =</span><br style="font-size:12.8px"><span style="font-size:12.8px">-----------------^</span></div><div><span style="font-size:12.8px">You have a number of unnecessary \ symbols. Remove all of them. Also, change majenta to magenta.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Your final error message tells you explicitly what is wrong:</span></div><div><span style="font-size:12.8px">fatal:Dimension size mismatch on subscript #1, left-hand and right-hand side dimensions do not match</span><br style="font-size:12.8px"><span style="font-size:12.8px">fatal:["Execute.c":8573]:Execu</span><span style="font-size:12.8px"><wbr>te: Error occurred at or near line 88</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Looking at lines 87-88:</span></div><div><span style="font-size:12.8px">ncl 87>  data = new((/15,500/),double)</span><br style="font-size:12.8px"><span style="font-size:12.8px">ncl 88>   data(0,:) = ozone1</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Thus, NCL is telling you that ozone1 is not of size 500. Assuming each of your ozone files are exactly the same length, replace this:</span></div><div><span style="font-size:12.8px">data = new((/15,500/),double)</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">with this:</span></div><div><span style="font-size:12.8px">data = new((/15,dimsizes(ozone1)/),<wbr>typeof(ozone1))</span><span style="font-size:12.8px"><br></span></div><div><br></div><div>Finally, it was pointed out to me by a colleague that you could, if all your ozone files are the same length, use addfiles to read all of the files in at once and join them using code like this:</div><div><br></div><div><div>diri = "/home/model-user/2000/"</div><div>  diri = "./"</div><div>  fili = systemfunc("cd "+diri+"; ls *timeseries*nc")</div><div>  sqsort(fili)                  ; make sure these are in ascending order</div><div>  print(fili)</div><div>  print("----")</div><div>  nfili= dimsizes(fili)</div><div>  print("nfili="+nfili)</div><div>  print("----")</div><div><br></div><div>;---Open all files</div><div>  pthi = diri+fili</div><div>  ListSetType (f, "join")   </div><div>  f    = addfiles(pthi, "r")<br></div><div><br></div><div>;---ozone over all time steps</div><div>  ozone= f[:]->O3_PM</div><div>  ozone@long_name = "O3 volume mixing ratio"    ; mole_fraction_of_ozone_in_air</div><div>  printVarSummary(ozone)                        ; ozone(UTC_time)</div><div>  printMinMax(ozone,0)</div><div>  print("----")</div></div><div><br></div><div><br></div><div>I would recommend only switching to this newer code if your ozone arrays are the same length, and if you fully understand what each of the above lines is doing.</div><div><br></div><div>If you have any further questions please respond to the ncl-talk email list.</div><div>Adam</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 14, 2017 at 8:28 AM,  <span dir="ltr"><<a href="mailto:najib.yusuf@carnasrda.com" target="_blank">najib.yusuf@carnasrda.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
 Thank you Adam for your help and time.<br>
 I did as you said but I received subscripting  error as the ozone variable in all the files is 1 dimensional (UTC_time), I attached one of the file output for data sample. Please see the output below;<br>
<br>
   [model-user@model-vm ~]$ ncl -Q<br>
ncl 0> load "$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_code.ncl"<br>
=<br>
ncl 1> load "$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_csm.ncl"<br>
a<br>
ncl 2><br>
ncl 3> begin<br>
ncl 4> ;-- read the data and define<br>
2<br>
ncl 5><br>
ncl 6> diri = "/home/model-user/2000/"<br>
ncl 7> fil1 = "IAGOS_timeseries_<a href="http://2000040222361353.nc" target="_blank">200004022236<wbr>1353.nc</a>"<br>
ncl 8> fil2 = "IAGOS_timeseries_<a href="http://2000040922544753.nc" target="_blank">200004092254<wbr>4753.nc</a>"<br>
ncl 9> fil3 = "IAGOS_timeseries_<a href="http://2000041122453853.nc" target="_blank">200004112245<wbr>3853.nc</a>"<br>
ncl 10> fil4 = "IAGOS_timeseries_<a href="http://2000041217193053.nc" target="_blank">200004121719<wbr>3053.nc</a>"<br>
ncl 11> fil5 = "IAGOS_timeseries_<a href="http://2000041220041453.nc" target="_blank">200004122004<wbr>1453.nc</a>"<br>
ncl 12> fil6 = "IAGOS_timeseries_<a href="http://2000041222213953.nc" target="_blank">200004122221<wbr>3953.nc</a>"<br>
ncl 13> fil7 = "IAGOS_timeseries_<a href="http://2000050222480853.nc" target="_blank">200005022248<wbr>0853.nc</a>"<br>
<br>
ncl 14> fil8 = "IAGOS_timeseries_<a href="http://2000050723210353.nc" target="_blank">200005072321<wbr>0353.nc</a>"<br>
ncl 15> fil9 = "IAGOS_timeseries_<a href="http://2000051317072253.nc" target="_blank">200005131707<wbr>2253.nc</a>"<br>
ncl 16> fil10 = "IAGOS_timeseries_<a href="http://2000051320135353.nc" target="_blank">200005132013<wbr>5353.nc</a>"<br>
ncl 17> fil11 = "IAGOS_timeseries_<a href="http://2000051322273853.nc" target="_blank">200005132227<wbr>3853.nc</a>"<br>
ncl 18> fil12 = "IAGOS_timeseries_<a href="http://2000053009261035.nc" target="_blank">200005300926<wbr>1035.nc</a>"<br>
ncl 19> fil13 = "IAGOS_timeseries_<a href="http://2000060622395953.nc" target="_blank">200006062239<wbr>5953.nc</a>"<br>
ncl 20> fil14 = "IAGOS_timeseries_<a href="http://2000071122541553.nc" target="_blank">200007112254<wbr>1553.nc</a>"<br>
ncl 21> fil15 = "IAGOS_timeseries_<a href="http://2000071622553453.nc" target="_blank">200007162255<wbr>3453.nc</a>"<br>
ncl 22><br>
ncl 23> f1 = addfile(diri+fil1, "r")<br>
ncl 24> f2 = addfile(diri+fil2, "r")<br>
ncl 25> f3 = addfile(diri+fil3, "r")<br>
ncl 26> f4 = addfile(diri+fil4, "r")<br>
ncl 27> f5 = addfile(diri+fil5, "r")<br>
ncl 28> f6 = addfile(diri+fil6, "r")<br>
ncl 29> f7 = addfile(diri+fil7, "r")<br>
ncl 30> f8 = addfile(diri+fil8, "r")<br>
ncl 31> f9 = addfile(diri+fil9, "r")<br>
ncl 32> f10 = addfile(diri+fil10, "r")<br>
ncl 33> f11 = addfile(diri+fil11, "r")<br>
ncl 34> f12 = addfile(diri+fil12, "r")<br>
ncl 35> f13 = addfile(diri+fil13, "r")<br>
ncl 36> f14 = addfile(diri+fil14, "r")<br>
ncl 37> f15 = addfile(diri+fil15, "r")<br>
ncl 38><br>
ncl 39><br>
ncl 40><br>
ncl 41>   ozone1 = f1->O3_PM<br>
ncl 42>   ozone1@long_name = "O3 volume mixing ratio"<br>
ncl 43>   ozone2 = f2->O3_PM<br>
ncl 44>   ozone2@long_name = "O3 volume mixing ratio"<br>
ncl 45>   ozone3 = f3->O3_PM<br>
ncl 46>   ozone3@long_name = "O3 volume mixing ratio"<br>
ncl 47><br>
ncl 48>   ozone4 = f4->O3_PM<br>
ncl 49>   ozone4@long_name = "O3 volume mixing ratio"<br>
ncl 50>   ozone5 = f5->O3_PM<br>
ncl 51>   ozone5@long_name = "O3 volume mixing ratio"<br>
ncl 52>   ozone6 = f6->O3_PM<br>
ncl 53>   ozone6@long_name = "O3 volume mixing ratio"<br>
ncl 54><br>
ncl 55>   ozone7 = f7->O3_PM<br>
ncl 56>   ozone7@long_name = "O3 volume mixing ratio"<br>
ncl 57>   ozone8 = f8->O3_PM<br>
ncl 58>   ozone8@long_name = "O3 volume mixing ratio"<br>
ncl 59>   ozone9 = f9->O3_PM<br>
ncl 60>   ozone9@long_name = "O3 volume mixing ratio"<br>
ncl 61><br>
ncl 62>   ozone10 = f10->O3_PM<br>
ncl 63>   ozone10@long_name = "O3 volume mixing ratio"<br>
ncl 64>   ozone11 = f11->O3_PM<br>
ncl 65>   ozone11@long_name = "O3 volume mixing ratio"<br>
ncl 66>   ozone12 = f12->O3_PM<br>
ncl 67>   ozone12@long_name = "O3 volume mixing ratio"<br>
ncl 68><br>
ncl 69>   ozone13 = f13->O3_PM<br>
ncl 70>   ozone13@long_name = "O3 volume mixing ratio"<br>
ncl 71>   ozone14 = f14->O3_PM<br>
ncl 72>   ozone14@long_name = "O3 volume mixing ratio"<br>
ncl 73>   ozone15 = f15->O3_PM<br>
ncl 74>   ozone15@long_name = "O3 volume mixing ratio"<br>
ncl 75> ;-----------------------------<wbr>----------------------<br>
ncl 76>   printVarSummary(ozone15)    , just to see summary of one of the variables<br>
fatal:syntax error: line 76 before or near ,<br>
  printVarSummary(ozone15)    ,<br>
------------------------------<wbr>^<br>
<br>
fatal:error in statement<br>
ncl 77><br>
ncl 78>   print ("min/max ozone15 = " + min(ozone15) + "/" + max(ozone15))<br>
ncl 79> ;-----------------------------<wbr>----------------------<br>
ncl 80>   time = ispan (3600,103598,5) , data time in seconds<br>
fatal:syntax error: line 80 before or near ,<br>
  time = ispan (3600,103598,5) ,<br>
------------------------------<wbr>-^<br>
<br>
ncl 81>   long_name = "UTC time"<br>
ncl 82> ;-----------------------------<wbr>-----------------------<br>
ncl 83> ; to plot multiple lines, you must put them into a<br>
ncl 84> ; mulidimensional array<br>
ncl 85> ;-----------------------------<wbr>-----------------------<br>
ncl 86><br>
ncl 87>  data = new((/15,500/),double)<br>
ncl 88>   data(0,:) = ozone1<br>
ncl 89>   data(1,:) = ozone2<br>
ncl 90>   data(2,:) = ozone3<br>
ncl 91>   data(3,:) = ozone4<br>
ncl 92>   data(4,:) = ozone5<br>
ncl 93>   data(5,:) = ozone6<br>
ncl 94>   data(6,:) = ozone7<br>
ncl 95>   data(7,:) = ozone8<br>
ncl 96>   data(8,:) = ozone9<br>
ncl 97>   data(9,:) = ozone10<br>
ncl 98>   data(10,:) = ozone11<br>
ncl 99>   data(11,:) = ozone12<br>
ncl 100>   data(12,:) = ozone13<br>
ncl 101>   data(13,:) = ozone14<br>
ncl 102>   data(14,:) = ozone15<br>
ncl 103><br>
ncl 104>   wks = gsn_open_wks("png", "O3_PM_ 2000_to & fro lagos_Flights")<br>
ncl 105><br>
ncl 106>  res = True<br>
ncl 107>  res@xyExplicitLegendLabels = (/"data1",\"data2","data3",\"d<wbr>ata4"\,"data5",<br>
ncl 107> "data6",\"data7\","data8","dat<wbr>a9"\,"data10","data11"\,"data1<wbr>2","data13",\"data14"/)<br>
ncl 107> res@xyLineColors = (/"black",\"red", "green",\"blue",\ "orange","yellow",\"gray",\"pu<wbr>rple","majenta",\"orchid1","pl<wbr>um1",\"magenta4""pink1",\"maro<wbr>on","lightpink4"/)<br>
fatal:syntax error: line 107 before or near =<br>
res@xyLineColors =<br>
-----------------^<br>
<br>
ncl 107> res@xyDashPatterns = (/0, 5, 2, 1, 3, 2, 1, 5, 2, 0, 5, 2, 4, 2, 3\)<br>
ncl 107> res@xyLineThicknessF = 3<br>
ncl 108> res@tiYAxisString = "O3_PM ppb"<br>
ncl 109> res@tiYAxisFont = 21<br>
ncl 110> res@tiYAxisFontAspectF = 1.3<br>
ncl 111> res@tiYAxisFontHeightF = 0.012<br>
ncl 112> res@tiXAxisString = "Time"<br>
ncl 113> res@tiXAxisFont = 21<br>
ncl 114> res@tiXAxisFontAspectF = 1.3<br>
ncl 115> res@tiXAxisFontHeightF = 0.012<br>
ncl 116> res@tiXAxisOffsetYF = 0.0<br>
ncl 117> res@tiMainOffsetYF = 0.11<br>
ncl 118> res@tiMainString = "Ozone to and fro Lagos Flights 2000"<br>
ncl 119> res@tmXBLabelFontAspectF = 1.3<br>
ncl 120> res@tmXBLabelFontHeightF =<br>
fatal:syntax error: line 120 before or near \n<br>
res@tmXBLabelFontHeightF =<br>
--------------------------^<br>
<br>
ncl 121> res@trYMinF = 10.0<br>
ncl 122> res@trYMaxF = 200.0<br>
ncl 123> res@gsnDraw = Fa<br>
ncl 124> res@gsnFrame = False<br>
ncl 125> res@vpXF = 0.2<br>
ncl 126> ;-- set viewport resources<br>
ncl 127> res@vpYF = 0.6<br>
ncl 128> res@vpWidthF = 0.7<br>
ncl 129> res@pmLegendDisplayMode = "Always"<br>
ncl 130> res@pmLegendWidthF = 0.12 ;-- set legend width<br>
ncl 131> res@pmLegendHeightF = 0.19 ;-- set legend height<br>
ncl 132> res@pmLegendParallelPosF = 0.18 ;-- move legend right<br>
ncl 133> ;-- create plot<br>
ncl 134> plot = gsn_csm_xy(wks,time,data,res)<br>
ncl 135><br>
ncl 136> ;-- draw the plot<br>
ncl 137> draw(plot)<br>
ncl 138> frame(wks)<br>
ncl 139> end<br>
(0)     min/max ozone15 = 2/479<br>
fatal:Dimension size mismatch on subscript #1, left-hand and right-hand side dimensions do not match<br>
fatal:["Execute.c":8573]:Execu<wbr>te: Error occurred at or near line 88<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
On 2017-10-13 14:24, Adam Phillips wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Najib,<br>
As a reminder, always include any error messages that you getting as<br>
that would assist the ncl-talk community with diagnosing the problem.<br>
<br>
You have the following coding:<br>
<br>
data = new((/15,500/),double)<br>
data0 = ozone1<br>
data1 = ozone2<br>
<snip><br>
data14 = ozone15<br>
<br>
You are copying the ozone1 array to a new array named data0, the<br>
ozone2 array to data1, and so on. You are not infilling your data<br>
array.<br>
<br>
Then, you are calling the plotting function like this:<br>
plot = gsn_csm_xy(wks,time,data,res)<br>
<br>
Thus, I am guessing that nothing is being plotted as data is empty.<br>
<br>
Swap this:<br>
<br>
data = new((/15,500/),double)<br>
data0 = ozone1<br>
data1 = ozone2<br>
<snip><br>
data14 = ozone15<br>
<br>
with this:<br>
<br>
data = new((/15,500/),double)<br>
data(0,:) = ozone1<br>
data(1,:) = ozone2<br>
<snip><br>
data(14,:) = ozone15<br>
<br>
If you have any further questions please respond to the ncl-talk email<br>
list.<br>
Adam<br>
<br>
On Fri, Oct 13, 2017 at 4:25 AM, <<a href="mailto:najib.yusuf@carnasrda.com" target="_blank">najib.yusuf@carnasrda.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Dear ncl talk,<br>
<br>
Thank you for your guidance all the time. I am able to plot using<br>
time series. However, I proceeded to modify the script to plot<br>
multiple time series  (15 files) by following the example in<br>
NCL_User_Guide " This example is saved in NUG_multi_timeseries.ncl."<br>
But i am having a problem with multidimensional array because my<br>
files have different sizes. Kindly direct me.<br>
<br>
Attached are the two files.<br>
<br>
Thank you<br>
<br>
Najib<br>
<br>
On 2017-09-27 13:41, Dennis Shea wrote:<br>
You stated:  "I tried solving but couldn't get it"<br>
<br>
Please look at the output from your commands.<br>
<br>
The  output is  for *you* to look at.<br>
<br>
----<br>
<br>
More on David's comment ...<br>
<br>
re: GOLDEN RULE OF DATA PROCESSING... LOOK AT YOUR DATA<br>
<br>
You used:<br>
<br>
var = f->O3_PM(0)   <==== the reads only the 1st value [index (0)<br>
]<br>
<br>
Variable: var<br>
Type: double<br>
Total Size: 8 bytes<br>
1 values           <=== ONE VALUE ... how do you contour<br>
one value?<br>
<br>
---<br>
<br>
The min & max are _FillValue. Look at the output from your script.<br>
<br>
(0)    min/max var = -9999/-9999<br>
---<br>
<br>
Even if you read  the entire *time  series* ... all values are<br>
_FillValue<br>
<br>
var = f->O3_PM    ;   entire series<br>
<br>
printVarSummary(var)<br>
<br>
Variable: var<br>
Type: double<br>
Total Size: 63024 bytes<br>
7878 values<br>
Number of Dimensions: 1<br>
Dimensions and sizes:   [UTC_time | 7878]    <=========<br>
Coordinates:<br>
UTC_time: [70841..106359]<br>
Number Of Attributes: 8<br>
standard_name :       mole_fraction_of_ozone_in_air<br>
long_name :   Ozone mixing ratio<br>
comment :     Measured by MOZAIC package<br>
units :       0.000000001<br>
missing_value :       -9999<br>
_FillValue :  -9999<br>
scale_factor :         1<br>
availability :         0<br>
<br>
print ("min/max var = " + min(var) + "/" + max(var))<br>
(0)     MIN/MAX VAR = -9999/-9999<br>
<br>
---<br>
<br>
It should be plotted as a time series not as a contour plot.<br>
<br>
On Wed, Sep 27, 2017 at 10:34 AM, David Brown <<a href="mailto:dbrown@ucar.edu" target="_blank">dbrown@ucar.edu</a>><br>
wrote:<br>
<br>
You will never be able to contour the O3_PM variable from this file<br>
because it contains only fill values:<br>
<br>
ncl 0> f = addfile("IAGOS_timeseries_<a href="http://2013101819404151.nc" target="_blank">2013<wbr>101819404151.nc</a> [1]<br>
[1]","r")<br>
ncl 1> printMinMax(f->O3_PM,0)<br>
(0) Ozone mixing ratio (0.000000001) : min=-9999   max=-9999<br>
<br>
Presumably this is what the attribute "availability" means: no valid<br>
values for this variable.<br>
<br>
Also for some reason your variable "var" contains only a single<br>
value.<br>
There is no way to make a contour plot with only one point even if<br>
it<br>
were a valid value. Since the only dimension in the file is a time<br>
dimension, maybe this data set would be better displayed as a time<br>
series x-y plot.<br>
-dave<br>
<br>
On Wed, Sep 27, 2017 at 8:16 AM,  <<a href="mailto:najib.yusuf@carnasrda.com" target="_blank">najib.yusuf@carnasrda.com</a>> wrote:<br>
<br>
Dear Sirs,<br>
<br>
I try to plot contour map of O3_PM variable from .nc IAGOS file<br>
but I am<br>
getting strange errors, I tried solving but couldn't get it.<br>
Kindly assist<br>
to guide. Attached is the file and the IAGOS.ncl as script.Thank<br>
you.<br>
<br>
The summary of the print var is;<br>
<br>
Variable: var<br>
Type: double<br>
Total Size: 8 bytes<br>
1 values<br>
Number of Dimensions: 1<br>
Dimensions and sizes:   [UTC_time | 1]<br>
Coordinates:<br>
Number Of Attributes: 9<br>
UTC_time :    70841<br>
standard_name :       mole_fraction_of_ozone_in_air<br>
long_name :   Ozone mixing ratio<br>
comment :     Measured by MOZAIC package<br>
units :       0.000000001<br>
missing_value :       -9999<br>
_FillValue :  -9999<br>
scale_factor :         1<br>
availability :         0<br>
<br>
Variable: var<br>
Type: double<br>
Total Size: 8 bytes<br>
1 values<br>
Number of Dimensions: 1<br>
Dimensions and sizes:   [UTC_time | 1]<br>
Coordinates:<br>
Number Of Attributes: 9<br>
UTC_time :    70841<br>
standard_name :       mole_fraction_of_ozone_in_air<br>
long_name :   Ozone mixing ratio<br>
comment :     Measured by MOZAIC package<br>
units :       0.000000001<br>
missing_value :       -9999<br>
_FillValue :  -9999<br>
scale_factor :         1<br>
availability :         0<br>
(0)     -9999<br>
(0)     min/max var = -9999/-9999<br>
fatal:MeshScalarFieldInitializ<wbr>e: Insufficient number of elements<br>
in<br>
sfDataArray<br>
fatal:Unable to initialize layer-Can't Create<br>
fatal:Unable to access object with id:-4<br>
fatal:Unable to access object with id:-4<br>
warning:Unable to add DataItem "(null)" to DataList<br>
"cnScalarFieldData"<br>
fatal:CompileDataList:DataList has no valid members<br>
warning:ContourPlotSetValues: cnLevelSpacingF value causes level<br>
count to<br>
exceed maximum: using AUTOMATICLEVELS mode<br>
ncl 48><br>
<br>
Thank you<br>
<br>
Najib<br>
<br>
______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a> [2] [2]<br>
<br>
______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a> [2] [2]<br>
</blockquote>
<br>
Links:<br>
------<br>
[1] <a href="http://2013101819404151.nc" rel="noreferrer" target="_blank">http://2013101819404151.nc</a><br>
[2] <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a> [2]<br>
<br>
______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a> [2]<br>
<br>
--<br>
<br>
Adam Phillips<br>
Associate Scientist,  Climate and Global Dynamics Laboratory, NCAR<br>
<br>
<a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a> [3]   <a href="tel:303-497-1726" value="+13034971726" target="_blank">303-497-1726</a> [4]<br>
<br>
 [5]<br>
<br>
Links:<br>
------<br>
[1] <a href="http://2013101819404151.nc" rel="noreferrer" target="_blank">http://2013101819404151.nc</a><br>
[2] <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a><br>
[3] <a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">http://www.cgd.ucar.edu/staff/<wbr>asphilli/</a><br>
[4] tel:(303)%20497-1726<br>
[5] <a href="http://www.cgd.ucar.edu/staff/asphilli" rel="noreferrer" target="_blank">http://www.cgd.ucar.edu/staff/<wbr>asphilli</a><br>
</blockquote>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</div>