thumbnail

MSCAR Python Workshop

nightly-build Binder

Motivation

This material will be used to provide an overview of how to use Python for the atmospheric and climate sciences.

Authors

Max Grover Zach Sherman Scott Collis Adam Theisen

Contributors

Workshop Recording

The recording for this workshop can be found here!

MSCAR Python Workshop 2022

Structure

Radar Data with Py-ART

Within this section, we cover the basics of Py-ART and apply it to a sample analysis workflow.

Weather Observations with ACT

The Atmospheric data Community Toolkit (ACT) is a helpful tool when working with atmospheric observations! This portion will focus on reading, visualizing, and analyzing observational datasets from the Atmospheric Radiation Measurement user facility.

Climate Analysis with Pangeo

Our last section covers how to use the Pangeo stack, specifically Intake-ESM, Xarray, and other components to inspect and visualize earth system model data.

Running the Notebooks

You can either run the notebook using Binder or on your local machine.

Running on Your Own Computer

If you are interested in running this material locally on your computer, you will need to follow this workflow:

  1. Clone the https://github.com/mgrover1/mscar-python-workshop-2022 repository:

     git clone https://github.com/mgrover1/mscar-python-workshop-2022.git
    
  2. Move into the mscar-python-workshop-2022 directory

    cd mscar-python-workshop-2022
    
  3. Create and activate your conda environment from the environment.yml file

    conda env create -f environment.yml
    conda activate mscar-python-tutorial-dev
    
  4. Move into the notebooks directory and start up Jupyterlab

    cd notebooks/
    jupyter lab