Skip to content
Merged
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
8 changes: 4 additions & 4 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

class Settings(BaseSettings):
# World Administrative Boundaries
WAB_FILE_PATH: str = "./geodata-prep/geodata/wab.fgb"
WAB_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/wab.fgb"
WAB_FILE_PATH: str = "./geodata-prep/geodata/simple.wab.fgb"
WAB_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/simple.wab.fgb"
# EMDAT GAUL
GAUL_FILE_PATH: str = "./geodata-prep/geodata/gaul.gpkg"
GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/gaul.gpkg"
GAUL_FILE_PATH: str = "./geodata-prep/geodata/simple.gaul.gpkg"
GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.2/simple.gaul.gpkg"
# World Administrative Boundaries
SUPER_SIMPLIFIED_WAB_FILE_PATH: str = "./geodata-prep/geodata/super_simple.wab.fgb"
SUPER_SIMPLIFIED_WAB_DOWNLOAD_URL: str = (
Expand Down
Loading