Closed rsignell-usgs closed 5 years ago
This even simpler example with the xarray
test data also has the problem:
import hvplot.xarray
import geoviews as gv
import cartopy.crs as ccrs
import xarray as xr
ds = xr.tutorial.open_dataset('rasm').load()
ds.Tair[0,:,:].hvplot.quadmesh(x='xc', y='yc', rasterize=True, crs=ccrs.PlateCarree())
produces:
If I save the notebook as a gist, the hover works correctly:
I discovered that downgrading from bokeh=1.2
to bokeh=1.1
did NOT fix the problem.
But downgrading to bokeh=1.0
DID fix the problem, but conda also downgraded most of the holoviz
stack:
The following packages will be DOWNGRADED:
bokeh 1.1.0-py37_0 --> 1.0.4-py37_1000
holoviews 1.12.3-py_2 --> 1.11.0-py_0
hvplot 0.4.0-py_1 --> 0.3.0-py_0
panel 0.6.0-h5ca1d4c_0 --> 0.4.0-1
@philippjfr , @jbednar, @jlstevens and @jsignell, any chance of getting this fixed before my HoloViz demo here at the ESIP Summer Meeting (Wednesday, July 17, 3:45pm PDT)?
I don't want to have to downgrade (and potentially break things) unless I have to. Thanks!
Note that the change happened in holoviews between 1.12.1 and 1.12.2. I am moving the issue to that repo.
I can confirm that pinning holoviews=1.12.1
in my environment.yml
works! Thanks for the workaround, @jsignell.
This is fixed in geoviews master.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
The simple reproducible code below used to display on the
lon/lat
correctly in degrees, but now is displaying in meters:Is this a bug, an environment issue or a user error?