planetiler updates

This commit is contained in:
Zsolt Ero
2024-09-16 19:18:18 +02:00
parent e3a85349ce
commit ab8bc87f7f

View File

@@ -43,14 +43,17 @@ def run_planetiler(area: str) -> Path:
'--download-chunk-size-mb=1000', '--download-chunk-size-mb=1000',
'--fetch-wikidata', '--fetch-wikidata',
'--output=tiles.mbtiles', '--output=tiles.mbtiles',
'--nodemap-type=array',
'--storage=mmap', '--storage=mmap',
'--force', '--force',
] ]
if area == 'planet': if area == 'planet':
command.append('--nodemap-type=array')
command.append('--bounds=planet') command.append('--bounds=planet')
if area == 'monaco':
command.append('--nodemap-type=sortedtable')
print(command) print(command)
out_path = run_folder / 'planetiler.out' out_path = run_folder / 'planetiler.out'