Skip to content
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

Update environment.yml #12

Merged
merged 4 commits into from
May 1, 2024
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
3 changes: 1 addition & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dependencies:
- hvplot
- jupyter-book
- jupyterlab
- jupyter_server
- matplotlib-base
- netcdf4
- numba
Expand All @@ -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
10 changes: 5 additions & 5 deletions notebooks/01-intro/01-unstructured-grid-overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions notebooks/03-uxarray-vis/01-plot-api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand All @@ -355,7 +355,7 @@
"metadata": {},
"outputs": [],
"source": [
"uxds.plot()"
"# uxds.plot()"
]
}
],
Expand Down
Loading