See the Cookbook Contributor's Guide for step-by-step instructions on how to create your new Cookbook and get it hosted on the Pythia Cookbook Gallery!
Where do you start if the data product you need doesn’t exist yet? Designing a scientific algorithm is already a challenge — making it automated, open, reusable, and cloud-ready is even harder. This project creates a cookbook that guides users through building a data product algorithm using best-in-class open methods, with Landsat sea surface temperature (SST) as the case study. It demystifies complex steps like thermal infrared atmospheric correction and avoids dependence on proprietary radiative transfer models.
This Project Pythia Cookbook covers how to create a data product from a raw image to data production.
- Streamlines some of the biggest time sinks in science: data access and generation
- Makes complex thermal correction and retrieval methods more accessible
- Provides a full, reproducible workflow — from data download to robust error quantification — for training new users and accelerating applied research
Tasha Snow, Genevieve Clow, Kathryn Moore, Arman Oliazadeh, Jianwen Du.
This cookbook is broken into seven chapters: data access, data prepreprocessing, building a brightness temperature correction, retrieving a corrected value, calibrating, validating with in situ data, and producing the data file.
Teaches how to most effectively find and access your datasets from a local laptop or the cloud.
Learn about the different steps involved in data preprocessing as the data is prepared to be used in conjunction with other datasets and eventually corrected and applied within a retrieval.
Learn why we would want to calibrate our new dataset and how to do so.
Learn about what data to use for validation, why we want to validate, and potential models we can use for validation.
You can either run the notebook using Binder or on your local machine.
The simplest way to interact with a Jupyter Notebook is through
Binder, which enables the execution of a
Jupyter Book in the cloud. The details of how this works are not
important for now. All you need to know is how to launch a Pythia
Cookbooks chapter via Binder. Simply navigate your mouse to
the top right corner of the book chapter you are viewing and click
on the rocket ship icon, (see figure below), and be sure to select
“launch Binder”. After a moment you should be presented with a
notebook that you can interact with. I.e. you’ll be able to execute
and even change the example programs. You’ll see that the code cells
have no output at first, until you execute them by pressing
{kbd}Shift
+{kbd}Enter
. Complete details on how to interact with
a live Jupyter notebook are described in Getting Started with
Jupyter.
Note, not all Cookbook chapters are executable. If you do not see the rocket ship icon, such as on this page, you are not viewing an executable book chapter.
If you are interested in running this material locally on your computer, you will need to follow this workflow:
(Replace "cookbook-example" with the title of your cookbooks)
-
Clone the
https://github.com/ProjectPythia/cookbook-example
repository:git clone https://github.com/ProjectPythia/cookbook-example.git
-
Move into the
cookbook-example
directorycd cookbook-example
-
Create and activate your conda environment from the
environment.yml
fileconda env create -f environment.yml conda activate cookbook-example
-
Move into the
notebooks
directory and start up Jupyterlabcd notebooks/ jupyter lab