From 79322c70547e1d0893f437eee81b93a554afa060 Mon Sep 17 00:00:00 2001 From: Markus Neteler Date: Mon, 20 Nov 2023 08:52:11 +0100 Subject: [PATCH] v.clean threshold description: clarify map units (#2950) * v.clean threshold description: clarify map units This PR de-confuses the current description of `threshold` from the misleading ``` threshold Threshold in map units, one value for each tool ``` to ``` threshold One value for each tool; for threshold units, see each tool ``` The point is that users need to look it up in the manual page. Esp. in long-lat locations, map units for area based tools are to be given in sqm. --- vector/v.clean/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vector/v.clean/main.c b/vector/v.clean/main.c index f12336d9c73..d52bcc67933 100644 --- a/vector/v.clean/main.c +++ b/vector/v.clean/main.c @@ -127,7 +127,8 @@ int main(int argc, char *argv[]) opt.thresh->type = TYPE_DOUBLE; opt.thresh->required = NO; opt.thresh->multiple = YES; - opt.thresh->label = _("Threshold in map units, one value for each tool"); + opt.thresh->label = + _("One value for each tool; for threshold units, see each tool"); opt.thresh->description = _("Default: 0.0[,0.0,...])"); flag.no_build = G_define_flag();