You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thank you for providing this package. I'll admit that I am not so experienced with python and python environments (come from nodejs background).
When trying to import goes2go after installing, I get the following error:
UserWarning: goes2go xarray accessors could not be imported.
warnings.warn("goes2go xarray accessors could not be imported.")
This prevents me from using the package. Not sure how to resolve and would love some guidance.
The text was updated successfully, but these errors were encountered:
This warning means the xarray accessors could not be imported. My first guess is that you might not have Cartopy installed, which is required for some of the accessors to work (see accessors.py).
import cartopy.crs as ccrs
I suppose the setup.py file should be updated to require cartopy as a dependency.
I admit, the design isn't super robust; cartopy is only required if you are using the field-of-view accessors, not the RGB accessors.
You shouldn't need the accessors to just download GOES data.
Hello,
First off, thank you for providing this package. I'll admit that I am not so experienced with python and python environments (come from nodejs background).
When trying to import
goes2go
after installing, I get the following error:This prevents me from using the package. Not sure how to resolve and would love some guidance.
The text was updated successfully, but these errors were encountered: