crossdist.lpp {spatstat}R Documentation

Pairwise distances between two point patterns on a linear network

Description

Computes the distances between pairs of points taken from two different point patterns on the same linear network.

Usage

  ## S3 method for class 'lpp'
crossdist(X, Y, ..., method="C")

Arguments

X,Y

Point patterns on a linear network (objects of class "lpp"). They must lie on the same network.

...

Ignored.

method

String specifying which method of calculation to use. Values are "C" and "interpreted".

Details

Given two point patterns on a linear network, this function computes the Euclidean distance from each point in the first pattern to each point in the second pattern, measuring distance by the shortest path in the network.

This is a method for the generic function crossdist for point patterns on a linear network (objects of class "lpp").

This function expects two point pattern objects X and Y on the same linear network, and returns the matrix whose [i,j] entry is the shortest-path distance from X[i] to Y[j].

The argument method is not normally used. It is retained only for checking the validity of the software. If method = "interpreted" then the distances are computed using interpreted R code only. If method="C" (the default) then C code is used. The C code is much faster.

If two points cannot be joined by a path, the distance between them is infinite (Inf).

Value

A matrix whose [i,j] entry is the distance from the i-th point in X to the j-th point in Y. Matrix entries are nonnegative numbers or infinity (Inf).

Author(s)

Adrian Baddeley Adrian.Baddeley@curtin.edu.au.

See Also

crossdist, crossdist.ppp, pairdist, nndist

Examples

   v <- split(chicago)
   X <- v$cartheft
   Y <- v$burglary
   d <- crossdist(X, Y)

[Package spatstat version 1.56-0 Index]