Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduction Tutorial #281

Merged
merged 12 commits into from
Feb 18, 2022
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@

# we always have to manually run the notebooks because they are slow / expensive
jupyter_execute_notebooks = "auto"
execution_excludepatterns = ["tutorials/xarray_zarr/*", "tutorials/hdf_reference/*"]
execution_excludepatterns = [
"tutorials/xarray_zarr/*",
"tutorials/hdf_reference/*",
"introduction_tutorial/*",
]

# -- Options for HTML output -------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you are new to Pangeo Forge and looking to get involved, we suggest getting s
:maxdepth: 2

what_is_pangeo_forge
intro_tutorial
introduction_tutorial/index
recipe_user_guide/index
cloud_automation_user_guide/index
tutorials/index
Expand Down
224 changes: 0 additions & 224 deletions docs/intro_tutorial.md

This file was deleted.

21 changes: 21 additions & 0 deletions docs/introduction_tutorial/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Introduction Tutorial

Welcome to the Pangeo Forge introduction tutorial!

This tutorial is split into three parts:
1. Defining a recipe
1. Running a recipe locally
2. Setting up a recipe to run in the cloud

Throughout this tutorial we are going to convert NOAA OISST stored in netCDF to Zarr. OISST is a global, gridded ocean sea surface temperature dataset at 1/4 degree resolution. By the end of this tutorial sequence you will have converted some OISST data to zarr, be able to access a sample on your computer, and see how to propose the recipe for cloud deployment!

The introduction tutorial assumes that you already have `pangeo-forge-recipes` installed.

## Index

```{toctree}
:maxdepth: 1
:glob:

intro_tutorial_part1
```
Loading