PACEToolkit#
We are a team representing diverse end users of PACE data. During PACE Hackweek 2024, we collaborating on tools and tutorials that would help our end users access and use PACE data.
See the Tutorials link in sidebar for our tutorials developed during the hackweek. See the scripts
folder for functions we created.
Collaborators#
Name |
Affiliation |
Tutorial |
Links |
---|---|---|---|
NOAA Fisheries, Office of Science and Technology |
Simple matchup on tracks |
||
Universite Paris Est Creteil Val de Marne |
Multi-source aerosol data visualization |
||
Thiago Nobrega |
University of Sao Paulo |
Re-gridding PACE data |
|
University of Louisiana Lafayette |
CyanoHABs |
||
University of Washington (CICOES)/NOAA PMEL |
Chl-a products of multiple sources |
||
Rui Jin |
University of Washington (CICOES) |
Simple PACE data manipulation |
|
University of Colorado at Boulder (CIRES)/NOAA CSL |
Multi-source aerosol data visualization |
Additional resources#
EDM Workshop – tutorials that we can adapt
CoastWatch – lots of Python tutorials on some typical science tasks with remote-sensing data
To collaborate#
Add notebooks
Make sure your notebook has a markdown cell with a level 1 header at the top. For example
# My title
Do not include any html, like
<div>
or<h1>
in your notebook. It will break the book build.Add your notebook to the
notebooks
folderAdd your notebook to the
_toc.yml
filePush to the repo and the book will automatically rebuild.
Watch the Actions tab on the repo to see when the rebuild is finished.
To build book
Do pip install ghp-import
if needed. Then build book and push to GitHub. Set Pages to use gh-pages branch.
jupyter-book build . --keep-going
ghp-import -n -p -f _build/html
To build pdf
sudo apt-get install texlive-latex-extra \
texlive-fonts-extra \
texlive-xetex latexmk
jupyter-book build . --builder pdflatex