xarray-contrib / xwrf

A lightweight interface for working with the Weather Research and Forecasting (WRF) model output in Xarray.
https://xwrf.readthedocs.io/
Apache License 2.0
56 stars 16 forks source link

[MISC]: ValueError: #133

Closed fipoucat closed 8 months ago

fipoucat commented 11 months ago

What is your issue?

I an testing xWRF but have problems with : ssp5_ds = cat["xwrf-sample-ssp585"].to_dask()

The error message when I run it is: ssp5_ds = cat["xwrf-sample-ssp585"].to_dask() Traceback (most recent call last):

Cell In [22], line 1 ssp5_ds = cat["xwrf-sample-ssp585"].to_dask()

File ~/.local/lib/python3.10/site-packages/intake/catalog/base.py:436 in getitem s = self._get_entry(key)

File ~/.local/lib/python3.10/site-packages/intake/catalog/utils.py:45 in wrapper return f(self, *args, **kwargs)

File ~/.local/lib/python3.10/site-packages/intake/catalog/base.py:323 in _get_entry return entry()

File ~/.local/lib/python3.10/site-packages/intake/catalog/entry.py:77 in call s = self.get(**kwargs)

File ~/.local/lib/python3.10/site-packages/intake/catalog/local.py:289 in get plugin, open_args = self._create_open_args(user_parameters)

File ~/.local/lib/python3.10/site-packages/intake/catalog/local.py:263 in _create_open_args raise ValueError('No plugins loaded for this entry: %s\n'

ValueError: No plugins loaded for this entry: intake_xarray.xzarr.ZarrSource A listing of installable plugins can be found at https://intake.readthedocs.io/en/latest/plugin-directory.html . Any hint?

lpilz commented 11 months ago

Hey! This sounds like you're missing the intake-xarray plugin. Try installing this package and see whether the error remains :)

lpilz commented 8 months ago

Closing because stale