Download introduction material
The introduction consists of six exercises in the form of Jupyter notebooks that will give a basic introduction to:
numpy
(data arrays)matplotlib
(plotting)xarray
(arrays with named axes)cartopy
(plotting geographical data on maps).
The notebooks need to be downloaded an unzipped:
Navigate to the
ip_python
folder and and create a subfolder for the introduction, e.g. naming itintro
.Download the intro material:
intro.zip
.Unzip
intro.zip
into theintro
folder. This should extract two folders:intro ├── code │ ├── 1.1_numpy_intro.ipynb │ ├── 2.1_matplotlib_intro.ipynb │ ├── 3.1_xarray_dataarray.ipynb │ ├── 3.2_xarray_dataset.ipynb │ ├── 4.1_cartopy_intro_scatter.ipynb │ └── 4.2_cartopy_pcolormesh.ipynb └── data ├── ...
Start
jupyter lab
from theMiniforge prompt
(or the command line):Navigate to
ip_python/intro/code
folder. There you will find the exercises.