()
| 175 | |
| 176 | |
| 177 | def test_explorer_hvplot_gridded_dataarray(): |
| 178 | da = ds_air_temperature['air'] |
| 179 | explorer = hvplot.explorer(da) |
| 180 | |
| 181 | assert isinstance(explorer, hvGridExplorer) |
| 182 | assert isinstance(explorer._data, xr.DataArray) |
| 183 | assert explorer.kind == 'image' |
| 184 | assert explorer.x == 'lat' |
| 185 | assert explorer.y == 'lon' |
| 186 | assert explorer.by == [] |
| 187 | assert explorer.groupby == ['time'] |
| 188 | |
| 189 | |
| 190 | def test_explorer_hvplot_gridded_options(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…