<div dir="ltr"><div class="gmail_default" style="font-size:small">Anil,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You can use the "where" statement:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/where.shtml">http://www.ncl.ucar.edu/Document/Functions/Built-in/where.shtml</a><br></div><div class="gmail_default"><br></div><div class="gmail_default">Look at the examples section.</div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div><div class="gmail_default"><br></div><div class="gmail_default"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 26, 2018 at 1:06 PM, Anil Kumar - NOAA Affiliate <span dir="ltr"><<a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Mary,<div><br></div><div>This looks great. Your code run successfully without any issues. Sorry for not proper intended. I'll make it correctly.</div><div><br></div><div>Can you please give me some suggestion on next step which I am trying to make. </div><div><br></div><div>Now we have remap zmax data on wrf grid, the zeta values ( > zero) are water points and missing data is -99999 values.   I want to update <a href="http://geo_em.d01.nc" target="_blank">geo_em.d01.nc</a> LU_INDEX variable, replace LU_INDEX = 17 wherever zmax values are greater than zero (zmax>0)  (effects will be on coastal where water inundation is impacted).  </div><div><br></div><div>Please let me know, this is my next step in coding.</div><div><br></div><div>Thanks! much appreciated!</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Anil</div><div> </div><div><br></div><div><br></div><div><br></div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 26, 2018 at 2:26 PM, Mary Haley <span dir="ltr"><<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-size:small">Anil,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Your WRF grid is represented by two-dimensional latitude / longitude arrays, so you cannot do this:</div><div class="gmail_default" style="font-size:small"><br></div>  var_regrid&lat2d = dst_lat<br>  var_regrid&lon2d = dst_lon<div><br></div><div><div class="gmail_default" style="font-size:small">​The "&" syntax is a special syntax that is reserved for attaching *one-dimensional* coordinate arrays to a variable.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default">When your data is represented by two-dimensional lat/lon arrays, then in order to associate the name of the 2D lat/lon arrays on the file with a particular variable, you can use the "coordinates" attribute.  </div><div class="gmail_default"><br></div><div class="gmail_default">I know this is confusing, but this is how things are defined on NetCDF files. You can read more about this in the CF convention document, chapter 5.2, "Two-Dimensional Latitude, Longitude, Coordinate Variables":</div><div class="gmail_default"><br></div><div class="gmail_default"><a href="http://cfconventions.org/Data/cf-conventions/cf-conventions-1.7/cf-conventions.pdf" target="_blank">http://cfconventions.org/Data/<wbr>cf-conventions/cf-conventions-<wbr>1.7/cf-conventions.pdf</a><br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You want to do something like this:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default" style="font-size:small">    var_regrid@coordinates = "XLONG_M XLAT_M" ; indicates name of lat/lon coord arrays on the file</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">and then make sure you write the 2D latitude / longitude arrays to the file using these same names.  You've already read these as "dst_lat" and "dst_lon", so to write them, you would use:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default" style="font-size:small">  fnew->XLAT_M   = dst_lat</div><div class="gmail_default" style="font-size:small">  fnew->XLONG_M  = dst_lon</div><div style="font-size:small"><br></div><div style="font-size:small">I've attached the modified script.</div><div style="font-size:small"><br></div><div style="font-size:small">By the way, I tried to modify your script as little as possible so you could easily see where I made changes.  </div><div style="font-size:small"><br></div><div style="font-size:small">However, I highly recommend that you clean up the indentation, because it's very hard to read code when it is not consistently indented.</div><div style="font-size:small"><br></div><div style="font-size:small">For example, you have:</div><div style="font-size:small"><br></div><div><span><div><span style="font-family:monospace,monospace"> lat1D = sfile->y</span><br></div><div><font face="monospace, monospace"> lon1D = sfile->x</font></div><div><font face="monospace, monospace"> var = sfile->zeta_max</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"> dst_file = "<a href="http://geo_em.d01.nc" target="_blank">geo_em.d01.nc</a>"</font></div><div><font face="monospace, monospace"> dfile    = addfile(dst_file,"r")</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><br></font></div></span><span><div><font face="monospace, monospace">    dst_lat              = dfile->XLAT_M(0,:,:)    ; Be sure to use appropriate names           </font></div><div><font face="monospace, monospace">    dst_lon              = dfile->XLONG_M(0,:,:)   ; here.                                      </font></div><div><font face="monospace, monospace"><br></font></div></span><span><div><font face="monospace, monospace">srcGridName = "<a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a>"</font></div><div><font face="monospace, monospace">dstGridName = "<a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a>"</font></div><div><font face="monospace, monospace">wgtFileName = "<a href="http://unstruct_to_rect.nc" target="_blank">unstruct_to_rect.nc</a>"</font></div></span></div><div><br></div><div>This is hard to read because lines are indented somewhat randomly, and there are extra line breaks and white space that you really don't need. </div><div><br></div><div>It helps if you can decide on a consistent indentation, say two or four spaces for each line, and stick to it. It also helps if you line up the equal signs, but this is a personal preference that you need to decide if it works for you.</div><div><br></div><div><span><div><span style="font-family:monospace,monospace"> lat1D = sfile->y</span><br></div><div><font face="monospace, monospace"> lon1D = sfile->x</font></div><div><font face="monospace, monospace"> var   = sfile->zeta_max</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"> dst_file = "<a href="http://geo_em.d01.nc" target="_blank">geo_em.d01.nc</a>"</font></div><div><font face="monospace, monospace"> dfile    = addfile(dst_file,"r")</font></div><div><font face="monospace, monospace"><br></font></div></span><span><div><font face="monospace, monospace"> dst_lat = dfile->XLAT_M(0,:,:)    ; Be sure to use appropriate names           </font></div><div><font face="monospace, monospace"> dst_lon = dfile->XLONG_M(0,:,:)   ; here.                                      </font></div><div><font face="monospace, monospace"><br></font></div></span><span><div><font face="monospace, monospace"> srcGridName = "<a href="http://source_grid_file.nc" target="_blank">source_grid_file.nc</a>"</font></div><div><font face="monospace, monospace"> dstGridName = "<a href="http://destination_grid_file.nc" target="_blank">destination_grid_file.nc</a>"</font></div><div><font face="monospace, monospace"> wgtFileName = "<a href="http://unstruct_to_rect.nc" target="_blank">unstruct_to_rect.nc</a>"</font></div></span></div><span class="m_-3954109183134532859HOEnZb"><font color="#888888"><div><br></div><div style="font-size:small"><br></div><div style="font-size:small">--Mary</div><div style="font-size:small"><br></div></font></span></div><div class="gmail_default" style="font-size:small"><br></div></div><br></div></div><div class="m_-3954109183134532859HOEnZb"><div class="m_-3954109183134532859h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 26, 2018 at 11:39 AM, Anil Kumar - NOAA Affiliate <span dir="ltr"><<a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Mary,<div><br></div><div>Thanks for your email. After some proper plotting resources, I am able to plot figure (attached). </div><div>My initial question is about writing regrid variable in lat x lon format . (ncl script attached)</div><div><br></div><div>I am trying to write var_regrid variable in lat x long format i.e var_regrid(lat x lon). After esmf call var_regrid is in (x x y) point dimensions. </div><div><br></div><div>I am trying to looking samples and scripts but no success so far. </div><div><br></div><div>Thanks,</div><div>Anil</div><div><br></div><div><br></div><div><br></div><div><br></div></div><div class="m_-3954109183134532859m_-2706323422909446296HOEnZb"><div class="m_-3954109183134532859m_-2706323422909446296h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 23, 2018 at 6:09 PM, Mary Haley <span dir="ltr"><<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-size:small">Hello,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">We have been looking into this offline.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">For starters, since both of your grids are regional, you want to set:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Opt@DstRegional = True</div><div class="gmail_default" style="font-size:small">Opt@SrcRegional = True</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Secondly, you already have the triangular mesh defined on your file, which will help the regridding go much faster, because NCL doesn't have to generate it for you:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small;display:inline">​</div>Opt@SrcTriangularMesh = sfile->element-1<div class="gmail_default" style="font-size:small;display:inline">​   ; the minus one is important so indexes go from 0 to n-1</div><div><div class="gmail_default" style="font-size:small;display:inline"><br></div></div><div><div class="gmail_default" style="font-size:small">​For plotting purposes​, I set these for both plots:</div><div class="gmail_default" style="font-size:small"><br></div>res@cnLevelSelectionMode = "ManualLevels"<br>res@cnMinLevelValF       = -6<br>res@cnMaxLevelValF       = 6<br>res@cnLevelSpacingF      = 0.25</div><div><br></div><div><div class="gmail_default" style="font-size:small">​I removed the file writing part for now, because there's something weird about an attribute type, but I'll include the original script (test_regrid.ncl) and the modified one without the file writing (test_regrid_mod.ncl) and hopefully you can add back in the file writing part.  I was in a hurry so I just removed it, and now I have to run out the door.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I'm not sure the regridding went well​, but this could simply be the nature of going from high-res to low-res, and also the fact that the two grids don't have values in the same places.  You will need to take a look at the PNG image and see what you think.</div><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846HOEnZb"><font color="#888888"><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><br></font></span><div class="gmail_extra"><br><div class="gmail_quote"><span>On Thu, Mar 22, 2018 at 9:58 AM, Rick Brownrigg <span dir="ltr"><<a href="mailto:brownrig@ucar.edu" target="_blank">brownrig@ucar.edu</a>></span> wrote:<br></span><div><div class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Hi,<br><br></div>Without the data, I can't run the script, but on visual inspection, it *looks* like you have all the right elements in place to write the NetCDF file. What's not happening for you -- any errors or odd results, or just plain nothing?<br><br></div>Rick<br></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041h5">On Thu, Mar 22, 2018 at 6:58 AM, Anil Kumar - NOAA Affiliate <span dir="ltr"><<a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a>></span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041h5"><div dir="ltr">Hi,<div><br></div><div>I am trying to write regrid variable (unstructured data to WRF grid),  code creates <span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">var_regrid<span> </span></span> successfully at that point. I want to write var_regird variable in separate netcdf file with lat & lon dimension in it. </div><div>Can anyone please help me on this. Thanks</div><div> The var_regrid print summmary </div><div>********</div><div>




<span></span>





<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Variable: var_regrid</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Type: double</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Total Size: 1301864 bytes</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>162733 values</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Number of Dimensions: 2</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Dimensions and sizes:<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">   </span>[353] x [461]</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Coordinates:<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span></span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">Number Of Attributes: 10</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>missing_value :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>-99999</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>remap :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>remapped via ESMF_regrid_with_weights: Bilinear</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>lon2d :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 162733 elements></span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>lat2d :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span><ARRAY of 162733 elements></span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>long_name :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">    </span>maximum water surface elevationabove geoid</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>standard_name :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>maximum_sea_surface_height_abo<wbr>ve_geoid</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>location :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">     </span>node</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>mesh :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap"> </span>adcirc_mesh</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>units :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>m</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>_FillValue :<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-tab-span" style="white-space:pre-wrap">   </span>-99999</span></p>


<br></div><div>********</div><div>here is the code</div><div>




<span></span>





<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">begin</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>src_file = "<a href="http://maxele.63.nc" target="_blank">maxele.63.nc</a>"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>sfile = addfile(src_file,"r")</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;printVarSummary(sfile)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>lat1D = sfile->y</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>lon1D = sfile->x</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>var = sfile->zeta_max</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>dst_file = "<a href="http://geo_em.d01.nc" target="_blank">geo_em.d01.nc</a>"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>dfile<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>= addfile(dst_file,"r")</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;---Set up regridding options</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                </span>= True</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;---"bilinear" is the default. "patch" and "conserve" are other options.</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@InterpMethod <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>= "bilinear"<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">        </span>;;---Change (maybe)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@WgtFileName<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= "<a href="http://unstruct_to_rect.nc" target="_blank">unstruct_to_rect.nc</a>"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@SrcGridLat <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= lat1D</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@SrcGridLon <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= lon1D</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@SrcRegional<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= False<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>;;--Change (maybe)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@SrcInputFileName = src_file<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">          </span>; optional, but good idea</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@SrcMask2D<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">        </span>= where(.not.ismissing(var),1,0) ; Necessary if has</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                                                          </span>; missing values.</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>dst_lat<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">              </span>= dfile->XLAT_M(0,:,:)<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>; Be sure to use appropriate names</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>dst_lon<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">              </span>= dfile->XLONG_M(0,:,:) <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>; here.</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@DstGridLon <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= dst_lon</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@DstGridLat <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= dst_lat</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@DstRegional<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">      </span>= True<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>;;--Change (maybe)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@DstMask2D = where(.not.ismissing(dst_lat).<wbr>and.\</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                          </span>.not.ismissing(dst_lon),1,0) ; Necessary if lat/lon</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                                                      </span>; has missing values.</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                                                      </span>; has missing values.</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@ForceOverwrite <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>= True</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@Debug<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>= True</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>Opt@PrintTimings <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>= True</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>var_regrid = ESMF_regrid(var,Opt) <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>; Do the regridding</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>printVarSummary(var_regrid)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">; Code for writing netcdf format file with lat and long cordinate</span></p>


<div>




<span></span>





<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space"> </span>setfileoption("nc", "Format",<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>"NetCDF4")</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fon = "ZETA_MAX_D01.nc"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>system("/bin/rm -f " + fon) ; remove if exists</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fnew = addfile(fon, "c")</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;=============================<wbr>==============================<wbr>========</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">; create global attributes of the file (optional)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures">;=============================<wbr>==============================<wbr>========</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fAtt <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">              </span>= True<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>; assign file attributes</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fAtt@title <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">        </span>= "NCL Simple Approach to netCDF Creation"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fAtt@source_file <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>=<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>"<a href="http://original-file.nc" target="_blank">original-file.nc</a>"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fAtt@Conventions <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>= "None"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fAtt@creation_date = systemfunc ("date")</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fileattdef( fnew, fAtt )<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">            </span>; copy file attributes</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>filedimdef(fnew,(/"lat","lon"/<wbr>),(/353,461/),(/False,False/))</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_names2D = (/ "var_regrid" /)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>varvar_types2D = (/ "float" /)</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>filevardef( fnew, var_names2D, varvar_types2D, (/<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>"lat", "lon" /) )</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid!0<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>=<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>"lat"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid!1<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>=<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>"lon"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid&lat = dst_lat</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid&lon = dst_lon</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid@long_name = "maximum water surface elevationabove geoid" <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">          </span>; assign attributes</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>var_regrid@units <span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">    </span>= "m"</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p1" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255)"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">  </span>fnew->ZETA_MAX = var_regrid<span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-Apple-converted-space">                </span>; name on file different from name in code</span></p>
<p class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-p2" style="margin:0px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:normal;font-family:Menlo;color:rgb(0,0,0);background-color:rgb(255,255,255);min-height:16px"><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span><br></p>


<br></div><div>end</div><span class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298HOEnZb"><font color="#888888"><br clear="all"><div><br></div>-- <br><div class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846m_-2665713497903793041m_-8173850093293286298m_4667715016345877gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr">Dr. Anil Kumar<div><span style="font-size:12.8px">NWS/NCEP/EMC, </span>Office# 2875</div><div><span style="font-size:12.8px">NOAA Center for Weather and Climate Prediction (NCWCP)</span></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g" target="_blank">5830 UNIVERSITY RESEARCH CT</a></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g" target="_blank">College Park, MD 20740</a>-3818</div><div><a href="tel:(301)%20683-0494" value="+13016830494" target="_blank">301-683-0494</a></div><div><a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a></div><div><br></div></div></div></div></div></div></div>
</font></span></div></div>
<br></div></div>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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/mailma<wbr>n/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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/mailma<wbr>n/listinfo/ncl-talk</a><br>
<br></blockquote></div></div></div><br></div></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="m_-3954109183134532859m_-2706323422909446296m_1294000470588225846gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr">Dr. Anil Kumar<div><span style="font-size:12.8px">NWS/NCEP/EMC, </span>Office# 2875</div><div><span style="font-size:12.8px">NOAA Center for Weather and Climate Prediction (NCWCP)</span></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g" target="_blank">5830 UNIVERSITY RESEARCH CT</a></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g" target="_blank">College Park, MD 20740</a>-3818</div><div><a href="tel:(301)%20683-0494" value="+13016830494" target="_blank">301-683-0494</a></div><div><a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a></div><div><br></div></div></div></div></div></div></div>
</div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="m_-3954109183134532859gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr">Dr. Anil Kumar<div><span style="font-size:12.8px">NWS/NCEP/EMC, </span>Office# 2875</div><div><span style="font-size:12.8px">NOAA Center for Weather and Climate Prediction (NCWCP)</span></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g">5830 UNIVERSITY RESEARCH CT</a></div><div><a href="https://maps.google.com/?q=5830+UNIVERSITY+RESEARCH+CT+College+Park,+MD+20740&entry=gmail&source=g">College Park, MD 20740</a>-3818</div><div><a href="tel:(301)%20683-0494" value="+13016830494" target="_blank">301-683-0494</a></div><div><a href="mailto:anil.kumar@noaa.gov" target="_blank">anil.kumar@noaa.gov</a></div><div><br></div></div></div></div></div></div></div>
</div>
</div></div></blockquote></div><br></div>