holoviz / hvplot

A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews
https://hvplot.holoviz.org
BSD 3-Clause "New" or "Revised" License
1.14k stars 108 forks source link

Bug when trying to plot gridded data image with time on one axis #570

Open dhruvbalwada opened 3 years ago

dhruvbalwada commented 3 years ago

I get an error if one of the axis in a xarray gridded dataset is time. The issue is discussed here: https://discourse.holoviz.org/t/inability-to-have-time-as-an-axis/1948

philippjfr commented 3 years ago

Thanks, looks like the remaining lon coord confuses it, since this works:

air_ds.air.sel(lon=200.0, method='nearest', drop=True).hvplot()
maximlt commented 2 years ago

I can reproduce.