Implements conditioned Latin Hypercube sampling.
wbt_conditioned_latin_hypercube(
inputs,
output,
samples = 500,
iterations = 25000,
seed = NULL,
prob = 0.5,
threshold = NULL,
temp = 1,
temp_decay = 0.05,
cycle = 10,
average = FALSE,
wd = NULL,
verbose_mode = NULL,
compress_rasters = NULL,
command_only = FALSE
)
Returns the tool text outputs.
Name of the input raster file.
Output shapefile.
Number of sample sites returned.
Maximum iterations (if stopping criteria not reached).
Seed for RNG consistency.
Probability of random resample or resampling worst strata between [0,1]
.
Objective function values below the threshold stop the resampling iterations.
Initial annealing temperature between [0,1]
.
Annealing temperature decay proportion between [0,1]
. Reduce temperature by this proportion each annealing cycle.
Number of iterations before decaying annealing temperature.
Weight the continuous objective function by the 1/N contributing strata.
Changes the working directory. Default: NULL
will use the value in WhiteboxTools settings, see wbt_wd()
for details.
Sets verbose mode. If verbose mode is FALSE
, tools will not print output messages. Default: NULL
will use the value in WhiteboxTools settings, see wbt_verbose()
for details.
Sets the flag used by 'WhiteboxTools' to determine whether to use compression for output rasters. Default: NULL
will use the value in WhiteboxTools settings, see wbt_compress_rasters()
for details.
Return command that would be executed by system()
rather than running tool. Default: FALSE
.