Skip to content

Commit

Permalink
Fix loading data
Browse files Browse the repository at this point in the history
Single file, so no need for open_mfdataset()
  • Loading branch information
dopplershift committed Jun 14, 2024
1 parent 9dfdcec commit a44fe61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notebooks/convective/MUCAPE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"source": [
"## opening NetCDF file using xarray \n",
"\n",
"ds = xr.open_mfdataset(\"NETCDF_FILE.nc\",combine = \"nested\", concat_dim=\"time\",decode_times=True)"
"ds = xr.open_dataset(\"NETCDF_FILE.nc\", decode_times=True)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion notebooks/convective/TCPW.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"source": [
"## opening NetCDF file using xarray \n",
"\n",
"ds = xr.open_mfdataset(\"NETCDF_FILE.nc\",combine = \"nested\", concat_dim=\"time\",decode_times=True)"
"ds = xr.open_dataset(\"NETCDF_FILE.nc\", decode_times=True)"
]
},
{
Expand Down

0 comments on commit a44fe61

Please sign in to comment.