<div dir="ltr">Really? <br><br>Change:<br>      system("/bin/rm -f <a href="http://simple.nc" target="_blank">simple.nc</a>")  <br>      ncdf = addfile("<a href="http://simple.nc" target="_blank">simple.nc</a>" ,"c") <br><br>To:<br>      system("/bin/rm -f <a href="http://simple.nc" target="_blank">MAIACTAOT.h<wbr>00v02.20000570505.nc</a>")  <br>      ncdf = addfile("MAIACTAOT.h<wbr><a href="http://00v02.20000570505.nc">00v02.20000570505.nc</a>" ,"c") <br><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 18, 2017 at 12:37 AM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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><div><div><div><div><div><div><div><div>Thanks, it worked.<br><br></div>one more question is that.<br><br></div>I used the code (given below). So it gives <a href="http://simple.nc" target="_blank">simple.nc</a> name as an output file.<br><br>ncdf = addfile("<a href="http://simple.nc" target="_blank">simple.nc</a>" ,"c")<br><br></div>If I want to keep the original file name with the output file name then what should I do?<br><br></div>I mean the original file name is MAIACTAOT.h00v02.20003660700.<wbr>hdf<br></div>Now I want to create my netcdf file name  as <a href="http://MAIACTAOT.h00v02.20003660700.nc" target="_blank">MAIACTAOT.h00v02.20003660700.<wbr>nc</a> NOT <a href="http://simple.nc" target="_blank">simple.nc</a>. <br><br></div>I can not simply write <a href="http://simple.nc" target="_blank">simple.nc</a> file name because I have many files. <br></div>e.g I have one directory having 365 .hdf file. So I need to convert all the hdf file to netcdf file at once with the same name of original file names.<br><br></div>I hope you have got my query.<br><br></div>please let me know that too.<br><div><div><div><div><div><div><div><br></div><div>Thank You<br></div><div><br></div></div></div></div></div></div></div><div class="gmail_extra"><br clear="all"><div><div class="m_-4928089736255412493gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><br><div><br></div><div><br></div><div><br></div><div><p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div>
<br><div class="gmail_quote">On Thu, Sep 14, 2017 at 9:09 PM, Adam Phillips <span dir="ltr"><<a href="mailto:asphilli@ucar.edu" target="_blank">asphilli@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">Hi Kunal,<div>It looks to me like your latitudes are flipped. You are setting up and assigning your coordinate lat/lon variables in this coding:</div><span><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">nlat = 1200</span><br style="font-size:12.8px"><span style="font-size:12.8px">nlon = 1200</span><br style="font-size:12.8px"><span style="font-size:12.8px">lat = latGlobeFo(nlat, "lat", "latitude", "degrees_north")</span></div><div><span style="font-size:12.8px">lon = lonGlobeFo(nlon, "lon", "longitude", "degrees_east")   </span><br style="font-size:12.8px"><span style="font-size:12.8px">lat = lat(::-1)</span><br style="font-size:12.8px"><span style="font-size:12.8px">lon = (/ lon - 180. /)  ; subtract 180 from all values </span></div><div><span style="font-size:12.8px">lon&lon = lon           ; update coordinates</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px">var!0 = "lat"    ; you can name these dimensions whatever you want..</span><br style="font-size:12.8px"><span style="font-size:12.8px">var!1 = "lon"</span><br style="font-size:12.8px"><span style="font-size:12.8px">var&lat = lat     ; but make sure you refer to the correct named dimensions</span><br style="font-size:12.8px"><span style="font-size:12.8px">var&lon = lon </span><br></div><div><br></div></span><div>Assuming I'm right on your latitudes being the issue, one of the following two modifications should work:</div><div>Delete this line:</div><div><span style="font-size:12.8px">lat = lat(::-1)</span><br></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">If the above doesn't fix it, try this:</span></div><div><span style="font-size:12.8px">Change this:</span></div><div><span style="font-size:12.8px">lat = lat(::-1)</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">to this:</span></div><div><span style="font-size:12.8px">lat = lat(::-1)</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">lat&lat = lat</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">If you continue to have issues please respond to ncl-talk.</span></div><span class="m_-4928089736255412493HOEnZb"><font color="#888888"><div><span style="font-size:12.8px">Adam</span></div></font></span></div><div class="m_-4928089736255412493HOEnZb"><div class="m_-4928089736255412493h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 13, 2017 at 12:35 PM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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><br></div>For direct output as a netcdf format, I used the script given below. It produced the netcdf file easily. But the netcdf file and original hdf file both showing the different results. The data pattern is shifted. I mean it may be related to the lat lon position. please see the attached file, you will understand.  And please let me know which one is correct. <br><br>;-----------------------------<wbr>------------------------------<wbr>-----------<br><br>load "$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_code.ncl"<br>load "$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_csm.ncl"<br>load "$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/contributed.ncl"<br><br>begin<br>;---Read data <br>        a = addfile("/media/Local Disk/NPL/MODIS_FPC/MAIACTAOT.h<wbr>00v02.20000570505.hdf","r")<br>        var  = short2flt(a->Optical_Depth_055<wbr>(:,:))<br>            ;          short2flt(a[:]->noxfire)<br>        nlat = 1200<br>        nlon = 1200<br>        lat = latGlobeFo(nlat, "lat", "latitude", "degrees_north")<br>        lon = lonGlobeFo(nlon, "lon", "longitude", "degrees_east")   <br>        lat = lat(::-1)<br>        lon = (/ lon - 180. /)  ; subtract 180 from all values <br>        lon&lon = lon           ; update coordinates<br><br>        var!0 = "lat"    ; you can name these dimensions whatever you want..<br>        var!1 = "lon"<br>        var&lat = lat     ; but make sure you refer to the correct named dimensions<br>        var&lon = lon <br>        <br>                 system("/bin/rm -f <a href="http://simple.nc" target="_blank">simple.nc</a>")  <br>             ncdf = addfile("<a href="http://simple.nc" target="_blank">simple.nc</a>" ,"c")  ; open output netCDF file<br><br>    ;=============================<wbr>==============================<wbr>========<br>    ; create global attributes of the file (optional)<br>    ;=============================<wbr>==============================<wbr>========<br>       fAtt               = True            ; assign file attributes<br>       fAtt@title         = "NCL Simple Approach to netCDF Creation"<br>       fAtt@source_file   =  "<a href="http://original-file.nc" target="_blank">original-file.nc</a>"<br>       fAtt@Conventions   = "None"<br>       fAtt@creation_date = systemfunc ("date")<br>       fileattdef( ncdf, fAtt )            ; copy file attributes<br><br>    ;=============================<wbr>==============================<wbr>========<br>    ; make time an UNLIMITED dimension; recommended  for most applications<br>    ;=============================<wbr>==============================<wbr>========<br>       filedimdef(ncdf,"time",-1,True<wbr>) <br>       ncdf->var = var<br><br>end<br>       <br>     <br><div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><br><div><br></div><div><br></div><div><br></div><div><p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div>
<br><div class="gmail_quote">On Wed, Sep 13, 2017 at 11:27 PM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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>No problem, I sorted out. <br><br></div>Just changed short to float. <br></div><div class="gmail_extra"><span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090HOEnZb"><font color="#888888"><br clear="all"><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><div>Research Scholar <br></div><div>Radio & Atmospheric Science Division <br></div><div>CSIR - National Physical Laboratory<br></div><div>New Delhi - 110012<br></div><div>India<br></div><div><br></div><div><br></div><div><br></div><div><p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div></font></span><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090h5">
<br><div class="gmail_quote">On Wed, Sep 13, 2017 at 11:24 PM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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><div><div>Thanks for providing this information. <br><br></div>Also, I would like to mention that when I plot this data. The values are not in the domain. I mean the real values lie in-between 0 to 1 but here it is reaching to 400. <br><br></div>So, how to correct the values?<br><br></div>Description of the variable is <br><br>short Optical_Depth_055(YDim=1200, XDim=1200);<br>  :long_name = "AOT at 0.55 micron";<br>  :scale_factor = 0.001; // double<br>  :add_offset = 0.0; // double<br>  :unit = "None";<br>  :_FillValue = -28672S; // short<br>  :valid_range = -100S, 5000S; // short<span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360HOEnZb"><font color="#888888"><br><br><br><br></font></span><div class="gmail_extra"><span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360HOEnZb"><font color="#888888"><br clear="all"><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><br><div><br></div><div><br></div><div><br></div><div><p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div></font></span><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360h5">
<br><div class="gmail_quote">On Wed, Sep 13, 2017 at 10:28 PM, Adam Phillips <span dir="ltr"><<a href="mailto:asphilli@ucar.edu" target="_blank">asphilli@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">Hi Kunal,<div>Yes, clicking on the output netCDF link from the Applications page: </div><div><a href="http://www.ncl.ucar.edu/Applications/o-netcdf.shtml" target="_blank">http://www.ncl.ucar.edu/Applic<wbr>ations/o-netcdf.shtml</a><br></div><div>I would recommend following the inefficient method #1. Unless you are writing a file with many large variables, the inefficient method works just fine. <br></div><div><a href="http://www.ncl.ucar.edu/Applications/method_1.shtml" target="_blank">http://www.ncl.ucar.edu/Applic<wbr>ations/method_1.shtml</a></div><div>Good luck,</div><div>Adam  </div></div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722HOEnZb"><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 13, 2017 at 10:25 AM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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>Thank you so much, it worked<br><br></div>I want to know one more thing.<br>After rearranging the dimensions can we now convert (or write) this arranged file into netcdf format?<br><div><div><div><div><br><br><br></div></div></div></div><div class="gmail_extra"><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><br><div><br></div><div><br></div><div><br></div><div><p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div>
<br><div class="gmail_quote">On Wed, Sep 13, 2017 at 8:55 PM, Adam Phillips <span dir="ltr"><<a href="mailto:asphilli@ucar.edu" target="_blank">asphilli@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">Hi Kunal,<div>I think you just need to rearrange the order of your lines and tweak a couple of lines. As the error message states, lat is not defined in your 3rd line and you are referring to it as if it is.Try this:</div><div><span><span style="font-size:12.8px">a = addfile("/media/Local Disk/NPL/MODIS_FPC/MAIACTAOT.</span><span style="font-size:12.8px">h<wbr>00v02.20000570505.hdf","r")</span><br style="font-size:12.8px"><span style="font-size:12.8px">var  = a->Optical_Depth_055(:,:)</span><br style="font-size:12.8px"></span><span><span style="font-size:12.8px">nlat = 1200</span><br style="font-size:12.8px"><span style="font-size:12.8px">nlon = 1200</span><br style="font-size:12.8px"><span style="font-size:12.8px">lat = latGlobeFo(nlat, "lat", "latitude", "degrees_north")</span></span></div><span><div><span style="font-size:12.8px">lon = lonGlobeFo(nlon, "lon", "longitude", "degrees_east")   </span><br style="font-size:12.8px"><span style="font-size:12.8px">lat = lat(::-1)</span><br style="font-size:12.8px"><span style="font-size:12.8px">lon = (/ lon - 180. /)  ; subtract 180 from all values </span><br style="font-size:12.8px"><span style="font-size:12.8px">lon&lon = lon           ; update coordinates</span><br style="font-size:12.8px"><span style="font-size:12.8px"><br></span></div></span><div><span style="font-size:12.8px">var!0 = "lat"    ; you can name these dimensions whatever you want..</span><br style="font-size:12.8px"><span style="font-size:12.8px">var!1 = "lon"</span><span style="font-size:12.8px"><br></span></div><span style="font-size:12.8px">var&lat = lat     ; but make sure you refer to the correct named dimensions</span><div><div><span style="font-size:12.8px">var&lat = lon</span><span style="font-size:12.8px"> </span></div><div><span style="font-size:12.8px">;var&XDim_grid1km = lat</span><br style="font-size:12.8px"><span style="font-size:12.8px">;var&YDim_grid1km = lon</span><br style="font-size:12.8px"><span style="font-size:12.8px"> </span></div><div><span style="font-size:12.8px">If you have any further questions please respond to the ncl-talk email list.</span></div><div><span style="font-size:12.8px">Adam </span><br style="font-size:12.8px"><br></div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787h5">On Wed, Sep 13, 2017 at 8:38 AM, Kunal Bali <span dir="ltr"><<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</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_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787h5"><div dir="ltr"><div><div><div>Dear NCL<br><br></div>I have a file with the variable summary. The dimensions are in 2D. <br><br>ncl 2>  printVarSummary(var)<br><br>Variable: var<br>Type: short<br>Total Size: 2880000 bytes<br>            1440000 values<br>Number of Dimensions: 2<br>Dimensions and sizes:    [<b>YDim_grid1km | 1200] x [XDim_grid1km | 1200]</b><br>Coordinates: <br>Number Of Attributes: 7<br>  long_name :    AOT at 0.55 micron<br>  scale_factor :    0.001<br>  add_offset :       0<br>  unit :    None<br>  _FillValue :    -28672<br>  valid_range :    ( -100, 5000 )<br>  hdf_name :    Optical_Depth_055<br><br><br></div>I am trying to read the dimensions of this file as<br><br>begin<br>;---Read data <br>         a = addfile("/media/Local Disk/NPL/MODIS_FPC/MAIACTAOT.h<wbr>00v02.20000570505.hdf","r")<br>  <br>            var  = a->Optical_Depth_055(:,:)<br><br>         var&XDim_grid1km = lat<br>         var&YDim_grid1km = lon<br><br>        nlat = 1200<br>         nlon = 1200<br>            lat = latGlobeFo(nlat, "lat", "latitude", "degrees_north")<br>        lon = lonGlobeFo(nlon, "lon", "longitude", "degrees_east")   <br>            lat = lat(::-1)<br>            lon = (/ lon - 180. /)  ; subtract 180 from all values <br>            lon&lon = lon           ; update coordinates<br> <br>   <br>        var!0 = "lat"<br>        var!1 = "lon"<br> <br><br></div>But the error appeared as  <br><b>fatal:Variable (lat) is undefined</b><br><br><div><div><div><br></div><div>So, could anyone please let me know that how to read dimension of this file. <br><br></div><div>Thank You<br></div><div><br><div><br></div><div>Regards<span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787m_-8297990099082400272HOEnZb"><font color="#888888"><br clear="all"></font></span></div><span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787m_-8297990099082400272HOEnZb"><font color="#888888"><div><div><div><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787m_-8297990099082400272m_2392430217485589217gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Kunal Bali<br></div><br><div><br></div><div><br></div><div><br></div><div><p style="margin:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div>
</div></div></font></span></div></div></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><span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787HOEnZb"><font color="#888888"><br><br clear="all"><span class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891HOEnZb"><font color="#888888"><div><br></div>-- <br><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891m_7649397337960907787m_-8297990099082400272gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a>   </font></span><span><font color="#888888"><a href="tel:(303)%20497-1726" value="+13034971726" target="_blank">303-497-1726</a> </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</font></span></font></span></div>
</blockquote></div><br></div></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><br><br clear="all"><span class="m_-4928089736255412493m_9186617808376476535HOEnZb"><font color="#888888"><div><br></div>-- <br><div class="m_-4928089736255412493m_9186617808376476535m_-3688407689937875090m_7418340254611092360m_-6183322678709470722m_4501774087300120891gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a>   </font></span><span><font color="#888888"><a href="tel:(303)%20497-1726" value="+13034971726" target="_blank">303-497-1726</a> </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</font></span></div><span class="m_-4928089736255412493m_9186617808376476535HOEnZb"><font color="#888888">
</font></span></div></div></blockquote></div><span class="m_-4928089736255412493m_9186617808376476535HOEnZb"><font color="#888888"><br></font></span></div></div></div></div><span class="m_-4928089736255412493m_9186617808376476535HOEnZb"><font color="#888888">
</font></span></blockquote></div><span class="m_-4928089736255412493m_9186617808376476535HOEnZb"><font color="#888888"><br></font></span></div></div></div>
</blockquote></div><br></div></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><br><br clear="all"><span class="HOEnZb"><font color="#888888"><div><br></div>-- <br><div class="m_-4928089736255412493m_9186617808376476535gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphill<wbr>i/</a>   </font></span><span><font color="#888888"><a href="tel:(303)%20497-1726" value="+13034971726" target="_blank">303-497-1726</a> </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</font></span></div>
</div></div></blockquote></div><br></div></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>