knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
Rosetta is a neural network-based model for predicting unsaturated soil hydraulic parameters from basic soil characterization data. The model predicts parameters for the van Genuchten unsaturated soil hydraulic properties model, using sand, silt, and clay, bulk density and water content.
{rosettaPTF} uses {reticulate} to wrap the Python rosetta-soil module: providing several versions of the Rosetta pedotransfer functions in an R environment.
This package is primarily intended for more demanding use cases (such as calling Rosetta "continuously" on each cell in a stack of rasters), or for accessing the uncertainty and shape metrics from Zhang & Schaap (2017). High-throughput input to the pedotransfer function is possible by using RasterStack (raster) or SpatRaster (terra) objects as input.
First, install the package from GitHub:
if (!require("remotes")) install.packages("remotes") remotes::install_github("ncss-tech/rosettaPTF")
Then load the rosetta-soil module by loading the R package. If you do not have an available python installation or rosetta-soil module you will be notified.
library(rosettaPTF)
rosetta-soil Python moduleThe rosetta-soil module is a Python package maintained by Dr. Todd Skaggs (USDA-ARS) and other U.S. Department of Agriculture employees.
The Rosetta pedotransfer function predicts five parameters for the van Genuchten model of unsaturated soil hydraulic properties
theta_r : residual volumetric water contenttheta_s : saturated volumetric water contentlog10(alpha) : retention shape parameter [log10(1/cm)]log10(n) : retention shape parameter (also referred to as npar)log10(ksat) : saturated hydraulic conductivity [log10(cm/d)]For each set of input data a mean and standard deviation of each parameter is given.
Less demanding use cases are encouraged to use the web interface or API endpoint. There are additional wrappers of the API endpoints provided by the soilDB R package ROSETTA() method. For small amounts of data consider using the interactive version that has copy/paste functionality: https://www.handbook60.org/rosetta.
The Rosetta model relies on a minimum of 3 soil properties, with increasing (expected) accuracy as additional properties are included:
Required, sand, silt, clay: USDA soil texture separates (percentages) that sum to 100%
Optional, bulk density (any moisture basis): mass per volume after accounting for >2mm fragments, units of grams/cm3
Optional, volumetric water content at 33 kPa: roughly “field capacity” for most soils, units of cm3/cm3
Optional, volumetric water content at 1500 kPa: roughly “permanent wilting point” for most plants, units of cm3/cm3
The default order of inputs is: sand, silt, clay, bulk density (any basis), water content (field capacity; 33 kPa), water content (permanent wilting point; 1500 kPa) of which the first three are required.
If you specify field capacity water content, you must specify bulk density. If you specify permanent wilting point water content you must also specify bulk density and field capacity water content.
If you are using this package for the first time you will need to have Python installed and you will need to download the necessary modules.
You can set up {reticulate} to install modules into a virtual environment. {reticulate} offers reticulate::install_python() to download and set up Python if you have not yet done so.
For example, install a recent version of Python, and create a virtual environment called "r-reticulate"
# download latest python 3.10.x reticulate::install_python(version = "3.10:latest") reticulate::virtualenv_create("r-reticulate")
python binariesrosettaPTF::find_python()
find_python() provides heuristics for setting up {reticulate} to use Python in commonly installed locations.
The first attempt makes use of Sys.which() to find installations available in the user path directory.
If automatic configuration via find_python() fails (returns NULL) you can manually set a path to the python executable with the {reticulate} RETICULATE_PYTHON environment variable: Sys.setenv(RETICULATE_PYTHON = "path/to/python") or reticulate::use_python("path/to/python")
rosetta-soil Python ModuleThe {rosettaPTF} install_rosetta() method wraps reticulate::py_install("rosetta-soil"). You may not need to install the rosetta-soil module if your environment is set up, as {reticulate} will install/upgrade dependencies of packages as specified in the package configuration section of the DESCRIPTION file.
You can use install_rosetta() to install into custom environments by specifying envname as needed. After installing a new version of the module you should restart your R session.
rosettaPTF::install_rosetta()
Alternately, to install the module manually with pip you can run the following command. This assumes a Python 3 binary called python can be found on your path.
python -m pip install rosetta-soil
run_rosetta()Batch runs of Rosetta models can be done using using list, data.frame, matrix, RasterStack, RasterBrick and SpatRaster objects as input.
list() Input Examplerun_rosetta(list(c(30, 30, 40, 1.5), c(55, 25, 20), c(55, 25, 20, 1.1)), rosetta_version = 3)
Output model_code reflects the number of parameters in the input.
data.frame() Input ExampleThe data.frame interface allows for using using custom column names and order. If the vars argument is not specified it is assumed that the columns are in the order specified in the run_rosetta() manual page.
run_rosetta(data.frame( d = c(NA, 1.5), b = 60, a = 20, c = 20 ), vars = letters[1:4])
This example pulls mapunit/component data from Soil Data Access (SDA). We use the {soilDB} function get_SDA_property() to obtain representative values for sand, silt, clay, and bulk density (1/3 bar) we run Rosetta on the resulting data.frame (one row per mapunit) then use raster attribute table (RAT) to display the results (1:1 with mukey).
library(soilDB) library(terra) library(rosettaPTF) # obtain mukey map from SoilWeb Web Coverage Service (800m resolution SSURGO derived) res <- mukey.wcs(aoi = list(aoi = c(-114.16, 47.65,-114.08, 47.68), crs = 'EPSG:4326')) # request input data from SDA varnames <- c("sandtotal_r", "silttotal_r", "claytotal_r", "dbthirdbar_r") resprop <- get_SDA_property(property = varnames, method = "Dominant Component (numeric)", mukeys = unique(values(res$mukey))) # keep only those where we have a complete set of 4 parameters (sand, silt, clay, bulk density; model code #3) soildata <- resprop[complete.cases(resprop), c("mukey", varnames)] # run Rosetta on the mapunit-level aggregate data system.time(resrose <- run_rosetta(soildata[,varnames])) # transfer mukey to result resprop$mukey <- as.numeric(resprop$mukey) resrose$mukey <- as.numeric(soildata$mukey) # merge property (input) and rosetta parameters (output) into RAT levels(res) <- merge(cats(res)[[1]], resprop, by.x = "ID", by.y = "mukey", all.x = TRUE, sort = FALSE) levels(res) <- merge(cats(res)[[1]], resrose, by.x = "ID", by.y = "mukey", all.x = TRUE, sort = FALSE) # convert categories based on mukey to numeric values res2 <- catalyze(res) # make a plot of the predicted Ksat plot(res2, "log10_Ksat_mean")
The above example shows how to create raster output based on discrete (SSURGO polygon derived) data. A more general case is when each raster cell has "unique" values (i.e. continuous raster inputs). run_rosetta() has an S3 method defined for SpatRaster input.
We previously merged the input data from SDA (an ordinary data.frame) into the RAT of res; exploiting the linkage between mukey and raster cells to make the map. For comparison with the mukey results above we stack de-ratified input layers and create a new SpatRaster.
res3 <- rast(list( res2[["sandtotal_r"]], res2[["silttotal_r"]], res2[["claytotal_r"]], res2[["dbthirdbar_r"]] )) # SpatRaster to data.frame interface (one call on all cells) system.time(test2 <- run_rosetta(res3)) # make a plot of the predicted Ksat (identical to mukey-based results) plot(test2, "log10_Ksat_mean")
You will notice the results for Ksat distribution are identical since the same input values were used, but the latter approach took longer to run. The time difference is the difference of estimating ~40 (1 estimate per mapunit key) versus ~30,000 (1 estimate per raster cell) sets of Rosetta parameters.
Rosetta S3 ClassNote that each instance of Rosetta has a fixed version and model code, so if you have heterogeneous input you need to iterate over model code.
# defaults are version 3 and model code 3 (4 parameters: sand, silt, clay and bulk density) my_rosetta <- Rosetta(rosetta_version = 3, model_code = 3)
predict() Rosetta Parameter Values and Standard Deviations from a Rosetta instancepredict(my_rosetta, list(c(30, 30, 40, 1.5), c(55, 25, 20, 1.1)))
ann_predict()ann_predict(my_rosetta, list(c(30, 30, 40, 1.5), c(55, 25, 20, 1.1)))
Three versions of the ROSETTA model are available, selected using rosetta_version argument.
rosetta_version 1 - Schaap, M.G., F.J. Leij, and M.Th. van Genuchten. 2001. ROSETTA: a computer program for estimating soil hydraulic parameters with hierarchical pedotransfer functions. Journal of Hydrology 251(3-4): 163-176. doi: 10.1016/S0022-1694(01)00466-8.
rosetta_version 2 - Schaap, M.G., A. Nemes, and M.T. van Genuchten. 2004. Comparison of Models for Indirect Estimation of Water Retention and Available Water in Surface Soils. Vadose Zone Journal 3(4): 1455-1463. doi: 10.2136/vzj2004.1455.
rosetta_version 3 - Zhang, Y., and M.G. Schaap. 2017. Weighted recalibration of the Rosetta pedotransfer model with improved estimates of hydraulic parameter distributions and summary statistics (Rosetta3). Journal of Hydrology 547: 39-53. doi: 10.1016/j.jhydrol.2017.01.004.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.