- [ ] working intake example for the compression lab using intake-esm and intake-xarray - [ ] working pystac example for the compression lab - [ ] check if integration with intake could work - [ ] investigate https://github.com/opendatacube/odc-stac - [x] added to the online lab - [ ] add example for using xarray's pydap backend ```python import pydap import xarray as XR ds = xr.open_dataset( "http://iridl.ldeo.columbia.edu/SOURCES/.OSU/.PRISM/.monthly/dods", decode_times=False, engine="pydap", ) ds ```