From 0ac589bd553232b26b51e9403260a0f435932229 Mon Sep 17 00:00:00 2001 From: zstadler Date: Tue, 1 Oct 2024 12:59:35 +0200 Subject: [PATCH] Clarify `max_point_buffer` (#1046) --- .../java/com/onthegomap/planetiler/config/PlanetilerConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planetiler-core/src/main/java/com/onthegomap/planetiler/config/PlanetilerConfig.java b/planetiler-core/src/main/java/com/onthegomap/planetiler/config/PlanetilerConfig.java index 43c0e5dd..e304eb6e 100644 --- a/planetiler-core/src/main/java/com/onthegomap/planetiler/config/PlanetilerConfig.java +++ b/planetiler-core/src/main/java/com/onthegomap/planetiler/config/PlanetilerConfig.java @@ -210,7 +210,7 @@ public record PlanetilerConfig( arguments.file("tile_weights", "tsv.gz file with columns z,x,y,loads to generate weighted average tile size stat", tmpDir.resolveSibling("tile_weights.tsv.gz")), arguments.getDouble("max_point_buffer", - "Max tile pixels to include points outside tile bounds. Set to a lower value to reduce tile size for " + + "Additional global limit for the max tile pixels to include points outside tile bounds of all layers. Set to a lower value to reduce tile size for " + "clients that handle label collisions across tiles (most web and native clients). NOTE: Do not reduce if you need to support " + "raster tile rendering", Double.POSITIVE_INFINITY),