spatstat (version 1.42-0)

runiflpp: Uniform Random Points on a Linear Network

Description

Generates $n$ random points, independently and uniformly distributed, on a linear network.

Usage

runiflpp(n, L, nsim=1)

Arguments

n
Number of random points to generate. A nonnegative integer, or a vector of integers specifying the number of points of each type.
L
A linear network (object of class "linnet", see linnet).
nsim
Number of simulated realisations to generate.

Value

  • If nsim = 1, a point pattern on the linear network, i.e. an object of class "lpp". If nsim > 1, a list of such point patterns.

Details

This function uses runifpointOnLines to generate the random points.

See Also

rpoislpp, lpp, linnet

Examples

Run this code
data(simplenet)
   X <- runiflpp(10, simplenet)
   plot(X)
  # marked
   Z <- runiflpp(c(a=10, b=3), simplenet)

Run the code above in your browser using DataCamp Workspace