From 6368723e8149b5f527e870a6e338e7fee6da637a Mon Sep 17 00:00:00 2001 From: Mike Barry Date: Sun, 24 Sep 2023 07:32:39 -0400 Subject: [PATCH] update note --- .../com/onthegomap/planetiler/config/PlanetilerConfig.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 fe24849d6e..0ca347041d 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 @@ -205,8 +205,9 @@ public static PlanetilerConfig from(Arguments arguments) { 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 web and native clients. " + - "NOTE: do not reduce if clients need to to render labels on tiles in isolation (like raster tile serving)", + "Max tile pixels to include points outside tile bounds. 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) ); }