Learn R Programming

stplanr (version 0.2.4)

od_dist: Quickly calculate Euclidean distances of od pairs

Description

It is common to want to know the Euclidean distance between origins and destinations in OD data. You can calculate this by first converting OD data to SpatialLines data, e.g. with od2line. However this can be slow and overkill if you just want to know the distance. This function is a few orders of magnitude faster.

Usage

od_dist(flow, zones)

Arguments

flow

A data frame representing the flow between two points or zones. The first two columns of this data frame should correspond to the first column of the data in the zones. Thus in cents, the first column is geo_code. This corresponds to the first two columns of flow.

zones

A SpatialPolygonsDataFrame or SpatialPointsDataFrame representing origins (and destinations if no separate destinations object is provided) of travel flows.

Details

Note: this function assumes that the zones or centroids in cents have a geographic (lat/lon) CRS.

Examples

Run this code
# NOT RUN {
data(flow)
data(cents)
od_dist(flow, cents)
# }

Run the code above in your browser using DataLab