<div dir="ltr"><div><div><div><div>Hi Nicolas,<br><br></div>Yes, that is exactly the problem. <br><br></div>I was hoping someone on this forum might have worked with this type of data (NCEP CFSv2 High Resolution Initial Conditions) before, so I could save some time.<br><br></div><div>I&#39;ll see the regridding section now.<br><br></div><div>Thanks for your help.<br></div><div><br>Regards,<br></div></div>Vimal<br><div><div><div><br>  <br></div></div></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><font size="2">Regards,<br></font></div><font size="2">Vimal Koul</font><br><br></div></div></div></div></div></div></div></div></div>
<br><div class="gmail_quote">On 5 August 2015 at 15:54, Nicolas GASNIER <span dir="ltr">&lt;<a href="mailto:ngprod41@gmail.com" target="_blank">ngprod41@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Vimal,<br>
<br>
Sorry I made this little script by memory, the sfX* arrays don&#39;t need to<br>
be 2D, it should be your lat / lon arrays.  I assumed the axis variables<br>
would contain coordinate info but it is just indexes. Please note that<br>
you need an extra value on the lon array for global plot (see<br>
gsnAddCyclic property).<br>
<br>
I made some testing, but it is not working better with this method. Your<br>
grid seems to be 0.5° in longitude, but it is not the case with<br>
latitude. I tried various intervals with fspan, but can&#39;t align the data<br>
with the map. I suspect the data is not regularly spaced on that axis :<br>
maybe gaussian grid. Can&#39;t help you a lot on this, but here is a<br>
starting point :<br>
<br>
<a href="https://www.ncl.ucar.edu/Applications/regrid.shtml" rel="noreferrer" target="_blank">https://www.ncl.ucar.edu/Applications/regrid.shtml</a><br>
<br>
Nicolas<br>
<br>
Le 04/08/2015 20:00, <a href="mailto:ncl-talk-request@ucar.edu">ncl-talk-request@ucar.edu</a> a écrit :<br>
&gt; Message: 4<br>
&gt; Date: Tue, 4 Aug 2015 19:48:45 +0530<br>
&gt; From: Vimal Koul &lt;<a href="mailto:koulvimal18@gmail.com">koulvimal18@gmail.com</a>&gt;<br>
&gt; Subject: Re: [ncl-talk] Problem with CFS initial condition data plot<br>
&gt;       in NCL<br>
&gt; To: <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt; Message-ID:<br>
&gt;       &lt;<a href="mailto:CAJVe0MADUJWm7CwinWxXaxMLHofsy36QkZiDQ-ANXXT5j9D6yQ@mail.gmail.com">CAJVe0MADUJWm7CwinWxXaxMLHofsy36QkZiDQ-ANXXT5j9D6yQ@mail.gmail.com</a>&gt;<br>
&gt; Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
&gt;<br>
&gt; Hi Nicolas,<br>
&gt;<br>
&gt; Thanks for your help.<br>
&gt;<br>
&gt; But now, the following error messages are seen:<br>
&gt;<br>
&gt; warning:ScalarFieldSetValues: 2d coordinate array sfXArray has an incorrect<br>
&gt; dimension size: defaulting sfXArray<br>
&gt; warning:ScalarFieldSetValues: 2d coordinate array sfYArray has an incorrect<br>
&gt; dimension size: defaulting sfYArray<br>
&gt; warning:ContourPlotDraw: out of range coordinates encountered; standard<br>
&gt; AreaFill rendering method may be unreliable;<br>
&gt;   consider setting the resource trGridType to &quot;TriangularMesh&quot; if<br>
&gt; coordinates contain missing values<br>
&gt; fatal:ContourPlotDraw: Workspace reallocation would exceed maximum size<br>
&gt; 100000000<br>
&gt; fatal:ContourPlotDraw: draw error<br>
&gt; fatal:ContourPlotDraw: draw error<br>
&gt; fatal:PlotManagerDraw: error in plot draw<br>
&gt; fatal:_NhlPlotManagerDraw: Draw error<br>
&gt;<br>
&gt; Please note that I don&#39;t have the grid resolution information except nlat,<br>
&gt; nlon and depth levels.<br>
&gt;<br>
&gt; Modified script is attached.<br>
&gt;<br>
&gt;<br>
&gt; Regards,<br>
&gt; Vimal<br>
&gt;<br>
&gt;<br>
&gt; Sincerely<br>
&gt; Vimal Koul<br>
&gt;<br>
&gt; Graduate Student<br>
&gt; Department of Atmospheric and Space Science<br>
&gt; Savitribai Phule Pune University<br>
&gt; India<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On 4 August 2015 at 16:41, Nicolas GASNIER &lt;<a href="mailto:ngprod41@gmail.com">ngprod41@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt; With the xaxis_1 and yaxis_1 variables you should try to build a lat and<br>
&gt;&gt; lon 2d arrays matching your data grid dimensions. Then use these 2d<br>
&gt;&gt; arrays as sfXArray and sfYArray plotting ressource.<br>
&gt;&gt;<br>
&gt;&gt; Something like this (untested) :<br>
&gt;&gt;<br>
&gt;&gt; xaxis_1 = fin-&gt;xaxis_1<br>
&gt;&gt; yaxis_1 = fin-&gt;yaxis_1<br>
&gt;&gt;<br>
&gt;&gt; lon2d = new((/720, 410/), float)<br>
&gt;&gt; do i=0,719<br>
&gt;&gt;       lon2d(i, :) = xaxis_1<br>
&gt;&gt; end do<br>
&gt;&gt;<br>
&gt;&gt; lat2d = new((/720, 410/), float)<br>
&gt;&gt; do i=0,409<br>
&gt;&gt;       lat2d(:, i) = yaxis_1<br>
&gt;&gt; end do<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; gen_res = True<br>
&gt;&gt; gen_res@sfXArray = lon2d<br>
&gt;&gt; gen_res@sfYArray = lat2d<br>
&gt;&gt;<br>
&gt;&gt; Then pass that ressource to your plotting function.<br>
&gt;&gt;<br>
&gt;&gt; Hope that helps.<br>
&gt;&gt;<br>
&gt;&gt; Nicolas Gasnier<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Le 04/08/2015 08:23, <a href="mailto:ncl-talk-request@ucar.edu">ncl-talk-request@ucar.edu</a> a ?crit :<br>
&gt;&gt;&gt; Date: Tue, 4 Aug 2015 11:53:07 +0530<br>
&gt;&gt;&gt; From: Vimal Koul&lt;<a href="mailto:koulvimal18@gmail.com">koulvimal18@gmail.com</a>&gt;<br>
&gt;&gt;&gt; Subject: [ncl-talk] Problem with CFS initial condition data plot in<br>
&gt;&gt;&gt;        NCL<br>
&gt;&gt;&gt; <a href="mailto:To%3Ancl-talk@ucar.edu">To:ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; Message-ID:<br>
&gt;&gt;&gt;        &lt;<br>
&gt;&gt; <a href="mailto:CAJVe0MCbueZr-1EZHk6eOD1VULML0XEOMaGchvsM5rczLjjFSQ@mail.gmail.com">CAJVe0MCbueZr-1EZHk6eOD1VULML0XEOMaGchvsM5rczLjjFSQ@mail.gmail.com</a>&gt;<br>
&gt;&gt;&gt; Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Dear Users,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I am trying to plot an ocean data file which is a part of CFS High<br>
&gt;&gt;&gt; Resolution Initial Conditions (<a href="http://nomads.ncdc.noaa.gov/data.php" rel="noreferrer" target="_blank">http://nomads.ncdc.noaa.gov/data.php</a>).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; File: <a href="http://ocnanl.gdas.1985050100.ocean_temp_salt.res.nc" rel="noreferrer" target="_blank">ocnanl.gdas.1985050100.ocean_temp_salt.res.nc</a> (uploaded to ncl ftp<br>
&gt;&gt;&gt; link) or download from:<a href="https://copy.com/7bVgOvDfQKDjcg07" rel="noreferrer" target="_blank">https://copy.com/7bVgOvDfQKDjcg07</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Unfortunately, printVarSummary shows that the variable &quot;temp&quot; I&#39;m trying<br>
&gt;&gt; to<br>
&gt;&gt;&gt; plot does not have coordinate information, however, nlat, nlon are<br>
&gt;&gt;&gt; provided. So I used fspan (and tried other functions also) to attach<br>
&gt;&gt;&gt; coordinates, but the resulting plot is messed up. The plot and ncl script<br>
&gt;&gt;&gt; are attached.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Can you please help me in defining the lat long coordinate information<br>
&gt;&gt; for<br>
&gt;&gt;&gt; this type of data?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I am completely new to NCL, infact just started last week.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; ncl-talk mailing list<br>
&gt;&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;&gt;<br>
&gt; -------------- next part --------------<br>
&gt; An HTML attachment was scrubbed...<br>
&gt; URL: <a href="http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20150804/17d62ebe/attachment-0001.html" rel="noreferrer" target="_blank">http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20150804/17d62ebe/attachment-0001.html</a><br>
&gt; -------------- next part --------------<br>
&gt; A non-text attachment was scrubbed...<br>
&gt; Name: p7cn.ncl<br>
&gt; Type: text/x-ncl<br>
&gt; Size: 1118 bytes<br>
&gt; Desc: not available<br>
&gt; Url : <a href="http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20150804/17d62ebe/attachment-0001.bin" rel="noreferrer" target="_blank">http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20150804/17d62ebe/attachment-0001.bin</a><br>
&gt;<br>
&gt; ------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;<br>
&gt;<br>
&gt; End of ncl-talk Digest, Vol 141, Issue 5<br>
&gt; ****************************************<br>
<br>
_______________________________________________<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/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br></div>