Jeff Albrecht
Jeff Albrecht
As you mention injecting custom transforms like this at the API level is difficult to do reliably without writing lots of custom code for each endpoint. I agree that the...
Same as #380 The `bbox` and `datetime` query parameters on the `/items` endpoint are part of OGC API - Features (OAF) and not currently supported by stac-fastapi. Note that STAC...
Pydantic response models are disabled by default, but may be enabled through the `Settings` object (https://github.com/stac-utils/stac-fastapi/blob/master/stac_fastapi/types/stac_fastapi/types/config.py#L27). They are disabled because pydantic validation on very large STAC returns (ex. `ItemCollection`) may...
@iliion can you please post the error / traceback?
The response signature uses a typed dict (`stac_types.Collection`). Typed dictionaries are really just dictionaries, you can extend them by adding any key/value pair. For example this should work ```python def...
I believe this is somehow related to https://github.com/stac-utils/stac-fastapi/issues/381
I'm not too familiar with pgstac, that is a question for @vincentsarago @bitner @duckontheweb
In addition it would be great to standardize on these operators in the API layer instead of backends defining their own.
I like the approach of separating link injection from backend specific logic, my main concern here is breaking the client interfaces and adding extra boilerplate to the clients. I was...
Circling back to this after thinking for a while, I think the most important thing for me is to remove the need to inject the starlette `Request` object into the...