<div dir="ltr"><div class="gmail_default" style="font-size:small">Lin,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I believe your problem is with these two lines:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default" style="font-size:small"> thetao@lat2d = sfile->lat</div><div class="gmail_default" style="font-size:small"> thetao@lon2d = sfile->lon</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">The lat2d/lon2d are special attributes used by the ESMF_regrid function to pass in 2D curvilinear coordinates. If your data is rectilinear, then this usually implies that the 1D lat/lon coordinate arrays are already attached to the data, and you should NOT be setting these lat2d/lon2d coordinates. This just confuses the ESMF_regrid routine.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You will need to put an "if" test in your code to test if the incoming lat/lon grid is rectilinear or curvilinear, and only set lat2d/lon2d if it's curvilinear.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You might want to create a function, call it "is_rectilinear" that looks something like this:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default"><div class="gmail_default"><div class="gmail_default"><font face="monospace, monospace">function is_rectilinear(data) <br></font></div><div class="gmail_default"><font face="monospace, monospace">local rank, latdim, londim</font></div><div class="gmail_default"><font face="monospace, monospace">begin</font></div><div class="gmail_default"><font face="monospace, monospace"> rank = dimsizes(dimsizes(data))</font></div><div class="gmail_default"><font face="monospace, monospace"> if(rank.ge.2) then</font></div><div class="gmail_default"><font face="monospace, monospace"> latdim = rank-2</font></div><div class="gmail_default"><font face="monospace, monospace"> londim = rank-1</font></div><div class="gmail_default"><font face="monospace, monospace"> if((.not.ismissing(thetao!latdim).and.iscoord(thetao,thetao!latdim)).and.\</font></div><div class="gmail_default"><font face="monospace, monospace"> (.not.ismissing(thetao!londim).and.iscoord(thetao,thetao!londim))) then</font></div><div class="gmail_default"><font face="monospace, monospace"> return(True)</font></div><div class="gmail_default"><font face="monospace, monospace"> end if</font></div><div class="gmail_default"><font face="monospace, monospace"> end if</font></div><div class="gmail_default"><font face="monospace, monospace"> return(False)</font></div><div class="gmail_default"><font face="monospace, monospace">end</font></div><div class="gmail_default"><br></div><div class="gmail_default">and then in your main code:</div><div class="gmail_default"><br></div><div class="gmail_default"><div class="gmail_default"><font face="monospace, monospace"> if(.not.is_rectilinear(thetao)) then</font></div><div class="gmail_default"><font face="monospace, monospace"> thetao@lat2d = sfile->lat</font></div><div class="gmail_default"><font face="monospace, monospace"> thetao@lon2d = sfile->lon</font></div><div class="gmail_default"><font face="monospace, monospace"> end if</font></div><div class="gmail_default"><br></div><div class="gmail_default">Note that the "is_rectilinear" code is assuming that your rightmost two dimensions are lat x lon. If this assumption is not correct, then you may need to further edit this function to perhaps add a check that the "units" are valid, say, "degrees_east" for longitude coordinates, and "degrees_north" for latitude coordinates.</div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div></div></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Dec 19, 2016 at 3:54 AM, 林祥 <span dir="ltr"><<a href="mailto:xianglin72@icloud.com" target="_blank">xianglin72@icloud.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">i’ve resolved the problem. Thanks!<div><br></div><div><br></div><div><br></div><div> <div><br></div><div><br></div><div><br><div><blockquote type="cite"><div><div class="h5"><div>在 2016年12月19日,01:14,林祥 <<a href="mailto:xianglin72@icloud.com" target="_blank">xianglin72@icloud.com</a>> 写道:</div><br class="m_3043954656119487922Apple-interchange-newline"></div></div><div><div><div class="h5"><div style="word-wrap:break-word">Hi, all<div><br></div><div> I’m regridding multiple CMIP5 model output with ESMF_regrid function, among all the data file, lat/lon coordinate array can be 1-dimension or 2 dimension.</div><div><br></div><div>Now I met a problem , Please see the below message output from the scripts:</div><div> </div><div><br></div><div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>4. /data1/linx/CMIP5_SIC/<wbr>historical/BNU-ESM/sic_OImon_<wbr>BNU-ESM_historical_r1i1p1_<wbr><a href="http://185001-200512.nc">185001-200512.nc</a> ; ( Loop 4 )</span></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Variable: Opt</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Type: logical</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Total Size: 4 bytes</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> 1 values</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number of Dimensions: 1</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Dimensions and sizes:<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>[1]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Coordinates: </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number Of Attributes: 9</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> Debug :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> PrintTimings :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridLon :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 360 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridLat :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 180 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridMask :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 64800 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> SrcGridMask :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 72000 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> ForceOverwrite :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstFileName :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> SrcFileName :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>Generating interpolation weights from CMIP5 to</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>World 1 degree grid using the bilinear method.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source lat dims = (200,360)</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source lon dims = (200,360)</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source grid type is 'curvilinear'</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>curvilinear_to_SCRIP: calculating grid corners...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>curvilinear_to_SCRIP: no lat values are at the poles, so</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> calculating grid corners using</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> calc_SCRIP_corners_<wbr>noboundaries...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max original lat: -81.5003/89.4879</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max original lon: 0.0457764/359.949</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max Extlat2d: -82.5003/90.4798</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max Extlon2d: -358.806/360.995</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max ExtGridCenter_lat: -82.0003/89.9838</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max ExtGridCenter_lon: -179.22/360.397</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>=====> CPU Elapsed Time: curvilinear_to_SCRIP: 0.164974 seconds <=====</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_dst_grid_info: destination lat dims = (180)</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_dst_grid_info: destination lon dims = (360)</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>curvilinear_to_SCRIP: calculating grid corners...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>curvilinear_to_SCRIP: no lat values are at the poles, so</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> calculating grid corners using</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> calc_SCRIP_corners_<wbr>noboundaries...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max original lat: -89.5/89.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max original lon: -179.5/179.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max Extlat2d: -90.5/90.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max Extlon2d: -180.5/180.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>calc_SCRIP_corners_<wbr>noboundaries</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max ExtGridCenter_lat: -90/90</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> min/max ExtGridCenter_lon: -180/180</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>=====> CPU Elapsed Time: rectilinear_to_SCRIP: 0.155979 seconds <=====</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_gen_weights: number of processors used: 1</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>------------------------------<wbr>--------------------</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_gen_weights: the following command is about to be executed on the system:</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>'ESMF_RegridWeightGen --source <a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a> --destination <a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a> --weight ESMF_regrid_wgt_bilinear.nc --method bilinear -i'</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>------------------------------<wbr>--------------------</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_gen_weights: output from 'ESMF_RegridWeightGen':</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Starting weight generation with these inputs: </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(1)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Source File: <a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(2)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Destination File: <a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(3)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Weight File: ESMF_regrid_wgt_bilinear.nc</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(4)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Source File is in SCRIP format</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(5)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Source Grid is a global grid</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(6)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Source Grid is a logically rectangular grid</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(7)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Destination File is in SCRIP format</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(8)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Destination Grid is a global grid</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(9)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Destination Grid is a logically rectangular grid</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(10)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Regrid Method: bilinear</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(11)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Pole option: ALL</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(12)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Ignore unmapped destination points</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(13)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(14)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Completed weight generation successfully.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(15)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>------------------------------<wbr>--------------------</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_gen_weights: 'ESMF_RegridWeightGen' was successful.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>=====> CPU Elapsed Time: ESMF_regrid_gen_weights: 0.0169983 seconds <=====</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: regridding using interpolation weights ...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: warning: destination grid is not</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> completely covered by the source grid. This is not an error.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> It just means your destination grid covers a larger area</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> than your source grid.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: Source Grid:</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> rank: 2</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> dimensions: 200 360</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> original source rank: 3</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> latitude min/max: -81.50032043457031/89.<wbr>48786163330078</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> longitude min/max:0.0457763671875/359.<wbr>9493103027344</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: Destination Grid:</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> dimensions: 180 360</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> latitude min/max: -89.5/89.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> longitude min/max:-179.5/179.5</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: retrieving interpolation weights ...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: calling sparse_matrix_mult to apply weights...</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>ESMF_regrid_with_weights: dstData</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> Dimensions: 1872 180 360</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> minSrcData: 0</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> maxSrcData: 99.9994</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> minDstData: -2.50832e-12</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span> maxDstData: 99.9981</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>=====> CPU Elapsed Time: ESMF_regrid_with_weights: 122.265 seconds <=====</span></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Variable: thetao_regrid</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Type: float</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Total Size: 485222400 bytes</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> 121305600 values</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number of Dimensions: 3</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Dimensions and sizes:<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>[time | 1872] x [lat | 180] x [lon | 360]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Coordinates: </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> time: [15.5..56924.5]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> lat: [89.5..-89.5]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> lon: [-179.5..179.5]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number Of Attributes: 11</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> remap :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>remapped via ESMF_regrid_with_weights: Bilinear remapping</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> standard_name :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>sea_ice_area_fraction</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> long_name :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>Sea Ice Area Fraction</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> comment :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>fraction of grid cell covered by sea ice.</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> units :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>%</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> cell_methods :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>time: mean</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> cell_measures :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>area: areacello</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> history :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>2012-04-01T10:38:11Z altered by CMOR: replaced missing value flag (1e+30) with standard missing value (1e+20).</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> missing_value :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>1e+20</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> _FillValue :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>1e+20</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> associated_files :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>baseURL: <a href="http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation" target="_blank">http://cmip-pcmdi.llnl.gov/<wbr>CMIP5/dataLocation</a> gridspecFile: gridspec_seaIce_fx_BNU-ESM_<wbr><a href="http://historical_r0i0p0.nc">historical_r0i0p0.nc</a> areacello: areacello_fx_BNU-ESM_<wbr><a href="http://historical_r0i0p0.nc">historical_r0i0p0.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">warning:lbLabelBrOn is not a resource in the given object</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">warning:lbLabelBrOn is not a resource in the given object</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">; it’s ok for the curvilinear grid to rectilinear grid for Loop 4</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>5. /data1/linx/CMIP5_SIC/<wbr>historical/CanCM4/sic_OImon_<wbr>CanCM4_historical_r1i1p1_<wbr><a href="http://196101-200512.nc">196101-200512.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Variable: Opt</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Type: logical</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Total Size: 4 bytes</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> 1 values</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number of Dimensions: 1</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Dimensions and sizes:<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>[1]</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Coordinates: </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Number Of Attributes: 9</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> Debug :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> PrintTimings :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridLon :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 360 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridLat :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 180 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstGridMask :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 64800 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> SrcGridMask :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 8192 elements></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> ForceOverwrite :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> DstFileName :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> SrcFileName :<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span><a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>True</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>Generating interpolation weights from CMIP5 to</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>World 1 degree grid using the bilinear method. ; ******************************<wbr>******************************</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source lat dims = (64) ; the lat coordinate of source data is 1-dimension </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source lon dims = (128)</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_3043954656119487922Apple-tab-span" style="white-space:pre-wrap">        </span>get_src_grid_info: source grid type is ‘curvilinear’ ; but recognized as “curvilinear” and report error as below </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"> ; ******************************<wbr>******************* </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">fatal:Number of dimensions in parameter (1) of (curvilinear_to_SCRIP) is (1), (2) dimensions were expected </span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">fatal:["Execute.c":8567]:<wbr>Execute: Error occurred at or near line 3320 in file $NCARG_ROOT/lib/ncarg/<wbr>nclscripts/esmf/ESMF_<wbr>regridding.ncl</span></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">fatal:["Execute.c":8567]:<wbr>Execute: Error occurred at or near line 3427 in file $NCARG_ROOT/lib/ncarg/<wbr>nclscripts/esmf/ESMF_<wbr>regridding.ncl</span></div><div style="margin:0px;line-height:normal;font-family:Menlo;min-height:14px"><br><span style="font-variant-ligatures:no-common-ligatures"></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">fatal:["Execute.c":8567]:<wbr>Execute: Error occurred at or near line 147 in file esmf_regrid_6_sic.ncl</span></div></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Thank!</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">Lin</span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"></span></div></div></div></div><span id="m_3043954656119487922cid:BD3C562C-B326-4FAF-BE41-032A2B97B91D"><esmf_regrid_6_sic.ncl></span><div style="word-wrap:break-word"><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div></div></div></blockquote></div><br></div></div></div><br>______________________________<wbr>_________________<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/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>