lter / soilHarmonization

Homogenize LTER Soil Organic Matter Working Group data and notes
https://lter.github.io/soilHarmonization/
Other
1 stars 4 forks source link

multiple error codes are not recognized #10

Closed srearl closed 5 years ago

srearl commented 5 years ago

script is not recognizing missing value character when multiple mvcs are passed. paste was the problem, edit:

if (exists('mvc1') && exists('mvc2')) { missingValueCode = c(paste(mvc1, mvc2))} to... if (exists('mvc1') && exists('mvc2')) { missingValueCode = c(mvc1, mvc2)}

https://github.com/srearl/soilHarmonization/blob/master/R/data_homogenization.R#203

srearl commented 5 years ago

fixed