<div dir="ltr"><img width="0" height="0" class="mailtrack-img" alt="" style="display:flex" src="https://mailtrack.io/trace/mail/519b065302db691948285211efeb778f599ea602.png?u=1812740">Hello <div><br></div><div>I face a problem using int2p_n_Warp.</div><div>It gives me with following message</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays<br></div><div><br></div><div>Here is my code. I appreciate any helps comments</div><div><div><br></div><div><div>load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"</div><div>load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"</div><div>load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"</div><div>load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl"</div><div><br></div><div>begin</div><div><br></div><div>diri = "/Users/spark/03_cmfprec550aer/03_output/"</div><div>fili = "<a href="http://calipsodaynight.nc">calipsodaynight.nc</a>"</div><div>filenc       = addfile (diri+fili+".nc", "r")</div><div>varname = "dnext"</div><div>cali = filenc->$varname$</div><div>printVarSummary(cali)</div><div>cali@_FillValue = -9999</div><div><br></div><div>cal = cali(month|:,lev|:,lat|:,lon|:)   ;84*208*85*72</div><div>printVarSummary(cal)</div><div>printMinMax(cal,0)</div><div><br></div><div>diri1 = "/Users/spark/03_cmfprec550aer/03_output/"</div><div>fili1 = "<a href="http://pressure_hpa.nc">pressure_hpa.nc</a>"</div><div>filenc1       = addfile (diri1+fili1+".nc", "r")</div><div>varname1 = "Pre"</div><div>pres = filenc1->$varname1$   ;84*208*85*72</div><div>;pres = apres(:,::-1,:,:)</div><div>printVarSummary(pres)</div><div>printMinMax(pres,0)</div><div><br></div><div>x=fspan(1013.24,88.2926,208) ;max(p)=1013.24  min(P)=88.2926</div><div>x@units           = "hPa"</div><div>printVarSummary(x)</div><div><br></div><div>extnew = new(dimsizes(cal),typeof(cal))</div><div>extnew@_FillValue=9.96921e+36</div><div>printVarSummary(extnew)</div><div>printMinMax(extnew,0)</div><div><br></div><div>po=x</div><div>po!0 = "p"</div><div>po@units = "hPa"</div><div><br></div><div>do t=0,83</div><div>   do j=0,84</div><div>      do i=0,71</div><div>         pi=pres(t,:,j,i)</div><div>         xi=cal(t,:,j,i)</div><div>         extnew(t,:,j,i) = int2p_n_Wrap (pi,xi,po,1,0)</div><div>         delete([/xi,pi/])</div><div>      end do</div><div>   end do</div><div>end do</div><div>extnew@_FillValue=9.96921e+36</div><div><br></div><div>printVarSummary(extnew)</div><div>printMinMax(extnew,0)</div><div><br></div><div>end</div></div><div><br></div><div>;;;results</div><div><div>Variable: cal</div><div>Type: float</div><div>Total Size: 427714560 bytes</div><div>            106928640 values</div><div>Number of Dimensions: 4</div><div>Dimensions and sizes:<span style="white-space:pre">    </span>[month | 84] x [lev | 208] x [lat | 85] x [lon | 72]</div><div>Coordinates:</div><div>            month: [0..83]</div><div>            lev: [-0.5..12]</div><div>            lat: [-85..85]</div><div>            lon: [-180..180]</div><div>Number Of Attributes: 1</div><div>  _FillValue :<span style="white-space:pre">   </span>-9999</div><div>(0)<span style="white-space:pre">      </span>min=-5.20219   max=13.6829</div><div><br></div><div>Variable: pres</div><div>Type: float</div><div>Total Size: 427714560 bytes</div><div>            106928640 values</div><div>Number of Dimensions: 4</div><div>Dimensions and sizes:<span style="white-space:pre">     </span>[month | 84] x [lev | 208] x [lat | 85] x [lon | 72]</div><div>Coordinates:</div><div>            month: [0..83]</div><div>            lev: [12..-0.5]</div><div>            lat: [-85..85]</div><div>            lon: [-180..180]</div><div>Number Of Attributes: 3</div><div>  _FillValue :<span style="white-space:pre">   </span>-999</div><div>  long_name :<span style="white-space:pre">    </span>pressure; U.S. Standard Atmosphere</div><div>  units :<span style="white-space:pre">  </span>hPa</div><div>(0)<span style="white-space:pre">        </span>pressure; U.S. Standard Atmosphere: min=88.2926   max=1013.24</div><div><br></div><div>Variable: x</div><div>Type: float</div><div>Total Size: 832 bytes</div><div>            208 values</div><div>Number of Dimensions: 1</div><div>Dimensions and sizes:<span style="white-space:pre"> </span>[208]</div><div>Coordinates:</div><div>Number Of Attributes: 1</div><div>  units :<span style="white-space:pre">      </span>hPa</div></div><div><br></div><div><div>Variable: extnew</div><div>Type: float</div><div>Total Size: 427714560 bytes</div><div>            106928640 values</div><div>Number of Dimensions: 4</div><div>Dimensions and sizes:<span style="white-space:pre">    </span>[84] x [208] x [85] x [72]</div><div>Coordinates:</div><div>Number Of Attributes: 1</div><div>  _FillValue :<span style="white-space:pre">    </span>9.96921e+36</div><div>(0)<span style="white-space:pre">        </span>min=9.96921e+36   max=9.96921e+36</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays</div><div>warning:int2p_n: 1 input array(s) contained all missing data. No interpolation performed on these arrays...</div></div><div>continuous </div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><p style="margin:0px 0px 1.35em;color:rgb(42,42,42);font-size:12px;background-color:rgb(255,255,255)"><span style="font-size:12px;line-height:15px"><font face="georgia, serif">Sunmin Park, </font></span></p><p style="margin:0px 0px 1.35em;color:rgb(42,42,42);font-size:12px;background-color:rgb(255,255,255)"><font face="georgia, serif"><span style="font-size:12px">PhD Candidate, </span>Department of Earth Science, </font></p><p style="margin:0px 0px 1.35em;color:rgb(42,42,42);font-size:12px;background-color:rgb(255,255,255)"><font face="georgia, serif">University of California Riverside</font></p><p style="line-height:15px;margin:0px 0px 1.35em;color:rgb(42,42,42);font-family:Gulim;font-size:12px;background-color:rgb(255,255,255)"><span lang="EN-US"><font face="arial,helvetica,sans-serif" style="line-height:normal"><br></font></span></p>
<div><font color="#006600"><br></font></div>
<div><font color="#006600"><br></font></div><br></div></div></div></div>
<br><br><br><div style="display:inline">
            <div class="mt-signature" style="padding-right:5px;color:initial">
                <a href="https://mailtrack.io/" class="mt-signature-logo" style="text-decoration:none">
                    <img src="https://s3-eu-west-1.amazonaws.com/mailtrack-crx/icon-signature.png" height="14">
                </a>
                <span style="color:rgb(153,153,153)">Sent with </span>
                <a href="https://mailtrack.io/install?source=signature&lang=en&referral=mireiyue@gmail.com&idSignature=22" class="mt-install">Mailtrack</a>
                
            </div></div></div></div>