Skip to content

Commit 02d6a93

Browse files
authored
Merge pull request #13 from dopplershift/cleanup
Clean up and reorganize
2 parents 8674d6f + 1a0af4a commit 02d6a93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+86
-44
lines changed

README.md

Lines changed: 2 additions & 4 deletions

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
title: The MetPy Cookbook
55
author: MetPy Maintainers
6-
logo: pythia.png
6+
logo: _static/metpy_150x150.png
77
email: support-python@unidata.ucar.edu
88
copyright: "2024"
99

13.8 KB

_static/metpy_150x150.png

7.92 KB

_toc.yml

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,23 @@ parts:
66
- file: notebooks/how-to-cite
77
- caption: The MetPy Gallery
88
chapters:
9-
- file: notebooks/notebook-template
10-
title: What organization
9+
- file: notebooks/synoptic/index
10+
title: Synoptic Analysis
1111
sections:
12-
- glob: notebooks/gallery/*
13-
- file: notebooks/gallery/index1
14-
title: do we want
15-
- file: notebooks/gallery/index2
16-
title: for these "chapters"?
17-
- caption: Skew-T Notebooks
18-
chapters:
19-
- file: notebooks/Foundational_Sounding
20-
- file: notebooks/Advanced_Sounding
21-
- file: notebooks/Skew-T_Hodograph_Inset
22-
- file: notebooks/Skew-T_Layout_Hodograph
23-
- file: notebooks/Skew-T_Analysis
24-
- file: notebooks/Sounding_LCL_Dataset
25-
- file: notebooks/Sounding_Plotter
26-
- file: notebooks/Sounding_Calculations
12+
- glob: notebooks/synoptic/*
13+
- file: notebooks/skewt/index
14+
title: Skew-T Analysis
15+
sections:
16+
- glob: notebooks/skewt/*
17+
- file: notebooks/convective/index
18+
title: Convective Calculations
19+
sections:
20+
- glob: notebooks/convective/*
21+
- file: notebooks/specialty/index
22+
title: Specialty Plotting
23+
sections:
24+
- glob: notebooks/specialty/*
25+
- file: notebooks/declarative/index
26+
title: Simplified Plotting
27+
sections:
28+
- glob: notebooks/declarative/*
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {
6+
"cell_marker": "\"\"\"",
7+
"lines_to_next_cell": 0
8+
},
9+
"source": [
10+
"Most-Unstable Convective Available Potential Energy (MUCAPE)\n",
11+
"======================\n",
12+
"Calculate MUCAPE on a grid of netCDF data using MetPy."
13+
]
14+
},
315
{
416
"cell_type": "code",
517
"execution_count": 10,
@@ -35,7 +47,7 @@
3547
"source": [
3648
"## opening NetCDF file using xarray \n",
3749
"\n",
38-
"ds = xr.open_mfdataset(\"/home/jovyan/metpy-cookbook/NETCDF_FILE.nc\",combine = \"nested\", concat_dim=\"time\",decode_times=True)"
50+
"ds = xr.open_dataset(\"NETCDF_FILE.nc\", decode_times=True)"
3951
]
4052
},
4153
{
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {
6+
"cell_marker": "\"\"\"",
7+
"lines_to_next_cell": 0
8+
},
9+
"source": [
10+
"Total Column Precipitable Water (TCPW)\n",
11+
"======================\n",
12+
"Calculate TCPW on a grid of netCDF data using MetPy."
13+
]
14+
},
315
{
416
"cell_type": "code",
517
"execution_count": 10,
@@ -26,7 +38,7 @@
2638
"source": [
2739
"## opening NetCDF file using xarray \n",
2840
"\n",
29-
"ds = xr.open_mfdataset(\"/home/jovyan/metpy-cookbook/NETCDF_FILE.nc\",combine = \"nested\", concat_dim=\"time\",decode_times=True)"
41+
"ds = xr.open_dataset(\"NETCDF_FILE.nc\", decode_times=True)"
3042
]
3143
},
3244
{

notebooks/convective/index.md

Lines changed: 3 additions & 0 deletions
File renamed without changes.

0 commit comments

Comments
 (0)