<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 12px; font-family: Helvetica, sans-serif;">
<div>Good afternoon!</div>
<div><br>
</div>
<div>I am attempting to produce a time series of our SFWF variable from our POP2 output in CESM1.2 and am getting the following error:</div>
<div><br>
</div>
<div>Dimension (nlon) of (var0) does not have an associated coordinate variable</div>
<div><br>
</div>
<div>No matter how I attempt to treat the variable var0 (specifying coordinates manually, applying Meta data from other variables, etc), the program does not seem to associate nlon with a coordinate variable.</div>
<div><br>
</div>
<div>The code is below my signature for the email. Any help with this would be wonderful. I&#8217;ve already looked through some of the fixes that were posted on the ncl-talk list, but none worked for me.</div>
<div><br>
</div>
<div>Thanks in advance!</div>
<div><br>
</div>
<div>Taylor M Hughlett, Ph.D.<br>
UTA Earth and Environmental Sciences<br>
500 Yates St.<br>
Geoscience Bldg Rm 117<br>
Arlington, TX 76013-0049</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
</div>
<div>
<div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</div>
<div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot;</div>
<div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;</div>
<div><br>
</div>
<div>begin</div>
<div><br>
</div>
<div>;**************************************************</div>
<div>; Set file paths and plot specifics</div>
<div>;**************************************************</div>
<div><br>
</div>
<div>print(&quot;Setting File Paths&quot;)</div>
<div><br>
</div>
<div>;***** File Paths and Names *****</div>
<div><br>
</div>
<div>case &nbsp; &nbsp; &nbsp; = &quot;b.e12.B1850C5CN.f09_g16.YD13ka.003&quot;</div>
<div>filen &nbsp; &nbsp; &nbsp;= &quot;b.e12.B1850C5CN.f09_g16.YD13ka.003.pop.SFWF.1_cat_840.nc&quot;</div>
<div>file_loc &nbsp; = &quot;/glade/scratch/hughlett/csm/b.e12.B1850C5CN.f09_g16.YD13ka.003/ocn/tseries/cat/&quot;</div>
<div>grid &nbsp; &nbsp; &nbsp; = &quot;b.e12.B1850C5CN.f09_g16.YD13ka.003.pop.h.0810.nc&quot;</div>
<div>grid_loc &nbsp; = &quot;/glade/scratch/hughlett/csm/b.e12.B1850C5CN.f09_g16.YD13ka.003/ocn/hist/&quot;</div>
<div>plot_loc &nbsp; = &quot;/glade/scratch/hughlett/plots/b.e12.B1850C5CN.f09_g16.YD13ka.003/timeseries&quot;</div>
<div><br>
</div>
<div>;***** Text for Plot *****</div>
<div><br>
</div>
<div>CenterString = &quot;Surface Freshwater Flux&quot;</div>
<div>YAxisString &nbsp;= &quot;SFWF (Sverdrups)&quot;</div>
<div>XAxisString &nbsp;= &quot;Years&quot;</div>
<div><br>
</div>
<div>;***** Start and End Time for Plot *****</div>
<div><br>
</div>
<div>plot_begin = 0001</div>
<div>plot_end &nbsp; = 840</div>
<div><br>
</div>
<div>;***** Data Options (0 = no, 1 = yes) *****</div>
<div><br>
</div>
<div>smooth &nbsp;= 0</div>
<div>dtrd &nbsp; &nbsp;= 0</div>
<div>ncwrite = 0</div>
<div><br>
</div>
<div>;**************************************************</div>
<div>; Read In and Process Data</div>
<div>;**************************************************</div>
<div><br>
</div>
<div>print(&quot;Reading in and processing data&quot;)</div>
<div><br>
</div>
<div>;***** Read in All Variables *****</div>
<div><br>
</div>
<div>fvar &nbsp;= addfile(file_loc&#43;filen,&quot;r&quot;)</div>
<div>fgrid = addfile(grid_loc&#43;grid,&quot;r&quot;)</div>
<div><br>
</div>
<div>var0 &nbsp;= fvar-&gt;SFWF(:,:,:)</div>
<div>lat2d = fgrid-&gt;TLAT</div>
<div>lon2d = fgrid-&gt;TLONG</div>
</div>
<div>
<div><br>
</div>
<div>;***** Create a More Plottable Timeline *****</div>
<div><br>
</div>
<div>years = ispan(plot_begin,plot_end,1)</div>
<div>nyrs = dimsizes(years)</div>
<div><br>
</div>
<div>;***** Copy Over Coordinate Data *****</div>
<div><br>
</div>
<div>LON2D &nbsp;= lon2d(::1,::1)</div>
<div>LAT2D &nbsp;= lat2d(::1,::1)</div>
<div>var0@nlon = LON2D</div>
<div>var0@nlat = LAT2D</div>
<div><br>
</div>
<div>printVarSummary(var0)</div>
<div>;**************************************************</div>
<div>; Open workstation, set plot resources, and plot</div>
<div>;**************************************************</div>
<div><br>
</div>
<div>print(&quot;Creating Plot&quot;)</div>
<div><br>
</div>
<div>;***** Create Plot Name *****</div>
<div><br>
</div>
<div>pname = var &#43; &quot;.&quot; &#43; case &#43; &quot;_&quot; &#43; &quot;timeseries_0m&quot; &#43; plot_begin &#43; &quot;-&quot; &#43; plot_end</div>
<div><br>
</div>
<div>;***** Open workstation *****</div>
<div><br>
</div>
<div>wks = gsn_open_wks(&quot;ps&quot;,plot_loc&#43;pname)</div>
<div><br>
</div>
<div>;***** Set Resources *****</div>
<div><br>
</div>
<div>res &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= True</div>
<div>res@gsnMaximize &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= True</div>
<div>res@gsnFrame &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = False</div>
<div>res@gsnDraw &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= False</div>
<div>res@vpHeightF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= .23</div>
<div>res@vpWidthF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = .783</div>
<div>res@tiXAxisFontHeightF &nbsp; = .015</div>
<div>res@tiYAxisFontHeightF &nbsp; = .015</div>
<div>res@tmYLLabelFontHeightF = .015</div>
<div>res@tmXBLabelFontHeightF = .015</div>
<div>res@gsnLeftString &nbsp; &nbsp; &nbsp; &nbsp;= &quot; &quot;</div>
<div>res@gsnRightString &nbsp; &nbsp; &nbsp; = &quot; &quot;</div>
<div>res@xyLineColor &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= (/&quot;black&quot;/)</div>
<div>res@gsnCenterString &nbsp; &nbsp; &nbsp;= CenterString</div>
<div>res@tiYAxisString &nbsp; &nbsp; &nbsp; &nbsp;= YAxisString</div>
<div>res@tiXAxisString &nbsp; &nbsp; &nbsp; &nbsp;= XAxisString</div>
<div>res@trYMinF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= 15</div>
<div>res@trYMaxF &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= 19</div>
</div>
<div>
<div><br>
</div>
<div>;***** Create New Plot *****</div>
<div><br>
</div>
<div>plot &nbsp; &nbsp; &nbsp;= new(1,graphic)</div>
<div>plot(0) &nbsp; = gsn_csm_xy (wks,years,var0(:,{28},{50}),res)</div>
<div><br>
</div>
<div>print(&quot;Plot Created&quot;)</div>
<div><br>
</div>
<div>End</div>
</div>
<div><br>
</div>
</body>
</html>