<div dir="ltr"><div>Hi Neil,</div>The precip variable in this file contains NaNs. They must be replaced for NCL&#39;s plotting functions to work properly.<div><br></div><div>Add the following to your code following after reading the precip variable:</div><div><br></div><div><div>cpc_precip = cpc_file-&gt;precip(:,:)</div><div>if (any(isnan_ieee(cpc_precip))) then<br></div><div>        replace_ieeenan(cpc_precip,cpc_precip@_FillValue,0)</div><div>end if</div></div><div><br></div><div> -dave</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 10, 2014 at 4:52 PM, Neil Berg <span dir="ltr">&lt;<a href="mailto:nberg@atmos.ucla.edu" target="_blank">nberg@atmos.ucla.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello NCL talk,<br>
<br>
I&#39;m having an issue correctly plotting the attached file of CPC precipitation.  I am using NCL v.5.2.0 and the netCDF file was created using the python-netCDF4 package.  I have successfully plotted other netCDF4 files, but this one is not turning out right for some reason.<br>
<br>
The contours are not quite what they should be and most notably, there should not be any contours over the ocean (only land data is real, ocean values should be treated as missing).  I&#39;ve tried converting this file to netCDF4-classic, but the same issue results.<br>
<br>
Any help is greatly appreciated.<br>
<br>
Sincerely,<br>
<br>
Neil Berg<br>
<br>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>