Jeff Albrecht
Jeff Albrecht
@movermeyer 👋 any chance this release can go out? Happy to help! :)
I think type hints are never a bad idea, I'm happy to do a PR to add them.
> (yes threads within threads seems bad anyway) I don't think you can do this. Really what's happening is there are two thread pool executors. The first is used by...
This would make implementation of children/browseable much easier in my opinion.
> It means that in theory expression could be in form of expression="green_b1/red_b1" I like this. We are breaking things anyways so might as well get it right now. Representing...
This seems to work: ```python import mercantile import rioxarray import xarray as xr import numpy as np def clip_to_tile(tile: mercantile.Tile, ds: xr.DataArray): bounds = mercantile.xy_bounds(tile) wgs84_bounds = mercantile.bounds(tile) # Create...
> Should I return sub-catalogs just as if they were collections? What API methos should I use to return collections belonging to a sub-catalog? Sub catalogs would be exposed as...
The children conformance class is here (https://github.com/radiantearth/stac-api-spec/tree/main/children), it has an example landing page and `/childrens` response. That example I don't think is very applicable to the example you present above...
@m-mohr I'm not sure how an API would implement children/browsable without this nested structure; but maybe I'm misunderstanding. Children is implemented on a catalog (starting with the landing page), and...
> How does one write this query. Currently there is no way to filter the `assets` object, so you can't really answer this question through a STAC API besides client-side...