USGS APIs are used to determine the elevation associated with the longitude and latitude.

location_getSingleElevation_USGS(
  longitude = NULL,
  latitude = NULL,
  verbose = TRUE
)

Arguments

longitude

Single longitude in decimal degrees E.

latitude

Single latitude in decimal degrees N.

verbose

Logical controlling the generation of progress messages.

Value

Numeric elevation value.

References

https://nationalmap.gov/epqs/

Examples

# \donttest{ library(MazamaLocationUtils) # Wenatchee lon <- -120.325278 lat <- 47.423333 location_getSingleElevation_USGS(lon, lat)
#> [1] 236.03
# }