Drought Working Group SSTs
Overview
Teaching: 0 min
Exercises: 0 minQuestions
Setting up the SSTs
Objectives
The SSTs
The SSTs for each experiment are located on COLA in:
/glade/scratch/cstan/droughtwg/
The SST anomalies for the Pacific are located in: Pacific_SST.nc
The SST anomalies for the Atlantic are located in: N_atl_SST.nc
The climatological SSTs are located in: monthly_climatology_sst_ice.nc
Let’s read in and make a plot of these data. Launch Jupyter (or your preferred Python environment):
An example notebook is located here in: `~cstan/clim670/droughtwg/droughwgexps.ipynb’. You should copy it to your home directory or any special subdirectory you use for saving class related files:
$ cd
$ cp ~cstan/clim670/droughtwg/droughwgexps.ipynb .
To launch the Jupyter notebook on the NCAR computers
- Log in to the Production NCAR JupyterHub
- Start a server
This is the NCAR data analysis cluster. We use the cheyenne supercomputer to run the model. We use the casper analysis cluster to do data analysis on model output or to do data analysis to prepare data for our model experiments.
You can now open the Jupyter notebook using the file browser in Jupyter. Slect NPL2023a as kernel.
We will walk through this notebook to look at our data and then to prepare them for use in the CESM.
- Look at our Drought WG Data
- Look at the CESM SST Data
- Make our Drought WG Data look like CESM SST Data
- Full SST fields (anomalies + climatology)
- Same grid
- Same times
- No missing values
- Same units
-
Make a new SST file for CESM to use
- Replace the right variable with our new SST data.
We can use ncview
to take a quick look at our data file and confirm that it looks reasonable.
$ module load ncview
$ ncview /glade/scratch/cstan/input/dwg_pacpos.nc
Key Points