Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 4.31 KB

File metadata and controls

68 lines (48 loc) · 4.31 KB

PACEToolkit

We are a team representing diverse end users of PACE data. During hackweeks, we haave collaborated 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 Even
Eli Holmes NOAA Fisheries, Office of Science and Technology Simple matchup on tracks PH24, OHW24, PH25
Prem Maheshwarkar Universite Paris Est Creteil Val de Marne Multi-source aerosol data visualization PH24
Thiago Nobrega University of Sao Paulo Re-gridding PACE data PH24
Bingqing Liu University of Louisiana Lafayette CyanoHABs HyperCoast PH24
Jiaxu Zhang University of Washington (CICOES)/NOAA PMEL Chl-a products of multiple sources PH24
Rui Jin University of Washington (CICOES) Simple PACE data manipulation PH24
Han Huynh University of Colorado at Boulder (CIRES)/NOAA CSL Multi-source aerosol data visualization PH24

Additional resources

To collaborate

Add notebooks

  1. Make sure your notebook has a markdown cell with a level 1 header at the top. For example
# My title
  1. Do not include any html, like <div> or <h1> in your notebook. It will break the book build.
  2. Add your notebook to the notebooks folder
  3. Add your notebook to the _toc.yml file
  4. Push to the repo and the book will automatically rebuild.
  5. Watch the Actions tab on the repo to see when the rebuild is finished.

To build book locally

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

To build book on GitHub

There is a GitHub Action that will automatically build and serve on GitHub Pages.

If you use this repo as a template and are using gh-pages branch to serve your Pages, then build book locally and push to GitHub.

ghp-import -n -p -f _build/html

Do pip install ghp-import if needed.