Rio-tiler

Latest version: v6.6.1

Safety actively analyzes 629959 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 31

6.6.1

* fix/support `scale/offset` indexes selection (author jddeal, https://github.com/cogeotiff/rio-tiler/pull/709)

6.6.0

* fix type hint for `ImageData.band_names` (author n8sty, https://github.com/cogeotiff/rio-tiler/pull/704)
* enable `per-band` scale/offset rescaling (co-author jddeal, https://github.com/cogeotiff/rio-tiler/pull/707)
* replace `scale` and `offset` by `scales` and `offsets` in `rio_tiler.models.Info` model

python
before
with Reader("tests/fixtures/cog_scale.tif") as src:
info = src.info()
print(info.scale, info.offset)
>> 0.0001 1000.0

now
with Reader("tests/fixtures/cog_scale.tif") as src:
info = src.info()
print(info.scales, info.offsets)
>> [0.0001, 0.001] [1000.0, 2000.0]

6.5.0

* Revert [648](https://github.com/cogeotiff/rio-tiler/pull/648) and refactor `get_vrt_transform` method to better handle over-zooming a dataset

6.4.7

* Better handle dataset with inverted origin
* make sure datatype is forwarded to the WarpedVRT

6.4.6

* Ignore STAC statistics object when they contain invalid type (author emmanuelmathot, https://github.com/cogeotiff/rio-tiler/pull/695)

6.4.5

* add python 3.12 official support
* change code formatter to `ruff-format`

Page 1 of 31

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.