missing /cog/validate endpoint
#1225
Answered
by
vincentsarago
krishnaglodha
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
vincentsarago
Sep 18, 2025
Replies: 1 comment
-
|
The https://developmentseed.org/titiler/advanced/Extensions/#titilerextensionscogvalidateextension from fastapi import FastAPI
from titiler.core.factory import TilerFactory
from titiler.extensions import cogValidateExtension
# Create a FastAPI application
app = FastAPI(description="A lightweight Cloud Optimized GeoTIFF tile server")
# Create a set of endpoints using TiTiler TilerFactory
tiler = TilerFactory(
router_prefix="/cog",
extensions=[
cogValidateExtension() # the cogeoExtension will add a rio-cogeo /validate endpoint
]
)
# Register endpoints to the application
app.include_router(tiler.router, prefix="/cog") |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
krishnaglodha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

The
/validateendpoint is coming from thetitiler.extensions.cogValidateExtensionextensionhttps://developmentseed.org/titiler/advanced/Extensions/#titilerextensionscogvalidateextension