titiler
titiler copied to clipboard
Build your own Raster dynamic map tile services
Right now when using `Factories` we create endpoints with predefined `paths` https://github.com/developmentseed/titiler/blob/962dc605a73fdb4e134c4ad89463cd1e188ce02d/src/titiler/core/titiler/core/factory.py#L437-L441 Sometimes users would want a different schema (e.g no optional format in path or TileMatrixSet 🤷♂️) The only...
Reintroduce the histogram stretching options (min-max, percentile etc) in the COG/STAC viewer that were removed in v4.0. See https://github.com/developmentseed/titiler/discussions/419
add deployment examples in GCP and Azure
We already tried to solve this using `apiroute_factory` https://developmentseed.org/titiler/concepts/APIRoute_and_environment_variables/ ```python from fastapi import FastAPI, APIRouter from rasterio._env import get_gdal_config from titiler.custom.routing import apiroute_factory from titiler.endpoints.factory import TilerFactory app = FastAPI()...
Some issue found by users should be covered in #291 but we should also add notes about the difference between VRT and Mosaic. it will also be important to mention...
ref: https://github.com/developmentseed/titiler/discussions/290 https://github.com/developmentseed/titiler/discussions/287 Let's write a documentation that explains how rio-tiler/titiler define Min/Max zoom for particular COG. Also Recently we had question about Mosaic performance and comparison with VRT. The...
Adding a cache between a client and the server might be useful. I did it manually for https://github.com/developmentseed/titiler-digitaltwin but I think it will be nice to have a CDK example