Creates a systematic grid of points.
Creates a systematic grid of points. This function is only used in simulating data sets.
pointSimSyst( nrow = 10, ncol = 10, lower_x_lim = 0, upper_x_lim = 1, lower_y_lim = 0, upper_y_lim = 1 )
nrow
: the number of rows in the systematic grid, default is 10ncol
: the number of cols in the systematic grid, default is 10lower_x_lim
: the lower limit for x-coordinate, default is 0upper_x_lim
: the upper limit for x-coordinate, default is 1lower_y_lim
: the lower limit for y-coordinate, default is 0upper_y_lim
: the upper limit for y-coordinate, default is 1A data.frame with x- and y-coordinates of simulated locations
Jay Ver Hoef