MazamaLocationUtils (version 0.1.6)

table_getRecordIndex: Return indexes of known location records

Description

Returns a vector of locationTbl row indexes for the locations associated with each locationID.

Usage

table_getRecordIndex(locationTbl = NULL, locationID = NULL,
  verbose = TRUE)

Arguments

locationTbl

Tibble of known locations, Default: NULL

locationID

Vector of locationID strings, Default: NULL

verbose

Logical controlling the generation of progress messages.

Value

Vector of locationTbl row indexes.

Examples

Run this code
# NOT RUN {
locationTbl <- get(data("wa_monitors_500"))

# Wenatchee
lon <- -120.325278
lat <- 47.423333

# Get the locationID first
locationID <- table_getLocationID(locationTbl, lon, lat, radius = 5000)

# Now find the row associated with this ID
recordIndex <- table_getRecordIndex(locationTbl, locationID)

str(locationTbl[recordIndex,])
# }

Run the code above in your browser using DataLab