From bdc5ab3a6010e71a2725f8a2ebd1de6b75c18968 Mon Sep 17 00:00:00 2001 From: tbodt Date: Thu, 9 Jan 2025 10:40:14 -0800 Subject: [PATCH] Add Toki Pona language (#46) --- modules/tile_gen/tile_gen_lib/planetiler.py | 1 + ssh_lib/planetiler.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/tile_gen/tile_gen_lib/planetiler.py b/modules/tile_gen/tile_gen_lib/planetiler.py index af99953..76d4e78 100644 --- a/modules/tile_gen/tile_gen_lib/planetiler.py +++ b/modules/tile_gen/tile_gen_lib/planetiler.py @@ -45,6 +45,7 @@ def run_planetiler(area: str) -> Path: '--output=tiles.mbtiles', '--storage=mmap', '--force', + '--languages=default,tok', ] if area == 'planet': diff --git a/ssh_lib/planetiler.py b/ssh_lib/planetiler.py index 492fc0a..f473530 100644 --- a/ssh_lib/planetiler.py +++ b/ssh_lib/planetiler.py @@ -2,7 +2,7 @@ from ssh_lib import PLANETILER_BIN, PLANETILER_SRC from ssh_lib.utils import apt_get_install, apt_get_update, exists, sudo_cmd -PLANETILER_COMMIT = 'cf49b86' +PLANETILER_COMMIT = 'ee22a014022f1dcc120cba6a768567408ba74908' PLANETILER_PATH = f'{PLANETILER_BIN}/planetiler.jar'