From 331109743dd49a11e38a56cead8e208803b443d4 Mon Sep 17 00:00:00 2001 From: Julia Kent <46687291+jukent@users.noreply.github.com> Date: Fri, 8 Dec 2023 06:16:15 -0700 Subject: [PATCH] rename files numerically and pin bokeh --- _toc.yml | 16 ++++++++-------- environment.yml | 2 +- .../{comparison.ipynb => 1-comparison.ipynb} | 2 +- notebooks/{good-viz.ipynb => 2-good-viz.ipynb} | 2 +- ...plot-elements.ipynb => 3-plot-elements.ipynb} | 0 ...or-diagrams.ipynb => 4-taylor-diagrams.ipynb} | 2 +- notebooks/{skewt.ipynb => 5-skewt.ipynb} | 2 +- notebooks/{spaghetti.ipynb => 6-spaghetti.ipynb} | 2 +- notebooks/{animation.ipynb => 7-animation.ipynb} | 2 +- ...as.ipynb => 8-interactive-holoviz-mpas.ipynb} | 0 10 files changed, 15 insertions(+), 15 deletions(-) rename notebooks/{comparison.ipynb => 1-comparison.ipynb} (99%) rename notebooks/{good-viz.ipynb => 2-good-viz.ipynb} (99%) rename notebooks/{plot-elements.ipynb => 3-plot-elements.ipynb} (100%) rename notebooks/{taylor-diagrams.ipynb => 4-taylor-diagrams.ipynb} (99%) rename notebooks/{skewt.ipynb => 5-skewt.ipynb} (99%) rename notebooks/{spaghetti.ipynb => 6-spaghetti.ipynb} (99%) rename notebooks/{animation.ipynb => 7-animation.ipynb} (99%) rename notebooks/{interactive-holoviz-mpas.ipynb => 8-interactive-holoviz-mpas.ipynb} (100%) diff --git a/_toc.yml b/_toc.yml index 113b725..70c721a 100644 --- a/_toc.yml +++ b/_toc.yml @@ -6,19 +6,19 @@ parts: - file: notebooks/how-to-cite - caption: Basics of Geoscience Visualization chapters: - - file: notebooks/comparison - - file: notebooks/good-viz - - file: notebooks/plot-elements + - file: notebooks/1-comparison + - file: notebooks/2-good-viz + - file: notebooks/3-plot-elements - caption: Specialty Plots chapters: - - file: notebooks/taylor-diagrams - - file: notebooks/skewt + - file: notebooks/4-taylor-diagrams + - file: notebooks/5-skewt - caption: Visualization of Structured Grids chapters: - - file: notebooks/spaghetti + - file: notebooks/6-spaghetti - caption: Animation chapters: - - file: notebooks/animation + - file: notebooks/7-animation - caption: Interactivity chapters: - - file: notebooks/interactive-holoviz-mpas + - file: notebooks/8-interactive-holoviz-mpas diff --git a/environment.yml b/environment.yml index 875a663..6dff9b0 100644 --- a/environment.yml +++ b/environment.yml @@ -15,7 +15,7 @@ dependencies: - hvplot - plotly - seaborn - - bokeh + - bokeh=2.3 - uxarray - datashader - geocat-datafiles diff --git a/notebooks/comparison.ipynb b/notebooks/1-comparison.ipynb similarity index 99% rename from notebooks/comparison.ipynb rename to notebooks/1-comparison.ipynb index ec56d50..076588c 100644 --- a/notebooks/comparison.ipynb +++ b/notebooks/1-comparison.ipynb @@ -365,7 +365,7 @@ "\n", "### What's next?\n", "\n", - "Next up let's discuss elements of [good data visualization](good-viz)." + "Next up let's discuss elements of [good data visualization](2-good-viz)." ] }, { diff --git a/notebooks/good-viz.ipynb b/notebooks/2-good-viz.ipynb similarity index 99% rename from notebooks/good-viz.ipynb rename to notebooks/2-good-viz.ipynb index aedb667..1bca4d4 100644 --- a/notebooks/good-viz.ipynb +++ b/notebooks/2-good-viz.ipynb @@ -278,7 +278,7 @@ "\n", "### What's next?\n", "\n", - "Let's break down the different components of data visualization in [Plot Elements](plot-elements).\n" + "Let's break down the different components of data visualization in [Plot Elements](3-plot-elements).\n" ] }, { diff --git a/notebooks/plot-elements.ipynb b/notebooks/3-plot-elements.ipynb similarity index 100% rename from notebooks/plot-elements.ipynb rename to notebooks/3-plot-elements.ipynb diff --git a/notebooks/taylor-diagrams.ipynb b/notebooks/4-taylor-diagrams.ipynb similarity index 99% rename from notebooks/taylor-diagrams.ipynb rename to notebooks/4-taylor-diagrams.ipynb index f893577..beb84a2 100644 --- a/notebooks/taylor-diagrams.ipynb +++ b/notebooks/4-taylor-diagrams.ipynb @@ -549,7 +549,7 @@ "\n", "### What's next?\n", "\n", - "Let's look at the meteorology specialty plots [Skew T Diagrams](skewt)." + "Let's look at the meteorology specialty plots [Skew T Diagrams](5-skewt)." ] }, { diff --git a/notebooks/skewt.ipynb b/notebooks/5-skewt.ipynb similarity index 99% rename from notebooks/skewt.ipynb rename to notebooks/5-skewt.ipynb index 0c9b7fa..c202d7e 100644 --- a/notebooks/skewt.ipynb +++ b/notebooks/5-skewt.ipynb @@ -354,7 +354,7 @@ "Skew-T plots are a useful tool for visualizing and understanding sounding data. Creating Skew-T plots in python might seem challenging given their unique structural characteristics, but `MetPy`'s `SkewT` module greatly simplifies the process.\n", "\n", "### What's next?\n", - "Next up let’s discuss [spaghetti plots](spaghetti)." + "Next up let’s discuss [spaghetti plots](6-spaghetti)." ] }, { diff --git a/notebooks/spaghetti.ipynb b/notebooks/6-spaghetti.ipynb similarity index 99% rename from notebooks/spaghetti.ipynb rename to notebooks/6-spaghetti.ipynb index 99953f3..ed2e8c3 100644 --- a/notebooks/spaghetti.ipynb +++ b/notebooks/6-spaghetti.ipynb @@ -903,7 +903,7 @@ "\n", "### What's next?\n", "\n", - "Next up let's discuss [Animation](animation)." + "Next up let's discuss [Animation](7-animation)." ] }, { diff --git a/notebooks/animation.ipynb b/notebooks/7-animation.ipynb similarity index 99% rename from notebooks/animation.ipynb rename to notebooks/7-animation.ipynb index 11b4a37..24585bd 100644 --- a/notebooks/animation.ipynb +++ b/notebooks/7-animation.ipynb @@ -471,7 +471,7 @@ "\n", "### What's next?\n", "\n", - "In the final section of this cookbook, let’s look at [interactive plotting with Holoviz](interactive-holoviz-mpas) tools." + "In the final section of this cookbook, let’s look at [interactive plotting with Holoviz](8-interactive-holoviz-mpas) tools." ] }, { diff --git a/notebooks/interactive-holoviz-mpas.ipynb b/notebooks/8-interactive-holoviz-mpas.ipynb similarity index 100% rename from notebooks/interactive-holoviz-mpas.ipynb rename to notebooks/8-interactive-holoviz-mpas.ipynb