diff --git a/app/routes/raster_tiles.py b/app/routes/raster_tiles.py index 4fdf50ac..1063b31a 100644 --- a/app/routes/raster_tiles.py +++ b/app/routes/raster_tiles.py @@ -6,6 +6,7 @@ present for a selected dataset, the server will redirect the request to the dynamic service and will attempt to generate it here """ + import base64 import io import json @@ -81,9 +82,7 @@ async def dynamic_raster_tile( async def static_raster_tile( *, dv: Tuple[str, str] = Depends(raster_tile_cache_version_dependency), - implementation: str = Path( - "default", description="Tile cache implementation name." - ), + implementation: str = Path(..., description="Tile cache implementation name."), xyz: Tuple[int, int, int] = Depends(raster_xyz), background_tasks: BackgroundTasks, ) -> Response: