These functions query the NRCS gSSURGO Web Feature Service to retrieve map unit keys based on different spatial filters.
Details
These functions use the NRCS SDM Data Access Web Feature Service: https://sdmdataaccess.nrcs.usda.gov/SpatialFilterHelp.htm
The total extent cannot exceed 10,100,000,000 square meters (~3,900 square miles). Use `ssurgo_mukeys_bigbbox()` for large bounding boxes.
Examples
if (FALSE) { # \dontrun{
# Bounding box query
mukeys <- ssurgo_mukeys_bbox(bbox = c(-114.006, 32.1823, -113.806, 32.2823))
# Point with distance (600m radius)
mukeys <- ssurgo_mukeys_point(point = c(-91.22, 38.46), distance = 600)
# Large bounding box
mukeys <- ssurgo_mukeys_bigbbox(bbox = c(-120, 35, -110, 45))
} # }