pgstac icon indicating copy to clipboard operation
pgstac copied to clipboard

Schema, functions and a python library for storing and accessing STAC collections and items in PostgreSQL

Results 51 pgstac issues
Sort by recently updated
recently updated
newest added

Use-Case: Restricting collections based on ACL The STAC API that implements ACL on top of the collections could use it to provide STAC compliant interface while using pgstac as the...

If the database password contains special characters then it is not possible just to copy-paste it to the terminal as part of the `--dsn` while using `pypgstac load`. To overcome...

A few of the functions defined in PGSTAC are defined with the `SECURITY DEFINER` modifier, which means that when they are executed they are executed with the permissions of the...

I'm seeing this topology exception happening in the tile server sporadically, which is causing some dropped tiles for mosaics, e.g.: https://planetarycomputer.microsoft.com/api/data/v1/mosaic/tiles/b1e9a2aabd78813d0d6ff72be8ab54b4/WebMercatorQuad/11/126/898@2x?collection=sentinel-2-l2a&assets=B04&assets=B03&assets=B02&nodata=0&color_formula=Gamma%20RGB%203.2%20Saturation%200.8%20Sigmoidal%20RGB%2025%200.35&tile_scale=2 ```json { "detail": "lwgeom_intersection_prec: GEOS Error: TopologyException: Input geom...

@philvarner has released https://github.com/stac-utils/stac-api-benchmark to allow benchmarking query consistency and performance across STAC API implementations. New PRs should probably run these benchmarks as part of the integration testing pipeline and...

pgstac ships with 3 queryable definitions, including `eo:cloud_cover` which may exist on an item `content.properties` field, but is registered without the `properties` in its path. It also accepts filter and...

## [v0.6.7] ### Added - Add get_queryables function to return a composite queryables json for either a single collection (text), a list of collections(text[]), or for the full repository (null::text)....

Fixes https://github.com/stac-utils/pgstac/issues/131

It is declared [here](https://github.com/stac-utils/pgstac/blob/main/pypgstac/setup.py#L39) that pypgstac supports Python >= 3.7. But current code is not compatible with Python 3.7 due to the way `lru_cache` is being used [here](https://github.com/stac-utils/pgstac/blob/e72a17ca33e552e417a8863bdd4289f9fd4db030/pypgstac/pypgstac/load.py#L170): ```python $...

I just filed https://github.com/stac-utils/stac-fastapi/issues/408 against stac-fastapi b/c the Query Extension "not equals" operator is incorrectly set to be `ne` instead of `neq`. This issue is to proactively ask if pgstac...