From: Sarah Hoffmann Date: Mon, 9 Dec 2024 13:05:15 +0000 (+0100) Subject: make nominatim callable with themepark style X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/eeb3d5dd0affdd3317ff62177905b5474ad2fd34 make nominatim callable with themepark style --- diff --git a/src/nominatim_db/tools/exec_utils.py b/src/nominatim_db/tools/exec_utils.py index fc3a7465..7629e2a2 100644 --- a/src/nominatim_db/tools/exec_utils.py +++ b/src/nominatim_db/tools/exec_utils.py @@ -39,7 +39,10 @@ def run_osm2pgsql(options: Mapping[str, Any]) -> None: if str(options['osm2pgsql_style']).endswith('.lua'): env['LUA_PATH'] = ';'.join((str(options['osm2pgsql_style_path'] / '?.lua'), - os.environ.get('LUAPATH', ';'))) + os.environ.get('LUA_PATH', ';'))) + env['THEMEPARK_PATH'] = str(options['osm2pgsql_style_path'] / 'themes') + if 'THEMEPARK_PATH' in os.environ: + env['THEMEPARK_PATH'] += ':' + os.environ['THEMEPARK_PATH'] cmd.extend(('--output', 'flex')) for flavour in ('data', 'index'):