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
Thanks for tracking that down, I had assumed pyproj was installed alongside cartopy. I'll push a fix to hvplot and then tag a micro release later today or tomorrow.
/apps/opt/anaconda3/envs/geo_env/lib/python3.8/site-packages/hvplot/util.py in process_crs(crs)
182 import pyproj
183 except:
--> 184 raise ImportError('Geographic projection support requires GeoViews and cartopy.')
185
186 if crs is None:
ImportError: Geographic projection support requires GeoViews and cartopy.
@philippjfr , it looks like you made a change in how pyproj is handled in process_crs in geoviews/util.py, but (despite the repo this issue is filed on) the issue reported here was about process_crs in hvplot/util.py, not GeoViews. The hvPlot version still tries to import pyproj as it did before, and so hvPlot users with geoviews but without pyproj would presumably still see this message, which it sounds like is what @KarenChen9999 is reporting.
In util.py: process_crs, we see:
But pyproj is not mentioned, and this is exactly what I was missing.
The text was updated successfully, but these errors were encountered: