Skip to content

Fix content breaks and clean up mystification #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,4 @@ dmypy.json

# IDEs
.vscode/
.idea
8 changes: 2 additions & 6 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@ cff-version: 1.2.0
message: "If you use this cookbook, please cite it as below."
authors:
# add additional entries for each author -- see https://github.com/citation-file-format/citation-file-format/blob/main/schema-guide.md
- family-names: Camron
given-names: Drew
orcid: https://orcid.org/0000-0001-7246-6502
website: https://github.com/dcamron
affiliation: UCAR/Unidata
- name: "Metpy Cookbook contributors" # use the 'name' field to acknowledge organizations
website: "https://github.com/ProjectPythia/metpy-cookbook/graphs/contributors"
title: "Metpy Cookbook"
abstract: "A sample cookbook description."
abstract: "We provide a gallery of real workflows centered around meteorological data,
and the building blocks you need to recreate those workflows or cook up brand new ones yourself."
5 changes: 2 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ channels:
dependencies:
- cartopy
- geopandas
- jupyter_server<2
- jupyter-book
- jupyterlab
- jupyterlab-myst
- matplotlib
- metpy
- mystmd
- numpy
- pandas
- scipy
- siphon
- xarray
- mystmd
22 changes: 12 additions & 10 deletions myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,34 +6,36 @@ project:
authors:
- name: MetPy Maintainers
github: https://github.com/projectpythia/metpy-cookbook
copyright: '2024'
copyright: '2025'
jupyter:
binder:
repo: projectpythia/metpy-cookbook
settings:
output_matplotlib_strings: 'remove'
toc:
- file: README.md
- title: Preamble
children:
- file: notebooks/how-to-cite
- file: notebooks/how-to-cite.md
- title: The MetPy Gallery
children:
- file: notebooks/synoptic/index.md
title: Synoptic Analysis
children:
- pattern: notebooks/synoptic/*
- pattern: notebooks/synoptic/*.ipynb
- file: notebooks/skewt/index.md
title: Skew-T Analysis
children:
- pattern: notebooks/skewt/*
- pattern: notebooks/skewt/*.ipynb
- file: notebooks/convective/index.md
title: Convective Calculations
children:
- pattern: notebooks/convective/*
- pattern: notebooks/convective/*.ipynb
- file: notebooks/specialty/index.md
title: Specialty Plotting
children:
- pattern: notebooks/specialty/*
- pattern: notebooks/specialty/*.ipynb
- file: notebooks/declarative/index.md
title: Simplified Plotting
children:
- pattern: notebooks/declarative/*
jupyter:
binder:
repo: projectpythia/metpy-cookbook
- pattern: notebooks/declarative/*.ipynb
Loading