Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 3.91 KB

intro.md

File metadata and controls

57 lines (41 loc) · 3.91 KB

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

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

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