diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2018-06-21 12:29:51 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2018-06-22 10:50:40 +0200 |
commit | 9cd6a79cd5c0fc69ca0b2c689d3a77f46978beba (patch) | |
tree | f314d35c3a3c98f258c117c9608779a8b3bc2e59 /R | |
parent | d1786a315fe7bc68a6543de15685d59a56eaa1b1 (diff) |
Add country field to soil degradation data
Diffstat (limited to 'R')
-rw-r--r-- | R/chent.R | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -306,7 +306,7 @@ chent <- R6Class("chent", }, soil_degradation = NULL, add_soil_degradation = function(soils, DT50, - type = NA, + type = NA, country = NA, pH_orig = NA, pH_medium = NA, pH_H2O = NA, temperature = NA, moisture = NA, category = "lab", formulation = NA, @@ -315,6 +315,7 @@ chent <- R6Class("chent", soil = soils, DT50 = DT50, type = type, + country = country, pH_orig = pH_orig, pH_medium = pH_medium, pH_H2O = pH_H2O, |