David Bitner

Results 69 comments of David Bitner

@antoine-de The partitioning is integral to the loading process and triggers, the ability to use constraint exclusion for limiting by collection as well as the ability to use the queryables...

@robintw In https://github.com/stac-utils/pgstac/pull/160 the functions marked as SECURITY DEFINER have been changed to the lowest level possible. Now the only functions that are marked as SECURITY DEFINER are those that...

The other benefit of having an async option of StacApiIO is that you could then enable "direct" access to asgi implementations with httpx using the app/base_url parameters. So for instance,...

The important thing here would be to ensure that if an order was specified in the search that the results would be interleaved based on that order.

Quick and dirty proof of concept for a federated search that merges records according to their sortby settings. ``` from pystac_client import Client import morecantile import heapq from functools import...

For that, I did the sorting just on the items as dicts, but if we were to actually implement this, you could use Items as classes and either create a...

Yes, this is correct. We can only enforce uniqueness within a partition. In pgstac >0.5 there is always an initial partition by collection and _optionally_ a second level partition by...

I definitely agree with the third option using precedence. The other thought I had related to ability to control extensions that add additional links is to use the request.scope['routes'] and...

I think having an option to tie the config to either the index or explicitly to the file name of the particular file (or file + layer name in the...

Even then it can be nice to refer to the layer by a name rather than worrying about what the order is. More pointing out a potential advantage of this...