<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hi Puneet,</div><div><br></div><div>I think you make a lot of great points, particularly on the analysis/factoring side. I would like to clarify my comments regarding I/O, using your first two (***emphasis mine***).</div><div dir="ltr"><br></div><div dir="ltr">----</div><div dir="ltr">"Handling of netcdf, hdf and grib data is easy. There are ***packages such as pyhdf, netcdf4-python and pygrib***. Also for .h5 files there is ***h5py package***. CSV data handling is also available."</div><div dir="ltr"><br></div><div dir="ltr">"I use the python ecosystem called CDAT developed at LLNL (<a href="http://cdat.llnl.gov/" target="_blank">http://cdat.llnl.gov/</a>) . It has ***packages such as cdms2*** to easily handle netcdf data I/O and its metadata. It is capable of handling large data sets of size of the order of GBs. It also has ***packages such as cdutil and genutil*** for performing various statistical analysis of time series data from simulations and observations..."</div><div dir="ltr">----</div><div dir="ltr"><br></div><div>The fact that users need to be A.) familiar with multiple packages for handling data and B.) careful to keep them all up-to-date/compatible with constantly evolving software while maintaining backwards portability is a concern of mine.</div><div><br></div><div>I (again, my two cents) think the potential gap in an NCL -> Python transition is not that packages *don't exist* for reading/massaging/analyzing files, but that the ecosystem for handling said files is somewhat fractured -- instead of being familiar with one syntax I have to be familiar with 4 or 5 (or very proficient and Google/copying code snippets!). netCDF I/O highlights this potential issue specifically, where it has still be difficult for me to nail down a superior choice of netcdf4-py, xarray, pynio, etc. and what my "best practices" should be when using said package(s). Ex: now that pynio is going into maintenance mode, should I go back and refactor all my existing python to use netcdf4-py to ensure it is usable in the future?</div><div><br></div><div>Currently, with NCL I can read a GRIB or NetCDF file and subset a defined time between -30S and 30N as, while attaching all coordinate/attribute data roughly as:</div><div><br></div><div>f=addfile("./<a href="http://myfile.nc" target="_blank">myfile.nc</a>","r")</div><div>mytime=cd_inv_calendar(2018,01,04,06,0,0,f->time@units, 0)</div><div>myvar=f->var(mytime,{-30.:30.},:)</div><div><br></div><div>I can write a netcdf file...</div><div><br></div><div><div>fout=addfile("./<a href="http://myoutput.nc" target="_blank">myoutput.nc</a>" ,"c")</div><div>filedimdef(fout,"time",-1,True) </div><div>fout->var=myvar</div></div><div><br></div><div>which automatically writes all coordinates, attributes, the time dimension, etc. to said *nc file. I have yet to find a matching syntax in a Python package with such brevity that is also straightforward.</div><div><br></div><div>So to clarify, while I am confident that I will be able to reproduce my workflows in Python, I am less confident that I'll be able to do so in as clean and straightforward manner as I have historically done.</div><div><br></div><div>It is here I plan to lean on the NCL team and general community for guidance on A.) which package(s) to use for porting and long-term stability and B.) best practices that allow me to generalize my future Python code to multiple dataset formats, types, etc.</div><div><br></div><div>Apologies for any confusion,</div><div>-Colin</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Feb 8, 2019 at 4:05 AM Puneet Sharma <<a href="mailto:puneet.988@gmail.com" target="_blank">puneet.988@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><img width="0" height="0" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275mailtrack-img" alt="" style="display:flex" src="https://mailtrack.io/trace/mail/89710dced2d5ee08a628cf2a8452349b9242f512.png?u=3894711"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div></div>Hello all<div><br></div><div>Since I extensively use python for analysis of data generated from model simulations and satellite data, I would like to share some of the strong points of python.</div><div><br></div><div>1. Handling of netcdf, hdf and grib data is easy. There are packages such as pyhdf, netcdf4-python and pygrib. Also for .h5 files there is h5py package. CSV data handling is also available.</div><div><br></div><div>2. I use the python ecosystem called CDAT developed at LLNL (<a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcdat.llnl.gov%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329364817&sdata=T9UxuHXSIKpLqrvmtNg1wSQKk7GczRoEadE4yCG9qO0%3D&reserved=0" target="_blank">http://cdat.llnl.gov/</a>) . It has packages such as cdms2 to easily handle netcdf data I/O and its metadata. It is capable of handling large data sets of size of the order of GBs. It also has packages such as cdutil and genutil for performing various statistical analysis of time series data from simulations and observations. Since the data usually has masks and fill values, the functions and procedure available in these packages automatically take care of that. Compared with NCL, CDAT seamlessly handles masking of data using the MV2 package. All of these packages have numpy as their base which is a python package for manipulating numerical data. I have struggled with NCL for masking data which lead me to switch to python. </div><div><br></div><div>3. Regridding of data and handling of various grids and interpolation routines which are available in NCL are also available CDAT.</div><div><br></div><div>4. String manipulation, data subsetting is very intuitive in python (CDAT). Moreover python code is highly readable since it requires forced indentation which keeps the code clean and readable. </div><div><br></div><div>5. The exceptional plotting libraries available in python such as matplotlib, seaborn, bokeh etc have an edge over NCL since very few lines of code can produce complex plots in publication format.</div><div><br></div><div>6. Python has intuitive data structures like dictionary, lists and functions like zip, enumerate for iteration which are not available in NCL<br><br>The only place where I found python to be lagging was the spatial plotting of gridded data. Compared to matplotlib-basemap plotting tool, NCL gives far more clearer and visually appealing spatial plots. But that issue has already been solved through PyNGL package.</div><div><br></div><div>I would further like to emphasise that together with the points mentioned above, there are many use cases in python which are not available in NCL such as</div><div><br></div><div>1. Interoperability with languages such as C, Java, R, FORTRAN since there are wrappers readily available for these languages.</div><div><br></div><div>2. Handling url requests for downloading data from different servers.</div><div><br></div><div>3. Handling of categorical data using the pandas package.</div><div><br></div><div>4. It is easy to call contemporary statistical functions and packages written in R through rpy2 package.</div><div><br></div><div>I feel that python can become one single platform for performing different tasks related to atmospheric and climate data handling encompassing various tasks which are not yet available in NCL. </div><div><br></div><div>I would be happy to clarify any questions.</div><div><br></div><div>Regards</div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Feb 8, 2019 at 9:27 AM Barry Lynn <<a href="mailto:barry.h.lynn@gmail.com" target="_blank">barry.h.lynn@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello<br><br><div>Now that we read about the obvious advantages (logic and ease of i/o) of NCL, is it possible for someone to list why someone would want to switch to python?  What does python have for the scientist that NCL does not?</div><div><br></div><div>Right now, I read netcdf files, ascii files, csv files, and I made graphs and maps, as well as write data using Fortran based programs (WRAPIT).  I find this all relatively easy to do (I do it, so it can't be too hard, it's just a lot to know!).</div><div><br></div><div>Why haven't I switched to Python already.  It sounds like the wave of the future!  What's in the wave?</div><div><br></div><div>Barry</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Feb 8, 2019 at 4:05 AM Colin Zarzycki <<a href="mailto:czarzycki@psu.edu" target="_blank">czarzycki@psu.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Like Carl, I have assumed this inevitability, although I have also scientifically "grown up" with NCL over the past decade+ and have many hundreds (probably thousands!) of hours invested in using NCL to answer a vast array of scientific questions. While I think the community's march towards Python has some underappreciated warts (I spent a couple hours updating/rolling back/softlinking mismatched libraries on my personal machine after simply running conda update last week), there is no denying that its growth across, not only Earth, but the broader data sciences and rising stature in university curricula makes it likely the preeminent tool of the next generation of researchers. For better or for worse, adoption and growth of languages are driven by the size/engagement of their userbase instead of optimal practicality for each individual.</div><div><br></div><div>A couple thoughts after reading the pivot roadmap...</div><div><br></div><div>A.) Based on my "toe-in-the-water geoscience Python scripting" the last few years, I actually think one of the weaker points in (right now) is that I have yet to find a workflow for weather/climate data I/O where opening, massaging, and writing netCDF datasets (and their corresponding variables, dimensions, etc.) comes with the same ease as in NCL. Some of that is naturally due to tremendous work that has been undertaken in the past to support multiple formats behind the curtain, but this also includes NCL's amazingly useful calendar routines, coordinate subscripting, simple handling of attributes, ability to trivially output a new *.nc file in 3 lines, etc. As the roadmap notes on pg. 13-14, currently a host of somewhat fractured Python packages that can lack clean, easy-to-understand syntax are used by the community and (to me) this is a large gap that has remained unfilled even with the proliferation of Python support over the last few years.</div><div><br></div><div>Therefore, I would argue additional examples* regarding side by side snippets of "writing Python for NCLers" with a specific emphasis on I/O would be incredibly helpful moving forward, particularly with respect to functionality NCL has historically "wrapped" to make life easier (for me, trading off ease-of-use for a little abstraction/processing inefficiency is OK, especially if it means I have time to grab a cup of coffee).</div><div><br></div><div>B.) Hopefully I am interpreting the goal of NCOMP correctly, but I am also glad to see there is effort to port NCL's functions that are highly-specific to the atmospheric sciences (ex: aforementioned calendar routines, climatological analysis, vertical coordinate interpolation, etc.). This functionality is the workhorse when, for example, I can take data straight from a native model grid and have clean, interpolated, post-processed variables "on my desk" in a couple minutes with ~10 lines of code.</div><div><br></div><div>-Colin</div><div><br></div><div>*the first draft/examples on the NCL site from Karin Meier-Fleischer are already incredibly useful!</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Feb 7, 2019 at 4:25 PM Adam Phillips <<a href="mailto:asphilli@ucar.edu" target="_blank">asphilli@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi all,<div>Not everyone got my original post so I am resending this to the cgd-etal list. My apologies for the duplicate email.<div><div class="gmail_quote"><div dir="ltr" class="gmail_attr"><br></div><div dir="ltr"><div>See Mary Haley's email below for information about the future of NCL. Quick summary: NCL is <i>not</i> going away, NCL graphics will continue to be developed, and the support structure remains intact. If you have any questions, feel free to contact myself, Nan Rosenbloom, or Laura Landrum, as all of us serve on the NCL Advisory Board.</div><div>Best,</div><div>Adam<br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">---------- Forwarded message ---------<br>From: <strong class="gmail_sendername" dir="auto">Mary Haley</strong> <span dir="ltr"><<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>></span><br>Date: Wed, Feb 6, 2019 at 6:24 AM<br>Subject: [ncl-talk] Important announcement regarding the future of NCL<br>To: Ncl-talk <<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>><br></div><br><br><div dir="ltr"><div dir="ltr"><div><div>Dear NCL Users,</div><div><br></div><div>This letter is in regard to the future of NCL, following NCAR's decision to move to Python as the scripting language of choice for future visualization and analysis software development. Note that this decision targets new development, leaving existing NCL functionality intact.</div><div><br></div><div>NCAR is committed to supporting data analysis software for atmospheric, oceanic, and climate science research. However, decreases in budgets and staff, coupled with the enormous functionality that Python brings to the earth sciences, has made it difficult to justify continuing new development on NCL. Python has seen rapid adoption by the earth science community and duplicates much of NCL's functionality, while adding critical features that NCL doesn't offer.</div><div><br></div><div>Based on recommendations from NSF, CISL and NCL advisory panels, the results of the NCL survey, and months of evaluating different strategies for the future development and support of NCL, NCAR has arrived at these major decisions, effective immediately:</div><div><ul><li>Python will be adopted as the scripting language platform for future visualization and analysis development.<br></li><li>NCL's core language and file I/O will be placed into maintenance mode.</li><li>NCL's graphics will have continued development through <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.pyngl.ucar.edu&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329374786&sdata=EmUPhs%2Bznl0n%2BfSn5FvTxNRZAEglW2wPjJoE0hPYBTI%3D&reserved=0" target="_blank">PyNGL</a><font color="#ff0000"><b>*</b></font>.<br></li><li>NCL's unique and critical computational routines will be ported to an as-yet-to-be-named Python package.<br></li><li><a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.pyngl.ucar.edu%2FNio.shtml&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329374786&sdata=YBh0FYsusbznXL4iwcc7m%2FBSLMVYhUMr3Dr4FfH5utQ%3D&reserved=0" target="_blank">PyNIO</a><b style="color:rgb(255,0,0)">*</b> will be placed into maintenance mode.<br></li><li>Development will continue on <a href="https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwrf-python.readthedocs.io%2Fen%2Flatest%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329384791&sdata=EOLfxBPDxSY4mF7LaFbVG8mXE0zOKMkxbYOJQh%2BzVwk%3D&reserved=0" target="_blank">WRF-Python</a><b style="color:rgb(255,0,0)">*</b>.</li><li>All software, including NCL and PyNIO, will be moved to a more open development software platform to allow for continued community development.</li></ul></div></div></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div dir="ltr"><div><div><b style="color:rgb(255,0,0)">*</b> PyNIO, PyNGL, and WRF-Python are Python modules built on top of NCL libraries, and are developed and supported by the NCL team.</div></div></div></blockquote><div dir="ltr"><div><div><br></div><div>NCAR recognizes the significance of these changes. It will take time for NCL users to transition to Python, and some users may not want to make the switch at all. As such, we want to stress that NCL is not going away. NCL users will be able to download NCL and execute their scripts for the foreseeable future.</div><div><br></div><div>To help users who want to begin transitioning their graphical NCL scripts to PyNGL right away, Karin Meier-Fleischer of DKRZ has written a first draft of an "<a href="http:///www.ncl.ucar.edu/Document/Manuals/NCL_to_Python/Transition_Guide_NCL_PyNGL.pdf" target="_blank">NCL-to-Python Transition Guide</a>" accompanied by <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.ncl.ucar.edu%2FApplications%2FNCL_to_Python%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329394845&sdata=k3FG0t6xfujiS5gd7XPex01Q7GvyNcJi2B1cWgO8SBY%3D&reserved=0" target="_blank">a suite of NCL and Python examples</a>.  Additionally, we will soon begin converting a subset of the NCL application examples to Python, using <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.pyngl.ucar.edu%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329394845&sdata=hYXGosu2HTtUlyuhsOzLH97oRnlqXP4ZvFg0rz9eSlg%3D&reserved=0" target="_blank">PyNGL</a> and <a href="https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmatplotlib.org&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329404810&sdata=XjcqHswb5%2B9OUFokSahHrdfwOIvV%2BXJK2%2BTVfCn9b%2Fk%3D&reserved=0" target="_blank">matplotlib</a>, and will continue to answer questions on the <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ucar.edu%2Fmailman%2Flistinfo%2Fncl-talk&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329414815&sdata=cQ33ooiYHy0uXHIelw4%2FgN13CZLIJWFH%2Focc9STx3Is%3D&reserved=0" target="_blank">ncl-talk</a> email list, but scaling back in order to start helping with Python questions.</div><div><br></div><div>For a detailed report and roadmap on the "pivot to Python" decision and transition plan, please read the "<a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.ncl.ucar.edu%2FDocument%2FPivot_to_Python%2FNCL_Pivot_to_Python_Report_and_Roadmap.pdf&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329414815&sdata=20Cze1zNBLIshsLTPcMdhlamxFowLYg5kJIzqtlTZ7M%3D&reserved=0" target="_blank">NCL and the Pivot to Python: Discussion and Roadmap</a>" report, which can be found on a special page we created containing <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.ncl.ucar.edu%2FDocument%2FPivot_to_Python%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329424833&sdata=LklVI7m0aT%2BkbI65oS0%2BnNnZlelDJ5sYmCSeJyR5%2BPY%3D&reserved=0" target="_blank">other supporting documents</a>.</div><div><br></div><div>The NCL team welcomes your input on this decision. We also want to know if there are other ways we can help ease the transition to Python and encourage users to become more active contributors through open development. Please use <a href="https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FNCAR%2Fncl%2Fissues%2F64&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329434829&sdata=coO0pqbI1PIYncvcLTXrNVoDb5mdBVhJrvfcM7aoqMo%3D&reserved=0" target="_blank">this GitHub issue</a> to submit questions or comments so we can keep the discussion public.</div><div><br></div><div><b>NCL Team:</b></div><div>John Clyne (acting group head)</div><div>Rick Brownrigg</div><div>Mary Haley</div><div>Kevin Hallock</div><div>Bill Ladwig</div><div><br></div><div><br></div><div><br></div><div style="font-size:small"><br></div></div></div></div>
_______________________________________________<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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ucar.edu%2Fmailman%2Flistinfo%2Fncl-talk&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329434829&sdata=GW7fysQG1uZKKyM4OZWdKWAkSj%2B2hfSKc79Q3DROk6c%3D&reserved=0" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275gmail_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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.cgd.ucar.edu%2Fstaff%2Fasphilli%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329444834&sdata=L1mVw4W6lgytQ1l1NDjrQmnMrYNBJH5DtJ4%2FQhl25hU%3D&reserved=0" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.cgd.ucar.edu%2Fstaff%2Fasphilli&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329454843&sdata=Xf8uu9gA4auoBpZOEhbn5PmheZxb8s9J1mU2L4GDJxw%3D&reserved=0" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div></div></div>
</div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275gmail_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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.cgd.ucar.edu%2Fstaff%2Fasphilli%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329454843&sdata=IPrK4QjYJa27o0CRK2nDReOC1IM2uTE5oIyFvHlMtBI%3D&reserved=0" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.cgd.ucar.edu%2Fstaff%2Fasphilli&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329464848&sdata=c16MxUfIcZIpATjPVNdb%2BaOAknGIzJZKQdRaTGXOkGA%3D&reserved=0" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr" style="font-family:arial"><font color="#000000">Colin M. Zarzycki, </font><span style="font-family:Helvetica;font-size:13.0769px">Ph.D.</span></div><div><font color="#000000" face="arial">Assistant Professor of Meteorology and Climate Dynamics</font><br></div><div><font color="#000000" face="arial">Department of Meteorology and Atmospheric Science</font><br></div><div><font color="#000000" face="arial">Pennsylvania State University<br></font></div><div dir="ltr" style="font-family:arial">Web: <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.colinzarzycki.com%2F&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329474902&sdata=l8dwjZxe7zqSfEMtOxtMabUMldAgkASPYG7yisnvZ7k%3D&reserved=0" style="color:rgb(17,85,204)" target="_blank">http://www.colinzarzycki.com</a> | Office: +1 (814) 863-6888</div></div></div></div></div></div></div>
</div>
_______________________________________________<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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ucar.edu%2Fmailman%2Flistinfo%2Fncl-talk&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329474902&sdata=hnBN0b6Msywhw5aCBBfPyWkkRsxxcmjX%2BJckpOm0JSY%3D&reserved=0" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275gmail_signature"><div dir="ltr"><div><div dir="ltr">Barry H. Lynn, Ph.D<div><div>Senior Associate Scientist, Lecturer,</div><div><div><span style="color:rgb(136,136,136)">The Institute of the Earth Science, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">The Hebrew University of Jerusalem, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Givat Ram, Jerusalem 91904, Israel </span><br style="color:rgb(136,136,136)"></div><span style="color:rgb(136,136,136)">Tel: 972 547 231 170</span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Fax: (972)-25662581</span></div></div><div><span style="color:rgb(136,136,136)"><br></span></div><div>C.E.O, Weather It Is, LTD<br>Weather and Climate Focus<br><a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fweather-it-is.com&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329484862&sdata=7Agdci1ZASfjxpU1nUxOTmPNCkjuYPqkUUVnLeiB7fc%3D&reserved=0" target="_blank">http://weather-it-is.com</a><br>Jerusalem, Israel<br>Local: 02 930 9525<br>Cell: 054 7 231 170<br>Int-IS: x972 2 930 9525<br><br></div></div></div></div></div>
_______________________________________________<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="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ucar.edu%2Fmailman%2Flistinfo%2Fncl-talk&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329494872&sdata=hdjvTbPBVrMtRRLHOYI11KDOisVTy46p262mLFChDZA%3D&reserved=0" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail-m_6398512306859506275gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Puneet Sharma<br>Ph.D. Research Scholar<br>Centre for Atmospheric Sciences<br>IIT Delhi, Hauz Khas<br></div>Contact No. 9891582124<br></div></div><div dir="ltr"><br></div><div><a href="https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.puneetks.com&data=02%7C01%7Ccmz5202%40psu.edu%7C5b27ea917f2c42e9cb7f08d68da493fe%7C7cf48d453ddb4389a9c1c115526eb52e%7C0%7C0%7C636852135329494872&sdata=ZNOK16QMRv8a%2FJnzT0XBnD%2B2TyfDd5Y9jjN7SqOeTCw%3D&reserved=0" target="_blank">https://www.puneetks.com</a></div></div></div></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_-133173614944525480gmail-m_-7285350981189180771gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr" style="font-family:arial"><font color="#000000">Colin M. Zarzycki, </font><span style="font-family:Helvetica;font-size:13.0769px">Ph.D.</span></div><div><font color="#000000" face="arial">Assistant Professor of Meteorology and Climate Dynamics</font><br></div><div><font color="#000000" face="arial">Department of Meteorology and Atmospheric Science</font><br></div><div><font color="#000000" face="arial">Pennsylvania State University<br></font></div><div dir="ltr" style="font-family:arial">Web: <a href="http://www.colinzarzycki.com/" style="color:rgb(17,85,204)" target="_blank">http://www.colinzarzycki.com</a> | Office: +1 (814) 863-6888</div></div></div></div></div></div></div></div></div></div></div></div>