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

Environment and notebook updates #9

Merged
merged 4 commits into from
Feb 29, 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
17 changes: 15 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: ERA5_interactive
channels:
- conda-forge
dependencies:
- python>=3.10
- python<3.12
- jupyter-book
- jupyterlab
- jupyter_server
- zarr
- xarray==2022.12.0
- xarray
- geoviews
- datashader
- matplotlib
Expand All @@ -20,6 +20,19 @@ dependencies:
- geopandas
- gcsfs
- cf_xarray
#
# The balance of this environment file pins several libraries in order for
# to satisfy dependencies for the sphinx-pythia-theme 2022.3.22 package.
#
- sphinx==4.5.0
- sphinxcontrib-applehelp<1.0.7
- sphinxcontrib-devhelp<1.0.5
- sphinxcontrib-htmlhelp<2.0.4
- sphinxcontrib-qthelp<1.0.6
- sphinxcontrib-serializinghtml<1.1.9
- pydata-sphinx-theme<=0.8
- jsonschema-with-format-nongpl<4.19.1
- docutils==0.16
- pip
- pip:
- sphinx-pythia-theme
2 changes: 1 addition & 1 deletion notebooks/01BasicVisualization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5568,7 +5568,7 @@
}
],
"source": [
"ds93 = msl.sel(time=slice('1993-03-13T18:00:00','1993-03-13T19:00:00')).pipe(mirror_point_at_360)\n",
"ds93 = msl.sel(time=slice('1993-03-13T18:00:00','1993-03-13T19:00:00')).compute().pipe(mirror_point_at_360)\n",
"ds93"
]
},
Expand Down
4 changes: 2 additions & 2 deletions notebooks/02InteractiveVisualization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@
"metadata": {},
"outputs": [],
"source": [
"msl93 = msl.sel(time=slice('1993-03-13T18:00:00','1993-03-14T00:00:00')).pipe(mirror_point_at_360)\n",
"t2m93 = t2m.sel(time=slice('1993-03-13T18:00:00','1993-03-14T00:00:00')).pipe(mirror_point_at_360)"
"msl93 = msl.sel(time=slice('1993-03-13T18:00:00','1993-03-14T00:00:00')).compute().pipe(mirror_point_at_360)\n",
"t2m93 = t2m.sel(time=slice('1993-03-13T18:00:00','1993-03-14T00:00:00')).compute().pipe(mirror_point_at_360)"
]
},
{
Expand Down
Loading