View source: R/table_getNearestLocation.R
table_getNearestLocation | R Documentation |
Returns a tibble of the known locations from locationTbl
that are closest to the vector of target locations specified by longitude
and latitude
. Only a single known location is returned for each
incoming target location. If no known location is found for a particular
incoming location, that record in the tibble will contain all NA
.
table_getNearestLocation(
locationTbl = NULL,
longitude = NULL,
latitude = NULL,
distanceThreshold = NULL
)
locationTbl |
Tibble of known locations. |
longitude |
Vector of longitudes in decimal degrees E. |
latitude |
Vector of latitudes in decimal degrees N. |
distanceThreshold |
Distance in meters. |
Tibble of known locations.
library(MazamaLocationUtils)
locationTbl <- get(data("wa_monitors_500"))
# Wenatchee
lon <- -120.325278
lat <- 47.423333
# Too small a distanceThreshold will not find a match
table_getNearestLocation(locationTbl, lon, lat, distanceThreshold = 50) %>% str()
# Expanding the distanceThreshold will find one
table_getNearestLocation(locationTbl, lon, lat, distanceThreshold = 5000) %>% str()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.