fetchSOLUS | R Documentation |
This tool creates a virtual raster or downloads data for an extent from Cloud Optimized GeoTIFFs (COGs) from the Soil Landscapes of the United States 100-meter (SOLUS100) soil property maps project repository.
fetchSOLUS(
x = NULL,
depth_slices = c(0, 5, 15, 30, 60, 100, 150),
variables = c("anylithicdpt", "caco3", "cec7", "claytotal", "dbovendry", "ec", "ecec",
"fragvol", "gypsum", "ph1to1h2o", "resdept", "sandco", "sandfine", "sandmed",
"sandtotal", "sandvc", "sandvf", "sar", "silttotal", "soc"),
output_type = c("prediction", "relative prediction interval",
"95% low prediction interval", "95% high prediction interval"),
grid = TRUE,
samples = NULL,
method = c("linear", "constant", "fmm", "natural", "monoH.FC", "step", "slice"),
max_depth = 151,
filename = NULL,
overwrite = FALSE
)
x |
An R spatial object (such as a SpatVector, SpatRaster, or sf object) or a
SoilProfileCollection with coordinates initialized via |
depth_slices |
character. One or more of: |
variables |
character. One or more of: |
output_type |
character. One or more of: |
grid |
logical. Default |
samples |
integer. Number of regular samples to return for SoilProfileCollection output.
Default |
method |
character. Used to determine depth interpolation method for SoilProfileCollection
output. Default: |
max_depth |
integer. Maximum depth to interpolate 150 cm slice data to. Default: |
filename |
character. Path to write output raster file. Default: |
overwrite |
Overwrite |
If the input object x
is not specified (NULL
or missing), a SpatRaster object using the
virtual URLs is returned. The full extent and resolution data set can be then downloaded and
written to file using terra::writeRaster()
(or any other processing step specifying an output
file name). When input object x
is specified, a SpatRaster object using in memory or local
(temporary file or filename
) resources is returned after downloading the data only for the
target extent. In the case where x
is a SoilProfileCollection or an sf or SpatVector
object containing point geometries, the result will be a SoilProfileCollection for values
extracted at the point locations. To return both the SpatRaster and SoilProfileCollection
object output in a list, use grid = NULL
.
A SpatRaster object containing SOLUS grids for specified extent, depths, variables, and product types.
Andrew G. Brown
Nauman, T. W., Kienast-Brown, S., Roecker, S. M., Brungard, C., White, D., Philippe, J., & Thompson, J. A. (2024). Soil landscapes of the United States (SOLUS): developing predictive soil property maps of the conterminous United States using hybrid training sets. Soil Science Society of America Journal, 88, 2046–2065. \Sexpr[results=rd]{tools:::Rd_expr_doi("https://doi.org/10.1002/saj2.20769")}
## Not run:
b <- c(-119.747629, -119.67935, 36.912019, 36.944987)
bbox.sp <- sf::st_as_sf(wk::rct(
xmin = b[1], xmax = b[2], ymin = b[3], ymax = b[4],
crs = sf::st_crs(4326)
))
ssurgo.geom <- soilDB::SDA_spatialQuery(
bbox.sp,
what = 'mupolygon',
db = 'SSURGO',
geomIntersection = TRUE
)
# grid output
res <- fetchSOLUS(
ssurgo.geom,
depth_slices = "0",
variables = c("sandtotal", "silttotal", "claytotal", "cec7"),
output_type = "prediction"
)
terra::plot(res)
# SoilProfileCollection output, using linear interpolation for 1cm slices
# site-level variables (e.g. resdept) added to site data.frame of SPC
res <- fetchSOLUS(
ssurgo.geom,
depth_slices = c("0", "5", "15", "30", "60", "100", "150"),
variables = c("sandtotal", "silttotal", "claytotal", "cec7", "resdept"),
output_type = "prediction",
method = "linear",
grid = FALSE,
samples = 10
)
# plot, truncating each profile to the predicted restriction depth
aqp::plotSPC(trunc(res, 0, res$resdept_p), color = "claytotal_p", divide.hz = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.