Demo notebooks¶
The Notebook Aspect is preloaded with demo notebooks to help you learn about notebook-based computing and inspire your own work on the platform.
Using the demo notebooks¶
You can find these notebooks in the notebooks/notebook-demo
directory of the JupyterLab file browser.
Double click the directory, then double click on the notebook to open it.
You can click Run → Run all Cells to run the entire notebook, or type shift-return to run one cell at a time.
In the terminal, you can find notebook-demo
in the ~/notebooks
directory.
Note
The notebooks/notebook-demo
directory is hosted at https://github.com/lsst-sqre/notebook-demo.
Every time you log into the Notebook Aspect, the default branch (called prod
) is updated from GitHub.
Avoid running git commit on the prod
branch.
How the notebooks are kept up to date¶
The system tries to keep the demo notebooks up to date.
It does this by using the git stash
and git apply
commands to try to save user changes and update the notebooks without affecting user activity.
To learn more about git stash
, see the git documentation.
Updating the notebooks is a multistage process:
On startup the launcher looks at your
notebook-demo
repository to see if there are user changes that are not committed to the repository.If there are it executes a
git stash
to save the user changes (this could be simply from running a notebooke).It then checks to see if the repository is on the production branch that needs updates. This is usually the
prod
branch.If not, it will switch to the production branch.
The production branch is updated.
If the repository was not on the production branch initially the launcher changes back to the original branch.
Finally, any user changes are put back in place.
There are two places where things could potentially run into problems. First, if the user has made commits on the production branch of the repository, there could be merge conflicts when the launcher tries to update it. Second, if the user has un-committed changes on the production branch, there could be conflicts when the launcher tries to re-apply the stashed user changes. In either case, it will be up to you to work out the conflicts in order for future updates to work.
Notebooks¶
cluster.ipynb (Whiting I)¶
This notebook explores a very simple analysis to show the utility of notebooks in general, and some of the features of the JupyterLab environment specifically.
This notebook uses data from DR14 of the SDSS survey, using the globular cluster Whiting I as a starting point.
Firefly.ipynb (Firefly Visualization Demo)¶
This notebook is intended to demonstrate the Firefly interactive interface for viewing image data. It also builds on the pedagogical explanations provided in the Getting started tutorial of the LSST Science Pipelines documentation.
This tutorial seeks to teach you about how to use the LSST Science Pipelines to inspect outputs from processCcd.py
by displaying images and source catalogs in the Firefly image viewer.
In doing so, you’ll be introduced to some of the LSST Science Pipelines’ Python APIs, including:
Accessing datasets with the
Butler
.Displaying images with
lsst.afw.display
.Pass source catalog data directly to the
FireflyClient
.
star_galaxy.ipynb (A very simple example of star/galaxy separation)¶
This notebook uses the LSST Science Pipelines’s Butler to get an Exposure and source table, and then use the base_ClassificationExtendedness_value
to classify sources as stars or galaxies.
The notebook shows how to use Matplotlib to visualize the sources on the exposure, and analyze the performance of the star-galaxy classifier.
More notebooks¶
See LSST-related notebook repositories to discover more notebooks being shared by LSST and the community.