Denis Rykov
Denis Rykov
Here is the configuration we are using: ``` # GDAL Config CPL_TMPDIR=/tmp GDAL_CACHEMAX=75% GDAL_INGESTED_BYTES_AT_OPEN=32768 GDAL_DISABLE_READDIR_ON_OPEN=EMPTY_DIR GDAL_HTTP_MERGE_CONSECUTIVE_RANGES=YES GDAL_HTTP_MULTIPLEX=YES GDAL_HTTP_VERSION=2 VSI_CACHE=TRUE VSI_CACHE_SIZE=536870912 MOSAIC_CONCURRENCY=1 AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_SESSION_TOKEN= ``` Based on my tests, it’s...
From what I understand, titiler-pgstac uses [mosaic_reader](https://github.com/cogeotiff/rio-tiler/blob/8573dbe7b3ea7325e7db084f29bc47f9797d0bbe/rio_tiler/mosaic/reader.py#L25), so I attempted to rewrite the code from my initial message using it (`local-rio-tiler.py`): ``` from rio_tiler.io import Reader from rio_tiler.mosaic import mosaic_reader...
I have a hypothesis that might explain the observed behavior: In the first case, we use ThreadPoolExecutor solely for I/O-bound tasks (retrieving PNG tiles), whereas, in contrast, `mosaic_reader` internally uses...
If there's anything I can do to help move this issue forward, please let me know. However, at this point, I'm leaning towards believing it's a design problem, and without...
Exactly, having the name of the property that failed validation would be extremely helpful.
No, it's just for the aesthetics of the `query_queue` content.
There is a difference between these two invocations: in one case, the function is called with `istrigger` set to `False`, and in the other, it is set to `True`. This...
The contents of the local folder overwrite those of `/opt/src/pypgstac/python/pypgstac` due to: https://github.com/stac-utils/pgstac/blob/513de6033c0d77cb156d2c0c2e454cff60fb5a0b/docker-compose.yml#L36 Should we consider removing that volume?
What I'm saying is that pre-commit doesn't use the pyproject.toml file, so the result you’re seeing makes sense. Look: ``` ➜ uv run pre-commit run --all-files mypy.....................................................................Passed ruff.....................................................................Passed ruff-format..............................................................Passed ```...
Do you know if there's a way to configure mypy in the pre-commit to use the `pyproject.toml` file?