Skip to content

Commit c26a216

Browse files
committed
Fix(geocoder): update the path of the super simplified files
1 parent 2fd25de commit c26a216

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

config.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ class Settings(BaseSettings):
1212
GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/gaul.gpkg"
1313
# World Administrative Boundaries
1414
SUPER_SIMPLIFIED_WAB_FILE_PATH: str = "./geodata-prep/geodata/super_simple.wab.fgb"
15-
SUPER_SIMPLIFIED_WAB_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/wab.fgb"
15+
SUPER_SIMPLIFIED_WAB_DOWNLOAD_URL: str = (
16+
"https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/super_simple.wab.fgb"
17+
)
1618
# EMDAT GAUL
1719
SUPER_SIMPLIFIED_GAUL_FILE_PATH: str = "./geodata-prep/geodata/super_simple.gaul.gpkg"
18-
SUPER_SIMPLIFIED_GAUL_DOWNLOAD_URL: str = "https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/gaul.gpkg"
20+
SUPER_SIMPLIFIED_GAUL_DOWNLOAD_URL: str = (
21+
"https://github.com/IFRCGo/geocoding-service/releases/download/v1.0.0/super_simple.gaul.gpkg"
22+
)
1923

2024

2125
settings = Settings()

0 commit comments

Comments
 (0)