We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb0c8c commit 9383516Copy full SHA for 9383516
runtime/eoapi/raster/eoapi/raster/app.py
@@ -88,11 +88,14 @@ async def lifespan(app: FastAPI):
88
# MOSAIC Endpoints
89
mosaic = MosaicTilerFactory(
90
router_prefix="/mosaic",
91
+ # add /statistics [POST]
92
add_statistics=True,
93
# add /map viewer
94
add_viewer=True,
95
# add /mosaic/list endpoint
96
add_mosaic_list=True,
97
+ # add `/bbox` and `/feature [POST]` endpoint
98
+ add_part=False,
99
)
100
101
runtime/eoapi/raster/pyproject.toml
@@ -19,7 +19,7 @@ classifiers = [
19
]
20
dynamic = ["version"]
21
dependencies = [
22
- "titiler.pgstac==0.7.0",
+ "titiler.pgstac==0.8.0",
23
"starlette-cramjam>=0.3,<0.4",
24
"importlib_resources>=1.1.0;python_version<'3.9'",
25
0 commit comments