#!/usr/bin/env python # coding: utf-8 # In[1]: import xarray as xr import hvplot.xarray # In[2]: url = 'http://thredds.ucar.edu/thredds/dodsC/grib/NCEP/HRRR/CONUS_2p5km/Best' ds = xr.open_dataset(url) # In[6]: df = ds['Temperature_height_above_ground'][:, 0, 600, 1000].to_dataframe() # In[11]: hvplot.explorer(df[['Temperature_height_above_ground']]) # In[ ]: