diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2018-09-27 18:57:55 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2018-09-27 18:57:55 +0200 |
commit | b3d9bf2e5571cf506b924a6fc9cbcc366c82e340 (patch) | |
tree | d8cebe0ba571f475c1034c47ac102362007a9a03 /R | |
parent | d665fd715ac798ac54975648543e804732df45c8 (diff) |
Soil names for soil sorption tables
Diffstat (limited to 'R')
-rw-r--r-- | R/chent.R | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -355,14 +355,16 @@ chent <- R6Class("chent", } }, soil_sorption = NULL, - add_soil_sorption = function(type, Kf, Kfoc, N, + add_soil_sorption = function(soils, Kf, Kfoc, N, + type = NA, pH_orig = NA, pH_medium = NA, pH_H2O = NA, perc_OC = NA, perc_clay = NA, CEC = NA, remark = "", source, page = NA) { new_soil_sorption = data.frame( - type = type, + soils = soils, Kf = Kf, Kfoc = Kfoc, N = N, + type = type, pH_orig = pH_orig, pH_medium = pH_medium, pH_H2O = pH_H2O, |