Thomas Maschler
Thomas Maschler
Ok, thanks for clarifying @pomadchin. But should I get the correct pixel values, even if the cell type is float? As a sidenode: We use the nbits for better compression...
@ajfriend I haven't seen any recent updates. Are you still working on a V4 release or did you put this project on hold?
Yep, that was the plan and why I kept it as draft
support for pydantic 2 was added in [stac-pydantic 3.0.0](https://github.com/stac-utils/stac-pydantic/releases/tag/3.0.0)
@bmcandr please see #625
#588 says to either remove stac-pydantic as a dependency or bring it up to date. We got the latter done now, with additional PRs in the queue. Based on the...
I can see your concerns regarding latency. I did not benchmark this myself. Others reported a [speed improvement of x5](https://thedataquarry.com/posts/why-pydantic-v2-matters/#results) between pydantic 1 and 2. I was assuming that this...
@rhysrevans3, regarding your first point, can you give me an example of when this fails? I cannot replicate it. I tried this, where the filter attribute is defined as `Optional[Dict]`...
@rhysrevans3 this is b/c we didn't set a default value. Right now the model requires either `None` or a list of `PostSortModel`. If you set the default to `None` the...
@lossyrob can you take a look at my recent changes, in particular [8118f10](https://github.com/stac-utils/stac-fastapi/pull/625/commits/8118f10be27f04d5ce2143b5fa9dbbd1b4fd92c3). - In `types.config` I added a parameter `validate_response` that defaults to `False` (same as now). - I...