We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
It looks like intake-stac is affected by the recent deprecation of xarray.open_rasterio() and throws errors while loading geotiff/COG files.
xarray.open_rasterio()
Here's a minimum reproducible example:
import intake catalog_url = 'https://www.planet.com/data/stac/catalog.json' cat = intake.open_stac_catalog(catalog_url) collection = cat['planet-disaster-data'] subset = collection['hurricane-harvey']['hurricane-harvey-0831'] item = subset['Houston-East-20170831-103f-100d-0f4f-RGB'] da = item['mosaic'].to_dask()
Before we address this issue by updating Intake-STAC, a quick solution is to downgrade xarray, for example:
pip install intake-stac xarray==2022.12.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
It looks like intake-stac is affected by the recent deprecation of
xarray.open_rasterio()
and throws errors while loading geotiff/COG files.Here's a minimum reproducible example:
Before we address this issue by updating Intake-STAC, a quick solution is to downgrade xarray, for example:
The text was updated successfully, but these errors were encountered: