R/location_getSingleAddress_TexasAM.R
location_getSingleAddress_TexasAM.Rd
Texas A&M APIs are used to determine the address associated with
the longitude
and latitude
.
location_getSingleAddress_TexasAM(
longitude = NULL,
latitude = NULL,
apiKey = NULL,
verbose = TRUE
)
Single longitude in decimal degrees E.
Single latitude in decimal degrees N.
Texas A&M Geocoding requires an API key. The first 2500 requests are free.
Logical controlling the generation of progress messages.
Numeric elevation value.
if (FALSE) {
library(MazamaLocationUtils)
# Fail gracefully if any resources are not available
try({
# Wenatchee
longitude <- -122.47
latitude <- 47.47
apiKey <- YOUR_PERSONAL_API_KEY
location_getSingleAddress_TexasAM(longitude, latitude, apiKey)
}, silent = FALSE)
}