Learn R Programming

spNetwork (version 0.2.1)

closest_points: Find closest points

Description

Solve the nearest neighbour problem for two SpatialPointsDataFrame. This is a simple wrap-up of the FNN::knnx.index function

Usage

closest_points(origins, targets)

Arguments

origins

a SpatialPointsDataFrame

targets

a SpatialPointsDataFrame

Value

for each origin point, the index of the nearest target point

Examples

Run this code
# NOT RUN {
#This is an internal function, no example provided
eventsgpkg <- system.file("extdata", "events.gpkg", package = "spNetwork", mustWork = TRUE)
mtl_libraries <- rgdal::readOGR(eventsgpkg,layer="mtl_libraries", verbose=FALSE)
mtl_theatres <- rgdal::readOGR(eventsgpkg,layer="mtl_theatres", verbose=FALSE)
close_libs <- closest_points(mtl_theatres, mtl_libraries)
# }

Run the code above in your browser using DataLab