Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ services:
- GDAL_HTTP_VERSION=2
- VSI_CACHE=TRUE
- VSI_CACHE_SIZE=536870912
- CPL_VSIL_CURL_ALLOWED_EXTENSIONS=.tif,.TIF,.tiff,.grib2,.GRIB2
# TiTiler Config
- MOSAIC_CONCURRENCY=1
# AWS S3 endpoint config
Expand Down
2 changes: 1 addition & 1 deletion raster_api/infrastructure/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class vedaRasterSettings(BaseSettings):
# For more information on GDAL env see: https://gdal.org/user/configoptions.html
# or https://developmentseed.org/titiler/advanced/performance_tuning/
env: Dict = {
"CPL_VSIL_CURL_ALLOWED_EXTENSIONS": ".tif,.TIF,.tiff",
"CPL_VSIL_CURL_ALLOWED_EXTENSIONS": ".tif,.TIF,.tiff,.grib2,.GRIB2",
"GDAL_CACHEMAX": "200", # 200 mb
"GDAL_DISABLE_READDIR_ON_OPEN": "EMPTY_DIR",
"GDAL_INGESTED_BYTES_AT_OPEN": "32768",
Expand Down
Loading