R/location_getSingleElevation_USGS.R
location_getSingleElevation_USGS.Rd
USGS APIs are used to determine the elevation associated with
the longitude
and latitude
.
location_getSingleElevation_USGS( longitude = NULL, latitude = NULL, verbose = TRUE )
longitude | Single longitude in decimal degrees E. |
---|---|
latitude | Single latitude in decimal degrees N. |
verbose | Logical controlling the generation of progress messages. |
Numeric elevation value.
# \donttest{ library(MazamaLocationUtils) # Wenatchee lon <- -120.325278 lat <- 47.423333 location_getSingleElevation_USGS(lon, lat)#> [1] 236.03# }