<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle"></style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Times New Roman;color: #000000;font-size: 12pt;">
<div>
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma">
<div style="font-family:Tahoma">
<div style="font-family:Tahoma">
<div>
<div></div>
<div style="font-size:13px">
<div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div>Hello,</div>
<div><br>
</div>
<div>I am regridding &quot;y&quot; (lat, lon) to 1 degree grids. My codes always re-map the missing values as well (-999) as the printed min is -994.176, which should be a positive number.&nbsp;</div>
<div><br>
</div>
<div>My code is enclosed below and my data file is attached.</div>
<div><br>
</div>
<div>Could anybody help me to find why missing function doesn't work?&nbsp;</div>
<div><br>
</div>
<div>Thanks for your time!</div>
<div><br>
</div>
<div>Lifen</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; &nbsp;</div>
<div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl&quot;&nbsp;</div>
<div><br>
</div>
<div>begin</div>
<div>fili = &quot;2000_MPI-ESM-MR.nc&quot;</div>
<div>a = addfile (fili, &quot;r&quot;)</div>
<div>t=a-&gt;y</div>
<div><br>
</div>
<div>t@_FillValue &nbsp;= -999.0</div>
<div>t@missing_value = t@_FillValue</div>
<div><br>
</div>
<div>t = lonFlip(t)</div>
<div>printVarSummary(t)</div>
<div><br>
</div>
<div>newlat=fspan(-89.50,89.50,180) &nbsp; ;create a sequence for the new values of lat&nbsp;</div>
<div>newlon=fspan(-179.5,179.5,360) &nbsp; ;create a sequence for the new values of lon</div>
<div><br>
</div>
<div>newlat@units = &quot;degrees_north&quot;</div>
<div>newlon@units = &quot;degrees_east&quot;</div>
<div><br>
</div>
<div>regrid= area_conserve_remap_Wrap(t&amp;lon,t&amp;lat,t,newlon,newlat,False)</div>
<div>printVarSummary(regrid)</div>
<div>print(&quot;regrid: &nbsp;min=&quot;&#43;min(regrid)&#43;&quot; &nbsp;max=&quot;&#43;max(regrid))</div>
<div><br>
</div>
<div>filo = &quot;Regrid.&quot;&#43;fili</div>
<div>system(&quot;/bin/rm -f &quot;&#43;filo)</div>
<div>fout=addfile(filo,&quot;c&quot;)</div>
<div>fout@creation_date = systemfunc(&quot;date&quot;)</div>
<div>fout@title=&quot;Regrid_1*1 of &quot;&#43;fili</div>
<div>fout-&gt;regrid=regrid</div>
<div>end</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
</div>
</div>
</body>
</html>