developmentseed / titiler

Build your own Raster dynamic map tile services
https://developmentseed.org/titiler/
MIT License
765 stars 157 forks source link

Feat/algorithm in statistics #726

Closed vincentsarago closed 10 months ago

vincentsarago commented 10 months ago

This PR adds thealgorithm options for /statistics endpoints

Internally we remove the usage of BaseReader.statistics() endpoint use the combination of BaseReader.preview() and ImageData.statistics() methods

# Before
from Reader(...) as src_dst:
    return src_dst.statistics(...)

# Now
from Reader(...) as src_dst:
    image = src_dst.preview(...)

    if post_process:
        image = post_process(image)

    return image.statistics(...)