<div dir="ltr"><div><div>I think you must examine your files more carefully. They all have different 'UTC_time' lengths. The user must program such that this is accomodated.<br><br></div>Attached are two NCL scripts. You should look carefully at both attached scripts. The "Multiple_timeseries_IAGOSMOZAIC_Lagos_2000.ncl" script contains<br><br></div>[SNIP]<br>  diri = "/home/model-user/2000/"<br>  fili = <b><span style="color:rgb(0,0,255)">systemfunc(</span></b>"cd "+diri+"; ls *timeseries*nc")<br>  nfili= <b><span style="color:rgb(0,0,255)">dimsizes</span></b>(fili)<br><br><div>  pthi = diri+fili<br>  f    = <b><span style="color:rgb(0,0,255)">addfiles</span></b>(pthi, "r")    ; <=== READ documentation<br><br>;---Every file has a *different* number of time steps<br>;---Find max number of time steps<br>  NTIM = 0<br>  do nf=0,nfili-1<br>     NTIM = <span style="color:rgb(0,0,255)"><b>max</b><i>(</i></span>  (/NTIM, <span style="color:rgb(0,0,255)"><b>dimsizes</b></span>(f[nf]->UTC_time) /)  )<br>  end do<br>  print("NTIM="+NTIM)<br>  print("----")<br><br>;---Create 'super' array; fill with values<br>  data = <span style="color:rgb(0,0,255)"><b>new</b></span>((/nfili,NTIM/),double, -999d)   ; all fields are type double<br></div><div>[SNIP]<br><br></div><div>Both scripts should better handle the meta data.<br><br></div><div>Respond only to ncl-talk and, please, no salutation.<br><br>--------<br></div><div>Please study the NCL User guide created by DKRZ and the NCL-team.<br><br><a href="https://www.ncl.ucar.edu/Document/Manuals/NCL_User_Guide/">https://www.ncl.ucar.edu/Document/Manuals/NCL_User_Guide/</a><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Oct 15, 2017 at 4: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>
<br>
 Hi Adam,<br>
 Thank you for making out time to point out these. I understand what each of the newer codes lines are doing but my<br>
 files are not of same length. Is multidimensional array possible with different file sizes?<br>
<br>
  Thank you<br>
<br>
  Najib<span class=""><br>
<br>
<br>
<br>
<br>
On 2017-10-15 00:02, Adam Phillips wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Najib,<div><div class="h5"><br>
The errors you are receiving are telling you what is wrong and at what<br>
line. You have four syntax errors, the first three being caused as you<br>
are using a comma (,) instead of a semi-colon (;) for comments. (Thus,<br>
replace each of the three , with a ;.) The fourth syntax error is<br>
because you have this at line 120:<br>
res@tmXBLabelFontHeightF =<br>
You need to specify a value to the right of the equal sign, say,<br>
0.020.<br>
<br>
Another error message is due to this line:<br>
ncl 107> res@xyLineColors = (/"black",\"red", "green",\"blue",\<br>
"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>
You have a number of unnecessary \ symbols. Remove all of them. Also,<br>
change majenta to magenta.<br>
<br>
Your final error message tells you explicitly what is wrong:<br>
fatal:Dimension size mismatch on subscript #1, left-hand and<br>
right-hand side dimensions do not match<br>
fatal:["Execute.c":8573]:Execu<wbr>te: Error occurred at or near line 88<br>
<br>
Looking at lines 87-88:<br>
ncl 87>  data = new((/15,500/),double)<br>
ncl 88>   data(0,:) = ozone1<br>
<br>
Thus, NCL is telling you that ozone1 is not of size 500. Assuming each<br>
of your ozone files are exactly the same length, replace this:<br>
data = new((/15,500/),double)<br>
<br>
with this:<br>
data = new((/15,dimsizes(ozone1)/),ty<wbr>peof(ozone1))<br>
<br>
Finally, it was pointed out to me by a colleague that you could, if<br>
all your ozone files are the same length, use addfiles to read all of<br>
the files in at once and join them using code like this:<br>
<br>
diri = "/home/model-user/2000/"<br>
  diri = "./"<br>
  fili = systemfunc("cd "+diri+"; ls *timeseries*nc")<br>
  sqsort(fili)                  ; make sure these are in ascending<br>
order<br>
  print(fili)<br>
  print("----")<br>
  nfili= dimsizes(fili)<br>
  print("nfili="+nfili)<br>
  print("----")<br>
<br>
;---Open all files<br>
  pthi = diri+fili<br>
  ListSetType (f, "join")<br>
  f    = addfiles(pthi, "r")<br>
<br>
;---ozone over all time steps<br>
  ozone= f[:]->O3_PM<br>
  ozone@long_name = "O3 volume mixing ratio"    ;<br>
mole_fraction_of_ozone_in_air<br>
  printVarSummary(ozone)                        ; ozone(UTC_time)<br>
  printMinMax(ozone,0)<br>
  print("----")<br>
<br>
I would recommend only switching to this newer code if your ozone<br>
arrays are the same length, and if you fully understand what each of<br>
the above lines is doing.<br>
<br>
If you have any further questions please respond to the ncl-talk email<br>
list.<br>
Adam<br>
<br>
On Sat, Oct 14, 2017 at 8:28 AM, <<a href="mailto:najib.yusuf@carnasrda.com" target="_blank">najib.yusuf@carnasrda.com</a>> wrote:<br>
<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
Thank you Adam for your help and time.<br>
I did as you said but I received subscripting  error as the ozone<br>
variable in all the files is 1 dimensional (UTC_time), I attached<br>
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></div></div>
ncl 7> fil1 = "IAGOS_timeseries_<a href="http://2000040222361353.nc" target="_blank">200004022236<wbr>1353.nc</a> [1]"<br>
ncl 8> fil2 = "IAGOS_timeseries_<a href="http://2000040922544753.nc" target="_blank">200004092254<wbr>4753.nc</a> [2]"<br>
ncl 9> fil3 = "IAGOS_timeseries_<a href="http://2000041122453853.nc" target="_blank">200004112245<wbr>3853.nc</a> [3]"<br>
ncl 10> fil4 = "IAGOS_timeseries_<a href="http://2000041217193053.nc" target="_blank">200004121719<wbr>3053.nc</a> [4]"<br>
ncl 11> fil5 = "IAGOS_timeseries_<a href="http://2000041220041453.nc" target="_blank">200004122004<wbr>1453.nc</a> [5]"<br>
ncl 12> fil6 = "IAGOS_timeseries_<a href="http://2000041222213953.nc" target="_blank">200004122221<wbr>3953.nc</a> [6]"<br>
ncl 13> fil7 = "IAGOS_timeseries_<a href="http://2000050222480853.nc" target="_blank">200005022248<wbr>0853.nc</a> [7]"<br>
<br>
ncl 14> fil8 = "IAGOS_timeseries_<a href="http://2000050723210353.nc" target="_blank">200005072321<wbr>0353.nc</a> [8]"<br>
ncl 15> fil9 = "IAGOS_timeseries_<a href="http://2000051317072253.nc" target="_blank">200005131707<wbr>2253.nc</a> [9]"<br>
ncl 16> fil10 = "IAGOS_timeseries_<a href="http://2000051320135353.nc" target="_blank">200005132013<wbr>5353.nc</a> [10]"<br>
ncl 17> fil11 = "IAGOS_timeseries_<a href="http://2000051322273853.nc" target="_blank">200005132227<wbr>3853.nc</a> [11]"<br>
ncl 18> fil12 = "IAGOS_timeseries_<a href="http://2000053009261035.nc" target="_blank">200005300926<wbr>1035.nc</a> [12]"<br>
ncl 19> fil13 = "IAGOS_timeseries_<a href="http://2000060622395953.nc" target="_blank">200006062239<wbr>5953.nc</a> [13]"<br>
ncl 20> fil14 = "IAGOS_timeseries_<a href="http://2000071122541553.nc" target="_blank">200007112254<wbr>1553.nc</a> [14]"<br>
ncl 21> fil15 = "IAGOS_timeseries_<a href="http://2000071622553453.nc" target="_blank">200007162255<wbr>3453.nc</a> [15]"<div><div class="h5"><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<br>
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) + "/" +<br>
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<br>
lagos_Flights")<br>
ncl 105><br>
ncl 106>  res = True<br>
ncl 107>  res@xyExplicitLegendLabels =<br>
(/"data1",\"data2","data3",\"d<wbr>ata4"\,"data5",<br>
ncl 107><br>
<br>
</div></div></blockquote><div><div class="h5">
"data6",\"data7\","data8","dat<wbr>a9"\,"data10","data11"\,"data1<wbr>2","data13",\"data14"/)<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
ncl 107> res@xyLineColors = (/"black",\"red", "green",\"blue",\<br>
<br>
</blockquote>
"orange","yellow",\"gray",\"pu<wbr>rple","majenta",\"orchid1","pl<wbr>um1",\"magenta4""pink1",\"maro<wbr>on","lightpink4"/)<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
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,<br>
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<br>
right-hand side dimensions do not match<br>
fatal:["Execute.c":8573]:Execu<wbr>te: Error occurred at or near line 88<br>
<br>
On 2017-10-13 14:24, Adam Phillips wrote:<br>
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<br>
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<br>
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>
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></div></div>
ncl 0> f = addfile("IAGOS_timeseries_<a href="http://2013101819404151.nc" target="_blank">2013<wbr>101819404151.nc</a> [16] [1]<div><div class="h5"><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>
</div></div><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> [17] [2] [2]<span class=""><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>
</span><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> [17] [2] [2]<span class=""><br>
<br>
Links:<br>
------<br>
[1] <a href="http://2013101819404151.nc" rel="noreferrer" target="_blank">http://2013101819404151.nc</a><br></span>
[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> [17] [2]<span class=""><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>
</span><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> [17] [2]<span class=""><br>
<br>
--<br>
<br>
Adam Phillips<br>
Associate Scientist,  Climate and Global Dynamics Laboratory, NCAR<br>
<br>
</span><a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a> [18] [3]   <a href="tel:303-497-1726" value="+13034971726" target="_blank">303-497-1726</a> [19] [4]<span class=""><br>
<br>
[5]<br>
<br>
Links:<br>
------<br>
[1] <a href="http://2013101819404151.nc" rel="noreferrer" target="_blank">http://2013101819404151.nc</a><br></span>
[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> [17]<br>
[3] <a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">http://www.cgd.ucar.edu/staff/<wbr>asphilli/</a> [18]<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> [20]<br>
</blockquote><span class="">
<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>
</span><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> [17]<span class=""><br>
<br>
--<br>
<br>
Adam Phillips<br>
Associate Scientist,  Climate and Global Dynamics Laboratory, NCAR<br>
<br>
</span><a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a> [18]   <a href="tel:303-497-1726" value="+13034971726" target="_blank">303-497-1726</a><br>
<br>
 [20]<br>
<br>
Links:<br>
------<br>
[1] <a href="http://2000040222361353.nc" rel="noreferrer" target="_blank">http://2000040222361353.nc</a><br>
[2] <a href="http://2000040922544753.nc" rel="noreferrer" target="_blank">http://2000040922544753.nc</a><br>
[3] <a href="http://2000041122453853.nc" rel="noreferrer" target="_blank">http://2000041122453853.nc</a><br>
[4] <a href="http://2000041217193053.nc" rel="noreferrer" target="_blank">http://2000041217193053.nc</a><br>
[5] <a href="http://2000041220041453.nc" rel="noreferrer" target="_blank">http://2000041220041453.nc</a><br>
[6] <a href="http://2000041222213953.nc" rel="noreferrer" target="_blank">http://2000041222213953.nc</a><br>
[7] <a href="http://2000050222480853.nc" rel="noreferrer" target="_blank">http://2000050222480853.nc</a><br>
[8] <a href="http://2000050723210353.nc" rel="noreferrer" target="_blank">http://2000050723210353.nc</a><br>
[9] <a href="http://2000051317072253.nc" rel="noreferrer" target="_blank">http://2000051317072253.nc</a><br>
[10] <a href="http://2000051320135353.nc" rel="noreferrer" target="_blank">http://2000051320135353.nc</a><br>
[11] <a href="http://2000051322273853.nc" rel="noreferrer" target="_blank">http://2000051322273853.nc</a><br>
[12] <a href="http://2000053009261035.nc" rel="noreferrer" target="_blank">http://2000053009261035.nc</a><br>
[13] <a href="http://2000060622395953.nc" rel="noreferrer" target="_blank">http://2000060622395953.nc</a><br>
[14] <a href="http://2000071122541553.nc" rel="noreferrer" target="_blank">http://2000071122541553.nc</a><br>
[15] <a href="http://2000071622553453.nc" rel="noreferrer" target="_blank">http://2000071622553453.nc</a><br>
[16] <a href="http://2013101819404151.nc" rel="noreferrer" target="_blank">http://2013101819404151.nc</a><br>
[17] <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>
[18] <a href="http://www.cgd.ucar.edu/staff/asphilli/" rel="noreferrer" target="_blank">http://www.cgd.ucar.edu/staff/<wbr>asphilli/</a><br>
[19] tel:<a href="tel:303-497-1726" value="+13034971726" target="_blank">303-497-1726</a><br>
[20] <a href="http://www.cgd.ucar.edu/staff/asphilli" rel="noreferrer" target="_blank">http://www.cgd.ucar.edu/staff/<wbr>asphilli</a><br>
</blockquote><div class="HOEnZb"><div class="h5">
______________________________<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><br>
</div></div></blockquote></div><br></div>