From f47475b81f8e68931da517713c910e34a83f6dc4 Mon Sep 17 00:00:00 2001 From: Orhan Eroglu <32553057+erogluorhan@users.noreply.github.com> Date: Wed, 1 May 2024 12:02:15 -0600 Subject: [PATCH] Update environment.yml (#12) * Update environment.yml * Update 01-plot-api.ipynb * Update 01-unstructured-grid-overview.ipynb * Update 01-unstructured-grid-overview.ipynb --- environment.yml | 3 +-- notebooks/01-intro/01-unstructured-grid-overview.ipynb | 10 +++++----- notebooks/03-uxarray-vis/01-plot-api.ipynb | 4 ++-- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/environment.yml b/environment.yml index 845e9191..2b47c956 100644 --- a/environment.yml +++ b/environment.yml @@ -10,7 +10,6 @@ dependencies: - hvplot - jupyter-book - jupyterlab - - jupyter_server - matplotlib-base - netcdf4 - numba @@ -28,7 +27,7 @@ dependencies: - shapely - spatialpandas - sphinx-pythia-theme + - uxarray - xarray - pip: - antimeridian - - git+https://github.com/UXARRAY/uxarray.git@main #until UXarray's March or April release diff --git a/notebooks/01-intro/01-unstructured-grid-overview.ipynb b/notebooks/01-intro/01-unstructured-grid-overview.ipynb index 58538852..34ed0039 100644 --- a/notebooks/01-intro/01-unstructured-grid-overview.ipynb +++ b/notebooks/01-intro/01-unstructured-grid-overview.ipynb @@ -259,17 +259,17 @@ "\n", "- Enables significant data analysis and visualization functionality to be executed directly on unstructured grids\n", "\n", + "- Adheres to the UGRID specifications for compatibility across a variety of mesh formats\n", + "\n", + "- Provides a single interface for supporting a variety of unstructured grid formats including UGRID, MPAS, SCRIP, and Exodus\n", + "\n", "- Inherits from Xarray, providing simplified data using familiar (Xarray-like) data structures and operations\n", " \n", "- Brings standardization to unstructured mesh support for climate data analysis and visualization\n", "\n", - "- Adheres to the UGRID specifications for compatibility across a variety of mesh formats\n", - "\n", "- Builds on optimized data structures and algorithms for handling large and complex unstructured datasets\n", "\n", - "- Supports enhanced interoperability and community collaboration\n", - "\n", - "- Provides a single interface for supporting a variety of unstructured grid formats including UGRID, MPAS, SCRIP, and Exodus" + "- Supports enhanced interoperability and community collaboration" ] }, { diff --git a/notebooks/03-uxarray-vis/01-plot-api.ipynb b/notebooks/03-uxarray-vis/01-plot-api.ipynb index 379d3ca7..f8733eb2 100644 --- a/notebooks/03-uxarray-vis/01-plot-api.ipynb +++ b/notebooks/03-uxarray-vis/01-plot-api.ipynb @@ -346,7 +346,7 @@ "source": [ "## UxDataset Plotting\n", "\n", - "As of the most recent release, UXarray does not support plotting functionality though a `ux.UxDataset`\n" + "As of the most recent release, UXarray does not support plotting functionality through a `ux.UxDataset`. For instance, if the following commented out code was executed, it would throw an exception.\n" ] }, { @@ -355,7 +355,7 @@ "metadata": {}, "outputs": [], "source": [ - "uxds.plot()" + "# uxds.plot()" ] } ],