Tags: stac-utils/xpystac
Tags
Support kerchunk>=0.2.8 (#50) Example: ```python import planetary_computer import pystac_client import xarray as xr catalog = pystac_client.Client.open( "https://planetarycomputer.microsoft.com/api/stac/v1", modifier=planetary_computer.sign_inplace, ) collection = catalog.get_collection("nasa-nex-gddp-cmip6") asset = collection.assets["ACCESS-CM2.historical"] ds = xr.open_dataset(asset, patch_url=planetary_computer.sign) ds ``` Make sure you can actually access the underlying data: ```python ds.hurs.isel(time=300, lat=300, lon=1400).values ```