From 2ff928621e0c25c0f77c2b7bdd102401759be7dc Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 31 Jul 2025 12:08:27 +0200 Subject: [PATCH] Scripts(offline): skip already existing columns: add log --- scripts/generatePmTilesExtracts.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/generatePmTilesExtracts.ts b/scripts/generatePmTilesExtracts.ts index 03464aaab..bfb0f0e5b 100644 --- a/scripts/generatePmTilesExtracts.ts +++ b/scripts/generatePmTilesExtracts.ts @@ -46,9 +46,8 @@ class GeneratePmTilesExtracts extends Script { console.log("Skipping column ", x, "at zoom", z) this.skipped += boundary continue - } else { - console.log("Starting column", x, "at zoom", z, "as", lastFileForColumn, "does not exist") } + console.log("Starting column", x, "at zoom", z, "as", this.targetDir + "/" + lastFileForColumn, "does not exist") for (let y = 0; y < boundary; y++) { yield this.generateArchive(z, x, y, maxzoom)