rio-tiler icon indicating copy to clipboard operation
rio-tiler copied to clipboard

User friendly Rasterio plugin to read raster datasets.

Results 39 rio-tiler issues
Sort by recently updated
recently updated
newest added

Dear users, I'm trying to debug some possible memory leak issue with rio-tiler (this subject has been brought many time over the rasterio repo and it seems that is there...

The main PR goal is to add a method to enable dynamic definition of the Asset's Reader based on its `type` (e.g COG or NetCDF). The addition is `non-breaking`, the...

The benchmark results will be show downgrade performance after we merge #701 because `overzooming` a dataset is `slow` but the PR was made to avoid resampling artefacts The benchmark mostly...

### Min/Max Zoom ```python from rio_tiler.io import Reader with Reader("tests/fixtures/cog_dateline.tif") as src: print(src.minzoom, src.maxzoom) 4 4 ``` but it should be 7 -> 11 The issue is that rasterio's `calculate_default_transform`...

After a change in pystac 1.10 that performs a load of all the absolute links in a STAC item , the stac reader may not load properly the assets the...

with https://github.com/cogeotiff/rio-tiler/blob/main/tests/benchmarks/requests.py we test some tile request fetching and use `tilebench` to monitor the number or GET/HEAD requests made. with the latest commits, this test is failing https://github.com/cogeotiff/rio-tiler/blob/4d95c28962ac0f0d1465038d44b12f2c03ac2367/tests/benchmarks/requests.py#L35-L67 👇 this...

bug

https://github.com/cogeotiff/rio-tiler/blob/main/rio_tiler/utils.py#L453-L460

enhancement

https://github.com/cogeotiff/rio-tiler/blob/6003057c5f688c823bfb698c738e989883c98ddd/rio_tiler/io/stac.py#L297-L300

@vincentsarago This PR adds an optional **profile** attribute to ImageData in case the reader that created it was requested to unscale the data. as per https://github.com/developmentseed/titiler/discussions/803 The profile attr will...