diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index ce01a80245..89812401ca 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -73,23 +73,7 @@ # mineral texture classes, sorted from coarse -> fine textures <- c('coarse sand', 'sand', 'fine sand', 'very fine sand', 'loamy coarse sand', 'loamy sand', 'loamy fine sand', 'loamy very fine sand', 'coarse sandy loam', 'sandy loam', 'fine sandy loam', 'very fine sandy loam', 'loam', 'silt loam', 'silt', 'sandy clay loam', 'clay loam', 'silty clay loam', 'sandy clay', 'silty clay', 'clay') - ## TODO: this is too greedy as 'fine sand' will be found _within_ 'fine sandy loam' - # https://github.com/dylanbeaudette/parse-osd/issues/10 - - # combine into capturing REGEX - # texture.regex <- paste0('(', paste(textures, collapse='|'), ')') - # - # # get matches - # m <- stri_match(text, regex = texture.regex, mode='first', opts_regex=list(case_insensitive=TRUE)) - # - # # fail gracefully in the case of no section data or no matches - # if(nrow(m) < 1) - # return(NA) - # - # # keep only matches and convert to lower case - # m <- tolower(m[, 2]) - - ## 2019-05-29: generalized for all non-greedy, exact matching + ## 2019-05-29: generalized for all non-greedy, exact matching, longest string m <- .findClass(needle = textures, haystack = text) m <- tolower(m) @@ -319,35 +303,27 @@ #' @importFrom stringi stri_match_all .extractHzData <- function(tp) { - - ## REGEX rules - # http://regexr.com/ - ## TODO: combine top+bottom with top only rules - # "O" = "0" - # "l" = "1" - ## ideas: http://stackoverflow.com/questions/15474741/python-regex-optional-capture-group - - # expect em dashes (\u2014) used after horizon designation as of May 2023 - # https://github.com/ncss-tech/SoilKnowledgeBase/issues/64 - + # detect horizons with both top and bottom depths hz.rule <- "([\\^\\'\\/a-zA-Z0-9]+(?: and [\\^\\'\\/a-zA-Z0-9]+)?)\\s*[-=\u2014]+\\s*([Ol0-9.]+)\\s*?(to|-)?\\s+?([Ol0-9.]+)\\s*?(in|inches|cm|centimeters)" - + # detect horizons with no bottom depth hz.rule.no.bottom <- "([\\^\\'\\/a-zA-Z0-9]+(?: and [\\^\\'\\/a-zA-Z0-9]+)?)\\s*[-=\u2014]+?\\s*([Ol0-9.]+)\\s*(to|-)?\\s*([Ol0-9.]+)?\\s*?(in|inches|cm|centimeters)" - - ## TODO: toggle dry/moist assumption: - ## - ## Colors are for dry soil unless otherwise stated | Colors are for moist soil unless otherwise stated + + ## default encoding of colors: Toggle dry/moist assumption ## - ## E1--7 to 12 inches; very dark gray (10YR 3/1) silt loam, 50 percent gray (10YR 5/1) and 50 percent gray (10YR 6/1) dry; moderate thin platy structure parting to weak thin platy; friable, soft; common fine and medium roots throughout; common fine tubular pores; few fine distinct dark yellowish brown (10YR 4/6) friable masses of iron accumulations with sharp boundaries on faces of peds; strongly acid; clear wavy boundary. - + ## Profile-level statement: Colors are for dry soil unless otherwise stated | Colors are for moist soil unless otherwise stated + ## + ## Examples: + ## moist: + ## E1--7 to 12 inches; very dark gray (10YR 3/1) silt loam, 50 percent gray (10YR 5/1) and 50 percent gray (10YR 6/1) dry; moderate thin platy structure parting to weak thin platy; friable, soft; common fine and medium roots throughout; common fine tubular pores; few fine distinct dark yellowish brown (10YR 4/6) friable masses of iron accumulations with sharp boundaries on faces of peds; strongly acid; clear wavy boundary. + ## + ## dry: ## A--0 to 6 inches; light gray (10YR 7/2) loam, dark grayish brown (10YR 4/2) moist; moderate coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; many very fine and few fine tubular and many very fine interstitial pores; 10 percent pebbles; strongly acid (pH 5.1); clear wavy boundary. (1 to 8 inches thick) ## + dry.is.default <- length(grep('for[ athe]+(?:air-* *)?dr[yied]+[ \\n,]+(colors|soil|conditions)', tp, ignore.case = TRUE)) > 0 + moist.is.default <- length(grep('for[ athe]+(wet|moi*st)[ \\n,]+(rubbed|crushed|broken|interior|soil|conditions)', tp, ignore.case = TRUE)) > 0 - # establish default encoding of colors - dry.is.default <- length(grep('for dry (soil|conditions)', tp, ignore.case = TRUE)) > 0 - moist.is.default <- length(grep('for moist (soil|conditions)', tp, ignore.case = TRUE)) > 0 if (dry.is.default) default.moisture.state <- 'dry' @@ -365,16 +341,9 @@ ## TODO: account for l,O style OCR errors # https://github.com/ncss-tech/SoilKnowledgeBase/issues/53 - ## TODO: test this - # get all colors matching our rule, moist and dry and unknown, 5th column is moisture state - # interpretation is tough when multiple colors / hz are given # single rule, with dry/moist state # note that dry/moist may not always be present - color.rule <- "\\(([Ol0-9]?[\\.]?[Ol0-9]?[B|G|Y|R|N]+)([ ]+?[Ol0-9\\.]+)/([Ol0-9]*)\\)\\s?(dry|moist|)" - - # detect moist and dry colors - dry.color.rule <- "\\(([Ol0-9]?[\\.]?[Ol0-9]?[B|G|Y|R|N]+)([ ]+?[Ol0-9\\.]+)/([Ol0-9]*)\\)(?! moist)" - moist.color.rule <- "\\(([Ol0-9]?[\\.]?[Ol0-9]?[B|G|Y|R|N]+)([ ]+?[Ol0-9\\.]+)/([Ol0-9]*)\\) moist" + color.rule <- "\\(([Ol0-9]?[\\.]?[Ol0-9]?[B|G|Y|R|N]+) *([Ol0-9\\.]+) */([Ol0-9]*) *\\)\\s?(dry|moist|)" # ID actual lines of horizon information hz.idx <- unique(c(grep(hz.rule, tp), grep(hz.rule.no.bottom, tp))) @@ -425,10 +394,11 @@ ## TODO: test this! # parse ALL colors, result is a multi-row matrix, 5th column is moisture state colors <- stringi::stri_match_all(this.chunk, regex = color.rule)[[1]] + # replace missing moisture state with (parsed) default value colors[, 5][which(colors[, 5] == '')] <- default.moisture.state - # exctract dry|moist colors, note that there may be >1 color per state + # extract dry|moist colors, note that there may be >1 color per state dc <- colors[which(colors[, 5] == 'dry'), 1:4, drop = FALSE] mc <- colors[which(colors[, 5] == 'moist'), 1:4, drop = FALSE] diff --git a/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv b/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv index 6da97d10f7..2c877dda94 100644 --- a/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv @@ -5,6 +5,10 @@ "ALDERFLATS","Btgl",13,30,NA,NA,NA,"5Y","5","2" "ANDRY","022",15,0,NA,NA,NA,"10YR","3","2" "ANDRY","021",30,15,NA,NA,NA,"10YR","3","2" +"ASHLAR","A",5,13,NA,NA,NA,"l0YR","3","2" +"ASHLAR","E",13,28,NA,NA,NA,"l0YR","5","2" +"ASHLAR","Bw",28,51,NA,NA,NA,"l0YR","5","4" +"ASHLAR","C",51,71,NA,NA,NA,"l0YR","5","3" "BAHIAHONDA","Cgl",89,173,NA,NA,NA,"10YR","8","1" "BEECH GROVE","Oi",3,0,NA,NA,NA,NA,NA,NA "BELHAVEN","Oal",23,33,NA,NA,NA,"5YR","2.5","2" @@ -51,7 +55,9 @@ "OKEECHOBEE","0a",20,71,NA,NA,NA,"5YR","2","1" "OPENLAKE","Bgl",18,33,NA,NA,NA,"10YR","4","2" "ORENDA","0i",0,3,NA,NA,NA,NA,NA,NA -"PAILO","Btl",43,89,NA,NA,NA,NA,NA,NA +"PAILO","A",3,8,NA,NA,NA,"l0YR","3","2" +"PAILO","BE",8,43,NA,NA,NA,"l0YR","5","6" +"PAILO","Btl",43,89,NA,NA,NA,"l0YR","5","6" "PAMUNKEY","2C",117,203,NA,NA,NA,"1OYR","5","6" "PARTLOW","Btgl",38,53,NA,NA,NA,"10YR","5","1" "PETAL","Btl",20,43,NA,NA,NA,"5YR","5","8" diff --git a/inst/extdata/OSD-error-reporting/RO/auburn-series.csv b/inst/extdata/OSD-error-reporting/RO/auburn-series.csv index dfb6cdd9fc..ea2ccf80de 100644 --- a/inst/extdata/OSD-error-reporting/RO/auburn-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/auburn-series.csv @@ -10,6 +10,7 @@ "SOCO",189881,FALSE,2001,FALSE,TRUE "TALLADEGA",155342,FALSE,2001,FALSE,TRUE "GRITNEY",129163,FALSE,1997,FALSE,TRUE +"ASHLAR",107187,TRUE,2017,FALSE,TRUE "VICKSBURG",103571,FALSE,2002,FALSE,TRUE "REMLIK",103503,FALSE,2002,FALSE,TRUE "STECOAH",95927,FALSE,2001,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv b/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv index ac71377a3b..d8e1562b37 100644 --- a/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv @@ -89,7 +89,7 @@ "CARGILL","C2ca",89,76,"2.5Y","7","4",NA,NA,NA "CARIBOURIDGE","0i",0,3,NA,NA,NA,NA,NA,NA "CARIBOURIDGE","0e",3,5,NA,NA,NA,NA,NA,NA -"CASTELLO","Clca",23,84,NA,NA,NA,"7.5YR","8","2" +"CASTELLO","Clca",23,84,"7.5YR","8","2","7.5YR","7","2" "CATAMOUNT","0i",0,3,NA,NA,NA,NA,NA,NA "CATLA","Cdl",41,94,"10YR","7","2","10YR","6","3" "CHICANE","A12",13,36,"lOYR","3","2","lOYR","2","1" @@ -360,7 +360,7 @@ "OLEO","0i",0,3,NA,NA,NA,NA,NA,NA "OLIAGA","Clca",20,46,"2.5Y","6","2","2.5Y","4","2" "ORAID","0i",0,3,NA,NA,NA,NA,NA,NA -"PACKERJOHN","Al",5,25,NA,NA,NA,"10YR","4","3" +"PACKERJOHN","Al",5,25,"10YR","4","3","10YR","3","3" "PALMICH","A",5,15,"l0YR","6",NA,"l0YR","3","2" "PALMICH","AB",15,71,"l0YR","6","2","l0YR","3","3" "PALMICH","Bw2",71,117,"l0YR","6","3","l0YR","4","4" @@ -406,7 +406,7 @@ "PUGET","Bg2",NA,64,"5Y","6","2","2.5Y","5","2" "PUGET","Bg4",NA,102,"5Y","7",NA,"2.5Y","5","2" "PUYALLUP","2Cl",46,69,"10YR","5","2","10YR","3","3" -"QUAILRIDGE","Btl",10,20,NA,NA,NA,"10YR","4","3" +"QUAILRIDGE","Btl",10,20,"10YR","4","3","10YR","3","3" "QUIETUS","0e",0,5,NA,NA,NA,NA,NA,NA "QUILLAYUTE","01",3,20,NA,NA,NA,NA,NA,NA "RACKER","0a",0,3,NA,NA,NA,NA,NA,NA @@ -594,8 +594,8 @@ "TRADEDOLLAR","Bs3",NA,56,"5YR","5","6","5YR","4","6" "TREEN","0i",0,5,NA,NA,NA,NA,NA,NA "TREON","A",0,18,"10YR","5","3","l0YR","3","3" -"TRIPOD","Al",3,15,NA,NA,NA,"10YR","4","2" -"TRIPOD","2Cl",58,127,NA,NA,NA,"10YR","7","2" +"TRIPOD","Al",3,15,"10YR","4","2","10YR","3","2" +"TRIPOD","2Cl",58,127,"10YR","7","2","2.5Y","5","2" "TROUTVILLE","0i",0,8,NA,NA,NA,NA,NA,NA "TROUTVILLE","0e",8,10,NA,NA,NA,NA,NA,NA "TRUEFISSURE","0i",0,3,NA,NA,NA,NA,NA,NA @@ -617,7 +617,7 @@ "VAILTON","C",102,114,"l0YR","6","4","l0YR","4","4" "VAILTON","Cr",114,NA,NA,NA,NA,NA,NA,NA "VAILTON","Bwl",NA,71,"l0YR","6","4","l0YR","4","4" -"VAN DUSEN","Al",0,20,NA,NA,NA,"10YR","4","1" +"VAN DUSEN","Al",0,20,"10YR","4","1","10YR","2","2" "VASSAR","0i",0,3,NA,NA,NA,NA,NA,NA "VASSAR","0e",3,5,"10YR","4","1","10YR","2","2" "VERNONIA","0",3,10,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/RO/davis-hz.csv b/inst/extdata/OSD-error-reporting/RO/davis-hz.csv index beeb472209..7ebea12e84 100644 --- a/inst/extdata/OSD-error-reporting/RO/davis-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/davis-hz.csv @@ -8,18 +8,18 @@ "AMOS","Clr",104,127,"10YR","6","4","5YR","5","6" "AMOS","A1",NA,8,"10YR","5","3","10YR","4","3" "ANDERGEORGE","Bkyl",56,107,"10YR","8","2","10YR","7","3" -"ANDYS","A",0,20,NA,NA,NA,"l0YR","5","3" +"ANDYS","A",0,20,"l0YR","5","3","10YR","3","3" "ARKRIGHT","Oi",3,0,NA,NA,NA,NA,NA,NA "ASABEAN","0",5,23,NA,NA,NA,NA,NA,NA -"ASHLEY","C1",76,91,NA,NA,NA,"l0YR","5","6" -"ASHLEY","A3",NA,76,NA,NA,NA,"7.5YR","6","2" +"ASHLEY","C1",76,91,"l0YR","5","6",NA,NA,NA +"ASHLEY","A3",NA,76,"7.5YR","6","2","7.5YR","4","2" "ASPARAS","All",0,5,"l0YR","5","2","l0YR","3","2" "ASPARAS","Al2",5,18,"l0YR","4","2","l0YR","3","2" "ASPARAS","B2lt",18,61,"l0YR","4","3","10YR","3","3" "ASPARAS","B22t",NA,61,"7.5YR","5","2","7.5YR","4","2" "ASTA","01",3,5,NA,NA,NA,NA,NA,NA "ASTA","02",5,3,NA,NA,NA,NA,NA,NA -"BANADERU","Al",0,3,"5YR","2.5","2",NA,NA,NA +"BANADERU","Al",0,3,"5YR","2.5","2","N","2","0" "BANADERU","0i",3,0,NA,NA,NA,NA,NA,NA "BANCAS","01",1,0,NA,NA,NA,NA,NA,NA "BARPEAK","Oi",5,0,NA,NA,NA,NA,NA,NA @@ -33,11 +33,11 @@ "BOOMTOWN","02",3,10,NA,NA,NA,NA,NA,NA "BORAVALL","Bkg",109,102,"5Y","7","1","5GY","5","1" "BORIANA","0i",0,5,"10YR","4","2","10YR","3","3" -"BROBETT","A",0,8,NA,NA,NA,"l0YR","4","3" -"BROBETT","Bt",8,20,NA,NA,NA,"l0YR","6","3" -"BROBETT","Bqkl",20,76,NA,NA,NA,"l0YR","7","4" +"BROBETT","A",0,8,"l0YR","4","3","l0YR","3","3" +"BROBETT","Bt",8,20,"l0YR","6","3","l0YR","5","4" +"BROBETT","Bqkl",20,76,"l0YR","7","4","l0YR","5","4" "BROBETT","Bqkm",76,NA,NA,NA,NA,NA,NA,NA -"BROBETT","Bqk2",NA,76,NA,NA,NA,"l0YR","7","3" +"BROBETT","Bqk2",NA,76,"l0YR","7","3","l0YR","6","4" "BROLLIAR","Al",3,8,"7.5YR","4","2","7.5YR","3","2" "BROWNSCREEK","Oi",3,0,NA,NA,NA,NA,NA,NA "BUNDORA","Oi",3,0,NA,NA,NA,NA,NA,NA @@ -46,7 +46,7 @@ "BURNSWICK","Bknl",41,74,"5YR","5","3","5YR","4","3" "BUSHVALLEY","0i",0,3,NA,NA,NA,NA,NA,NA "BUTANO","A0",5,0,NA,NA,NA,NA,NA,NA -"CALPAC","Al",0,8,NA,NA,NA,"10YR","4","3" +"CALPAC","Al",0,8,"10YR","4","3","10YR","3","2" "CAMBERN","0i",0,3,NA,NA,NA,NA,NA,NA "CANNELL","Oi",5,0,NA,NA,NA,NA,NA,NA "CANYONCREEK","Oi",8,0,NA,NA,NA,NA,NA,NA @@ -67,16 +67,16 @@ "CREST","0i",0,3,NA,NA,NA,NA,NA,NA "CREST","0e",3,10,NA,NA,NA,NA,NA,NA "CUMMISKEY","0",3,10,NA,NA,NA,NA,NA,NA -"DAHAR","Bw",15,30,NA,NA,NA,"l0YR","6","2" -"DAHAR","Bqk",30,69,NA,NA,NA,"l0YR","7","2" -"DAHAR","Bqk",69,109,NA,NA,NA,"l0YR","8","2" -"DAHAR","Bqkm",NA,69,NA,NA,NA,"l0YR","8","2" +"DAHAR","Bw",15,30,"l0YR","6","2","l0YR","5","3" +"DAHAR","Bqk",30,69,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqk",69,109,"l0YR","8","2","l0YR","7","3" +"DAHAR","Bqkm",NA,69,"l0YR","8","2","l0YR","7","3" "DANDREA","0i",0,3,NA,NA,NA,NA,NA,NA "DANHUNT","Oi",8,0,NA,NA,NA,NA,NA,NA "DECY","01",3,5,NA,NA,NA,NA,NA,NA "DECY","Bwl",20,38,"10YR","5","3","10YR","3","3" -"DEER CREEK","Al",0,8,NA,NA,NA,"10YR","4","2" -"DEER CREEK","Btl",25,36,NA,NA,NA,"10YR","4","2" +"DEER CREEK","Al",0,8,"10YR","4","2","10YR","2","2" +"DEER CREEK","Btl",25,36,"10YR","4","2","10YR","3","3" "DEETZ","O1 and O2",1,0,NA,NA,NA,NA,NA,NA "DEKKAS","Oi",5,0,NA,NA,NA,NA,NA,NA "DELLEKER","02",8,0,NA,NA,NA,NA,NA,NA @@ -102,8 +102,8 @@ "FREEZEOUT","0i",3,0,NA,NA,NA,NA,NA,NA "GANSNER","0",5,18,NA,NA,NA,NA,NA,NA "GAPPMAYER","O1",5,0,NA,NA,NA,NA,NA,NA -"GAPPMAYER","Clca",160,183,NA,NA,NA,"10YR","6","3" -"GAPPMAYER","A21",NA,1554,NA,NA,NA,"10YR","6","3" +"GAPPMAYER","Clca",160,183,"10YR","6","3","10YR","4","3" +"GAPPMAYER","A21",NA,1554,"10YR","6","3","10YR","5","3" "GAVEL","0",NA,0,NA,NA,NA,NA,NA,NA "GIANELLA","C10",168,175,"10YR","6","4","10YR","5","4" "GIBSONVILLE","0",8,0,NA,NA,NA,NA,NA,NA @@ -138,7 +138,7 @@ "HOSKIN","Al",0,18,"7.5YR","4","3","7.5YR","3","2" "HOTEL","0",5,20,NA,NA,NA,NA,NA,NA "HULUA","01",3,25,NA,NA,NA,NA,NA,NA -"HUPP","Al",0,15,NA,NA,NA,"10YR","5","2" +"HUPP","Al",0,15,"10YR","5","2","10YR","3","2" "HUSE","01",3,0,NA,NA,NA,NA,NA,NA "HUYSINK","01",3,0,NA,NA,NA,NA,NA,NA "ILLER","01 and 02",3,5,NA,NA,NA,NA,NA,NA @@ -157,11 +157,11 @@ "KETTLEBELLY","Oi",3,0,NA,NA,NA,NA,NA,NA "KILAUEA","C10",142,190,"10YR","5","1","N","2","0" "KILFOIL","All",NA,3,"10YR","5","3","10YR","3","3" -"KINESAVA","All",0,13,NA,NA,NA,"10YR","4","2" -"KINESAVA","Blt",79,99,NA,NA,NA,"7.5YR","4","3" +"KINESAVA","All",0,13,"10YR","4","2","10YR","3","2" +"KINESAVA","Blt",79,99,"7.5YR","4","3","7.5YR","3","3" "KISTIRN","O",8,0,NA,NA,NA,NA,NA,NA "KITTLESON","0i",8,41,NA,NA,NA,NA,NA,NA -"KJAR","Cl",20,36,NA,NA,NA,"10YR","8","2" +"KJAR","Cl",20,36,"10YR","8","2","10YR","7","2" "KNAPKE","0i",3,10,NA,NA,NA,NA,NA,NA "KNUTSEN","Apl",0,3,"10YR","5","2","10YR","3","1" "KNUTSEN","Bwl",20,28,"10YR","5","2","10YR","3","2" @@ -176,7 +176,7 @@ "LEDFORD","01",3,10,NA,NA,NA,NA,NA,NA "LEDGEFORK","Al",0,18,"10YR","3","1","10YR","2","1" "LEWISTON","Ckl",33,56,"10YR","7","2","10YR","6","2" -"LISADE","Al",0,5,NA,NA,NA,"7.5YR","6","2" +"LISADE","Al",0,5,"7.5YR","6","2","7.5YR","5","3" "LITTLE POLE","Al",0,13,"10YR","3","2","10YR","2","2" "LOBITOS","01",1,0,NA,NA,NA,NA,NA,NA "LONGBELL","Oi",5,0,NA,NA,NA,NA,NA,NA @@ -192,8 +192,8 @@ "MADDEN","01",3,0,NA,NA,NA,NA,NA,NA "MANTON","A0",5,0,NA,NA,NA,NA,NA,NA "MARTEE","Oi",1,0,NA,NA,NA,NA,NA,NA -"MAUGHAN","A2",20,64,NA,NA,NA,"l0YR","3","2" -"MAYFIELD","All",0,5,NA,NA,NA,"2.5Y","6","2" +"MAUGHAN","A2",20,64,"l0YR","3","2","10YR","2","1" +"MAYFIELD","All",0,5,"2.5Y","6","2","2.5Y","5","2" "MCGARVEY","0e",8,0,NA,NA,NA,NA,NA,NA "MCGARVEY","0i",10,8,NA,NA,NA,NA,NA,NA "MCGINNIS","2Crt",79,NA,NA,NA,NA,NA,NA,NA @@ -209,8 +209,8 @@ "MINERSVILLE","Oi",5,0,NA,NA,NA,NA,NA,NA "MIRABAL","0e",0,3,NA,NA,NA,NA,NA,NA "MOJO","0",5,0,NA,NA,NA,NA,NA,NA -"MOKIAK","Al",0,15,NA,NA,NA,"10YR","5","3" -"MOKIAK","Bl",15,28,NA,NA,NA,"10YR","5","3" +"MOKIAK","Al",0,15,"10YR","5","3","10YR","3","2" +"MOKIAK","Bl",15,28,"10YR","5","3","10YR","3","3" "MONDEY","Blt",23,36,"7.5YR","4","2","7.5YR","3","2" "MONDEY","Ap",NA,10,"10YR","4","2","10YR","2","2" "MONSERATE","Clsim",71,114,"10YR","4","3","5YR","3","4" @@ -240,16 +240,17 @@ "NOTNED","01",8,10,NA,NA,NA,NA,NA,NA "NOYO","01",5,0,NA,NA,NA,NA,NA,NA "OBIE","02",3,0,NA,NA,NA,NA,NA,NA -"OBRAST","Cl",25,38,NA,NA,NA,"10YR","5","3" -"OBRAST","C5",142,165,NA,NA,NA,"l0YR","8","2" +"OBRAST","Cl",25,38,"10YR","5","3","10YR","3","3" +"OBRAST","C5",142,165,"l0YR","8","2","10YR","7","2" "OBRAY","Ap",0,18,"lOYR","4","2","lOYR","3","2" "OBRAY","to",152,162,"lOYR","7","3","lOYR","6","4" +"OKRIST","A2",8,20,"10YR","6","4","l0YR","4","3" "OLOKUI","01",10,20,NA,NA,NA,"5YR","3","2" "OMSTOTT","Oi",1,0,NA,NA,NA,NA,NA,NA "OOSEN","01",NA,3,NA,NA,NA,NA,NA,NA "ORDNANCE","02",3,5,NA,NA,NA,NA,NA,NA "OSORIDGE","Btl",5,15,"2.5YR","4","4","2.5YR","3","4" -"OSOTE","Al",0,8,NA,NA,NA,"10YR","5","3" +"OSOTE","Al",0,8,"10YR","5","3","7.5YR","3","2" "OVERGAARD","Btl",28,53,"7.5YR","5","4","7.5YR","4","4" "PABLO","R",38,NA,NA,NA,NA,NA,NA,NA "PABLO","All",NA,8,"10YR","4","1","10YR","2","1" @@ -281,14 +282,14 @@ "PLEASANT GROVE","All",0,5,"10YR","3","2","10YR","2","2" "PLEASANT GROVE","Clca",53,97,"10YR","6","3","10YR","4","3" "PLEASANT VALE","Cl",43,61,"10YR","6","3","10YR","4","3" -"PLEGOMIR","A1",0,5,NA,NA,NA,"l0YR","5","3" -"PLEGOMIR","A2",5,13,NA,NA,NA,"l0YR","6","3" -"PLEGOMIR","Bqk",13,33,NA,NA,NA,"l0YR","7","4" +"PLEGOMIR","A1",0,5,"l0YR","5","3","10YR","3","3" +"PLEGOMIR","A2",5,13,"l0YR","6","3","l0YR","5","3" +"PLEGOMIR","Bqk",13,33,"l0YR","7","4","l0YR","5","4" "POLICH","Bkl",58,102,"7.5YR","4","3","7.5YR","3","3" "POLICH","2BCkl",122,147,"5YR","5","4","5YR","3","4" "PORTOLA","01",5,8,NA,NA,NA,NA,NA,NA "PRESTON","Cl",38,66,"10YR","5","4","10YR","4","4" -"PRITCHETT","All",0,8,NA,NA,NA,"10YR","4","3" +"PRITCHETT","All",0,8,"10YR","4","3","10YR","2","2" "PROVIG","O",3,0,NA,NA,NA,NA,NA,NA "PUAULU","10Bw4",121,130,NA,NA,NA,"7.5YR","3","3" "PUAULU","10Bw5",130,135,NA,NA,NA,"7.5YR","3","3" @@ -301,8 +302,8 @@ "PUTT","01",5,15,NA,NA,NA,NA,NA,NA "QUAKING","Oi",3,0,NA,NA,NA,NA,NA,NA "RACE","O1",4,0,NA,NA,NA,NA,NA,NA -"RAPHO","Al",0,10,NA,NA,NA,"10YR","6","3" -"RAPHO","Cl",10,28,NA,NA,NA,"7.5YR","7","3" +"RAPHO","Al",0,10,"10YR","6","3","10YR","5","3" +"RAPHO","Cl",10,28,"7.5YR","7","3","7.5YR","6","3" "RATONWEST","Oi",2,0,NA,NA,NA,NA,NA,NA "RAYOHILL","Byl",3,64,"N","8","0","7.5YR","7","4" "RAYOHILL","2R",91,NA,NA,NA,NA,NA,NA,NA @@ -323,10 +324,10 @@ "SALT LAKE","0i",5,0,NA,NA,NA,NA,NA,NA "SAN SIMEON","02",5,28,NA,NA,NA,NA,NA,NA "SANCHEZ","0i",0,5,NA,NA,NA,NA,NA,NA -"SANDBENCH","Bkl",8,33,NA,NA,NA,"7.5YR","6","4" -"SANDBENCH","A",NA,8,NA,NA,NA,"7.5YR","7","4" -"SANPITCH","All",0,5,NA,NA,NA,"10YR","5","2" -"SANPITCH","Clca",18,33,NA,NA,NA,"7.5YR","7","2" +"SANDBENCH","Bkl",8,33,"7.5YR","6","4","7.5YR","5","4" +"SANDBENCH","A",NA,8,"7.5YR","7","4","7.5YR","5","4" +"SANPITCH","All",0,5,"10YR","5","2","10YR","3","2" +"SANPITCH","Clca",18,33,"7.5YR","7","2","7.5YR","5","3" "SAPELLO","A1",0,15,"1OYR","4","2","1OYR","3","2" "SAPELLO","A2",15,25,"10YR","4","2","1OYR","3","2" "SAPELLO","Bw1",25,40,"10YR","4","2","1OYR","3","2" @@ -335,10 +336,10 @@ "SATTLEY","Oi",10,0,NA,NA,NA,NA,NA,NA "SCARFACE","Oi",5,0,NA,NA,NA,NA,NA,NA "SCARIBOU","Oi",5,0,NA,NA,NA,NA,NA,NA -"SCHMUTZ","Al",0,10,NA,NA,NA,"7.5YR","5","4" +"SCHMUTZ","Al",0,10,"7.5YR","5","4","5YR","3","4" "SCOUT","0i",0,5,NA,NA,NA,NA,NA,NA -"SEDWELL","All",0,8,NA,NA,NA,"10YR","3","3" -"SEDWELL","Clca",56,74,NA,NA,NA,"10YR","5","2" +"SEDWELL","All",0,8,"10YR","3","3","10YR","2","2" +"SEDWELL","Clca",56,74,"10YR","5","2","10YR","3","3" "SELEVIN","Al",0,5,"5YR","4","4","5YR","3","4" "SELEVIN","2Bt2",NA,NA,"2.5YR","4","4","2.5YR","3","4" "SELEVIN","2Btk",NA,58,"2.5YR","4","4","2.5YR","3","4" @@ -346,12 +347,13 @@ "SHASTA","Oi1",10,3,NA,NA,NA,NA,NA,NA "SHASTINA","0",10,0,NA,NA,NA,NA,NA,NA "SHEAR","Cl",8,51,"10YR","6","2","2.5Y","5","2" -"SHEEPCAN","A2",8,23,NA,NA,NA,"lOYR","6","2" -"SHEEPCAN","Cl",23,48,NA,NA,NA,"lOYR","7","2" -"SHEEPCAN","C3",71,109,NA,NA,NA,"lOYR","8","1" -"SHEEPCAN","A1",NA,8,NA,NA,NA,"2.5Y","6","2" -"SHUMWAY","All",0,8,NA,NA,NA,"10YR","6","2" -"SHUMWAY","Clg",64,91,NA,NA,NA,"2.5Y","7","1" +"SHEEPCAN","A2",8,23,"lOYR","6","2","2.5Y","4","2" +"SHEEPCAN","Cl",23,48,"lOYR","7","2","lOYR","6","3" +"SHEEPCAN","C2",48,71,"2.5Y","8","3","lOYR","6","3" +"SHEEPCAN","C3",71,109,"lOYR","8","1","lOYR","7","3" +"SHEEPCAN","A1",NA,8,"2.5Y","6","2","2.5Y","4","2" +"SHUMWAY","All",0,8,"10YR","6","2","10YR","4","2" +"SHUMWAY","Clg",64,91,"2.5Y","7","1","2.5Y","5","1" "SIERRAVILLE","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "SIZER","0i",3,0,NA,NA,NA,NA,NA,NA "SKYHAVEN","Bkyl",20,71,"7.5YR","8","2","7.5YR","8","4" @@ -376,8 +378,8 @@ "SURVYA","llElca",28,43,"10YR","6","3","10YR","4","2" "SURVYA","A2",NA,3,"2.5Y","7","2","2.5Y","4","2" "SWAINOW","Oi",5,0,NA,NA,NA,NA,NA,NA -"TACAN","Al",0,20,NA,NA,NA,"2.5YR","4","4" -"TACAN","Cl",66,122,NA,NA,NA,"2.5YR","5","6" +"TACAN","Al",0,20,"2.5YR","4","4","2.5YR","3","4" +"TACAN","Cl",66,122,"2.5YR","5","6","2.5YR","3","6" "TAMFLAT","0",3,25,NA,NA,NA,NA,NA,NA "TAMPICO","0i",0,3,NA,NA,NA,NA,NA,NA "TANGLE","02",3,0,NA,NA,NA,NA,NA,NA @@ -390,15 +392,15 @@ "TIONESTA","Oi",8,0,NA,NA,NA,NA,NA,NA "TISHAR","0i",3,15,NA,NA,NA,NA,NA,NA "TOADLAKE","O1",3,0,NA,NA,NA,NA,NA,NA -"TOBISH","Al",0,3,NA,NA,NA,"7.5YR","5","4" -"TOBISH","Blt",3,13,NA,NA,NA,"7.5YR","4","4" -"TOBLER","Al",0,10,NA,NA,NA,"2.5YR","4","6" +"TOBISH","Al",0,3,"7.5YR","5","4","7.5YR","4","3" +"TOBISH","Blt",3,13,"7.5YR","4","4","7.5YR","4","4" +"TOBLER","Al",0,10,"2.5YR","4","6","2.5YR","3","6" "TODDLER","Al",0,13,"10YR","8","3","10YR","6","3" "TODDLER","Cl",13,33,"10YR","8","3","10YR","6","3" "TOLLHOUSE","All",0,28,"10YR","4","2","10YR","2","2" "TOSCA","0i",0,5,NA,NA,NA,NA,NA,NA "TOURNQUIST","01",5,0,NA,NA,NA,NA,NA,NA -"TOZE","Al",0,3,NA,NA,NA,"10YR","3","2" +"TOZE","Al",0,3,"10YR","3","2","10YR","2","2" "TREGONING","Oi",5,0,NA,NA,NA,NA,NA,NA "TRETTEN","O1",1,0,NA,NA,NA,NA,NA,NA "TULERT","Bll",8,20,"7.5YR","6","6",NA,NA,NA @@ -441,8 +443,8 @@ "YELJACK","All",0,15,"5YR","4","4","5YR","3","3" "ZAKME","01",3,8,NA,NA,NA,NA,NA,NA "ZANE","Bl",3,8,NA,NA,NA,"5YR","5","4" -"ZEESIX","All",0,5,NA,NA,NA,"10YR","3","1" -"ZEESIX","Clca",79,119,NA,NA,NA,"10YR","6","3" -"ZEGRO","Al",0,20,NA,NA,NA,"5YR","6","4" +"ZEESIX","All",0,5,"10YR","3","1","10YR","2","1" +"ZEESIX","Clca",79,119,"10YR","6","3","10YR","5","4" +"ZEGRO","Al",0,20,"5YR","6","4","5YR","4","4" "ZEUGIRDOR","Oi",5,0,NA,NA,NA,NA,NA,NA "ZEUGIRDOR","3Btbl",66,119,"7.5YR","6","6","7.5YR","4","4" diff --git a/inst/extdata/OSD-error-reporting/RO/davis-series.csv b/inst/extdata/OSD-error-reporting/RO/davis-series.csv index 6fbc6578c7..b11e277af5 100644 --- a/inst/extdata/OSD-error-reporting/RO/davis-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/davis-series.csv @@ -157,6 +157,7 @@ "PICAYUNE",15253,FALSE,2003,FALSE,TRUE "MAYWOOD",15233,FALSE,1997,TRUE,FALSE "SHARPSHOOTER",15077,FALSE,2005,TRUE,FALSE +"OKRIST",14881,FALSE,1998,FALSE,TRUE "CENTENNIAL",14825,FALSE,1997,FALSE,TRUE "BONSALL",14650,FALSE,1997,TRUE,FALSE "GRAVECREEK",14628,FALSE,2000,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv b/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv index a8f0a928c8..bc4abd1b16 100644 --- a/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv @@ -16,7 +16,7 @@ "CHICHAGOF","Oi",33,30,NA,NA,NA,"5YR","2.5","2" "CHILKAT","01",5,0,NA,NA,NA,NA,NA,NA "CHILKAT","B3",28,36,NA,NA,NA,"lOYR","4","4" -"CHUCKRIVER","Oa",20,0,NA,NA,NA,NA,NA,NA +"CHUCKRIVER","Oa",20,0,NA,NA,NA,"N","2",NA "COAL CREEK","Oi",15,5,NA,NA,NA,NA,NA,NA "COPPER RIVER","Oi",23,13,NA,NA,NA,"7.5YR","3","4" "DADINA","Oi",25,10,NA,NA,NA,"7.5YR","3","4" @@ -81,7 +81,7 @@ "MEDFRA","01",25,0,NA,NA,NA,NA,NA,NA "MINCHUMINA","Oe",15,0,NA,NA,NA,NA,NA,NA "MINCHUMINA","Oi",25,15,NA,NA,NA,NA,NA,NA -"MITKOF","Oa",5,0,NA,NA,NA,NA,NA,NA +"MITKOF","Oa",5,0,NA,NA,NA,"N","2",NA "MITKOF","Oi",10,5,NA,NA,NA,NA,NA,NA "MOSMAN","Oa",13,0,NA,NA,NA,"10YR","2","1" "MOSMAN","Oi",18,13,NA,NA,NA,"5YR","2.5","2" diff --git a/inst/extdata/OSD-error-reporting/log.txt b/inst/extdata/OSD-error-reporting/log.txt index c5bf4b98c9..613b2b8694 100644 --- a/inst/extdata/OSD-error-reporting/log.txt +++ b/inst/extdata/OSD-error-reporting/log.txt @@ -1,15 +1,15 @@ ### Problems by RO ### auburn, al bozeman, mt davis, ca morgantown, wv salina, ks - 111 928 876 127 116 + 112 928 877 127 116 temple, tx wasilla, AK 83 280 -------------------------------------------------------- ### Depth Logic Errors by RO ### FALSE TRUE - auburn, al 96 15 + auburn, al 97 15 bozeman, mt 755 173 - davis, ca 649 227 + davis, ca 650 227 morgantown, wv 115 12 salina, ks 81 35 temple, tx 57 26 @@ -18,9 +18,9 @@ ### Hz Overlap / Gap Errors by RO ### FALSE TRUE - auburn, al 107 4 + auburn, al 108 4 bozeman, mt 659 269 - davis, ca 549 327 + davis, ca 550 327 morgantown, wv 113 14 salina, ks 77 39 temple, tx 52 31 @@ -78,8 +78,8 @@ SD 11 1 TN 6 3 TX 32 19 - UT 201 31 - VA 45 5 + UT 202 31 + VA 46 5 VT 8 1 WA 187 109 WI 7 3 @@ -138,8 +138,8 @@ SD 10 2 TN 8 1 TX 30 21 - UT 215 17 - VA 45 5 + UT 216 17 + VA 46 5 VT 7 2 WA 156 140 WI 9 1 @@ -198,8 +198,8 @@ SD 8 4 TN 3 6 TX 44 7 - UT 161 71 - VA 21 29 + UT 162 71 + VA 22 29 VT 6 3 WA 168 128 WI 3 7 @@ -258,8 +258,8 @@ SD 9 3 TN 9 0 TX 46 5 - UT 229 3 - VA 50 0 + UT 222 11 + VA 51 0 VT 9 0 WA 257 39 WI 10 0 @@ -316,10 +316,10 @@ RI 1 0 SC 3 0 SD 7 5 - TN 9 0 + TN 8 1 TX 46 5 - UT 221 11 - VA 42 8 + UT 225 8 + VA 42 9 VT 9 0 WA 259 37 WI 10 0 diff --git a/inst/extdata/OSD-error-reporting/state/AK-hz.csv b/inst/extdata/OSD-error-reporting/state/AK-hz.csv index a8f0a928c8..bc4abd1b16 100644 --- a/inst/extdata/OSD-error-reporting/state/AK-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/AK-hz.csv @@ -16,7 +16,7 @@ "CHICHAGOF","Oi",33,30,NA,NA,NA,"5YR","2.5","2" "CHILKAT","01",5,0,NA,NA,NA,NA,NA,NA "CHILKAT","B3",28,36,NA,NA,NA,"lOYR","4","4" -"CHUCKRIVER","Oa",20,0,NA,NA,NA,NA,NA,NA +"CHUCKRIVER","Oa",20,0,NA,NA,NA,"N","2",NA "COAL CREEK","Oi",15,5,NA,NA,NA,NA,NA,NA "COPPER RIVER","Oi",23,13,NA,NA,NA,"7.5YR","3","4" "DADINA","Oi",25,10,NA,NA,NA,"7.5YR","3","4" @@ -81,7 +81,7 @@ "MEDFRA","01",25,0,NA,NA,NA,NA,NA,NA "MINCHUMINA","Oe",15,0,NA,NA,NA,NA,NA,NA "MINCHUMINA","Oi",25,15,NA,NA,NA,NA,NA,NA -"MITKOF","Oa",5,0,NA,NA,NA,NA,NA,NA +"MITKOF","Oa",5,0,NA,NA,NA,"N","2",NA "MITKOF","Oi",10,5,NA,NA,NA,NA,NA,NA "MOSMAN","Oa",13,0,NA,NA,NA,"10YR","2","1" "MOSMAN","Oi",18,13,NA,NA,NA,"5YR","2.5","2" diff --git a/inst/extdata/OSD-error-reporting/state/ID-hz.csv b/inst/extdata/OSD-error-reporting/state/ID-hz.csv index 4767e4bda9..88542452fb 100644 --- a/inst/extdata/OSD-error-reporting/state/ID-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/ID-hz.csv @@ -36,14 +36,14 @@ "LITTLESALMON","2Cl",79,109,"10YR","5","2","10YR","6","2" "OLEO","0i",0,3,NA,NA,NA,NA,NA,NA "OLIAGA","Clca",20,46,"2.5Y","6","2","2.5Y","4","2" -"PACKERJOHN","Al",5,25,NA,NA,NA,"10YR","4","3" +"PACKERJOHN","Al",5,25,"10YR","4","3","10YR","3","3" "PANIOGUE","A",0,8,"2.5Y","5","2","1OYR","3","2" "PANIOGUE","Bwl",18,36,"10YR","6","2","10YR","4","2" "PEND OREILLE","0i",0,3,NA,NA,NA,NA,NA,NA "PEND OREILLE","0e",3,5,NA,NA,NA,NA,NA,NA "PERFA","0e",0,3,NA,NA,NA,NA,NA,NA "PIKADEN","0i",0,1,NA,NA,NA,NA,NA,NA -"QUAILRIDGE","Btl",10,20,NA,NA,NA,"10YR","4","3" +"QUAILRIDGE","Btl",10,20,"10YR","4","3","10YR","3","3" "REHFIELD","A",0,8,"l0YR","5","3","l0YR","3","3" "RISWOLD","0i",0,4,NA,NA,NA,NA,NA,NA "ROLO","Oi",5,3,NA,NA,NA,NA,NA,NA @@ -57,10 +57,10 @@ "SULOAF","0i",0,3,NA,NA,NA,NA,NA,NA "TELCHER","0i",0,5,NA,NA,NA,NA,NA,NA "TELCHER","0e",5,8,NA,NA,NA,NA,NA,NA -"TRIPOD","Al",3,15,NA,NA,NA,"10YR","4","2" -"TRIPOD","2Cl",58,127,NA,NA,NA,"10YR","7","2" +"TRIPOD","Al",3,15,"10YR","4","2","10YR","3","2" +"TRIPOD","2Cl",58,127,"10YR","7","2","2.5Y","5","2" "ULRICHER","0i",0,3,NA,NA,NA,NA,NA,NA -"VAN DUSEN","Al",0,20,NA,NA,NA,"10YR","4","1" +"VAN DUSEN","Al",0,20,"10YR","4","1","10YR","2","2" "VASSAR","0i",0,3,NA,NA,NA,NA,NA,NA "VASSAR","0e",3,5,"10YR","4","1","10YR","2","2" "WAGONTOWN","0i",0,3,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/MP-hz.csv b/inst/extdata/OSD-error-reporting/state/MP-hz.csv index c3bed3d404..8a2d76f982 100644 --- a/inst/extdata/OSD-error-reporting/state/MP-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MP-hz.csv @@ -1,5 +1,5 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"BANADERU","Al",0,3,"5YR","2.5","2",NA,NA,NA +"BANADERU","Al",0,3,"5YR","2.5","2","N","2","0" "BANADERU","0i",3,0,NA,NA,NA,NA,NA,NA "CHINEN","Oi",1,0,NA,NA,NA,NA,NA,NA "LUTA","Oi",1,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/TN-hz.csv b/inst/extdata/OSD-error-reporting/state/TN-hz.csv index 8f40a634c8..49836e9a8b 100644 --- a/inst/extdata/OSD-error-reporting/state/TN-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/TN-hz.csv @@ -3,6 +3,8 @@ "FREELAND","Btl",33,51,NA,NA,NA,"10YR","4","4" "KEYESPOINT","Bgl",18,46,NA,NA,NA,"10YR","4","2" "OPENLAKE","Bgl",18,33,NA,NA,NA,"10YR","4","2" -"PAILO","Btl",43,89,NA,NA,NA,NA,NA,NA +"PAILO","A",3,8,NA,NA,NA,"l0YR","3","2" +"PAILO","BE",8,43,NA,NA,NA,"l0YR","5","6" +"PAILO","Btl",43,89,NA,NA,NA,"l0YR","5","6" "RED HILLS","Oi",3,0,NA,NA,NA,NA,NA,NA "SWAFFORD","Btl",20,30,NA,NA,NA,"7.5YR","4","6" diff --git a/inst/extdata/OSD-error-reporting/state/UT-hz.csv b/inst/extdata/OSD-error-reporting/state/UT-hz.csv index da662e9b78..d8330e9ed2 100644 --- a/inst/extdata/OSD-error-reporting/state/UT-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/UT-hz.csv @@ -1,22 +1,22 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"ANDYS","A",0,20,NA,NA,NA,"l0YR","5","3" -"ASHLEY","C1",76,91,NA,NA,NA,"l0YR","5","6" -"ASHLEY","A3",NA,76,NA,NA,NA,"7.5YR","6","2" -"BROBETT","A",0,8,NA,NA,NA,"l0YR","4","3" -"BROBETT","Bt",8,20,NA,NA,NA,"l0YR","6","3" -"BROBETT","Bqkl",20,76,NA,NA,NA,"l0YR","7","4" +"ANDYS","A",0,20,"l0YR","5","3","10YR","3","3" +"ASHLEY","C1",76,91,"l0YR","5","6",NA,NA,NA +"ASHLEY","A3",NA,76,"7.5YR","6","2","7.5YR","4","2" +"BROBETT","A",0,8,"l0YR","4","3","l0YR","3","3" +"BROBETT","Bt",8,20,"l0YR","6","3","l0YR","5","4" +"BROBETT","Bqkl",20,76,"l0YR","7","4","l0YR","5","4" "BROBETT","Bqkm",76,NA,NA,NA,NA,NA,NA,NA -"BROBETT","Bqk2",NA,76,NA,NA,NA,"l0YR","7","3" -"CALPAC","Al",0,8,NA,NA,NA,"10YR","4","3" -"DAHAR","Bw",15,30,NA,NA,NA,"l0YR","6","2" -"DAHAR","Bqk",30,69,NA,NA,NA,"l0YR","7","2" -"DAHAR","Bqk",69,109,NA,NA,NA,"l0YR","8","2" -"DAHAR","Bqkm",NA,69,NA,NA,NA,"l0YR","8","2" -"DEER CREEK","Al",0,8,NA,NA,NA,"10YR","4","2" -"DEER CREEK","Btl",25,36,NA,NA,NA,"10YR","4","2" +"BROBETT","Bqk2",NA,76,"l0YR","7","3","l0YR","6","4" +"CALPAC","Al",0,8,"10YR","4","3","10YR","3","2" +"DAHAR","Bw",15,30,"l0YR","6","2","l0YR","5","3" +"DAHAR","Bqk",30,69,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqk",69,109,"l0YR","8","2","l0YR","7","3" +"DAHAR","Bqkm",NA,69,"l0YR","8","2","l0YR","7","3" +"DEER CREEK","Al",0,8,"10YR","4","2","10YR","2","2" +"DEER CREEK","Btl",25,36,"10YR","4","2","10YR","3","3" "GAPPMAYER","O1",5,0,NA,NA,NA,NA,NA,NA -"GAPPMAYER","Clca",160,183,NA,NA,NA,"10YR","6","3" -"GAPPMAYER","A21",NA,1554,NA,NA,NA,"10YR","6","3" +"GAPPMAYER","Clca",160,183,"10YR","6","3","10YR","4","3" +"GAPPMAYER","A21",NA,1554,"10YR","6","3","10YR","5","3" "GORING","All",0,8,"10YR","4","3","10YR","3","3" "GORING","Bl",18,33,"7.5YR","4","3","7.5YR","3","3" "GREEN CANYON","Cl",41,58,"10YR","5","3","10YR","4","2" @@ -29,24 +29,24 @@ "HARKERS","Clca",147,203,"10YR","6","4","7.5YR","5","4" "HIVAL","Al",0,13,"7.5YR","4","4","7.5YR","3","4" "HOSKIN","Al",0,18,"7.5YR","4","3","7.5YR","3","2" -"HUPP","Al",0,15,NA,NA,NA,"10YR","5","2" +"HUPP","Al",0,15,"10YR","5","2","10YR","3","2" "KILFOIL","All",NA,3,"10YR","5","3","10YR","3","3" -"KINESAVA","All",0,13,NA,NA,NA,"10YR","4","2" -"KINESAVA","Blt",79,99,NA,NA,NA,"7.5YR","4","3" -"KJAR","Cl",20,36,NA,NA,NA,"10YR","8","2" +"KINESAVA","All",0,13,"10YR","4","2","10YR","3","2" +"KINESAVA","Blt",79,99,"7.5YR","4","3","7.5YR","3","3" +"KJAR","Cl",20,36,"10YR","8","2","10YR","7","2" "KNUTSEN","Apl",0,3,"10YR","5","2","10YR","3","1" "KNUTSEN","Bwl",20,28,"10YR","5","2","10YR","3","2" "LAKE JANEE","Al",NA,5,"10YR","4","2","10YR","2","2" "LEDGEFORK","Al",0,18,"10YR","3","1","10YR","2","1" "LEWISTON","Ckl",33,56,"10YR","7","2","10YR","6","2" -"LISADE","Al",0,5,NA,NA,NA,"7.5YR","6","2" +"LISADE","Al",0,5,"7.5YR","6","2","7.5YR","5","3" "LITTLE POLE","Al",0,13,"10YR","3","2","10YR","2","2" "LOSEE","Cl",43,81,NA,NA,NA,"5YR","6","4" -"MAUGHAN","A2",20,64,NA,NA,NA,"l0YR","3","2" -"MAYFIELD","All",0,5,NA,NA,NA,"2.5Y","6","2" +"MAUGHAN","A2",20,64,"l0YR","3","2","10YR","2","1" +"MAYFIELD","All",0,5,"2.5Y","6","2","2.5Y","5","2" "MCPHIE","Al",0,18,"10YR","3","2","10YR","2","2" -"MOKIAK","Al",0,15,NA,NA,NA,"10YR","5","3" -"MOKIAK","Bl",15,28,NA,NA,NA,"10YR","5","3" +"MOKIAK","Al",0,15,"10YR","5","3","10YR","3","2" +"MOKIAK","Bl",15,28,"10YR","5","3","10YR","3","3" "MONDEY","Blt",23,36,"7.5YR","4","2","7.5YR","3","2" "MONDEY","Ap",NA,10,"10YR","4","2","10YR","2","2" "MORGALA","Al",0,10,"5YR","4","4","5YR","3","2" @@ -64,11 +64,12 @@ "NORDIC","B22t",119,147,"lOYR","6","4","7.5YR","5","6" "NORDIC","C",147,178,"lOYR","6","4","7.5YR","5","4" "NORDIC","All",NA,15,NA,NA,NA,"lOYR","3","2" -"OBRAST","Cl",25,38,NA,NA,NA,"10YR","5","3" -"OBRAST","C5",142,165,NA,NA,NA,"l0YR","8","2" +"OBRAST","Cl",25,38,"10YR","5","3","10YR","3","3" +"OBRAST","C5",142,165,"l0YR","8","2","10YR","7","2" "OBRAY","Ap",0,18,"lOYR","4","2","lOYR","3","2" "OBRAY","to",152,162,"lOYR","7","3","lOYR","6","4" -"OSOTE","Al",0,8,NA,NA,NA,"10YR","5","3" +"OKRIST","A2",8,20,"10YR","6","4","l0YR","4","3" +"OSOTE","Al",0,8,"10YR","5","3","7.5YR","3","2" "PAICE","All",0,5,"10YR","4","2","10YR","2","2" "PAICE","Clca",61,79,"10YR","8","3","10YR","6","3" "PERINOS","C1",117,132,"10YR","5","2","lOYR","4","2" @@ -78,49 +79,50 @@ "PLEASANT GROVE","All",0,5,"10YR","3","2","10YR","2","2" "PLEASANT GROVE","Clca",53,97,"10YR","6","3","10YR","4","3" "PLEASANT VALE","Cl",43,61,"10YR","6","3","10YR","4","3" -"PLEGOMIR","A1",0,5,NA,NA,NA,"l0YR","5","3" -"PLEGOMIR","A2",5,13,NA,NA,NA,"l0YR","6","3" -"PLEGOMIR","Bqk",13,33,NA,NA,NA,"l0YR","7","4" +"PLEGOMIR","A1",0,5,"l0YR","5","3","10YR","3","3" +"PLEGOMIR","A2",5,13,"l0YR","6","3","l0YR","5","3" +"PLEGOMIR","Bqk",13,33,"l0YR","7","4","l0YR","5","4" "PRESTON","Cl",38,66,"10YR","5","4","10YR","4","4" -"PRITCHETT","All",0,8,NA,NA,NA,"10YR","4","3" -"RAPHO","Al",0,10,NA,NA,NA,"10YR","6","3" -"RAPHO","Cl",10,28,NA,NA,NA,"7.5YR","7","3" +"PRITCHETT","All",0,8,"10YR","4","3","10YR","2","2" +"RAPHO","Al",0,10,"10YR","6","3","10YR","5","3" +"RAPHO","Cl",10,28,"7.5YR","7","3","7.5YR","6","3" "REDCAN","Al",0,5,"2.5YR","5","6","2.5YR","3","6" "RICH","Al",0,5,"10YR","5","3","10YR","4","3" "RICHVILLE","All",0,10,"7.5YR","4","3","7.5YR","3","2" "RICHVILLE","Clca",30,46,"7.5YR","6","4","7.5YR","5","4" "RICHVILLE","lI4r",99,152,"7.5YR","6","4","7.5YR","4","4" "SALT LAKE","0i",5,0,NA,NA,NA,NA,NA,NA -"SANDBENCH","Bkl",8,33,NA,NA,NA,"7.5YR","6","4" -"SANDBENCH","A",NA,8,NA,NA,NA,"7.5YR","7","4" -"SANPITCH","All",0,5,NA,NA,NA,"10YR","5","2" -"SANPITCH","Clca",18,33,NA,NA,NA,"7.5YR","7","2" -"SCHMUTZ","Al",0,10,NA,NA,NA,"7.5YR","5","4" +"SANDBENCH","Bkl",8,33,"7.5YR","6","4","7.5YR","5","4" +"SANDBENCH","A",NA,8,"7.5YR","7","4","7.5YR","5","4" +"SANPITCH","All",0,5,"10YR","5","2","10YR","3","2" +"SANPITCH","Clca",18,33,"7.5YR","7","2","7.5YR","5","3" +"SCHMUTZ","Al",0,10,"7.5YR","5","4","5YR","3","4" "SCOUT","0i",0,5,NA,NA,NA,NA,NA,NA -"SEDWELL","All",0,8,NA,NA,NA,"10YR","3","3" -"SEDWELL","Clca",56,74,NA,NA,NA,"10YR","5","2" +"SEDWELL","All",0,8,"10YR","3","3","10YR","2","2" +"SEDWELL","Clca",56,74,"10YR","5","2","10YR","3","3" "SHEAR","Cl",8,51,"10YR","6","2","2.5Y","5","2" -"SHEEPCAN","A2",8,23,NA,NA,NA,"lOYR","6","2" -"SHEEPCAN","Cl",23,48,NA,NA,NA,"lOYR","7","2" -"SHEEPCAN","C3",71,109,NA,NA,NA,"lOYR","8","1" -"SHEEPCAN","A1",NA,8,NA,NA,NA,"2.5Y","6","2" -"SHUMWAY","All",0,8,NA,NA,NA,"10YR","6","2" -"SHUMWAY","Clg",64,91,NA,NA,NA,"2.5Y","7","1" +"SHEEPCAN","A2",8,23,"lOYR","6","2","2.5Y","4","2" +"SHEEPCAN","Cl",23,48,"lOYR","7","2","lOYR","6","3" +"SHEEPCAN","C2",48,71,"2.5Y","8","3","lOYR","6","3" +"SHEEPCAN","C3",71,109,"lOYR","8","1","lOYR","7","3" +"SHEEPCAN","A1",NA,8,"2.5Y","6","2","2.5Y","4","2" +"SHUMWAY","All",0,8,"10YR","6","2","10YR","4","2" +"SHUMWAY","Clg",64,91,"2.5Y","7","1","2.5Y","5","1" "SNOWVILLE","Al",0,8,"10YR","5","2","10YR","3","2" "ST. MARYS","All",0,23,"7.5YR","4","3","7.5YR","3","2" "STODA","Clca",48,74,"7.5YR","7","4","7.5YR","5","4" -"TACAN","Al",0,20,NA,NA,NA,"2.5YR","4","4" -"TACAN","Cl",66,122,NA,NA,NA,"2.5YR","5","6" +"TACAN","Al",0,20,"2.5YR","4","4","2.5YR","3","4" +"TACAN","Cl",66,122,"2.5YR","5","6","2.5YR","3","6" "TINGEY","All",0,10,"10YR","4","3","10YR","3","2" "TINGEY","Bl",23,36,"10YR","5","3","10YR","3","3" "TINGEY","Clca",104,135,"10YR","6","4","10YR","4","4" -"TOBISH","Al",0,3,NA,NA,NA,"7.5YR","5","4" -"TOBISH","Blt",3,13,NA,NA,NA,"7.5YR","4","4" -"TOBLER","Al",0,10,NA,NA,NA,"2.5YR","4","6" +"TOBISH","Al",0,3,"7.5YR","5","4","7.5YR","4","3" +"TOBISH","Blt",3,13,"7.5YR","4","4","7.5YR","4","4" +"TOBLER","Al",0,10,"2.5YR","4","6","2.5YR","3","6" "TODDLER","Al",0,13,"10YR","8","3","10YR","6","3" "TODDLER","Cl",13,33,"10YR","8","3","10YR","6","3" "TOSCA","0i",0,5,NA,NA,NA,NA,NA,NA -"TOZE","Al",0,3,NA,NA,NA,"10YR","3","2" +"TOZE","Al",0,3,"10YR","3","2","10YR","2","2" "WAAS","Al",0,8,"5YR","4","3","5YR","3","2" "WINDMILL","Al",0,10,"10YR","4","2","10YR","3","2" "WINDMILL","Cl",43,58,"10YR","6","3","10YR","4","3" @@ -129,6 +131,6 @@ "YARDLEY","All",0,25,"10YR","4","2","10YR","2","2" "YELJACK","All",0,15,"5YR","4","4","5YR","3","3" "ZANE","Bl",3,8,NA,NA,NA,"5YR","5","4" -"ZEESIX","All",0,5,NA,NA,NA,"10YR","3","1" -"ZEESIX","Clca",79,119,NA,NA,NA,"10YR","6","3" -"ZEGRO","Al",0,20,NA,NA,NA,"5YR","6","4" +"ZEESIX","All",0,5,"10YR","3","1","10YR","2","1" +"ZEESIX","Clca",79,119,"10YR","6","3","10YR","5","4" +"ZEGRO","Al",0,20,"5YR","6","4","5YR","4","4" diff --git a/inst/extdata/OSD-error-reporting/state/UT-series.csv b/inst/extdata/OSD-error-reporting/state/UT-series.csv index f4412a68b8..3bd6f162e4 100644 --- a/inst/extdata/OSD-error-reporting/state/UT-series.csv +++ b/inst/extdata/OSD-error-reporting/state/UT-series.csv @@ -28,6 +28,7 @@ "GORING",16585,TRUE,1997,FALSE,TRUE "LITTLE POLE",15665,FALSE,2003,FALSE,TRUE "PICAYUNE",15253,FALSE,2003,FALSE,TRUE +"OKRIST",14881,FALSE,1998,FALSE,TRUE "RICHVILLE",12032,FALSE,1999,TRUE,TRUE "PLEASANT GROVE",11973,FALSE,2003,FALSE,TRUE "MITCH",11866,FALSE,1999,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/VA-hz.csv b/inst/extdata/OSD-error-reporting/state/VA-hz.csv index 4d473d04ae..455d882847 100644 --- a/inst/extdata/OSD-error-reporting/state/VA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/VA-hz.csv @@ -2,6 +2,10 @@ "ACKWATER","Bt1",13,23,NA,NA,NA,"lOYR","5","6" "ACKWATER","Bt2",23,41,NA,NA,NA,"lOYR","5","8" "ALDERFLATS","Btgl",13,30,NA,NA,NA,"5Y","5","2" +"ASHLAR","A",5,13,NA,NA,NA,"l0YR","3","2" +"ASHLAR","E",13,28,NA,NA,NA,"l0YR","5","2" +"ASHLAR","Bw",28,51,NA,NA,NA,"l0YR","5","4" +"ASHLAR","C",51,71,NA,NA,NA,"l0YR","5","3" "BAILEGAP","0i",0,1,NA,NA,NA,NA,NA,NA "BEECH GROVE","Oi",3,0,NA,NA,NA,NA,NA,NA "BOURNE","0i",0,3,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/VA-series.csv b/inst/extdata/OSD-error-reporting/state/VA-series.csv index f66ba2e514..a8ca445a80 100644 --- a/inst/extdata/OSD-error-reporting/state/VA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/VA-series.csv @@ -1,5 +1,6 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "ORISKANY",248113,FALSE,2008,TRUE,FALSE +"ASHLAR",107187,TRUE,2017,FALSE,TRUE "REMLIK",103503,FALSE,2002,FALSE,TRUE "MATTAPONI",92795,FALSE,2003,FALSE,TRUE "CAROLINE",77934,FALSE,2002,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/WY-hz.csv b/inst/extdata/OSD-error-reporting/state/WY-hz.csv index 7ca0cad850..4bc2a5d5d6 100644 --- a/inst/extdata/OSD-error-reporting/state/WY-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/WY-hz.csv @@ -4,7 +4,7 @@ "BORDEAUX","Clca",20,46,NA,NA,NA,"lOYR","5","2" "BORDEAUX","C2ca",46,152,NA,NA,NA,"lOYR","6","3" "CAMBARGE","Clca",36,53,"2.5Y","8","2","2.5Y","6","2" -"CASTELLO","Clca",23,84,NA,NA,NA,"7.5YR","8","2" +"CASTELLO","Clca",23,84,"7.5YR","8","2","7.5YR","7","2" "CORA","Alg",0,30,NA,NA,NA,NA,NA,NA "CORA","Ae",8,0,NA,NA,NA,NA,NA,NA "EMBLEM","2Bkl",51,76,"10YR","6","3","10YR","4","4" diff --git a/inst/extdata/OSD/A/ABAJO.json b/inst/extdata/OSD/A/ABAJO.json index 40c52ee29d..666bb954d2 100644 --- a/inst/extdata/OSD/A/ABAJO.json +++ b/inst/extdata/OSD/A/ABAJO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 51, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "C", "top": 102, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ABBOTTSTOWN.json b/inst/extdata/OSD/A/ABBOTTSTOWN.json index bcd55de22e..2ce36822fc 100644 --- a/inst/extdata/OSD/A/ABBOTTSTOWN.json +++ b/inst/extdata/OSD/A/ABBOTTSTOWN.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "strong very coarse platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/A/ABORIGINE.json b/inst/extdata/OSD/A/ABORIGINE.json index 6b181ab50c..fb132984bb 100644 --- a/inst/extdata/OSD/A/ABORIGINE.json +++ b/inst/extdata/OSD/A/ABORIGINE.json @@ -144,9 +144,9 @@ "name": "2Btg", "top": 41, "bottom": 94, - "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 8, + "dry_hue": "N", + "dry_value": 7, + "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 7, "moist_chroma": 1, @@ -167,9 +167,9 @@ "name": "3Btg", "top": 94, "bottom": 125, - "dry_hue": "10R", - "dry_value": 4, - "dry_chroma": 8, + "dry_hue": "N", + "dry_value": 8, + "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 1, @@ -190,9 +190,9 @@ "name": "4Btg1", "top": 125, "bottom": 147, - "dry_hue": "10YR", - "dry_value": 4, - "dry_chroma": 8, + "dry_hue": "N", + "dry_value": 8, + "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 1, @@ -213,12 +213,12 @@ "name": "4Btg2", "top": 147, "bottom": 163, - "dry_hue": "10YR", + "dry_hue": "N", "dry_value": 6, - "dry_chroma": 8, - "moist_hue": "2.5YR", - "moist_value": 4, - "moist_chroma": 6, + "dry_chroma": "NA", + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": "NA", "texture_class": "clay", "structure": "weak coarse angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ABRAHAM.json b/inst/extdata/OSD/A/ABRAHAM.json index bd45f84aed..dd5a17ef83 100644 --- a/inst/extdata/OSD/A/ABRAHAM.json +++ b/inst/extdata/OSD/A/ABRAHAM.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "C1", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C2", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C3", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C4", "top": 66, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C5", "top": 74, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C6", "top": 84, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "massive", @@ -236,12 +236,12 @@ "name": "C7", "top": 109, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and fine blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ACCELERATOR.json b/inst/extdata/OSD/A/ACCELERATOR.json index 5538f98fd9..f26face7d6 100644 --- a/inst/extdata/OSD/A/ACCELERATOR.json +++ b/inst/extdata/OSD/A/ACCELERATOR.json @@ -144,9 +144,9 @@ "name": "A3", "top": 48, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 3, diff --git a/inst/extdata/OSD/A/ACORD.json b/inst/extdata/OSD/A/ACORD.json index 135cb78f87..330fe7fc13 100644 --- a/inst/extdata/OSD/A/ACORD.json +++ b/inst/extdata/OSD/A/ACORD.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "strong medium angular blocky", @@ -167,11 +167,11 @@ "name": "Btk", "top": 48, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk1", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Bk2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ADA.json b/inst/extdata/OSD/A/ADA.json index 73b033e0dd..4a22245bc3 100644 --- a/inst/extdata/OSD/A/ADA.json +++ b/inst/extdata/OSD/A/ADA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "BA", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 33, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 86, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/A/ADABOI.json b/inst/extdata/OSD/A/ADABOI.json index d460318e46..478421a004 100644 --- a/inst/extdata/OSD/A/ADABOI.json +++ b/inst/extdata/OSD/A/ADABOI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt/E", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -190,11 +190,11 @@ "name": "Btb1", "top": 64, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium and coarse prismatic", @@ -213,11 +213,11 @@ "name": "Btb2", "top": 109, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", diff --git a/inst/extdata/OSD/A/ADELMANN.json b/inst/extdata/OSD/A/ADELMANN.json index ca8ec71071..17c4ae908e 100644 --- a/inst/extdata/OSD/A/ADELMANN.json +++ b/inst/extdata/OSD/A/ADELMANN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "AB", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine and medium granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay", "structure": "strong fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt4", "top": 79, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -213,11 +213,11 @@ "name": "Bt5", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/A/ADIOS.json b/inst/extdata/OSD/A/ADIOS.json index 900537a836..7d43691179 100644 --- a/inst/extdata/OSD/A/ADIOS.json +++ b/inst/extdata/OSD/A/ADIOS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 13, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 41, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "Btk", "top": 51, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "Bqkm", "top": 58, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/A/AGASSIZ.json b/inst/extdata/OSD/A/AGASSIZ.json index 9ac18edd2a..a5bac53e57 100644 --- a/inst/extdata/OSD/A/AGASSIZ.json +++ b/inst/extdata/OSD/A/AGASSIZ.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/A/AGRA.json b/inst/extdata/OSD/A/AGRA.json index 4575ec39bd..1e44075a20 100644 --- a/inst/extdata/OSD/A/AGRA.json +++ b/inst/extdata/OSD/A/AGRA.json @@ -190,9 +190,9 @@ "name": "Btkss", "top": 107, "bottom": 203, - "dry_hue": "7.5YR", - "dry_value": 7, - "dry_chroma": 2, + "dry_hue": "N", + "dry_value": 6, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/A/AGRICOLA.json b/inst/extdata/OSD/A/AGRICOLA.json index 3dc3519ba6..95eff1e29b 100644 --- a/inst/extdata/OSD/A/AGRICOLA.json +++ b/inst/extdata/OSD/A/AGRICOLA.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/A/AGUDO.json b/inst/extdata/OSD/A/AGUDO.json index 32a5feadbd..69161e42cc 100644 --- a/inst/extdata/OSD/A/AGUDO.json +++ b/inst/extdata/OSD/A/AGUDO.json @@ -98,12 +98,12 @@ "name": "Bk1", "top": 25, "bottom": 49, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay", "structure": "weak medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/A/AHLSTROM.json b/inst/extdata/OSD/A/AHLSTROM.json index 4bc47ac7e0..5cc6c899dc 100644 --- a/inst/extdata/OSD/A/AHLSTROM.json +++ b/inst/extdata/OSD/A/AHLSTROM.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine and medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", @@ -144,12 +144,12 @@ "name": "Btk1", "top": 36, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Btk2", "top": 51, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 6, - "moist_chroma": 6, + "moist_chroma": 8, "texture_class": "silty clay", "structure": "moderate very coarse angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/AIKMAN.json b/inst/extdata/OSD/A/AIKMAN.json index 7748ee6fd4..23c1551f1a 100644 --- a/inst/extdata/OSD/A/AIKMAN.json +++ b/inst/extdata/OSD/A/AIKMAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "Bss1", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "2.5YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse and very coarse prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bss2", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "2.5YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium and coarse prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkss", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/A/ALDAPE.json b/inst/extdata/OSD/A/ALDAPE.json index e182bb2fd9..ae76b40dc4 100644 --- a/inst/extdata/OSD/A/ALDAPE.json +++ b/inst/extdata/OSD/A/ALDAPE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "strong coarse platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt/E", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 36, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 58, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium angular blocky", @@ -190,11 +190,11 @@ "name": "Btk", "top": 79, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bk", "top": 91, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -236,11 +236,11 @@ "name": "Bkq", "top": 119, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", @@ -259,12 +259,12 @@ "name": "Bkqm", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "rigid", diff --git a/inst/extdata/OSD/A/ALHARK.json b/inst/extdata/OSD/A/ALHARK.json index b2a3976211..1eac6ba909 100644 --- a/inst/extdata/OSD/A/ALHARK.json +++ b/inst/extdata/OSD/A/ALHARK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk3", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C", "top": 61, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/A/ALIBI.json b/inst/extdata/OSD/A/ALIBI.json index 282dd9006c..cec5f874f6 100644 --- a/inst/extdata/OSD/A/ALIBI.json +++ b/inst/extdata/OSD/A/ALIBI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bq", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ALLDOWN.json b/inst/extdata/OSD/A/ALLDOWN.json index e9f151a63e..f74be004bc 100644 --- a/inst/extdata/OSD/A/ALLDOWN.json +++ b/inst/extdata/OSD/A/ALLDOWN.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "NA", @@ -98,12 +98,12 @@ "name": "Bw", "top": 25, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "NA", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C1", "top": 71, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C2", "top": 122, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C3", "top": 137, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ALOVAR.json b/inst/extdata/OSD/A/ALOVAR.json index cd9806f930..198c7d4139 100644 --- a/inst/extdata/OSD/A/ALOVAR.json +++ b/inst/extdata/OSD/A/ALOVAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 46, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse blocky", @@ -144,12 +144,12 @@ "name": "C3", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ALZOLA.json b/inst/extdata/OSD/A/ALZOLA.json index f3900df016..a46adabc6c 100644 --- a/inst/extdata/OSD/A/ALZOLA.json +++ b/inst/extdata/OSD/A/ALZOLA.json @@ -75,12 +75,12 @@ "name": "A1", "top": "NA", "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium and thick platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btkq", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular block", @@ -167,11 +167,11 @@ "name": "Bkq1", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bkq2", "top": 56, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/A/AMSDEN.json b/inst/extdata/OSD/A/AMSDEN.json index aa69ee718e..d9ac825b5f 100644 --- a/inst/extdata/OSD/A/AMSDEN.json +++ b/inst/extdata/OSD/A/AMSDEN.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular and crumb", @@ -98,11 +98,11 @@ "name": "A12", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "B1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "B2t", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "B3ca", "top": 58, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium prismatic", @@ -190,11 +190,11 @@ "name": "Cca", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/AMTOFT.json b/inst/extdata/OSD/A/AMTOFT.json index 3071129c74..e848692f88 100644 --- a/inst/extdata/OSD/A/AMTOFT.json +++ b/inst/extdata/OSD/A/AMTOFT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "ABk", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ANDYS.json b/inst/extdata/OSD/A/ANDYS.json index 0402e8af86..bfcf48ee6f 100644 --- a/inst/extdata/OSD/A/ANDYS.json +++ b/inst/extdata/OSD/A/ANDYS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "l0YR", - "moist_value": 5, + "dry_hue": "l0YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 20, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 76, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/A/ANETH.json b/inst/extdata/OSD/A/ANETH.json index 4fd32bb398..91e0b0d486 100644 --- a/inst/extdata/OSD/A/ANETH.json +++ b/inst/extdata/OSD/A/ANETH.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak very thick platy", @@ -98,11 +98,11 @@ "name": "C2", "top": 18, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C3", "top": 66, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "C4", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ANGATOKA.json b/inst/extdata/OSD/A/ANGATOKA.json index 1850121593..099d811473 100644 --- a/inst/extdata/OSD/A/ANGATOKA.json +++ b/inst/extdata/OSD/A/ANGATOKA.json @@ -121,9 +121,9 @@ "name": "E", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 3, diff --git a/inst/extdata/OSD/A/ANINTO.json b/inst/extdata/OSD/A/ANINTO.json index c954523d02..bae8548ee6 100644 --- a/inst/extdata/OSD/A/ANINTO.json +++ b/inst/extdata/OSD/A/ANINTO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine angular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 33, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", "moist_value": 4, - "moist_chroma": 3, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 66, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium angular blocky", @@ -167,12 +167,12 @@ "name": "2Btk", "top": 104, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2Bk", "top": 142, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ANNABELLA.json b/inst/extdata/OSD/A/ANNABELLA.json index 448cd03f77..f4744ff4b7 100644 --- a/inst/extdata/OSD/A/ANNABELLA.json +++ b/inst/extdata/OSD/A/ANNABELLA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "C2", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C3", "top": 61, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ANTELOPE_SPRINGS.json b/inst/extdata/OSD/A/ANTELOPE_SPRINGS.json index 4aa06a52eb..f5b79a4ff2 100644 --- a/inst/extdata/OSD/A/ANTELOPE_SPRINGS.json +++ b/inst/extdata/OSD/A/ANTELOPE_SPRINGS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Btkn", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 33, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,9 +144,9 @@ "name": "Bk2", "top": 64, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/A/ANT_FLAT.json b/inst/extdata/OSD/A/ANT_FLAT.json index 5320b682ca..1231dbd84f 100644 --- a/inst/extdata/OSD/A/ANT_FLAT.json +++ b/inst/extdata/OSD/A/ANT_FLAT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Btk1", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Btk2", "top": 46, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay", "structure": "weak coarse prismatic", @@ -167,11 +167,11 @@ "name": "Bk", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/A/ANVIL.json b/inst/extdata/OSD/A/ANVIL.json index de3af9e863..44435d4186 100644 --- a/inst/extdata/OSD/A/ANVIL.json +++ b/inst/extdata/OSD/A/ANVIL.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium and coarse granular", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C1", "top": 13, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "2C2", "top": 38, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "3C3", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/APIKUNI.json b/inst/extdata/OSD/A/APIKUNI.json index 0f912b5696..f7b7bc9a72 100644 --- a/inst/extdata/OSD/A/APIKUNI.json +++ b/inst/extdata/OSD/A/APIKUNI.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/A/APPLEDELLIA.json b/inst/extdata/OSD/A/APPLEDELLIA.json index 9f6a9d5b9c..2d5c2b03a5 100644 --- a/inst/extdata/OSD/A/APPLEDELLIA.json +++ b/inst/extdata/OSD/A/APPLEDELLIA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine and fine granular", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 46, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", diff --git a/inst/extdata/OSD/A/APPLESHALL.json b/inst/extdata/OSD/A/APPLESHALL.json index 69f6dd87fb..bd72f938f5 100644 --- a/inst/extdata/OSD/A/APPLESHALL.json +++ b/inst/extdata/OSD/A/APPLESHALL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and coarse granular", @@ -98,12 +98,12 @@ "name": "Bt", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ARADARAN.json b/inst/extdata/OSD/A/ARADARAN.json index 2d6e103d3b..262f7674b4 100644 --- a/inst/extdata/OSD/A/ARADARAN.json +++ b/inst/extdata/OSD/A/ARADARAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "BA", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 36, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 58, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine prismatic", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 74, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -213,11 +213,11 @@ "name": "Bt4", "top": 107, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong medium and coarse subangular blocky", @@ -236,12 +236,12 @@ "name": "Bt5", "top": 140, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ARAPIEN.json b/inst/extdata/OSD/A/ARAPIEN.json index 8cc765f3de..0ac6285ef8 100644 --- a/inst/extdata/OSD/A/ARAPIEN.json +++ b/inst/extdata/OSD/A/ARAPIEN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thick platy", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak thick platy", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 33, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium platy", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 76, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 97, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2Ck", "top": 122, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ARBIDGE.json b/inst/extdata/OSD/A/ARBIDGE.json index b75b0f1275..b903272c56 100644 --- a/inst/extdata/OSD/A/ARBIDGE.json +++ b/inst/extdata/OSD/A/ARBIDGE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk", "top": 38, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bkqm", "top": 66, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "NA", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2Bk", "top": 69, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2Bkqm", "top": 94, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/A/ARLEN.json b/inst/extdata/OSD/A/ARLEN.json index 082611fd7a..5ed6fa0620 100644 --- a/inst/extdata/OSD/A/ARLEN.json +++ b/inst/extdata/OSD/A/ARLEN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak coarse granular", @@ -98,11 +98,11 @@ "name": "BCk", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "Cr", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "R", "top": 33, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5Y", - "moist_value": 7, - "moist_chroma": 1, + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ARROWROCK.json b/inst/extdata/OSD/A/ARROWROCK.json index d376f7c3b8..f7e42efcb1 100644 --- a/inst/extdata/OSD/A/ARROWROCK.json +++ b/inst/extdata/OSD/A/ARROWROCK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "C", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/A/ASCALON.json b/inst/extdata/OSD/A/ASCALON.json index fcdb6e798c..58945ce7d0 100644 --- a/inst/extdata/OSD/A/ASCALON.json +++ b/inst/extdata/OSD/A/ASCALON.json @@ -167,9 +167,9 @@ "name": "Bk1", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/A/ASHDOWN.json b/inst/extdata/OSD/A/ASHDOWN.json index 8ea755f072..9fd5bd160d 100644 --- a/inst/extdata/OSD/A/ASHDOWN.json +++ b/inst/extdata/OSD/A/ASHDOWN.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C1", "top": 23, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "C2", "top": 61, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C3", "top": 84, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 114, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ASHLAR.json b/inst/extdata/OSD/A/ASHLAR.json index 524fb2d991..146225c64f 100644 --- a/inst/extdata/OSD/A/ASHLAR.json +++ b/inst/extdata/OSD/A/ASHLAR.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak very fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/A/ASHLEY.json b/inst/extdata/OSD/A/ASHLEY.json index 642bb8104d..4f07278bbc 100644 --- a/inst/extdata/OSD/A/ASHLEY.json +++ b/inst/extdata/OSD/A/ASHLEY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "A3", "top": "NA", "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "C1", "top": 76, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "l0YR", - "moist_value": 5, - "moist_chroma": 6, + "dry_hue": "l0YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2C2", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "NA", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/A/ATCHEE.json b/inst/extdata/OSD/A/ATCHEE.json index b7c53c54f7..290e6f33c1 100644 --- a/inst/extdata/OSD/A/ATCHEE.json +++ b/inst/extdata/OSD/A/ATCHEE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 30, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/ATCHISON.json b/inst/extdata/OSD/A/ATCHISON.json index 57a9a87f0b..1fa58b1d03 100644 --- a/inst/extdata/OSD/A/ATCHISON.json +++ b/inst/extdata/OSD/A/ATCHISON.json @@ -99,7 +99,7 @@ "top": 15, "bottom": 33, "dry_hue": "10YR", - "dry_value": 4, + "dry_value": 5, "dry_chroma": 4, "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/A/ATLANTA.json b/inst/extdata/OSD/A/ATLANTA.json index a82fc32beb..f3e74fd2ab 100644 --- a/inst/extdata/OSD/A/ATLANTA.json +++ b/inst/extdata/OSD/A/ATLANTA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "2Bk", "top": 25, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "3C1", "top": 58, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "3C2", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/A/AUZQUI.json b/inst/extdata/OSD/A/AUZQUI.json index 8260495c72..d60dfdfa9a 100644 --- a/inst/extdata/OSD/A/AUZQUI.json +++ b/inst/extdata/OSD/A/AUZQUI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "clay loam", "structure": "strong fine granular", @@ -98,11 +98,11 @@ "name": "AC", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 41, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/AVALON.json b/inst/extdata/OSD/A/AVALON.json index 1a8b2f0c88..9380b7c6ca 100644 --- a/inst/extdata/OSD/A/AVALON.json +++ b/inst/extdata/OSD/A/AVALON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine and fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "weak fine prismatic", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine and medium angular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 76, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -213,12 +213,12 @@ "name": "Bk5", "top": 104, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -236,11 +236,11 @@ "name": "Bk6", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/A/AVTABLE.json b/inst/extdata/OSD/A/AVTABLE.json index 5a75a7c010..c6b5f8b5cc 100644 --- a/inst/extdata/OSD/A/AVTABLE.json +++ b/inst/extdata/OSD/A/AVTABLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sand", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine subangular blocky", diff --git a/inst/extdata/OSD/A/AWLEY.json b/inst/extdata/OSD/A/AWLEY.json index 4e44f06235..3d8a142268 100644 --- a/inst/extdata/OSD/A/AWLEY.json +++ b/inst/extdata/OSD/A/AWLEY.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw3", "top": 64, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "C1", "top": 94, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/A/AYETTE.json b/inst/extdata/OSD/A/AYETTE.json index c25d625e5f..0517277fc1 100644 --- a/inst/extdata/OSD/A/AYETTE.json +++ b/inst/extdata/OSD/A/AYETTE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "loam", "structure": "moderate fine and medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btss1", "top": 30, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "weak fine prismatic", @@ -167,11 +167,11 @@ "name": "Btss2", "top": 76, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine prismatic", diff --git a/inst/extdata/OSD/B/BABBINGTON.json b/inst/extdata/OSD/B/BABBINGTON.json index d8b95555fe..23466fc021 100644 --- a/inst/extdata/OSD/B/BABBINGTON.json +++ b/inst/extdata/OSD/B/BABBINGTON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 33, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 74, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2C", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BABOON.json b/inst/extdata/OSD/B/BABOON.json index 3616615a1d..622c59d304 100644 --- a/inst/extdata/OSD/B/BABOON.json +++ b/inst/extdata/OSD/B/BABOON.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and very fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "NA", @@ -190,11 +190,11 @@ "name": "C", "top": 76, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BACKSWITCH.json b/inst/extdata/OSD/B/BACKSWITCH.json index d190a2b008..e87c2d8214 100644 --- a/inst/extdata/OSD/B/BACKSWITCH.json +++ b/inst/extdata/OSD/B/BACKSWITCH.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 36, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 64, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BADGERTON.json b/inst/extdata/OSD/B/BADGERTON.json index db4697f878..e95b00aa2a 100644 --- a/inst/extdata/OSD/B/BADGERTON.json +++ b/inst/extdata/OSD/B/BADGERTON.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 2, diff --git a/inst/extdata/OSD/B/BAGARD.json b/inst/extdata/OSD/B/BAGARD.json index bfc1859cf4..d0a3729f29 100644 --- a/inst/extdata/OSD/B/BAGARD.json +++ b/inst/extdata/OSD/B/BAGARD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "BC3", "top": 61, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C1", "top": 97, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C2", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BAGGER.json b/inst/extdata/OSD/B/BAGGER.json index 0e96dee518..bb48d98c13 100644 --- a/inst/extdata/OSD/B/BAGGER.json +++ b/inst/extdata/OSD/B/BAGGER.json @@ -98,8 +98,8 @@ "name": "2C1", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 4, "dry_chroma": "NA", "moist_hue": "7.5YR", "moist_value": 4, diff --git a/inst/extdata/OSD/B/BAGGS_CAPE.json b/inst/extdata/OSD/B/BAGGS_CAPE.json index b394573439..f571b8f8c5 100644 --- a/inst/extdata/OSD/B/BAGGS_CAPE.json +++ b/inst/extdata/OSD/B/BAGGS_CAPE.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 2, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/B/BAGTOWN.json b/inst/extdata/OSD/B/BAGTOWN.json index fa14d4c651..a641a0ca5d 100644 --- a/inst/extdata/OSD/B/BAGTOWN.json +++ b/inst/extdata/OSD/B/BAGTOWN.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BAILE.json b/inst/extdata/OSD/B/BAILE.json index dd440c0beb..74672b4615 100644 --- a/inst/extdata/OSD/B/BAILE.json +++ b/inst/extdata/OSD/B/BAILE.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": 0, "texture_class": "silty clay loam", "structure": "weak thin platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BAIRD_HOLLOW.json b/inst/extdata/OSD/B/BAIRD_HOLLOW.json index 19802521ee..220634a731 100644 --- a/inst/extdata/OSD/B/BAIRD_HOLLOW.json +++ b/inst/extdata/OSD/B/BAIRD_HOLLOW.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 15, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine granular", @@ -144,11 +144,11 @@ "name": "E/B", "top": 51, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak coarse and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 99, "bottom": 185, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate coarse subangular blocky", diff --git a/inst/extdata/OSD/B/BALDFIELD.json b/inst/extdata/OSD/B/BALDFIELD.json index c9ffa4570f..d54f776c9d 100644 --- a/inst/extdata/OSD/B/BALDFIELD.json +++ b/inst/extdata/OSD/B/BALDFIELD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate very thin platy", @@ -121,11 +121,11 @@ "name": "C2", "top": 10, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 38, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse subangular blocky", diff --git a/inst/extdata/OSD/B/BALLENTINE.json b/inst/extdata/OSD/B/BALLENTINE.json index 27fe323d2a..9275888cc3 100644 --- a/inst/extdata/OSD/B/BALLENTINE.json +++ b/inst/extdata/OSD/B/BALLENTINE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate thin platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "AC", "top": 36, "bottom": 54, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C1", "top": 54, "bottom": 88, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BAMOS.json b/inst/extdata/OSD/B/BAMOS.json index 6a97aa7be4..bb7e606d6b 100644 --- a/inst/extdata/OSD/B/BAMOS.json +++ b/inst/extdata/OSD/B/BAMOS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btk", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 61, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 69, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", diff --git a/inst/extdata/OSD/B/BANADERU.json b/inst/extdata/OSD/B/BANADERU.json index 74b2cb9c0b..4fcdb3d5a7 100644 --- a/inst/extdata/OSD/B/BANADERU.json +++ b/inst/extdata/OSD/B/BANADERU.json @@ -101,9 +101,9 @@ "dry_hue": "5YR", "dry_value": 2.5, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "clay loam", "structure": "strong very fine granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BANCROFT.json b/inst/extdata/OSD/B/BANCROFT.json index 920e71148d..a62d8eb861 100644 --- a/inst/extdata/OSD/B/BANCROFT.json +++ b/inst/extdata/OSD/B/BANCROFT.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BANDAG.json b/inst/extdata/OSD/B/BANDAG.json index 03781345ca..4fb96e5eee 100644 --- a/inst/extdata/OSD/B/BANDAG.json +++ b/inst/extdata/OSD/B/BANDAG.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium platy", @@ -121,11 +121,11 @@ "name": "A3", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 25, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 58, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C3", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/B/BANNION.json b/inst/extdata/OSD/B/BANNION.json index 2180525bb3..1682d9c20b 100644 --- a/inst/extdata/OSD/B/BANNION.json +++ b/inst/extdata/OSD/B/BANNION.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkq", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BARBERMILL.json b/inst/extdata/OSD/B/BARBERMILL.json index 7520001f81..bf5bad1dc8 100644 --- a/inst/extdata/OSD/B/BARBERMILL.json +++ b/inst/extdata/OSD/B/BARBERMILL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "AB", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium prismatic", diff --git a/inst/extdata/OSD/B/BARFUSS.json b/inst/extdata/OSD/B/BARFUSS.json index 772e6ec285..638c8ae42d 100644 --- a/inst/extdata/OSD/B/BARFUSS.json +++ b/inst/extdata/OSD/B/BARFUSS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate medium angular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Ck", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BATZA.json b/inst/extdata/OSD/B/BATZA.json index b39fb1fa33..cb1fecfe41 100644 --- a/inst/extdata/OSD/B/BATZA.json +++ b/inst/extdata/OSD/B/BATZA.json @@ -170,8 +170,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/B/BAUSCHER.json b/inst/extdata/OSD/B/BAUSCHER.json index 13a47fbe08..abfe30e44f 100644 --- a/inst/extdata/OSD/B/BAUSCHER.json +++ b/inst/extdata/OSD/B/BAUSCHER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 91, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak very coarse prismatic", @@ -190,12 +190,12 @@ "name": "C", "top": 124, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/B/BAYERTON.json b/inst/extdata/OSD/B/BAYERTON.json index 44e636887d..715cd774c3 100644 --- a/inst/extdata/OSD/B/BAYERTON.json +++ b/inst/extdata/OSD/B/BAYERTON.json @@ -121,11 +121,11 @@ "name": "A", "top": 8, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sand", "structure": "moderate fine crumb", @@ -144,11 +144,11 @@ "name": "E", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate thin platy", @@ -167,11 +167,11 @@ "name": "E/Bt", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bk", "top": 56, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 1, "texture_class": "sandy clay loam", "structure": "NA", diff --git a/inst/extdata/OSD/B/BEANCREEK.json b/inst/extdata/OSD/B/BEANCREEK.json index d983f73171..a413ee63e5 100644 --- a/inst/extdata/OSD/B/BEANCREEK.json +++ b/inst/extdata/OSD/B/BEANCREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 12, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium and fine granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 12, "bottom": 31, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 31, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 56, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "C", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/B/BEARHOLLOW.json b/inst/extdata/OSD/B/BEARHOLLOW.json index cff3d2deba..3fbb66023a 100644 --- a/inst/extdata/OSD/B/BEARHOLLOW.json +++ b/inst/extdata/OSD/B/BEARHOLLOW.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine and fine granular", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk3", "top": 51, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "BCk", "top": 61, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "2Ck1", "top": 84, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "3Ck2", "top": 112, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BEARSKIN.json b/inst/extdata/OSD/B/BEARSKIN.json index f65cc1bca4..f6c7ff04d8 100644 --- a/inst/extdata/OSD/B/BEARSKIN.json +++ b/inst/extdata/OSD/B/BEARSKIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/B/BEAVERDAM.json b/inst/extdata/OSD/B/BEAVERDAM.json index 87742bf7b7..1f86360626 100644 --- a/inst/extdata/OSD/B/BEAVERDAM.json +++ b/inst/extdata/OSD/B/BEAVERDAM.json @@ -121,11 +121,11 @@ "name": "A", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -144,12 +144,12 @@ "name": "AB", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt1", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong medium and coarse subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bt2", "top": 53, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium and coarse angular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "Bt3", "top": 119, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/B/BEDSTEAD.json b/inst/extdata/OSD/B/BEDSTEAD.json index 8898ab4774..dc11d0b444 100644 --- a/inst/extdata/OSD/B/BEDSTEAD.json +++ b/inst/extdata/OSD/B/BEDSTEAD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "AB", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium angular blocky", @@ -167,11 +167,11 @@ "name": "Btk", "top": 46, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine subangular blocky", @@ -190,12 +190,12 @@ "name": "Bkqm", "top": 53, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BEEK.json b/inst/extdata/OSD/B/BEEK.json index e6dd04f115..1570cb7a2a 100644 --- a/inst/extdata/OSD/B/BEEK.json +++ b/inst/extdata/OSD/B/BEEK.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A12", "top": 15, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A13ca", "top": 46, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1ca", "top": 58, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C2ca", "top": 89, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "C3", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BEETVILLE.json b/inst/extdata/OSD/B/BEETVILLE.json index fbfce28176..52f94a8938 100644 --- a/inst/extdata/OSD/B/BEETVILLE.json +++ b/inst/extdata/OSD/B/BEETVILLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C", "top": 33, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "Ck1", "top": 84, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "2Ck2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BEFAR.json b/inst/extdata/OSD/B/BEFAR.json index ae9973f8b4..bb54bbcd5b 100644 --- a/inst/extdata/OSD/B/BEFAR.json +++ b/inst/extdata/OSD/B/BEFAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cky1", "top": 66, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cky2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/B/BEHANIN.json b/inst/extdata/OSD/B/BEHANIN.json index 09785c8242..fec2cca36a 100644 --- a/inst/extdata/OSD/B/BEHANIN.json +++ b/inst/extdata/OSD/B/BEHANIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "A3", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BELSH.json b/inst/extdata/OSD/B/BELSH.json index 2f0132f5ec..1d6fa31a42 100644 --- a/inst/extdata/OSD/B/BELSH.json +++ b/inst/extdata/OSD/B/BELSH.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "AB", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -144,12 +144,12 @@ "name": "2Bw", "top": 38, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "2C1", "top": 53, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 6, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BELZAR.json b/inst/extdata/OSD/B/BELZAR.json index 3e7ac2225c..bb89eaa8fc 100644 --- a/inst/extdata/OSD/B/BELZAR.json +++ b/inst/extdata/OSD/B/BELZAR.json @@ -213,8 +213,8 @@ "name": "2R", "top": 99, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 5, "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/B/BENJAMIN.json b/inst/extdata/OSD/B/BENJAMIN.json index 5d2909addd..9b58797441 100644 --- a/inst/extdata/OSD/B/BENJAMIN.json +++ b/inst/extdata/OSD/B/BENJAMIN.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate fine and very fine angular blocky", @@ -121,11 +121,11 @@ "name": "A", "top": 10, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "Cg1", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cg2", "top": 64, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Cg3", "top": 97, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Cg4", "top": 117, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2C", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BENSTOT.json b/inst/extdata/OSD/B/BENSTOT.json index d7f5bace37..b8cebead86 100644 --- a/inst/extdata/OSD/B/BENSTOT.json +++ b/inst/extdata/OSD/B/BENSTOT.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 20, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 3, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 20, "bottom": 41, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 3, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 41, "bottom": 81, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 81, "bottom": 152, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BENTAXLE.json b/inst/extdata/OSD/B/BENTAXLE.json index 6bee35783a..ba5968d5f6 100644 --- a/inst/extdata/OSD/B/BENTAXLE.json +++ b/inst/extdata/OSD/B/BENTAXLE.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 8, "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -99,11 +99,11 @@ "top": 8, "bottom": 13, "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 13, "bottom": 36, "dry_hue": "10YR", - "dry_value": 8, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 36, "bottom": 48, "dry_hue": "10YR", - "dry_value": 8, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BEQUINN.json b/inst/extdata/OSD/B/BEQUINN.json index abd57d3a03..094ee45054 100644 --- a/inst/extdata/OSD/B/BEQUINN.json +++ b/inst/extdata/OSD/B/BEQUINN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "C2", "top": 30, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C3", "top": 66, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/B/BEREA.json b/inst/extdata/OSD/B/BEREA.json index 84a82e72f2..9970016826 100644 --- a/inst/extdata/OSD/B/BEREA.json +++ b/inst/extdata/OSD/B/BEREA.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BERENT.json b/inst/extdata/OSD/B/BERENT.json index 310006bacb..13e8254de4 100644 --- a/inst/extdata/OSD/B/BERENT.json +++ b/inst/extdata/OSD/B/BERENT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sand", "structure": "single grain", @@ -121,11 +121,11 @@ "name": "C2", "top": 41, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sand", "structure": "single grain", @@ -144,12 +144,12 @@ "name": "C3", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/B/BERN.json b/inst/extdata/OSD/B/BERN.json index d4374e7853..eafce74149 100644 --- a/inst/extdata/OSD/B/BERN.json +++ b/inst/extdata/OSD/B/BERN.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "strong fine platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "strong medium and coarse granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "ABk", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "strong medium and coarse granular", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Btk", "top": 41, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "strong fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 66, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak very thick platy", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 86, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "soft", @@ -213,12 +213,12 @@ "name": "C1", "top": 119, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "C2", "top": 140, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BERTELSON.json b/inst/extdata/OSD/B/BERTELSON.json index 8b9415592d..dfa1b87f6d 100644 --- a/inst/extdata/OSD/B/BERTELSON.json +++ b/inst/extdata/OSD/B/BERTELSON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bk", "top": 20, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C1", "top": 94, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "C2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BERYL.json b/inst/extdata/OSD/B/BERYL.json index a357c83abc..74b2ba4d3f 100644 --- a/inst/extdata/OSD/B/BERYL.json +++ b/inst/extdata/OSD/B/BERYL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bq1", "top": 33, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "Bq2", "top": 71, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C", "top": 94, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2C", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BERZATIC.json b/inst/extdata/OSD/B/BERZATIC.json index 86ab66f4e8..b4c9ed81d4 100644 --- a/inst/extdata/OSD/B/BERZATIC.json +++ b/inst/extdata/OSD/B/BERZATIC.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "ABk", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BESS.json b/inst/extdata/OSD/B/BESS.json index 85c53a818e..f6a7d38b85 100644 --- a/inst/extdata/OSD/B/BESS.json +++ b/inst/extdata/OSD/B/BESS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate very fine and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 64, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 102, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bk3", "top": 147, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BEZZANT.json b/inst/extdata/OSD/B/BEZZANT.json index 5b955331dc..2ff6983ed5 100644 --- a/inst/extdata/OSD/B/BEZZANT.json +++ b/inst/extdata/OSD/B/BEZZANT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A3", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 64, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BIBLESPRINGS.json b/inst/extdata/OSD/B/BIBLESPRINGS.json index 2029ac411f..3cae120750 100644 --- a/inst/extdata/OSD/B/BIBLESPRINGS.json +++ b/inst/extdata/OSD/B/BIBLESPRINGS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak thick platy", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bkq1", "top": 53, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 97, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkq3", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BICKETT.json b/inst/extdata/OSD/B/BICKETT.json index 14e47469bf..cd8d7828a4 100644 --- a/inst/extdata/OSD/B/BICKETT.json +++ b/inst/extdata/OSD/B/BICKETT.json @@ -121,9 +121,9 @@ "name": "Oak", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 1, diff --git a/inst/extdata/OSD/B/BIG_HORN.json b/inst/extdata/OSD/B/BIG_HORN.json index 4548ec85c4..b8ece726f5 100644 --- a/inst/extdata/OSD/B/BIG_HORN.json +++ b/inst/extdata/OSD/B/BIG_HORN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "strong medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "strong medium prismatic", @@ -144,11 +144,11 @@ "name": "Btk", "top": 56, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse prismatic", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 66, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BILLINGS.json b/inst/extdata/OSD/B/BILLINGS.json index bdb51253fc..a42fd5f425 100644 --- a/inst/extdata/OSD/B/BILLINGS.json +++ b/inst/extdata/OSD/B/BILLINGS.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium granular", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine blocky and subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine blocky and subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 46, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Cy", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BINGHAM.json b/inst/extdata/OSD/B/BINGHAM.json index c44714dc9a..54a49526e6 100644 --- a/inst/extdata/OSD/B/BINGHAM.json +++ b/inst/extdata/OSD/B/BINGHAM.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2Btk", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine blocky", @@ -167,11 +167,11 @@ "name": "2Bk", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BIRDOW.json b/inst/extdata/OSD/B/BIRDOW.json index 6118eb5ec1..e4672bc1f1 100644 --- a/inst/extdata/OSD/B/BIRDOW.json +++ b/inst/extdata/OSD/B/BIRDOW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A3", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "A4", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bw1", "top": 76, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bw2", "top": 102, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Ab", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BISCHOFF.json b/inst/extdata/OSD/B/BISCHOFF.json index 4601cf1c5a..3d712deed0 100644 --- a/inst/extdata/OSD/B/BISCHOFF.json +++ b/inst/extdata/OSD/B/BISCHOFF.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate medium and coarse granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "AB", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 41, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine and medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 74, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", @@ -190,12 +190,12 @@ "name": "Bt3", "top": 119, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BISSELL.json b/inst/extdata/OSD/B/BISSELL.json index 0148b0b676..e1c2b83e5c 100644 --- a/inst/extdata/OSD/B/BISSELL.json +++ b/inst/extdata/OSD/B/BISSELL.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and fine prismatic", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 64, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2", "top": 152, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BJORKLAND.json b/inst/extdata/OSD/B/BJORKLAND.json index 023156b956..26c03d6f61 100644 --- a/inst/extdata/OSD/B/BJORKLAND.json +++ b/inst/extdata/OSD/B/BJORKLAND.json @@ -144,9 +144,9 @@ "name": "Eg", "top": 36, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 2, diff --git a/inst/extdata/OSD/B/BLACKETT.json b/inst/extdata/OSD/B/BLACKETT.json index 32e36d4180..4b827d38e8 100644 --- a/inst/extdata/OSD/B/BLACKETT.json +++ b/inst/extdata/OSD/B/BLACKETT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 23, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "NA", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 102, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C", "top": 142, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BLACKLEG.json b/inst/extdata/OSD/B/BLACKLEG.json index 30d2b05394..97b0edc3ef 100644 --- a/inst/extdata/OSD/B/BLACKLEG.json +++ b/inst/extdata/OSD/B/BLACKLEG.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "BA", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 58, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -167,12 +167,12 @@ "name": "Btq", "top": 74, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bqm", "top": 91, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BLACKNEST.json b/inst/extdata/OSD/B/BLACKNEST.json index ff12c9aae5..9e32cfce68 100644 --- a/inst/extdata/OSD/B/BLACKNEST.json +++ b/inst/extdata/OSD/B/BLACKNEST.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bw", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/B/BLACKWELL.json b/inst/extdata/OSD/B/BLACKWELL.json index 3084330ac0..eb1957d6e1 100644 --- a/inst/extdata/OSD/B/BLACKWELL.json +++ b/inst/extdata/OSD/B/BLACKWELL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 4, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 4, "bottom": 6, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium granular", @@ -121,11 +121,11 @@ "name": "A3", "top": 6, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Cg", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "sandy clay loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2C", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BLANDING.json b/inst/extdata/OSD/B/BLANDING.json index 27ee01df00..932d2dbad8 100644 --- a/inst/extdata/OSD/B/BLANDING.json +++ b/inst/extdata/OSD/B/BLANDING.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak thin and medium platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak coarse prismatic", @@ -121,9 +121,9 @@ "name": "Btk1", "top": 41, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 6, @@ -144,11 +144,11 @@ "name": "Btk2", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/B/BLAYDEN.json b/inst/extdata/OSD/B/BLAYDEN.json index 5bc17e401f..69c5b7c5c2 100644 --- a/inst/extdata/OSD/B/BLAYDEN.json +++ b/inst/extdata/OSD/B/BLAYDEN.json @@ -144,9 +144,9 @@ "name": "2Bkqm", "top": 38, "bottom": 152, - "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 4, + "dry_hue": "N", + "dry_value": 8, + "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/B/BLUECREEK.json b/inst/extdata/OSD/B/BLUECREEK.json index bfc565afa8..1b7f6540e8 100644 --- a/inst/extdata/OSD/B/BLUECREEK.json +++ b/inst/extdata/OSD/B/BLUECREEK.json @@ -75,12 +75,12 @@ "name": "E", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 41, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and very fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bq", "top": 51, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bkqm", "top": 79, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2Bqm'", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BLUEFLAT.json b/inst/extdata/OSD/B/BLUEFLAT.json index 38a68ab977..95c459e2f8 100644 --- a/inst/extdata/OSD/B/BLUEFLAT.json +++ b/inst/extdata/OSD/B/BLUEFLAT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sand", "structure": "moderate very fine granular", @@ -98,12 +98,12 @@ "name": "Bwn", "top": 15, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 5, - "moist_chroma": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "By1", "top": 23, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate fine and medium prismatic", @@ -144,12 +144,12 @@ "name": "By2", "top": 58, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", "moist_value": 5, - "moist_chroma": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BLUEHILL.json b/inst/extdata/OSD/B/BLUEHILL.json index 742d1058b1..3be7337497 100644 --- a/inst/extdata/OSD/B/BLUEHILL.json +++ b/inst/extdata/OSD/B/BLUEHILL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine and very fine granular", @@ -98,12 +98,12 @@ "name": "BA", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 33, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/B/BLUELEAD.json b/inst/extdata/OSD/B/BLUELEAD.json index fe28a6f5ad..9997354489 100644 --- a/inst/extdata/OSD/B/BLUELEAD.json +++ b/inst/extdata/OSD/B/BLUELEAD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bk", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BCk", "top": 66, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BLUFFDALE.json b/inst/extdata/OSD/B/BLUFFDALE.json index 30df35e4e4..2b7f130a51 100644 --- a/inst/extdata/OSD/B/BLUFFDALE.json +++ b/inst/extdata/OSD/B/BLUFFDALE.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 79, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium angular blocky", @@ -190,11 +190,11 @@ "name": "Ck", "top": 102, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate thick platy", @@ -213,11 +213,11 @@ "name": "C", "top": 130, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate thick platy", diff --git a/inst/extdata/OSD/B/BO.json b/inst/extdata/OSD/B/BO.json index b26b9b60f4..ba6f38c452 100644 --- a/inst/extdata/OSD/B/BO.json +++ b/inst/extdata/OSD/B/BO.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bw2", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bw3", "top": 64, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2Bw4", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/B/BOATMAN.json b/inst/extdata/OSD/B/BOATMAN.json index dda2ef5d05..20c0f6fd48 100644 --- a/inst/extdata/OSD/B/BOATMAN.json +++ b/inst/extdata/OSD/B/BOATMAN.json @@ -98,11 +98,11 @@ "name": "A", "top": 7, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 23, "bottom": 44, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 44, "bottom": 87, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 87, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/B/BODACIOUS.json b/inst/extdata/OSD/B/BODACIOUS.json index 86a620a45f..66c5f3483a 100644 --- a/inst/extdata/OSD/B/BODACIOUS.json +++ b/inst/extdata/OSD/B/BODACIOUS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 18, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/B/BODORUMPE.json b/inst/extdata/OSD/B/BODORUMPE.json index 0045f65f75..99965ecfa4 100644 --- a/inst/extdata/OSD/B/BODORUMPE.json +++ b/inst/extdata/OSD/B/BODORUMPE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "single grain", @@ -121,11 +121,11 @@ "name": "C2", "top": 64, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BOHNA.json b/inst/extdata/OSD/B/BOHNA.json index f9c2f8b186..0292ae634e 100644 --- a/inst/extdata/OSD/B/BOHNA.json +++ b/inst/extdata/OSD/B/BOHNA.json @@ -121,9 +121,9 @@ "name": "B1", "top": 20, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 3, diff --git a/inst/extdata/OSD/B/BOILER.json b/inst/extdata/OSD/B/BOILER.json index 2da4bffa1d..a74349e31b 100644 --- a/inst/extdata/OSD/B/BOILER.json +++ b/inst/extdata/OSD/B/BOILER.json @@ -98,12 +98,12 @@ "name": "A1", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A2", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "2Bt1", "top": 36, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "3Bt2", "top": 66, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BOISE.json b/inst/extdata/OSD/B/BOISE.json index 8a44bd9480..d4707562bb 100644 --- a/inst/extdata/OSD/B/BOISE.json +++ b/inst/extdata/OSD/B/BOISE.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "A", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw", "top": 38, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 71, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C1", "top": 91, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C2", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BONJEA.json b/inst/extdata/OSD/B/BONJEA.json index f7b8230cdf..65d72cab27 100644 --- a/inst/extdata/OSD/B/BONJEA.json +++ b/inst/extdata/OSD/B/BONJEA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular", diff --git a/inst/extdata/OSD/B/BOOKCLIFF.json b/inst/extdata/OSD/B/BOOKCLIFF.json index f1e0948509..f4bd3ffbbc 100644 --- a/inst/extdata/OSD/B/BOOKCLIFF.json +++ b/inst/extdata/OSD/B/BOOKCLIFF.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sand", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 33, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 84, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BOONEVILLE.json b/inst/extdata/OSD/B/BOONEVILLE.json index f24ed68a26..bf6a06336f 100644 --- a/inst/extdata/OSD/B/BOONEVILLE.json +++ b/inst/extdata/OSD/B/BOONEVILLE.json @@ -98,12 +98,12 @@ "name": "A1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "A2", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 41, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium angular blocky", diff --git a/inst/extdata/OSD/B/BOOTJACK.json b/inst/extdata/OSD/B/BOOTJACK.json index 1713142e0a..7b077cecec 100644 --- a/inst/extdata/OSD/B/BOOTJACK.json +++ b/inst/extdata/OSD/B/BOOTJACK.json @@ -98,12 +98,12 @@ "name": "Ag", "top": 4, "bottom": 14, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bg1", "top": 14, "bottom": 34, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "strong medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bg2", "top": 34, "bottom": 49, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bg3", "top": 49, "bottom": 62, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2C", "top": 62, "bottom": 156, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BORCO.json b/inst/extdata/OSD/B/BORCO.json index e128aeed26..eaf2dd4fd0 100644 --- a/inst/extdata/OSD/B/BORCO.json +++ b/inst/extdata/OSD/B/BORCO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2C1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "2C2", "top": 51, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -190,12 +190,12 @@ "name": "2C3", "top": 66, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/B/BORID.json b/inst/extdata/OSD/B/BORID.json index 18ca2bb6ac..199683fdf6 100644 --- a/inst/extdata/OSD/B/BORID.json +++ b/inst/extdata/OSD/B/BORID.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/B/BORVANT.json b/inst/extdata/OSD/B/BORVANT.json index 355e42e3e2..bb273ed5a1 100644 --- a/inst/extdata/OSD/B/BORVANT.json +++ b/inst/extdata/OSD/B/BORVANT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A3", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bkkm1", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "weak thick platy", "dry_rupture": "rigid", @@ -190,12 +190,12 @@ "name": "Bkkm2", "top": 76, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -213,11 +213,11 @@ "name": "2Bk1", "top": 97, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "single grain", @@ -236,11 +236,11 @@ "name": "2Bk2", "top": 122, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BOWDISH.json b/inst/extdata/OSD/B/BOWDISH.json index b2f874fcfa..1cd57f0fc4 100644 --- a/inst/extdata/OSD/B/BOWDISH.json +++ b/inst/extdata/OSD/B/BOWDISH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BOXCAR.json b/inst/extdata/OSD/B/BOXCAR.json index e0dfc72484..5c431ebe58 100644 --- a/inst/extdata/OSD/B/BOXCAR.json +++ b/inst/extdata/OSD/B/BOXCAR.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -101,8 +101,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 3, + "moist_hue": "5YR", + "moist_value": 2.5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BOXELDER.json b/inst/extdata/OSD/B/BOXELDER.json index 90737e89fb..7254bbdd1d 100644 --- a/inst/extdata/OSD/B/BOXELDER.json +++ b/inst/extdata/OSD/B/BOXELDER.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw", "top": 13, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "2C", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BRAD.json b/inst/extdata/OSD/B/BRAD.json index f8b3fb828b..f3ed3145fd 100644 --- a/inst/extdata/OSD/B/BRAD.json +++ b/inst/extdata/OSD/B/BRAD.json @@ -98,12 +98,12 @@ "name": "A1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -121,11 +121,11 @@ "name": "A2", "top": 13, "bottom": 31, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BRADSHAW.json b/inst/extdata/OSD/B/BRADSHAW.json index 9ca1e4ef87..aa8bc5f5c7 100644 --- a/inst/extdata/OSD/B/BRADSHAW.json +++ b/inst/extdata/OSD/B/BRADSHAW.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak medium granular", @@ -121,11 +121,11 @@ "name": "B2", "top": 28, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 74, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 102, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BRADWAY.json b/inst/extdata/OSD/B/BRADWAY.json index 76d4e96b0a..31b7a07845 100644 --- a/inst/extdata/OSD/B/BRADWAY.json +++ b/inst/extdata/OSD/B/BRADWAY.json @@ -124,8 +124,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "very fine sandy loam", "structure": "weak thin platy", diff --git a/inst/extdata/OSD/B/BRAFFITS.json b/inst/extdata/OSD/B/BRAFFITS.json index 90fd0d2768..f167e9e037 100644 --- a/inst/extdata/OSD/B/BRAFFITS.json +++ b/inst/extdata/OSD/B/BRAFFITS.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "7.5YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 36, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "C3", "top": 99, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BRASSEY.json b/inst/extdata/OSD/B/BRASSEY.json index ae91e9420b..671c665bfe 100644 --- a/inst/extdata/OSD/B/BRASSEY.json +++ b/inst/extdata/OSD/B/BRASSEY.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 53, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 94, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "C", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/B/BREADLOAF.json b/inst/extdata/OSD/B/BREADLOAF.json index 3e1830ee8b..d74694c08a 100644 --- a/inst/extdata/OSD/B/BREADLOAF.json +++ b/inst/extdata/OSD/B/BREADLOAF.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Btss1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -145,10 +145,10 @@ "top": 30, "bottom": 43, "dry_hue": "10YR", - "dry_value": 2, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -167,11 +167,11 @@ "name": "Btss3", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt", "structure": "moderate fine and medium prismatic", diff --git a/inst/extdata/OSD/B/BREADSPRINGS.json b/inst/extdata/OSD/B/BREADSPRINGS.json index 7f79a54c96..8cb1266622 100644 --- a/inst/extdata/OSD/B/BREADSPRINGS.json +++ b/inst/extdata/OSD/B/BREADSPRINGS.json @@ -101,9 +101,9 @@ "dry_hue": "2.5Y", "dry_value": 5, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BRECKNOCK.json b/inst/extdata/OSD/B/BRECKNOCK.json index 18a4371557..eb87225894 100644 --- a/inst/extdata/OSD/B/BRECKNOCK.json +++ b/inst/extdata/OSD/B/BRECKNOCK.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BRIABBIT.json b/inst/extdata/OSD/B/BRIABBIT.json index 36d1b64ca8..445028b6f3 100644 --- a/inst/extdata/OSD/B/BRIABBIT.json +++ b/inst/extdata/OSD/B/BRIABBIT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak coarse platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate coarse platy", @@ -121,11 +121,11 @@ "name": "Bk", "top": 25, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/B/BRINGMEE.json b/inst/extdata/OSD/B/BRINGMEE.json index e35c3690bc..49465bd305 100644 --- a/inst/extdata/OSD/B/BRINGMEE.json +++ b/inst/extdata/OSD/B/BRINGMEE.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "BA", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 38, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 66, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 86, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "2C", "top": 119, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BRISTOLAKE.json b/inst/extdata/OSD/B/BRISTOLAKE.json index 77f47d09a6..20e2efe230 100644 --- a/inst/extdata/OSD/B/BRISTOLAKE.json +++ b/inst/extdata/OSD/B/BRISTOLAKE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "strong medium thick platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 30, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BROAD.json b/inst/extdata/OSD/B/BROAD.json index 16c8edd6ab..c1b436c41d 100644 --- a/inst/extdata/OSD/B/BROAD.json +++ b/inst/extdata/OSD/B/BROAD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "BA", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 30, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bk", "top": 71, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BROADHEAD.json b/inst/extdata/OSD/B/BROADHEAD.json index 7582de9825..d6d2ce164c 100644 --- a/inst/extdata/OSD/B/BROADHEAD.json +++ b/inst/extdata/OSD/B/BROADHEAD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate coarse granular", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 30, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 86, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/B/BROBETT.json b/inst/extdata/OSD/B/BROBETT.json index 48690e29bb..f6857ec99d 100644 --- a/inst/extdata/OSD/B/BROBETT.json +++ b/inst/extdata/OSD/B/BROBETT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "l0YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,12 +98,12 @@ "name": "Bt", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "l0YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bqkl", "top": 20, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "l0YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "strong medium platy", @@ -144,12 +144,12 @@ "name": "Bqk2", "top": "NA", "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "l0YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/B/BROXON.json b/inst/extdata/OSD/B/BROXON.json index ab399700cd..810187e2f0 100644 --- a/inst/extdata/OSD/B/BROXON.json +++ b/inst/extdata/OSD/B/BROXON.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -98,12 +98,12 @@ "name": "Bk", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/B/BRUMAN.json b/inst/extdata/OSD/B/BRUMAN.json index 6439e2dafd..949a08781e 100644 --- a/inst/extdata/OSD/B/BRUMAN.json +++ b/inst/extdata/OSD/B/BRUMAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bk", "top": 25, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C", "top": 79, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BRUNCAN.json b/inst/extdata/OSD/B/BRUNCAN.json index 6c5dbf68aa..c90d1fc09f 100644 --- a/inst/extdata/OSD/B/BRUNCAN.json +++ b/inst/extdata/OSD/B/BRUNCAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "Bt", "top": 8, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10Y", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Btk1", "top": 13, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btk2", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bkqm", "top": 36, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/B/BRUNZELL.json b/inst/extdata/OSD/B/BRUNZELL.json index 2eb907025c..558971e813 100644 --- a/inst/extdata/OSD/B/BRUNZELL.json +++ b/inst/extdata/OSD/B/BRUNZELL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "AB", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 38, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "strong fine subangular blocky", @@ -167,12 +167,12 @@ "name": "2C1", "top": 84, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "3C2", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BRYCAN.json b/inst/extdata/OSD/B/BRYCAN.json index 567078175f..87ad666787 100644 --- a/inst/extdata/OSD/B/BRYCAN.json +++ b/inst/extdata/OSD/B/BRYCAN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 30, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 76, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "BC", "top": 94, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2Bkb", "top": 119, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BRYDEN.json b/inst/extdata/OSD/B/BRYDEN.json index 4e8f7d2598..f5e6ae98fc 100644 --- a/inst/extdata/OSD/B/BRYDEN.json +++ b/inst/extdata/OSD/B/BRYDEN.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium angular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong fine prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btn", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "strong medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Btkn", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium prismatic", @@ -190,11 +190,11 @@ "name": "Bkn", "top": 64, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse prismatic", @@ -213,12 +213,12 @@ "name": "2Bkqn", "top": 79, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "2Bkqnm", "top": 94, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong very thick platy", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/B/BUCKSKIN.json b/inst/extdata/OSD/B/BUCKSKIN.json index ba2af24e58..07da106011 100644 --- a/inst/extdata/OSD/B/BUCKSKIN.json +++ b/inst/extdata/OSD/B/BUCKSKIN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very thin and thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 58, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 89, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 155, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BUDLEWIS.json b/inst/extdata/OSD/B/BUDLEWIS.json index b11fd01549..599fa2bf5c 100644 --- a/inst/extdata/OSD/B/BUDLEWIS.json +++ b/inst/extdata/OSD/B/BUDLEWIS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine angular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium prismatic", @@ -144,11 +144,11 @@ "name": "Btk", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 69, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bkqm", "top": 79, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2R", "top": 91, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/B/BUELL.json b/inst/extdata/OSD/B/BUELL.json index 871ce24d01..07c7345ae3 100644 --- a/inst/extdata/OSD/B/BUELL.json +++ b/inst/extdata/OSD/B/BUELL.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 13, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", @@ -121,11 +121,11 @@ "name": "A13", "top": 38, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "B21", "top": 74, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "B22", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate very fine subangular blocky", @@ -190,11 +190,11 @@ "name": "B23", "top": 152, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "NA", diff --git a/inst/extdata/OSD/B/BUNCELVOIR.json b/inst/extdata/OSD/B/BUNCELVOIR.json index 1881c0ff49..a2afdb4361 100644 --- a/inst/extdata/OSD/B/BUNCELVOIR.json +++ b/inst/extdata/OSD/B/BUNCELVOIR.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "AB", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Btk", "top": 38, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate fine and medium angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2Bkq1", "top": 48, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2Bkq2", "top": 66, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/B/BUNTLINE.json b/inst/extdata/OSD/B/BUNTLINE.json index 94d173a8a0..25ae8ecfa8 100644 --- a/inst/extdata/OSD/B/BUNTLINE.json +++ b/inst/extdata/OSD/B/BUNTLINE.json @@ -168,8 +168,8 @@ "top": 119, "bottom": 152, "dry_hue": "5YR", - "dry_value": 8, - "dry_chroma": 1, + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 3, "moist_chroma": 3, diff --git a/inst/extdata/OSD/B/BURGI.json b/inst/extdata/OSD/B/BURGI.json index dab393a2c3..173c6041f8 100644 --- a/inst/extdata/OSD/B/BURGI.json +++ b/inst/extdata/OSD/B/BURGI.json @@ -75,12 +75,12 @@ "name": "A11", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "loose", @@ -98,11 +98,11 @@ "name": "A12", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky structure that parts to fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A13", "top": 30, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/B/BURKETOWN.json b/inst/extdata/OSD/B/BURKETOWN.json index 0362aab42d..c9c9ad6461 100644 --- a/inst/extdata/OSD/B/BURKETOWN.json +++ b/inst/extdata/OSD/B/BURKETOWN.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sand", "structure": "NA", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak very coarse prismatic", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BUTCHLAKE.json b/inst/extdata/OSD/B/BUTCHLAKE.json index 7769223cd2..ae1019f866 100644 --- a/inst/extdata/OSD/B/BUTCHLAKE.json +++ b/inst/extdata/OSD/B/BUTCHLAKE.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/B/BUTTERFIELD.json b/inst/extdata/OSD/B/BUTTERFIELD.json index 787f791fa9..e7b99e09a5 100644 --- a/inst/extdata/OSD/B/BUTTERFIELD.json +++ b/inst/extdata/OSD/B/BUTTERFIELD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", @@ -98,12 +98,12 @@ "name": "Bt", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Btk1", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btk2", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and very fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and very fine subangular blocky", diff --git a/inst/extdata/OSD/B/BYCRACKY.json b/inst/extdata/OSD/B/BYCRACKY.json index 90586b783c..a044a935bc 100644 --- a/inst/extdata/OSD/B/BYCRACKY.json +++ b/inst/extdata/OSD/B/BYCRACKY.json @@ -121,9 +121,9 @@ "name": "2Bw", "top": 51, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/C/CABLAB.json b/inst/extdata/OSD/C/CABLAB.json index 037e882580..76c96a3e45 100644 --- a/inst/extdata/OSD/C/CABLAB.json +++ b/inst/extdata/OSD/C/CABLAB.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CADES.json b/inst/extdata/OSD/C/CADES.json index 4ea2625b45..f890ebb5f3 100644 --- a/inst/extdata/OSD/C/CADES.json +++ b/inst/extdata/OSD/C/CADES.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "NA", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate medium to very course subangular blocky", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/CALCROSS.json b/inst/extdata/OSD/C/CALCROSS.json index b6eb7ca6af..f76d81c94a 100644 --- a/inst/extdata/OSD/C/CALCROSS.json +++ b/inst/extdata/OSD/C/CALCROSS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 33, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium platy", @@ -144,11 +144,11 @@ "name": "C2", "top": 41, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", @@ -167,11 +167,11 @@ "name": "C3", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/C/CALITA.json b/inst/extdata/OSD/C/CALITA.json index 117938f76d..e4a431249d 100644 --- a/inst/extdata/OSD/C/CALITA.json +++ b/inst/extdata/OSD/C/CALITA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 58, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C1", "top": 76, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CALLINGS.json b/inst/extdata/OSD/C/CALLINGS.json index 08ec3a9686..ed1d2ad5c0 100644 --- a/inst/extdata/OSD/C/CALLINGS.json +++ b/inst/extdata/OSD/C/CALLINGS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "E", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 81, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -213,11 +213,11 @@ "name": "C", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CALPAC.json b/inst/extdata/OSD/C/CALPAC.json index 976fa9941a..ba2e3429cd 100644 --- a/inst/extdata/OSD/C/CALPAC.json +++ b/inst/extdata/OSD/C/CALPAC.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A3", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 53, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 86, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CALROY.json b/inst/extdata/OSD/C/CALROY.json index eb310c946e..1baf38bb29 100644 --- a/inst/extdata/OSD/C/CALROY.json +++ b/inst/extdata/OSD/C/CALROY.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 13, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 41, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/C/CAMELBACK.json b/inst/extdata/OSD/C/CAMELBACK.json index 998abab588..f03dc8aa4c 100644 --- a/inst/extdata/OSD/C/CAMELBACK.json +++ b/inst/extdata/OSD/C/CAMELBACK.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "AB", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 76, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium and fine subangular blocky", diff --git a/inst/extdata/OSD/C/CANBURN.json b/inst/extdata/OSD/C/CANBURN.json index 3060d39fe3..cb740bc359 100644 --- a/inst/extdata/OSD/C/CANBURN.json +++ b/inst/extdata/OSD/C/CANBURN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 64, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CANNONVILLE.json b/inst/extdata/OSD/C/CANNONVILLE.json index 52e5999dcb..b187ddb156 100644 --- a/inst/extdata/OSD/C/CANNONVILLE.json +++ b/inst/extdata/OSD/C/CANNONVILLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay", "structure": "weak very fine platy", diff --git a/inst/extdata/OSD/C/CAPAC.json b/inst/extdata/OSD/C/CAPAC.json index 299146cbcd..3554f2d3b2 100644 --- a/inst/extdata/OSD/C/CAPAC.json +++ b/inst/extdata/OSD/C/CAPAC.json @@ -98,9 +98,9 @@ "name": "B/E", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/C/CAPLES.json b/inst/extdata/OSD/C/CAPLES.json index ac953daa32..230f47322d 100644 --- a/inst/extdata/OSD/C/CAPLES.json +++ b/inst/extdata/OSD/C/CAPLES.json @@ -167,9 +167,9 @@ "name": "Cg1", "top": 99, "bottom": 112, - "dry_hue": "7.5YR", + "dry_hue": "5Y", "dry_value": 6, - "dry_chroma": 8, + "dry_chroma": 1, "moist_hue": "5Y", "moist_value": 4, "moist_chroma": 1, @@ -193,9 +193,9 @@ "dry_hue": "5Y", "dry_value": 6, "dry_chroma": 1, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CARDON.json b/inst/extdata/OSD/C/CARDON.json index c02d35e67b..32647df868 100644 --- a/inst/extdata/OSD/C/CARDON.json +++ b/inst/extdata/OSD/C/CARDON.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay", "structure": "moderate medium subangular blocky", @@ -98,11 +98,11 @@ "name": "A", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "AC", "top": 28, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silty clay", "structure": "NA", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C", "top": 86, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/C/CARTWRIGHT.json b/inst/extdata/OSD/C/CARTWRIGHT.json index 895b779144..64cf22db1a 100644 --- a/inst/extdata/OSD/C/CARTWRIGHT.json +++ b/inst/extdata/OSD/C/CARTWRIGHT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine platy", @@ -121,11 +121,11 @@ "name": "A3", "top": 20, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "BA", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 84, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/C/CASMOS.json b/inst/extdata/OSD/C/CASMOS.json index 09f6b0f62e..e3dfe2fcba 100644 --- a/inst/extdata/OSD/C/CASMOS.json +++ b/inst/extdata/OSD/C/CASMOS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "C", "top": 5, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine subangular blocky", diff --git a/inst/extdata/OSD/C/CASTAN.json b/inst/extdata/OSD/C/CASTAN.json index cfa6f86154..9fe7e520c4 100644 --- a/inst/extdata/OSD/C/CASTAN.json +++ b/inst/extdata/OSD/C/CASTAN.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "B/E", "top": 43, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "E/B", "top": 79, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "B/E'", "top": 99, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 6, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -213,11 +213,11 @@ "name": "BC", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/C/CASTELLO.json b/inst/extdata/OSD/C/CASTELLO.json index fc4eb4736b..c241e77cde 100644 --- a/inst/extdata/OSD/C/CASTELLO.json +++ b/inst/extdata/OSD/C/CASTELLO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AC", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Clca", "top": 23, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "C2ca", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CASTINO.json b/inst/extdata/OSD/C/CASTINO.json index eef9c08acc..41d676ec02 100644 --- a/inst/extdata/OSD/C/CASTINO.json +++ b/inst/extdata/OSD/C/CASTINO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "BA", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 36, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/C/CASTLEROCK.json b/inst/extdata/OSD/C/CASTLEROCK.json index 2068eb32f6..39c62da959 100644 --- a/inst/extdata/OSD/C/CASTLEROCK.json +++ b/inst/extdata/OSD/C/CASTLEROCK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "strong thin platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Btk1", "top": 58, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine and medium prismatic", @@ -167,11 +167,11 @@ "name": "Btk2", "top": 71, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk1", "top": 102, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bk2", "top": 114, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CATARACT.json b/inst/extdata/OSD/C/CATARACT.json index dd152c2511..3f2612544c 100644 --- a/inst/extdata/OSD/C/CATARACT.json +++ b/inst/extdata/OSD/C/CATARACT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "weak medium platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "NA", @@ -121,9 +121,9 @@ "name": "Bt2", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 4, @@ -144,11 +144,11 @@ "name": "Bk1", "top": 23, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium prismatic", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 64, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CATCHELL.json b/inst/extdata/OSD/C/CATCHELL.json index 94dccb9b72..a21ceabc51 100644 --- a/inst/extdata/OSD/C/CATCHELL.json +++ b/inst/extdata/OSD/C/CATCHELL.json @@ -75,11 +75,11 @@ "name": "E", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin and medium platy", @@ -98,12 +98,12 @@ "name": "2Bt1", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium columnar", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "2Bt2", "top": 36, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "2Btk", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bk", "top": 69, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine and fine angular blocky", @@ -190,12 +190,12 @@ "name": "3Bkqm", "top": 79, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 8, - "moist_chroma": 2, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CATCHINGS.json b/inst/extdata/OSD/C/CATCHINGS.json index 6c96be9a67..c10ca45a23 100644 --- a/inst/extdata/OSD/C/CATCHINGS.json +++ b/inst/extdata/OSD/C/CATCHINGS.json @@ -239,9 +239,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 6, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CAUSEWA.json b/inst/extdata/OSD/C/CAUSEWA.json index e2e5fc43ed..bf8a0b22b6 100644 --- a/inst/extdata/OSD/C/CAUSEWA.json +++ b/inst/extdata/OSD/C/CAUSEWA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 36, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/C/CAVAL.json b/inst/extdata/OSD/C/CAVAL.json index de354d95a4..0e499db217 100644 --- a/inst/extdata/OSD/C/CAVAL.json +++ b/inst/extdata/OSD/C/CAVAL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -98,12 +98,12 @@ "name": "A2", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A3", "top": 41, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C", "top": 58, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "B1b", "top": 104, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "B2tb", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/C/CEDARHILL.json b/inst/extdata/OSD/C/CEDARHILL.json index 19d0d56e9a..6d217b2d8c 100644 --- a/inst/extdata/OSD/C/CEDARHILL.json +++ b/inst/extdata/OSD/C/CEDARHILL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "ABk", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 41, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CENTERFIELD.json b/inst/extdata/OSD/C/CENTERFIELD.json index 12ce7745ac..96a930e229 100644 --- a/inst/extdata/OSD/C/CENTERFIELD.json +++ b/inst/extdata/OSD/C/CENTERFIELD.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "C1", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C2", "top": 41, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "IIC3", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "IIC4", "top": 64, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/C/CENTER_CREEK.json b/inst/extdata/OSD/C/CENTER_CREEK.json index d2e60f376b..39599cb612 100644 --- a/inst/extdata/OSD/C/CENTER_CREEK.json +++ b/inst/extdata/OSD/C/CENTER_CREEK.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "BA", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 51, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 69, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2C1", "top": 84, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2C2", "top": 102, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2C3", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CENTRALIA.json b/inst/extdata/OSD/C/CENTRALIA.json index 98605c1251..bfcf590649 100644 --- a/inst/extdata/OSD/C/CENTRALIA.json +++ b/inst/extdata/OSD/C/CENTRALIA.json @@ -121,9 +121,9 @@ "name": "A1", "top": 4, "bottom": 24, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/C/CESSNA.json b/inst/extdata/OSD/C/CESSNA.json index 39e6d9348e..cc6e8f34bf 100644 --- a/inst/extdata/OSD/C/CESSNA.json +++ b/inst/extdata/OSD/C/CESSNA.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 8, "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 4, + "dry_value": 3, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -99,11 +99,11 @@ "top": 8, "bottom": 25, "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 4, + "dry_value": 3, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -122,11 +122,11 @@ "top": 25, "bottom": 69, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 69, "bottom": 152, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CHALLIS.json b/inst/extdata/OSD/C/CHALLIS.json index 41973dda23..54c20c5e01 100644 --- a/inst/extdata/OSD/C/CHALLIS.json +++ b/inst/extdata/OSD/C/CHALLIS.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/C/CHARTERS.json b/inst/extdata/OSD/C/CHARTERS.json index cabed85ad6..d19a27b30c 100644 --- a/inst/extdata/OSD/C/CHARTERS.json +++ b/inst/extdata/OSD/C/CHARTERS.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 48, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw3", "top": 86, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bw4", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/C/CHATBURN.json b/inst/extdata/OSD/C/CHATBURN.json index 2db8e4ac2a..34e58ef502 100644 --- a/inst/extdata/OSD/C/CHATBURN.json +++ b/inst/extdata/OSD/C/CHATBURN.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btz", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bkz1", "top": 48, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very thick and thick platy", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkz2", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "Bkz3", "top": 79, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "Cz", "top": 127, "bottom": 162, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CHATTIN.json b/inst/extdata/OSD/C/CHATTIN.json index 88842f46a5..31e0c9459a 100644 --- a/inst/extdata/OSD/C/CHATTIN.json +++ b/inst/extdata/OSD/C/CHATTIN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very fine platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "Bt", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse prismatic", @@ -144,11 +144,11 @@ "name": "2Bk", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "2Btk1", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "2Btk2", "top": 58, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium and coarse subangular blocky", @@ -213,11 +213,11 @@ "name": "3C", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CHECKETT.json b/inst/extdata/OSD/C/CHECKETT.json index 52a4a11966..2eb2c05fec 100644 --- a/inst/extdata/OSD/C/CHECKETT.json +++ b/inst/extdata/OSD/C/CHECKETT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "NA", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bk", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bt", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "BC", "top": 41, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CHEEBE.json b/inst/extdata/OSD/C/CHEEBE.json index d62ae6fff2..7af20f1b03 100644 --- a/inst/extdata/OSD/C/CHEEBE.json +++ b/inst/extdata/OSD/C/CHEEBE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate thin platy", @@ -121,11 +121,11 @@ "name": "A3", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium platy", @@ -144,11 +144,11 @@ "name": "BAk", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5YR", + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Btnk1", "top": 38, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Btnk2", "top": 51, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "2.5YR", + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "NA", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bky", "top": 79, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "2.5YR", + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "C1", "top": 112, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "5Y", + "moist_value": 7, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "strong medium platy", @@ -259,12 +259,12 @@ "name": "C2", "top": 140, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 6, + "moist_chroma": 2, "texture_class": "clay", "structure": "strong coarse angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CHESBROOK.json b/inst/extdata/OSD/C/CHESBROOK.json index 384f583084..8253ef72db 100644 --- a/inst/extdata/OSD/C/CHESBROOK.json +++ b/inst/extdata/OSD/C/CHESBROOK.json @@ -75,12 +75,12 @@ "name": "Oi", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "Akg1", "top": 5, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Akg2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkg1", "top": 51, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkg2", "top": 79, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "Bkg3", "top": 91, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -213,12 +213,12 @@ "name": "2Ckg1", "top": 122, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5Y", - "moist_value": 8, - "moist_chroma": 1, + "dry_hue": "5Y", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "2Ckg2", "top": 142, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "5Y", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CHEW.json b/inst/extdata/OSD/C/CHEW.json index e164b825c5..a6852a9378 100644 --- a/inst/extdata/OSD/C/CHEW.json +++ b/inst/extdata/OSD/C/CHEW.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "BCky", "top": 69, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CHILCOTT.json b/inst/extdata/OSD/C/CHILCOTT.json index a1cbcd83ce..25a16e212a 100644 --- a/inst/extdata/OSD/C/CHILCOTT.json +++ b/inst/extdata/OSD/C/CHILCOTT.json @@ -75,11 +75,11 @@ "name": "E", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very thin and thin platy", @@ -98,11 +98,11 @@ "name": "2Bt", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -121,11 +121,11 @@ "name": "2Btk1", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "2Btk2", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -167,12 +167,12 @@ "name": "2Bkqm1", "top": 76, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "3Bkqm2", "top": 119, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sand", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/CHIPETA.json b/inst/extdata/OSD/C/CHIPETA.json index d2145d7738..df044f2652 100644 --- a/inst/extdata/OSD/C/CHIPETA.json +++ b/inst/extdata/OSD/C/CHIPETA.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "C", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Cy", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak medium angular blocky", diff --git a/inst/extdata/OSD/C/CHIPMAN.json b/inst/extdata/OSD/C/CHIPMAN.json index a5287fa52c..35fb571c49 100644 --- a/inst/extdata/OSD/C/CHIPMAN.json +++ b/inst/extdata/OSD/C/CHIPMAN.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate medium and fine granular", @@ -98,11 +98,11 @@ "name": "Ag", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", @@ -121,11 +121,11 @@ "name": "Bkg1", "top": 38, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bkg2", "top": 51, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkg3", "top": 69, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bkg4", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 1, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CHRISTIANBURG.json b/inst/extdata/OSD/C/CHRISTIANBURG.json index 9c769a57b8..45f664980f 100644 --- a/inst/extdata/OSD/C/CHRISTIANBURG.json +++ b/inst/extdata/OSD/C/CHRISTIANBURG.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "silty clay", "structure": "weak medium angular blocky", @@ -98,12 +98,12 @@ "name": "C1", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C2", "top": 43, "bottom": 90, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak fine angular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C3", "top": 90, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/C/CHUBBFLAT.json b/inst/extdata/OSD/C/CHUBBFLAT.json index 0add6dac33..de19be4344 100644 --- a/inst/extdata/OSD/C/CHUBBFLAT.json +++ b/inst/extdata/OSD/C/CHUBBFLAT.json @@ -75,9 +75,9 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 2, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 1, @@ -98,9 +98,9 @@ "name": "A2", "top": 20, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 2, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 1, @@ -121,11 +121,11 @@ "name": "Bkg1", "top": 56, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bkg2", "top": 66, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 1, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bkg3", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/C/CHUCKRIVER.json b/inst/extdata/OSD/C/CHUCKRIVER.json index b5b7b8d540..94aa3d393a 100644 --- a/inst/extdata/OSD/C/CHUCKRIVER.json +++ b/inst/extdata/OSD/C/CHUCKRIVER.json @@ -78,8 +78,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", @@ -101,8 +101,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "weak medium granular", diff --git a/inst/extdata/OSD/C/CHUGCITY.json b/inst/extdata/OSD/C/CHUGCITY.json index 8146149bcd..e8b5ecdca7 100644 --- a/inst/extdata/OSD/C/CHUGCITY.json +++ b/inst/extdata/OSD/C/CHUGCITY.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 18, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk3", "top": 71, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/C/CHUSKA.json b/inst/extdata/OSD/C/CHUSKA.json index 53a91d2b51..e0583d4551 100644 --- a/inst/extdata/OSD/C/CHUSKA.json +++ b/inst/extdata/OSD/C/CHUSKA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 36, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2Bkq", "top": 46, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2Bk", "top": 74, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "3R", "top": 130, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/C/CINDERSPRING.json b/inst/extdata/OSD/C/CINDERSPRING.json index b5f55efab0..fef7e21826 100644 --- a/inst/extdata/OSD/C/CINDERSPRING.json +++ b/inst/extdata/OSD/C/CINDERSPRING.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium and coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thick platy", @@ -121,11 +121,11 @@ "name": "AB", "top": 30, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 56, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 91, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bw3", "top": 109, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -213,11 +213,11 @@ "name": "2C", "top": 127, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "NA", "structure": "single grain", diff --git a/inst/extdata/OSD/C/CIRCLEVILLE.json b/inst/extdata/OSD/C/CIRCLEVILLE.json index 7e48179a36..9eb92e47a0 100644 --- a/inst/extdata/OSD/C/CIRCLEVILLE.json +++ b/inst/extdata/OSD/C/CIRCLEVILLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CLAPRYCH.json b/inst/extdata/OSD/C/CLAPRYCH.json index 1e00b773ef..2765605ba5 100644 --- a/inst/extdata/OSD/C/CLAPRYCH.json +++ b/inst/extdata/OSD/C/CLAPRYCH.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 43, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/C/CLEGG.json b/inst/extdata/OSD/C/CLEGG.json index 0cc146b74b..e6c02635ea 100644 --- a/inst/extdata/OSD/C/CLEGG.json +++ b/inst/extdata/OSD/C/CLEGG.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium angular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and fine angular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 71, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 81, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 137, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CLEVERLY.json b/inst/extdata/OSD/C/CLEVERLY.json index 2570ef7cf2..5f38fdd5db 100644 --- a/inst/extdata/OSD/C/CLEVERLY.json +++ b/inst/extdata/OSD/C/CLEVERLY.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 41, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 74, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Ck", "top": 107, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CLEYMOR.json b/inst/extdata/OSD/C/CLEYMOR.json index f9c891c5e9..1d83f6449b 100644 --- a/inst/extdata/OSD/C/CLEYMOR.json +++ b/inst/extdata/OSD/C/CLEYMOR.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate very thin platy", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "ABt", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate very coarse prismatic", @@ -190,11 +190,11 @@ "name": "Btss1", "top": 46, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay", "structure": "strong very coarse prismatic", @@ -213,11 +213,11 @@ "name": "Btss2", "top": 79, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -236,11 +236,11 @@ "name": "Bt3", "top": 94, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay", "structure": "weak coarse subangular blocky", @@ -259,11 +259,11 @@ "name": "Bt4", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/C/CLIMAX.json b/inst/extdata/OSD/C/CLIMAX.json index d883f5c5d8..8371f56375 100644 --- a/inst/extdata/OSD/C/CLIMAX.json +++ b/inst/extdata/OSD/C/CLIMAX.json @@ -124,8 +124,8 @@ "dry_hue": "10YR", "dry_value": 2, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/C/CLOUDYWAY.json b/inst/extdata/OSD/C/CLOUDYWAY.json index 272314f2b4..cb55f719be 100644 --- a/inst/extdata/OSD/C/CLOUDYWAY.json +++ b/inst/extdata/OSD/C/CLOUDYWAY.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A3", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "AC", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C1", "top": 61, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", @@ -213,11 +213,11 @@ "name": "C2", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/C/CLOYD.json b/inst/extdata/OSD/C/CLOYD.json index 1c0e50f5cf..639b7e5c58 100644 --- a/inst/extdata/OSD/C/CLOYD.json +++ b/inst/extdata/OSD/C/CLOYD.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 8, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 8, "bottom": 18, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 18, "bottom": 38, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 5, "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/COALBANK.json b/inst/extdata/OSD/C/COALBANK.json index 11375355fa..da61bdda5b 100644 --- a/inst/extdata/OSD/C/COALBANK.json +++ b/inst/extdata/OSD/C/COALBANK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak coarse and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak coarse and very coarse subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak very coarse subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "C1", "top": 53, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C2", "top": 117, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "fine sand", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Cr", "top": 140, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "N", + "dry_hue": "N", + "dry_value": 7, + "dry_chroma": 0, + "moist_hue": "5Y", "moist_value": 7, - "moist_chroma": 0, + "moist_chroma": 1, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/COALKILN.json b/inst/extdata/OSD/C/COALKILN.json index fabace0dea..42b2cc6240 100644 --- a/inst/extdata/OSD/C/COALKILN.json +++ b/inst/extdata/OSD/C/COALKILN.json @@ -121,11 +121,11 @@ "name": "A1", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "A2", "top": 18, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 51, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 69, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "NA", @@ -213,11 +213,11 @@ "name": "Bk3", "top": 102, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CODLEY.json b/inst/extdata/OSD/C/CODLEY.json index 18e5a9a5c6..6a86230fc2 100644 --- a/inst/extdata/OSD/C/CODLEY.json +++ b/inst/extdata/OSD/C/CODLEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "C2", "top": 43, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C3", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CODQUIN.json b/inst/extdata/OSD/C/CODQUIN.json index 33fbfe0783..6eef4ed531 100644 --- a/inst/extdata/OSD/C/CODQUIN.json +++ b/inst/extdata/OSD/C/CODQUIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C", "top": 10, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/C/COGLIN.json b/inst/extdata/OSD/C/COGLIN.json index 76b37967fb..103f42ae74 100644 --- a/inst/extdata/OSD/C/COGLIN.json +++ b/inst/extdata/OSD/C/COGLIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "2Bt", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "3C", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", @@ -144,9 +144,9 @@ "name": "4Ck", "top": 41, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/C/COLLARD.json b/inst/extdata/OSD/C/COLLARD.json index 36eb010c91..d54849891d 100644 --- a/inst/extdata/OSD/C/COLLARD.json +++ b/inst/extdata/OSD/C/COLLARD.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bw", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "NA", @@ -144,12 +144,12 @@ "name": "Bt", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2C1", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", @@ -190,12 +190,12 @@ "name": "2C2", "top": 64, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -213,12 +213,12 @@ "name": "2C3", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/C/COLLISTER.json b/inst/extdata/OSD/C/COLLISTER.json index b1ae5e9c1a..b406ab1ae3 100644 --- a/inst/extdata/OSD/C/COLLISTER.json +++ b/inst/extdata/OSD/C/COLLISTER.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and thick platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A1", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A2", "top": 48, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "NA", @@ -167,11 +167,11 @@ "name": "Bw1", "top": 58, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -190,12 +190,12 @@ "name": "Bw2", "top": 71, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bw3", "top": 91, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "Bw4", "top": 107, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", @@ -259,12 +259,12 @@ "name": "C", "top": 147, "bottom": 173, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/COLTHORP.json b/inst/extdata/OSD/C/COLTHORP.json index 8b29b4623a..b0be0a2eb8 100644 --- a/inst/extdata/OSD/C/COLTHORP.json +++ b/inst/extdata/OSD/C/COLTHORP.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very thin and thin platy", @@ -98,12 +98,12 @@ "name": "Bt", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "BC", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bkq", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 48, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/CONNERIDGE.json b/inst/extdata/OSD/C/CONNERIDGE.json index 6ce4e964e3..371b54458d 100644 --- a/inst/extdata/OSD/C/CONNERIDGE.json +++ b/inst/extdata/OSD/C/CONNERIDGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "strong very fine and fine granular", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "strong fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CONOVER.json b/inst/extdata/OSD/C/CONOVER.json index fda8b981be..2a113efdbc 100644 --- a/inst/extdata/OSD/C/CONOVER.json +++ b/inst/extdata/OSD/C/CONOVER.json @@ -102,8 +102,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/COONSKIN.json b/inst/extdata/OSD/C/COONSKIN.json index 5086811552..68945ec62e 100644 --- a/inst/extdata/OSD/C/COONSKIN.json +++ b/inst/extdata/OSD/C/COONSKIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,12 +98,12 @@ "name": "Bw", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkq", "top": 41, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 76, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/CORDER.json b/inst/extdata/OSD/C/CORDER.json index 7c2d28bc7b..39b4c881c1 100644 --- a/inst/extdata/OSD/C/CORDER.json +++ b/inst/extdata/OSD/C/CORDER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thin and very fine platy", @@ -121,11 +121,11 @@ "name": "Bt", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "NA", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 2, "texture_class": "NA", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/COTTLE.json b/inst/extdata/OSD/C/COTTLE.json index d906523d0f..bc31f206f7 100644 --- a/inst/extdata/OSD/C/COTTLE.json +++ b/inst/extdata/OSD/C/COTTLE.json @@ -98,11 +98,11 @@ "name": "AB", "top": 13, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "Bt", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine and fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Btkq", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/COTTONTHOMAS.json b/inst/extdata/OSD/C/COTTONTHOMAS.json index 828fed11e8..7be65e878e 100644 --- a/inst/extdata/OSD/C/COTTONTHOMAS.json +++ b/inst/extdata/OSD/C/COTTONTHOMAS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 28, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 89, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "NA", diff --git a/inst/extdata/OSD/C/COVINGTON.json b/inst/extdata/OSD/C/COVINGTON.json index d406df8ba8..e3123007e7 100644 --- a/inst/extdata/OSD/C/COVINGTON.json +++ b/inst/extdata/OSD/C/COVINGTON.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "clay", "structure": "moderate coarse prismatic", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "clay", "structure": "moderate medium prismatic", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/COWCO.json b/inst/extdata/OSD/C/COWCO.json index 88978fd331..a3923d6865 100644 --- a/inst/extdata/OSD/C/COWCO.json +++ b/inst/extdata/OSD/C/COWCO.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "C2", "top": 43, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium angular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C3", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CRANECREEK.json b/inst/extdata/OSD/C/CRANECREEK.json index 594bc039da..1e6a903878 100644 --- a/inst/extdata/OSD/C/CRANECREEK.json +++ b/inst/extdata/OSD/C/CRANECREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "NA", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 46, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 76, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CRANEGULCH.json b/inst/extdata/OSD/C/CRANEGULCH.json index 879ad8aeeb..d7185cf80c 100644 --- a/inst/extdata/OSD/C/CRANEGULCH.json +++ b/inst/extdata/OSD/C/CRANEGULCH.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay", "structure": "moderate medium and coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sand", "structure": "moderate fine and medium prismatic", @@ -190,11 +190,11 @@ "name": "Bt4", "top": 84, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay", "structure": "moderate medium prismatic", @@ -213,11 +213,11 @@ "name": "Bt5", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay", "structure": "strong medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/C/CRAWLEY.json b/inst/extdata/OSD/C/CRAWLEY.json index 8728d1c8f5..799fe9c56e 100644 --- a/inst/extdata/OSD/C/CRAWLEY.json +++ b/inst/extdata/OSD/C/CRAWLEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "strong fine and medium subangular blocky", diff --git a/inst/extdata/OSD/C/CRESTLINE.json b/inst/extdata/OSD/C/CRESTLINE.json index 75380e33be..4a9dee5b0d 100644 --- a/inst/extdata/OSD/C/CRESTLINE.json +++ b/inst/extdata/OSD/C/CRESTLINE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/C/CROOKED_CREEK.json b/inst/extdata/OSD/C/CROOKED_CREEK.json index f6a60518d0..68e46ddf6c 100644 --- a/inst/extdata/OSD/C/CROOKED_CREEK.json +++ b/inst/extdata/OSD/C/CROOKED_CREEK.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak thick platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "clay loam", "structure": "strong medium and coarse granular", @@ -121,11 +121,11 @@ "name": "A3", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "A4", "top": 58, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "C1", "top": 84, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate very coarse subangular blocky", @@ -190,12 +190,12 @@ "name": "C2", "top": 107, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "2.5Y", "moist_value": 3, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "C3", "top": 127, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/C/CROSS.json b/inst/extdata/OSD/C/CROSS.json index 37b6344afa..130bd0ac59 100644 --- a/inst/extdata/OSD/C/CROSS.json +++ b/inst/extdata/OSD/C/CROSS.json @@ -121,8 +121,8 @@ "name": "Bk", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", "moist_hue": "7.5YR", "moist_value": 8, diff --git a/inst/extdata/OSD/C/CROSSBOW.json b/inst/extdata/OSD/C/CROSSBOW.json index 33871bdec4..a2861e01e7 100644 --- a/inst/extdata/OSD/C/CROSSBOW.json +++ b/inst/extdata/OSD/C/CROSSBOW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate medium and coarse granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 91, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/C/CROTON.json b/inst/extdata/OSD/C/CROTON.json index 95a8d3ad48..661b482ef5 100644 --- a/inst/extdata/OSD/C/CROTON.json +++ b/inst/extdata/OSD/C/CROTON.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 1, + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "moderate medium prismatic parting to weak platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/C/CROWERS.json b/inst/extdata/OSD/C/CROWERS.json index b5542a092b..be6e6cc076 100644 --- a/inst/extdata/OSD/C/CROWERS.json +++ b/inst/extdata/OSD/C/CROWERS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A3", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bw", "top": 69, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bk1", "top": 79, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bk2", "top": 104, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium prismatic", diff --git a/inst/extdata/OSD/C/CRUMLEY.json b/inst/extdata/OSD/C/CRUMLEY.json index 8dac861e06..27c206670b 100644 --- a/inst/extdata/OSD/C/CRUMLEY.json +++ b/inst/extdata/OSD/C/CRUMLEY.json @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2C1", "top": 46, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2C2", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/C/CUPVAR.json b/inst/extdata/OSD/C/CUPVAR.json index ad2095aec6..0f2db6252f 100644 --- a/inst/extdata/OSD/C/CUPVAR.json +++ b/inst/extdata/OSD/C/CUPVAR.json @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CURDLI.json b/inst/extdata/OSD/C/CURDLI.json index 6d1d56f989..66c602ab32 100644 --- a/inst/extdata/OSD/C/CURDLI.json +++ b/inst/extdata/OSD/C/CURDLI.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thick platy", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk3", "top": 61, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 8, - "moist_chroma": 1, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CURRENT_SPRING.json b/inst/extdata/OSD/C/CURRENT_SPRING.json index 684b7bf96d..bc09d8ef96 100644 --- a/inst/extdata/OSD/C/CURRENT_SPRING.json +++ b/inst/extdata/OSD/C/CURRENT_SPRING.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 61, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/C/CURRYMOUNTAIN.json b/inst/extdata/OSD/C/CURRYMOUNTAIN.json index 6c6b699a79..eee7928606 100644 --- a/inst/extdata/OSD/C/CURRYMOUNTAIN.json +++ b/inst/extdata/OSD/C/CURRYMOUNTAIN.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/C/CUTSHIN.json b/inst/extdata/OSD/C/CUTSHIN.json index 5b42098332..0fded9f1ea 100644 --- a/inst/extdata/OSD/C/CUTSHIN.json +++ b/inst/extdata/OSD/C/CUTSHIN.json @@ -98,9 +98,9 @@ "name": "A", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10Y", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/D/DACORE.json b/inst/extdata/OSD/D/DACORE.json index 62cb14aadd..896f8b2b3b 100644 --- a/inst/extdata/OSD/D/DACORE.json +++ b/inst/extdata/OSD/D/DACORE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Btk", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk", "top": 38, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/D/DAGFLAT.json b/inst/extdata/OSD/D/DAGFLAT.json index 4fbaf04e03..d96420bc55 100644 --- a/inst/extdata/OSD/D/DAGFLAT.json +++ b/inst/extdata/OSD/D/DAGFLAT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium granular", @@ -121,11 +121,11 @@ "name": "BE", "top": 15, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "strong coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 43, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "strong coarse subangular blocky", @@ -190,12 +190,12 @@ "name": "C", "top": 66, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DAHAR.json b/inst/extdata/OSD/D/DAHAR.json index a45fa534de..d0830b1b2a 100644 --- a/inst/extdata/OSD/D/DAHAR.json +++ b/inst/extdata/OSD/D/DAHAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak thin and medium platy", @@ -98,12 +98,12 @@ "name": "AB", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw", "top": 15, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "l0YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bqk", "top": 30, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "l0YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and thick platy", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Bqkm", "top": "NA", "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "l0YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "strong medium and thick platy", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "Bqk", "top": 69, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "l0YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -213,11 +213,11 @@ "name": "2Ck", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DAILYBASIN.json b/inst/extdata/OSD/D/DAILYBASIN.json index edcbc8d2a6..1e7c59fb4e 100644 --- a/inst/extdata/OSD/D/DAILYBASIN.json +++ b/inst/extdata/OSD/D/DAILYBASIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "moderate very fine and fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 43, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "BC", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/D/DALCAN.json b/inst/extdata/OSD/D/DALCAN.json index aff23a25b6..3a8dfc9b07 100644 --- a/inst/extdata/OSD/D/DALCAN.json +++ b/inst/extdata/OSD/D/DALCAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very thick platy", @@ -98,11 +98,11 @@ "name": "BAt", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine prismatic", @@ -121,9 +121,9 @@ "name": "Bt1", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 2, @@ -144,9 +144,9 @@ "name": "Bt2", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/D/DANGULCH.json b/inst/extdata/OSD/D/DANGULCH.json index b2edce5b3b..b55666633c 100644 --- a/inst/extdata/OSD/D/DANGULCH.json +++ b/inst/extdata/OSD/D/DANGULCH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse prismatic", @@ -144,11 +144,11 @@ "name": "Btk", "top": 38, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 74, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/D/DARKBULL.json b/inst/extdata/OSD/D/DARKBULL.json index 9906361f9d..c4fa1daaa2 100644 --- a/inst/extdata/OSD/D/DARKBULL.json +++ b/inst/extdata/OSD/D/DARKBULL.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very thick platy", @@ -121,11 +121,11 @@ "name": "Bw", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate coarse and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2Bk3", "top": 51, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "NA", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2C1", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", @@ -236,11 +236,11 @@ "name": "2C2", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/D/DASHIKI.json b/inst/extdata/OSD/D/DASHIKI.json index ae25c7e4e7..f548d53cec 100644 --- a/inst/extdata/OSD/D/DASHIKI.json +++ b/inst/extdata/OSD/D/DASHIKI.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 11, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate very fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 11, "bottom": 26, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -144,11 +144,11 @@ "name": "Bw", "top": 26, "bottom": 82, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "2BC", "top": 82, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/D/DATEMAN.json b/inst/extdata/OSD/D/DATEMAN.json index 7532f3053b..a6aac01ea1 100644 --- a/inst/extdata/OSD/D/DATEMAN.json +++ b/inst/extdata/OSD/D/DATEMAN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/D/DAWTONIA.json b/inst/extdata/OSD/D/DAWTONIA.json index f07fd03cf8..2b76df2d41 100644 --- a/inst/extdata/OSD/D/DAWTONIA.json +++ b/inst/extdata/OSD/D/DAWTONIA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bt", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and very fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk", "top": 30, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and very fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq1", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkq2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DECKER.json b/inst/extdata/OSD/D/DECKER.json index db7b02c489..813b1565dd 100644 --- a/inst/extdata/OSD/D/DECKER.json +++ b/inst/extdata/OSD/D/DECKER.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DEERRUN.json b/inst/extdata/OSD/D/DEERRUN.json index 377d9a73bb..4e6156222e 100644 --- a/inst/extdata/OSD/D/DEERRUN.json +++ b/inst/extdata/OSD/D/DEERRUN.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and coarse granular", @@ -121,11 +121,11 @@ "name": "Bw", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C", "top": 48, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/D/DEER_CREEK.json b/inst/extdata/OSD/D/DEER_CREEK.json index 4d62ed2c1c..16de278d5b 100644 --- a/inst/extdata/OSD/D/DEER_CREEK.json +++ b/inst/extdata/OSD/D/DEER_CREEK.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Btl", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 36, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Ck1", "top": 86, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 7, - "moist_chroma": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -190,9 +190,9 @@ "name": "Ck2", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 8, "moist_chroma": 2, diff --git a/inst/extdata/OSD/D/DEHANA.json b/inst/extdata/OSD/D/DEHANA.json index 74b710436d..52602ec5d0 100644 --- a/inst/extdata/OSD/D/DEHANA.json +++ b/inst/extdata/OSD/D/DEHANA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 38, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 76, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -167,12 +167,12 @@ "name": "2C", "top": 165, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DELL.json b/inst/extdata/OSD/D/DELL.json index 0fa4565c12..58079654da 100644 --- a/inst/extdata/OSD/D/DELL.json +++ b/inst/extdata/OSD/D/DELL.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate coarse crumb", @@ -121,11 +121,11 @@ "name": "E", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sand", "structure": "weak fine crumb", @@ -144,12 +144,12 @@ "name": "E/B", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt1", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, - "moist_chroma": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and very fine angular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and very fine angular blocky", @@ -213,11 +213,11 @@ "name": "Bt3", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine angular blocky", @@ -236,12 +236,12 @@ "name": "C", "top": 84, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DELPHOS.json b/inst/extdata/OSD/D/DELPHOS.json index bd04055203..7c0578093f 100644 --- a/inst/extdata/OSD/D/DELPHOS.json +++ b/inst/extdata/OSD/D/DELPHOS.json @@ -98,12 +98,12 @@ "name": "Bw", "top": 14, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "moderate coarse subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/D/DEMAR.json b/inst/extdata/OSD/D/DEMAR.json index c3075f8ad3..6c728c068c 100644 --- a/inst/extdata/OSD/D/DEMAR.json +++ b/inst/extdata/OSD/D/DEMAR.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DEMAS.json b/inst/extdata/OSD/D/DEMAS.json index 10801eec52..c492fff3e2 100644 --- a/inst/extdata/OSD/D/DEMAS.json +++ b/inst/extdata/OSD/D/DEMAS.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10Y", + "moist_value": 3, + "moist_chroma": 1, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/D/DEMASTERS.json b/inst/extdata/OSD/D/DEMASTERS.json index 2bc3b9fa14..78839255ad 100644 --- a/inst/extdata/OSD/D/DEMASTERS.json +++ b/inst/extdata/OSD/D/DEMASTERS.json @@ -259,9 +259,9 @@ "name": "C3", "top": 137, "bottom": 160, - "dry_hue": "10YR", + "dry_hue": "N", "dry_value": 6, - "dry_chroma": 4, + "dry_chroma": 0, "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEMNER.json b/inst/extdata/OSD/D/DEMNER.json index 921afa7803..aa728b6ef8 100644 --- a/inst/extdata/OSD/D/DEMNER.json +++ b/inst/extdata/OSD/D/DEMNER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "weak fine and medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 21, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "moderate medium granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 21, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk", "top": 51, "bottom": 80, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,12 +167,12 @@ "name": "C1", "top": 80, "bottom": 115, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", @@ -190,12 +190,12 @@ "name": "C2", "top": 115, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/D/DEMOTTE.json b/inst/extdata/OSD/D/DEMOTTE.json index 79ef122625..fe7e7f8337 100644 --- a/inst/extdata/OSD/D/DEMOTTE.json +++ b/inst/extdata/OSD/D/DEMOTTE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "BA", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 91, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DEMPSEY.json b/inst/extdata/OSD/D/DEMPSEY.json index f092619e42..14f363589d 100644 --- a/inst/extdata/OSD/D/DEMPSEY.json +++ b/inst/extdata/OSD/D/DEMPSEY.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate fine granular or crumb", @@ -144,11 +144,11 @@ "name": "C", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DENMARK.json b/inst/extdata/OSD/D/DENMARK.json index 15c5ebc2cd..6904a287f1 100644 --- a/inst/extdata/OSD/D/DENMARK.json +++ b/inst/extdata/OSD/D/DENMARK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkkm", "top": 46, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate thick platy", diff --git a/inst/extdata/OSD/D/DERA.json b/inst/extdata/OSD/D/DERA.json index ea5cf98b02..b0a1b66617 100644 --- a/inst/extdata/OSD/D/DERA.json +++ b/inst/extdata/OSD/D/DERA.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C1", "top": 56, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DESCOT.json b/inst/extdata/OSD/D/DESCOT.json index 6641312888..873eac289c 100644 --- a/inst/extdata/OSD/D/DESCOT.json +++ b/inst/extdata/OSD/D/DESCOT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "C", "top": 13, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 56, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DESHLER.json b/inst/extdata/OSD/D/DESHLER.json index 8c6085528f..ac0d11cb3d 100644 --- a/inst/extdata/OSD/D/DESHLER.json +++ b/inst/extdata/OSD/D/DESHLER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 64, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", diff --git a/inst/extdata/OSD/D/DES_MOINES.json b/inst/extdata/OSD/D/DES_MOINES.json index 909798d3a5..3472372fce 100644 --- a/inst/extdata/OSD/D/DES_MOINES.json +++ b/inst/extdata/OSD/D/DES_MOINES.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "BA", "top": 10, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, - "moist_chroma": 2, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt", "top": 46, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong fine subangular and angular blocky", @@ -144,11 +144,11 @@ "name": "BC", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DEUNAH.json b/inst/extdata/OSD/D/DEUNAH.json index 1c36f45590..20a3c3e831 100644 --- a/inst/extdata/OSD/D/DEUNAH.json +++ b/inst/extdata/OSD/D/DEUNAH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,9 +121,9 @@ "name": "2Bt", "top": 23, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, @@ -144,12 +144,12 @@ "name": "2Bkq", "top": 48, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak thick platy", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2Bkqm", "top": 58, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "NA", "structure": "strong medium platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DEVOE.json b/inst/extdata/OSD/D/DEVOE.json index 0177275d8f..423287d82a 100644 --- a/inst/extdata/OSD/D/DEVOE.json +++ b/inst/extdata/OSD/D/DEVOE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "strong fine crumb", @@ -98,11 +98,11 @@ "name": "Bw", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "NA", diff --git a/inst/extdata/OSD/D/DIABLO.json b/inst/extdata/OSD/D/DIABLO.json index caa9885b97..8b67d2a4a5 100644 --- a/inst/extdata/OSD/D/DIABLO.json +++ b/inst/extdata/OSD/D/DIABLO.json @@ -147,9 +147,9 @@ "dry_hue": "5Y", "dry_value": 5, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak medium blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DIAWELL.json b/inst/extdata/OSD/D/DIAWELL.json index 031839a9a4..7a00fb3bd5 100644 --- a/inst/extdata/OSD/D/DIAWELL.json +++ b/inst/extdata/OSD/D/DIAWELL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium granular", @@ -121,11 +121,11 @@ "name": "Bt", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bkqm", "top": 51, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "NA", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2Bk1", "top": 56, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2Bk2", "top": 76, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", @@ -236,11 +236,11 @@ "name": "3Ck", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/D/DILLINGHAM.json b/inst/extdata/OSD/D/DILLINGHAM.json index 2ee6b06ed5..42099ace14 100644 --- a/inst/extdata/OSD/D/DILLINGHAM.json +++ b/inst/extdata/OSD/D/DILLINGHAM.json @@ -194,8 +194,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/D/DIPCREEK.json b/inst/extdata/OSD/D/DIPCREEK.json index ed9beeb988..e9b3ec42c4 100644 --- a/inst/extdata/OSD/D/DIPCREEK.json +++ b/inst/extdata/OSD/D/DIPCREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "strong fine and very fine granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and very fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "R", "top": 46, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sand", "structure": "NA", diff --git a/inst/extdata/OSD/D/DISHPAN.json b/inst/extdata/OSD/D/DISHPAN.json index ffe47b4802..66e87f870c 100644 --- a/inst/extdata/OSD/D/DISHPAN.json +++ b/inst/extdata/OSD/D/DISHPAN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Btk", "top": 33, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bkq", "top": 41, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DIXIE.json b/inst/extdata/OSD/D/DIXIE.json index 45d5ecb6d0..8faf3ef1c6 100644 --- a/inst/extdata/OSD/D/DIXIE.json +++ b/inst/extdata/OSD/D/DIXIE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate thick platy", @@ -121,11 +121,11 @@ "name": "Bt", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and very fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 38, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 69, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "NA", @@ -213,11 +213,11 @@ "name": "Bk3", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/D/DOBSON.json b/inst/extdata/OSD/D/DOBSON.json index 0afdd09f77..aaf0360a5e 100644 --- a/inst/extdata/OSD/D/DOBSON.json +++ b/inst/extdata/OSD/D/DOBSON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak very fine and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "BC", "top": 30, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/D/DOLLARHIDE.json b/inst/extdata/OSD/D/DOLLARHIDE.json index f21331a33f..a0a3d061c7 100644 --- a/inst/extdata/OSD/D/DOLLARHIDE.json +++ b/inst/extdata/OSD/D/DOLLARHIDE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", diff --git a/inst/extdata/OSD/D/DOLMAN.json b/inst/extdata/OSD/D/DOLMAN.json index 1e68b95172..1f271afac8 100644 --- a/inst/extdata/OSD/D/DOLMAN.json +++ b/inst/extdata/OSD/D/DOLMAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bkq", "top": 53, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DOMO.json b/inst/extdata/OSD/D/DOMO.json index d297f90bf7..283f5d3e66 100644 --- a/inst/extdata/OSD/D/DOMO.json +++ b/inst/extdata/OSD/D/DOMO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 23, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "C", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/D/DONNARDO.json b/inst/extdata/OSD/D/DONNARDO.json index e2d554dabe..8d227536f4 100644 --- a/inst/extdata/OSD/D/DONNARDO.json +++ b/inst/extdata/OSD/D/DONNARDO.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "A3", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 38, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 76, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DOODLELINK.json b/inst/extdata/OSD/D/DOODLELINK.json index 401a48d7ec..85d5e83a02 100644 --- a/inst/extdata/OSD/D/DOODLELINK.json +++ b/inst/extdata/OSD/D/DOODLELINK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw3", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C", "top": 91, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DOOR.json b/inst/extdata/OSD/D/DOOR.json index 5799f11dd7..4d7a263205 100644 --- a/inst/extdata/OSD/D/DOOR.json +++ b/inst/extdata/OSD/D/DOOR.json @@ -98,9 +98,9 @@ "name": "A1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 2, diff --git a/inst/extdata/OSD/D/DORVAL.json b/inst/extdata/OSD/D/DORVAL.json index d433765d2f..eb005b8508 100644 --- a/inst/extdata/OSD/D/DORVAL.json +++ b/inst/extdata/OSD/D/DORVAL.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 3, - "moist_chroma": 1, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "NA", "structure": "moderate fine and medium granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/D/DOUBLEDIA.json b/inst/extdata/OSD/D/DOUBLEDIA.json index 35281cc27d..4022072463 100644 --- a/inst/extdata/OSD/D/DOUBLEDIA.json +++ b/inst/extdata/OSD/D/DOUBLEDIA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "weak fine prismatic", @@ -121,11 +121,11 @@ "name": "Btss1", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt", "structure": "moderate fine prismatic", @@ -145,10 +145,10 @@ "top": 28, "bottom": 53, "dry_hue": "10YR", - "dry_value": 2, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -167,11 +167,11 @@ "name": "B't", "top": 53, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine prismatic", @@ -191,10 +191,10 @@ "top": 64, "bottom": 86, "dry_hue": "10YR", - "dry_value": 2, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -213,11 +213,11 @@ "name": "B'tss2", "top": 86, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and medium subangular blocky", diff --git a/inst/extdata/OSD/D/DOYCE.json b/inst/extdata/OSD/D/DOYCE.json index f112a21b39..ce9471b38b 100644 --- a/inst/extdata/OSD/D/DOYCE.json +++ b/inst/extdata/OSD/D/DOYCE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "strong medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btk2", "top": 41, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 51, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 81, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C1", "top": 112, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DOYLESTOWN.json b/inst/extdata/OSD/D/DOYLESTOWN.json index d7bd3b50e8..be2214d34b 100644 --- a/inst/extdata/OSD/D/DOYLESTOWN.json +++ b/inst/extdata/OSD/D/DOYLESTOWN.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 0, "texture_class": "silt loam", "structure": "weak medium prismatic", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/D/DRANBURN.json b/inst/extdata/OSD/D/DRANBURN.json index ceb137e1b7..50d570dd6a 100644 --- a/inst/extdata/OSD/D/DRANBURN.json +++ b/inst/extdata/OSD/D/DRANBURN.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "AB", "top": 43, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt1", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 71, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -213,12 +213,12 @@ "name": "Bt3", "top": 109, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "BC", "top": 122, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DRIGGS.json b/inst/extdata/OSD/D/DRIGGS.json index e25be47e99..1a53cd1cbf 100644 --- a/inst/extdata/OSD/D/DRIGGS.json +++ b/inst/extdata/OSD/D/DRIGGS.json @@ -193,9 +193,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", @@ -216,9 +216,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/D/DRYBUCK.json b/inst/extdata/OSD/D/DRYBUCK.json index 6ee9c3d79c..70b0b228e7 100644 --- a/inst/extdata/OSD/D/DRYBUCK.json +++ b/inst/extdata/OSD/D/DRYBUCK.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and coarse platy", @@ -121,11 +121,11 @@ "name": "A2", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "AB", "top": 38, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw1", "top": 79, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw2", "top": 109, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/D/DRYWOLF.json b/inst/extdata/OSD/D/DRYWOLF.json index 8999f5741f..7fa1bdc2e6 100644 --- a/inst/extdata/OSD/D/DRYWOLF.json +++ b/inst/extdata/OSD/D/DRYWOLF.json @@ -144,9 +144,9 @@ "name": "C", "top": 46, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 3, diff --git a/inst/extdata/OSD/D/DRY_CREEK.json b/inst/extdata/OSD/D/DRY_CREEK.json index 2a5bcb631c..05b6e22ba6 100644 --- a/inst/extdata/OSD/D/DRY_CREEK.json +++ b/inst/extdata/OSD/D/DRY_CREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,12 +98,12 @@ "name": "BAt", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "strong fine angular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 38, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 66, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DUBAY.json b/inst/extdata/OSD/D/DUBAY.json index f79fbeeef7..46e8a55ae9 100644 --- a/inst/extdata/OSD/D/DUBAY.json +++ b/inst/extdata/OSD/D/DUBAY.json @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DUCKREE.json b/inst/extdata/OSD/D/DUCKREE.json index b4617d0229..978b1ef489 100644 --- a/inst/extdata/OSD/D/DUCKREE.json +++ b/inst/extdata/OSD/D/DUCKREE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -98,12 +98,12 @@ "name": "Bw", "top": 15, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk", "top": 38, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "C1", "top": 71, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "C2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/D/DUGGINS.json b/inst/extdata/OSD/D/DUGGINS.json index 4f7b0691d6..c9a06268f0 100644 --- a/inst/extdata/OSD/D/DUGGINS.json +++ b/inst/extdata/OSD/D/DUGGINS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse angular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium angular blocky", @@ -144,12 +144,12 @@ "name": "C1", "top": 69, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C2", "top": 91, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 7, + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C3", "top": 107, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 7, + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C4", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/D/DUNFORD.json b/inst/extdata/OSD/D/DUNFORD.json index 2876ce1d56..f430c45107 100644 --- a/inst/extdata/OSD/D/DUNFORD.json +++ b/inst/extdata/OSD/D/DUNFORD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DUTCHCANYON.json b/inst/extdata/OSD/D/DUTCHCANYON.json index f7ef638c13..c110b576a8 100644 --- a/inst/extdata/OSD/D/DUTCHCANYON.json +++ b/inst/extdata/OSD/D/DUTCHCANYON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,9 +121,9 @@ "name": "Bk", "top": 33, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 7, "moist_chroma": 2, @@ -144,12 +144,12 @@ "name": "C1", "top": 69, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 8, - "moist_chroma": 1, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C2", "top": 102, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "2.5Y", "moist_value": 8, - "moist_chroma": 1, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C3", "top": 135, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "2.5Y", + "moist_value": 7, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/D/DYRENG.json b/inst/extdata/OSD/D/DYRENG.json index b0e621e46d..40a9b5b08b 100644 --- a/inst/extdata/OSD/D/DYRENG.json +++ b/inst/extdata/OSD/D/DYRENG.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak coarse prismatic", @@ -121,11 +121,11 @@ "name": "C2", "top": 51, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate fine angular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/E/EAGAR.json b/inst/extdata/OSD/E/EAGAR.json index da7d36360e..745bbe473c 100644 --- a/inst/extdata/OSD/E/EAGAR.json +++ b/inst/extdata/OSD/E/EAGAR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine granular", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2C", "top": 76, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/E/EAGLE.json b/inst/extdata/OSD/E/EAGLE.json index 9bfd32d66e..c3936ac806 100644 --- a/inst/extdata/OSD/E/EAGLE.json +++ b/inst/extdata/OSD/E/EAGLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "AC", "top": 8, "bottom": 26, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 26, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/E/EAGLESON.json b/inst/extdata/OSD/E/EAGLESON.json index f0553105b5..78346e7161 100644 --- a/inst/extdata/OSD/E/EAGLESON.json +++ b/inst/extdata/OSD/E/EAGLESON.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine and fine subangular blocky", diff --git a/inst/extdata/OSD/E/ECHARD.json b/inst/extdata/OSD/E/ECHARD.json index 5c11f1a284..dea246c0d7 100644 --- a/inst/extdata/OSD/E/ECHARD.json +++ b/inst/extdata/OSD/E/ECHARD.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 16, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 16, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 54, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 54, "bottom": 67, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "BC", "top": 67, "bottom": 156, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/E/EDNAGREY.json b/inst/extdata/OSD/E/EDNAGREY.json index efe0f54a80..f515efd05d 100644 --- a/inst/extdata/OSD/E/EDNAGREY.json +++ b/inst/extdata/OSD/E/EDNAGREY.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, @@ -98,9 +98,9 @@ "name": "Bk", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/E/ELBBOC.json b/inst/extdata/OSD/E/ELBBOC.json index c7a946508d..775baeaf49 100644 --- a/inst/extdata/OSD/E/ELBBOC.json +++ b/inst/extdata/OSD/E/ELBBOC.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "2C1", "top": 18, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "2C2", "top": 53, "bottom": 115, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "2C3", "top": 115, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/E/ELDER_HOLLOW.json b/inst/extdata/OSD/E/ELDER_HOLLOW.json index d30bafab89..33476c62c5 100644 --- a/inst/extdata/OSD/E/ELDER_HOLLOW.json +++ b/inst/extdata/OSD/E/ELDER_HOLLOW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/E/ELDGIN.json b/inst/extdata/OSD/E/ELDGIN.json index fe5de0a56e..86fcd4cb1f 100644 --- a/inst/extdata/OSD/E/ELDGIN.json +++ b/inst/extdata/OSD/E/ELDGIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thick platy", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 61, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2C", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/E/ELFKIN.json b/inst/extdata/OSD/E/ELFKIN.json index 04eba700a3..64e702bd16 100644 --- a/inst/extdata/OSD/E/ELFKIN.json +++ b/inst/extdata/OSD/E/ELFKIN.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "NA", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine and medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate very fine to coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 58, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "NA", @@ -190,12 +190,12 @@ "name": "Bkq", "top": 79, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "Bkqm1", "top": 91, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "NA", "structure": "massive", "dry_rupture": "NA", @@ -236,11 +236,11 @@ "name": "2Bkqm2", "top": 99, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/E/ELIJAH.json b/inst/extdata/OSD/E/ELIJAH.json index 1b69a149c3..2105f1601f 100644 --- a/inst/extdata/OSD/E/ELIJAH.json +++ b/inst/extdata/OSD/E/ELIJAH.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very thin platy", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine and medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 53, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 64, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -213,12 +213,12 @@ "name": "2Bkqm", "top": 76, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -236,11 +236,11 @@ "name": "2C", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/E/ELIZA.json b/inst/extdata/OSD/E/ELIZA.json index 51197fbbe3..f588b26f38 100644 --- a/inst/extdata/OSD/E/ELIZA.json +++ b/inst/extdata/OSD/E/ELIZA.json @@ -144,9 +144,9 @@ "name": "Cg3", "top": 48, "bottom": 61, - "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_hue": "N", + "dry_value": 6, + "dry_chroma": "NA", "moist_hue": "N", "moist_value": 4, "moist_chroma": "NA", @@ -239,8 +239,8 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 8, - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/E/ELKPEAK.json b/inst/extdata/OSD/E/ELKPEAK.json index 421a3c53d0..de42476aef 100644 --- a/inst/extdata/OSD/E/ELKPEAK.json +++ b/inst/extdata/OSD/E/ELKPEAK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 22, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 22, "bottom": 37, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 37, "bottom": 63, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 63, "bottom": 87, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "BC", "top": 87, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium angular blocky", diff --git a/inst/extdata/OSD/E/ELLETT.json b/inst/extdata/OSD/E/ELLETT.json index 4db3642b3c..206b056343 100644 --- a/inst/extdata/OSD/E/ELLETT.json +++ b/inst/extdata/OSD/E/ELLETT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/E/ELLIJAY.json b/inst/extdata/OSD/E/ELLIJAY.json index 6aebd6ec73..49d794f020 100644 --- a/inst/extdata/OSD/E/ELLIJAY.json +++ b/inst/extdata/OSD/E/ELLIJAY.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10R", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "10R", "moist_value": 3, "moist_chroma": 4, diff --git a/inst/extdata/OSD/E/ELLIS.json b/inst/extdata/OSD/E/ELLIS.json index 93013f3578..5ae06baf75 100644 --- a/inst/extdata/OSD/E/ELLIS.json +++ b/inst/extdata/OSD/E/ELLIS.json @@ -98,9 +98,9 @@ "name": "Bw", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5Y", "moist_value": 4, "moist_chroma": 3, @@ -144,9 +144,9 @@ "name": "Bss2", "top": 58, "bottom": 76, - "dry_hue": "10YR", + "dry_hue": "N", "dry_value": 6, - "dry_chroma": 6, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", @@ -190,9 +190,9 @@ "name": "C2", "top": 91, "bottom": 168, - "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 8, + "dry_hue": "N", + "dry_value": 6, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/E/ELMO.json b/inst/extdata/OSD/E/ELMO.json index 5885e65dda..842ccb18e2 100644 --- a/inst/extdata/OSD/E/ELMO.json +++ b/inst/extdata/OSD/E/ELMO.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate coarse platy", "dry_rupture": "hard", @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/E/ELVIRA.json b/inst/extdata/OSD/E/ELVIRA.json index fe76c59209..0152b5e412 100644 --- a/inst/extdata/OSD/E/ELVIRA.json +++ b/inst/extdata/OSD/E/ELVIRA.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak medium angular and subangular blocky", "dry_rupture": "NA", @@ -98,9 +98,9 @@ "name": "A", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "N", "moist_value": 2, "moist_chroma": 0, diff --git a/inst/extdata/OSD/E/EMMERT.json b/inst/extdata/OSD/E/EMMERT.json index c687d485b7..61dff2688d 100644 --- a/inst/extdata/OSD/E/EMMERT.json +++ b/inst/extdata/OSD/E/EMMERT.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/E/EPHRAIM.json b/inst/extdata/OSD/E/EPHRAIM.json index 88b4b9246c..d231eeab6c 100644 --- a/inst/extdata/OSD/E/EPHRAIM.json +++ b/inst/extdata/OSD/E/EPHRAIM.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A12", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "A13b", "top": 76, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak medium prismatic", @@ -190,11 +190,11 @@ "name": "C3", "top": 94, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "A14b", "top": 104, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -236,12 +236,12 @@ "name": "C4", "top": 130, "bottom": 1554, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/E/EPOKE.json b/inst/extdata/OSD/E/EPOKE.json index 813970b5d3..9bdaf990a8 100644 --- a/inst/extdata/OSD/E/EPOKE.json +++ b/inst/extdata/OSD/E/EPOKE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/E/ESPLIN.json b/inst/extdata/OSD/E/ESPLIN.json index dec80ec1a9..a31777fadb 100644 --- a/inst/extdata/OSD/E/ESPLIN.json +++ b/inst/extdata/OSD/E/ESPLIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "moderate very fine granular", "dry_rupture": "hard", @@ -98,9 +98,9 @@ "name": "Bt", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 3, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 3, "moist_chroma": 6, @@ -121,9 +121,9 @@ "name": "Btk", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 6, @@ -144,12 +144,12 @@ "name": "Bk", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/E/EVANSHAM.json b/inst/extdata/OSD/E/EVANSHAM.json index 63c99c1b84..ea75ec9724 100644 --- a/inst/extdata/OSD/E/EVANSHAM.json +++ b/inst/extdata/OSD/E/EVANSHAM.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "N", + "dry_value": 4, + "dry_chroma": 0, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "silty clay loam", "structure": "strong very fine and fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 3, + "moist_chroma": 0, "texture_class": "silty clay loam", "structure": "moderate coarse prismatic", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/E/EVERRY.json b/inst/extdata/OSD/E/EVERRY.json index 17427c4eca..cee40de293 100644 --- a/inst/extdata/OSD/E/EVERRY.json +++ b/inst/extdata/OSD/E/EVERRY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C1", "top": 38, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C2", "top": 71, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/E/EYAK.json b/inst/extdata/OSD/E/EYAK.json index c51d3ca42a..f920c08387 100644 --- a/inst/extdata/OSD/E/EYAK.json +++ b/inst/extdata/OSD/E/EYAK.json @@ -147,8 +147,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FAA.json b/inst/extdata/OSD/F/FAA.json index 56a586ff49..efd7a760af 100644 --- a/inst/extdata/OSD/F/FAA.json +++ b/inst/extdata/OSD/F/FAA.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 2.5, + "moist_chroma": 1, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", "dry_rupture": "NA", @@ -149,7 +149,7 @@ "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/F/FACTORY.json b/inst/extdata/OSD/F/FACTORY.json index 21dbb76c09..db3a9a65c2 100644 --- a/inst/extdata/OSD/F/FACTORY.json +++ b/inst/extdata/OSD/F/FACTORY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate medium prismatic", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 38, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 56, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkm", "top": 86, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Ck", "top": 142, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FAGES.json b/inst/extdata/OSD/F/FAGES.json index d8738cf0f5..98f94de12e 100644 --- a/inst/extdata/OSD/F/FAGES.json +++ b/inst/extdata/OSD/F/FAGES.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FAIM.json b/inst/extdata/OSD/F/FAIM.json index 36e2e77910..5d75d18994 100644 --- a/inst/extdata/OSD/F/FAIM.json +++ b/inst/extdata/OSD/F/FAIM.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 36, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 84, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "2C", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FAIRYLAWN.json b/inst/extdata/OSD/F/FAIRYLAWN.json index 3699878d5b..cb24ed5de7 100644 --- a/inst/extdata/OSD/F/FAIRYLAWN.json +++ b/inst/extdata/OSD/F/FAIRYLAWN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bkqm", "top": 64, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "strong coarse platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FALLSAM.json b/inst/extdata/OSD/F/FALLSAM.json index 69dc4d7350..3c447a5d09 100644 --- a/inst/extdata/OSD/F/FALLSAM.json +++ b/inst/extdata/OSD/F/FALLSAM.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky and blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 89, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine granular", diff --git a/inst/extdata/OSD/F/FAVORETTA.json b/inst/extdata/OSD/F/FAVORETTA.json index bc5fd8f2f0..314fb94655 100644 --- a/inst/extdata/OSD/F/FAVORETTA.json +++ b/inst/extdata/OSD/F/FAVORETTA.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 3, + "moist_chroma": 0, "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "clay", "structure": "strong coarse angular blocky", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": 0, "texture_class": "clay", "structure": "strong coarse subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/F/FEEDER.json b/inst/extdata/OSD/F/FEEDER.json index 154adc75da..487b4ed836 100644 --- a/inst/extdata/OSD/F/FEEDER.json +++ b/inst/extdata/OSD/F/FEEDER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 66, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 142, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FERA.json b/inst/extdata/OSD/F/FERA.json index 490f6be211..cb9fc7822f 100644 --- a/inst/extdata/OSD/F/FERA.json +++ b/inst/extdata/OSD/F/FERA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium and fine angular blocky", @@ -144,9 +144,9 @@ "name": "Bt2", "top": 46, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 5, "moist_chroma": 4, diff --git a/inst/extdata/OSD/F/FERRON.json b/inst/extdata/OSD/F/FERRON.json index cfa285e359..32d4f3e771 100644 --- a/inst/extdata/OSD/F/FERRON.json +++ b/inst/extdata/OSD/F/FERRON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Cgy", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "weak medium granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Cg", "top": 41, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Ag", "top": 3, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak medium granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FESTUS.json b/inst/extdata/OSD/F/FESTUS.json index fe5af72a5b..5784a918be 100644 --- a/inst/extdata/OSD/F/FESTUS.json +++ b/inst/extdata/OSD/F/FESTUS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 33, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 74, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C3", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FINDON.json b/inst/extdata/OSD/F/FINDON.json index 3a554ea0c9..51e40dfa8b 100644 --- a/inst/extdata/OSD/F/FINDON.json +++ b/inst/extdata/OSD/F/FINDON.json @@ -98,12 +98,12 @@ "name": "A", "top": 1, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Btk1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btk2", "top": 25, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "NA", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "BCk", "top": 69, "bottom": 90, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Cr", "top": 90, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", - "moist_value": 4, - "moist_chroma": 8, + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 8, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/F/FIRMAGE.json b/inst/extdata/OSD/F/FIRMAGE.json index 00ca1f1ad6..0a9941f11d 100644 --- a/inst/extdata/OSD/F/FIRMAGE.json +++ b/inst/extdata/OSD/F/FIRMAGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 20, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FISHAVEN.json b/inst/extdata/OSD/F/FISHAVEN.json index f5c3309d6a..716b4f5f2c 100644 --- a/inst/extdata/OSD/F/FISHAVEN.json +++ b/inst/extdata/OSD/F/FISHAVEN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "strong very fine and fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "BA", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "C", "top": 56, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FITZGERALD.json b/inst/extdata/OSD/F/FITZGERALD.json index 63cde30aea..cc2b28a6cf 100644 --- a/inst/extdata/OSD/F/FITZGERALD.json +++ b/inst/extdata/OSD/F/FITZGERALD.json @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse granular", @@ -144,12 +144,12 @@ "name": "E", "top": 28, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "loose", @@ -167,12 +167,12 @@ "name": "Bt/E", "top": 71, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak coarse parting to fine blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt", "top": 119, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/F/FLANNERY.json b/inst/extdata/OSD/F/FLANNERY.json index 7ea5f99632..b6ff4d9078 100644 --- a/inst/extdata/OSD/F/FLANNERY.json +++ b/inst/extdata/OSD/F/FLANNERY.json @@ -98,12 +98,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "2Bw3", "top": 43, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak very fine and fine subangular blocky", @@ -190,12 +190,12 @@ "name": "2Bw4", "top": 56, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "2C1", "top": 84, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "2C2", "top": 117, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "hard", @@ -259,12 +259,12 @@ "name": "2Crt", "top": 130, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/F/FLATNOSE.json b/inst/extdata/OSD/F/FLATNOSE.json index 99afad6dff..cb0df8c384 100644 --- a/inst/extdata/OSD/F/FLATNOSE.json +++ b/inst/extdata/OSD/F/FLATNOSE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "C2", "top": 25, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C3", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 81, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C5", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/F/FLEMINGTON.json b/inst/extdata/OSD/F/FLEMINGTON.json index 483c9bf242..c454f38897 100644 --- a/inst/extdata/OSD/F/FLEMINGTON.json +++ b/inst/extdata/OSD/F/FLEMINGTON.json @@ -78,8 +78,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 3, "moist_chroma": "NA", "texture_class": "loamy sand", "structure": "moderate medium granular", @@ -101,8 +101,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 5, "moist_chroma": "NA", "texture_class": "loamy sand", "structure": "weak medium granular", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate medium subangular blocky structure; firm, sticky and plastic; hard; thin distinct clay films on faces of peds; few slickensides along", "dry_rupture": "hard", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "7.5YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate medium angular and subangular blocky", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": "NA", "texture_class": "clay", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/F/FLOFEATHER.json b/inst/extdata/OSD/F/FLOFEATHER.json index 62884fecf1..05773e3c1b 100644 --- a/inst/extdata/OSD/F/FLOFEATHER.json +++ b/inst/extdata/OSD/F/FLOFEATHER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "sandy loam", "structure": "weak fine and medium subangular", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 56, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 76, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 104, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FLYAT.json b/inst/extdata/OSD/F/FLYAT.json index ce4233bcdc..a478f31bb0 100644 --- a/inst/extdata/OSD/F/FLYAT.json +++ b/inst/extdata/OSD/F/FLYAT.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FONTREEN.json b/inst/extdata/OSD/F/FONTREEN.json index e386a1b884..6188fe9c2d 100644 --- a/inst/extdata/OSD/F/FONTREEN.json +++ b/inst/extdata/OSD/F/FONTREEN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Ak1", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thick platy", @@ -121,12 +121,12 @@ "name": "Ak2", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 38, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 74, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Bk4", "top": 112, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C", "top": 147, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FORSEY.json b/inst/extdata/OSD/F/FORSEY.json index d0bf36c7cb..1a2e38423d 100644 --- a/inst/extdata/OSD/F/FORSEY.json +++ b/inst/extdata/OSD/F/FORSEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 58, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FORTBOIS.json b/inst/extdata/OSD/F/FORTBOIS.json index 29f35af3ba..b073b29aca 100644 --- a/inst/extdata/OSD/F/FORTBOIS.json +++ b/inst/extdata/OSD/F/FORTBOIS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "BC", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 43, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/F/FOSSILON.json b/inst/extdata/OSD/F/FOSSILON.json index 6289121edc..c85559f0d2 100644 --- a/inst/extdata/OSD/F/FOSSILON.json +++ b/inst/extdata/OSD/F/FOSSILON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "AC", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate very fine angular blocky", diff --git a/inst/extdata/OSD/F/FOURME.json b/inst/extdata/OSD/F/FOURME.json index a12d44339d..2fa1beeea2 100644 --- a/inst/extdata/OSD/F/FOURME.json +++ b/inst/extdata/OSD/F/FOURME.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium granular", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 13, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sand", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/F/FOXLANE.json b/inst/extdata/OSD/F/FOXLANE.json index e69e837a5b..32f10c3bd3 100644 --- a/inst/extdata/OSD/F/FOXLANE.json +++ b/inst/extdata/OSD/F/FOXLANE.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate coarse platy", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -144,11 +144,11 @@ "name": "AC", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "2C1", "top": 33, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C2", "top": 119, "bottom": 152, - "dry_hue": "7.5YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/F/FOXOL.json b/inst/extdata/OSD/F/FOXOL.json index b0110e3a9a..1d14ba4f41 100644 --- a/inst/extdata/OSD/F/FOXOL.json +++ b/inst/extdata/OSD/F/FOXOL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FRANDSEN.json b/inst/extdata/OSD/F/FRANDSEN.json index a94d15ab60..b7f3d47271 100644 --- a/inst/extdata/OSD/F/FRANDSEN.json +++ b/inst/extdata/OSD/F/FRANDSEN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 53, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 94, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FRAZERTON.json b/inst/extdata/OSD/F/FRAZERTON.json index 7e236ee005..3d5f835444 100644 --- a/inst/extdata/OSD/F/FRAZERTON.json +++ b/inst/extdata/OSD/F/FRAZERTON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FREECE.json b/inst/extdata/OSD/F/FREECE.json index 87e6be948f..e94dc3c905 100644 --- a/inst/extdata/OSD/F/FREECE.json +++ b/inst/extdata/OSD/F/FREECE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "clay", "structure": "strong coarse angular blocky", @@ -121,12 +121,12 @@ "name": "C2", "top": 41, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay", "structure": "weak medium angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FREEDOM.json b/inst/extdata/OSD/F/FREEDOM.json index 75e8c90c91..33047d6412 100644 --- a/inst/extdata/OSD/F/FREEDOM.json +++ b/inst/extdata/OSD/F/FREEDOM.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine prismatic", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 46, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/F/FRENCHJOHN.json b/inst/extdata/OSD/F/FRENCHJOHN.json index f0a1d5be60..d1f0e4874b 100644 --- a/inst/extdata/OSD/F/FRENCHJOHN.json +++ b/inst/extdata/OSD/F/FRENCHJOHN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky;", @@ -121,12 +121,12 @@ "name": "Bt", "top": 28, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btq", "top": 56, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 74, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FRENCHOLLOW.json b/inst/extdata/OSD/F/FRENCHOLLOW.json index da99688a57..4368f147d3 100644 --- a/inst/extdata/OSD/F/FRENCHOLLOW.json +++ b/inst/extdata/OSD/F/FRENCHOLLOW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong very fine and fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate coarse prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "BA", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate coarse prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btss1", "top": 51, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium and coarse prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Btss2", "top": 74, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium and coarse prismatic", @@ -190,11 +190,11 @@ "name": "Btkss", "top": 132, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate coarse prismatic", diff --git a/inst/extdata/OSD/F/FRESHWATER.json b/inst/extdata/OSD/F/FRESHWATER.json index 462ce8641b..3cb5120eff 100644 --- a/inst/extdata/OSD/F/FRESHWATER.json +++ b/inst/extdata/OSD/F/FRESHWATER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine angular blocky", @@ -144,12 +144,12 @@ "name": "Bkqm", "top": 46, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "strong thick platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FRIGATE.json b/inst/extdata/OSD/F/FRIGATE.json index e2c4b7bf47..ca300344d1 100644 --- a/inst/extdata/OSD/F/FRIGATE.json +++ b/inst/extdata/OSD/F/FRIGATE.json @@ -193,9 +193,9 @@ "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/F/FRYINGPAN.json b/inst/extdata/OSD/F/FRYINGPAN.json index 48d793eada..2b98c0b218 100644 --- a/inst/extdata/OSD/F/FRYINGPAN.json +++ b/inst/extdata/OSD/F/FRYINGPAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin and medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btq", "top": 41, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium angular blocky", diff --git a/inst/extdata/OSD/F/FULCRUM.json b/inst/extdata/OSD/F/FULCRUM.json index 3c9d55b77e..fc9a45f455 100644 --- a/inst/extdata/OSD/F/FULCRUM.json +++ b/inst/extdata/OSD/F/FULCRUM.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bw", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/F/FULWIDER.json b/inst/extdata/OSD/F/FULWIDER.json index 96c3ab46cd..ea734b6327 100644 --- a/inst/extdata/OSD/F/FULWIDER.json +++ b/inst/extdata/OSD/F/FULWIDER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "strong medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bkq", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "2Bkqm", "top": 48, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GAIB.json b/inst/extdata/OSD/G/GAIB.json index 27065fb0b6..1b4e827912 100644 --- a/inst/extdata/OSD/G/GAIB.json +++ b/inst/extdata/OSD/G/GAIB.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/G/GAPPMAYER.json b/inst/extdata/OSD/G/GAPPMAYER.json index e7ed294c0d..cb48035ca1 100644 --- a/inst/extdata/OSD/G/GAPPMAYER.json +++ b/inst/extdata/OSD/G/GAPPMAYER.json @@ -98,11 +98,11 @@ "name": "A11", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine granular", @@ -121,11 +121,11 @@ "name": "A12", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine granular", @@ -144,11 +144,11 @@ "name": "A21", "top": "NA", "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -167,11 +167,11 @@ "name": "A22", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "weak very fine subangular blocky", @@ -190,11 +190,11 @@ "name": "B1", "top": 76, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -213,11 +213,11 @@ "name": "B2t", "top": 112, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -236,12 +236,12 @@ "name": "B3", "top": 142, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -259,11 +259,11 @@ "name": "Clca", "top": 160, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/G/GARIPER.json b/inst/extdata/OSD/G/GARIPER.json index 1748d53ff0..fc0674505c 100644 --- a/inst/extdata/OSD/G/GARIPER.json +++ b/inst/extdata/OSD/G/GARIPER.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btq", "top": 46, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "2Bkq", "top": 56, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2Bkqm", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/G/GARSOX.json b/inst/extdata/OSD/G/GARSOX.json index 29511d4a9d..f75d4a237f 100644 --- a/inst/extdata/OSD/G/GARSOX.json +++ b/inst/extdata/OSD/G/GARSOX.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Btn", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "clay loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Btkn", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse prismatic", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 64, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Bk4", "top": 91, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "Bkq", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/G/GARVAL.json b/inst/extdata/OSD/G/GARVAL.json index b61143a1e8..9c3a25d6bc 100644 --- a/inst/extdata/OSD/G/GARVAL.json +++ b/inst/extdata/OSD/G/GARVAL.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak fine and medium granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "AC", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "weak fine granular", @@ -167,11 +167,11 @@ "name": "C", "top": 48, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GARYWASH.json b/inst/extdata/OSD/G/GARYWASH.json index 2dae46e9fa..58d186f719 100644 --- a/inst/extdata/OSD/G/GARYWASH.json +++ b/inst/extdata/OSD/G/GARYWASH.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 2, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, @@ -98,8 +98,8 @@ "name": "Btkqy", "top": 2, "bottom": 13, - "dry_hue": "7.5YR", - "dry_value": 5, + "dry_hue": "10YR", + "dry_value": 6, "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, @@ -122,8 +122,8 @@ "top": 13, "bottom": 55, "dry_hue": "10YR", - "dry_value": 8, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, @@ -145,8 +145,8 @@ "top": 55, "bottom": 117, "dry_hue": "10YR", - "dry_value": 8, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 4, @@ -168,8 +168,8 @@ "top": 117, "bottom": 152, "dry_hue": "10YR", - "dry_value": 8, - "dry_chroma": 1, + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/G/GENOLA.json b/inst/extdata/OSD/G/GENOLA.json index 54c2333d40..ffc8039fb9 100644 --- a/inst/extdata/OSD/G/GENOLA.json +++ b/inst/extdata/OSD/G/GENOLA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 15, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "C2", "top": 38, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "C3", "top": 74, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/G/GERST.json b/inst/extdata/OSD/G/GERST.json index 593042dac8..62bb62b293 100644 --- a/inst/extdata/OSD/G/GERST.json +++ b/inst/extdata/OSD/G/GERST.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very thin and thin platy geogenic", @@ -121,11 +121,11 @@ "name": "C2", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thick and medium platy geogenic", diff --git a/inst/extdata/OSD/G/GIBSONCREEK.json b/inst/extdata/OSD/G/GIBSONCREEK.json index 807802771e..a2d913c406 100644 --- a/inst/extdata/OSD/G/GIBSONCREEK.json +++ b/inst/extdata/OSD/G/GIBSONCREEK.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sand", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GILSTON.json b/inst/extdata/OSD/G/GILSTON.json index ae25c163eb..2d84ea0709 100644 --- a/inst/extdata/OSD/G/GILSTON.json +++ b/inst/extdata/OSD/G/GILSTON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 53, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkn", "top": 79, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bkny", "top": 132, "bottom": 173, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GIMLETT.json b/inst/extdata/OSD/G/GIMLETT.json index 812c50d9b9..771da8f149 100644 --- a/inst/extdata/OSD/G/GIMLETT.json +++ b/inst/extdata/OSD/G/GIMLETT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "AB", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "2Bw2", "top": 69, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "2Bw3", "top": 84, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "2B", "top": 97, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sand", "structure": "NA", "dry_rupture": "NA", @@ -236,12 +236,12 @@ "name": "2Bq", "top": 124, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/G/GIMMI.json b/inst/extdata/OSD/G/GIMMI.json index 742499cb3b..dd905befb8 100644 --- a/inst/extdata/OSD/G/GIMMI.json +++ b/inst/extdata/OSD/G/GIMMI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin and medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine and medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine and medium prismatic", @@ -190,11 +190,11 @@ "name": "2CBt", "top": 58, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/G/GLENCOE.json b/inst/extdata/OSD/G/GLENCOE.json index 4993c30140..d1079f108f 100644 --- a/inst/extdata/OSD/G/GLENCOE.json +++ b/inst/extdata/OSD/G/GLENCOE.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 3, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/G/GLENWOOD.json b/inst/extdata/OSD/G/GLENWOOD.json index fb5e9d92aa..307bb7ceb1 100644 --- a/inst/extdata/OSD/G/GLENWOOD.json +++ b/inst/extdata/OSD/G/GLENWOOD.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "2C2", "top": 48, "bottom": 73, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GOBINE.json b/inst/extdata/OSD/G/GOBINE.json index 0cf854cd5a..5184fe8b06 100644 --- a/inst/extdata/OSD/G/GOBINE.json +++ b/inst/extdata/OSD/G/GOBINE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw", "top": 18, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 84, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "BCk", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GOBLIN.json b/inst/extdata/OSD/G/GOBLIN.json index 6be1847d59..e61bed6379 100644 --- a/inst/extdata/OSD/G/GOBLIN.json +++ b/inst/extdata/OSD/G/GOBLIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "By", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "NA", diff --git a/inst/extdata/OSD/G/GOLDEAGLE.json b/inst/extdata/OSD/G/GOLDEAGLE.json index e70c6f8d1a..cbc25fdb03 100644 --- a/inst/extdata/OSD/G/GOLDEAGLE.json +++ b/inst/extdata/OSD/G/GOLDEAGLE.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "strong thick platy", "dry_rupture": "hard", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong coarse prismatic", "dry_rupture": "hard", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong coarse subangular blocky", "dry_rupture": "hard", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong coarse subangular blocky", "dry_rupture": "soft", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 7, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GOMPERS.json b/inst/extdata/OSD/G/GOMPERS.json index 0265e71a4e..4811654b1c 100644 --- a/inst/extdata/OSD/G/GOMPERS.json +++ b/inst/extdata/OSD/G/GOMPERS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/G/GOODING.json b/inst/extdata/OSD/G/GOODING.json index 1bd6bac4c1..e2bb600718 100644 --- a/inst/extdata/OSD/G/GOODING.json +++ b/inst/extdata/OSD/G/GOODING.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium and coarse platy", @@ -121,11 +121,11 @@ "name": "E", "top": 18, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium angular blocky", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium and coarse angular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 58, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium and coarse angular blocky", @@ -213,11 +213,11 @@ "name": "Btk", "top": 86, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium and coarse angular blocky", @@ -236,12 +236,12 @@ "name": "Bkq", "top": 112, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate thin and medium platy", "dry_rupture": "hard", @@ -259,12 +259,12 @@ "name": "Bkqm", "top": 124, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/G/GOOSE_CREEK.json b/inst/extdata/OSD/G/GOOSE_CREEK.json index fb7423578d..86d6d7b6bc 100644 --- a/inst/extdata/OSD/G/GOOSE_CREEK.json +++ b/inst/extdata/OSD/G/GOOSE_CREEK.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Ab", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2C", "top": 86, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine and moderate subangular blocky", @@ -190,11 +190,11 @@ "name": "3C", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/G/GORDONPOINT.json b/inst/extdata/OSD/G/GORDONPOINT.json index f8135ac956..a3c7bb257c 100644 --- a/inst/extdata/OSD/G/GORDONPOINT.json +++ b/inst/extdata/OSD/G/GORDONPOINT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 46, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong coarse blocky", diff --git a/inst/extdata/OSD/G/GRANDMOUND.json b/inst/extdata/OSD/G/GRANDMOUND.json index e60d60f674..cecaa8d6b6 100644 --- a/inst/extdata/OSD/G/GRANDMOUND.json +++ b/inst/extdata/OSD/G/GRANDMOUND.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 2, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/G/GRANDVIEW.json b/inst/extdata/OSD/G/GRANDVIEW.json index 1e49d0a982..154dea300c 100644 --- a/inst/extdata/OSD/G/GRANDVIEW.json +++ b/inst/extdata/OSD/G/GRANDVIEW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong coarse angular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bz", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate coarse subangular blocky", diff --git a/inst/extdata/OSD/G/GRAVEYA.json b/inst/extdata/OSD/G/GRAVEYA.json index d6cf2bca5e..3385097185 100644 --- a/inst/extdata/OSD/G/GRAVEYA.json +++ b/inst/extdata/OSD/G/GRAVEYA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bkq1", "top": 56, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2Bkq2", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GRAYLOCK.json b/inst/extdata/OSD/G/GRAYLOCK.json index a1909310cb..61820ce596 100644 --- a/inst/extdata/OSD/G/GRAYLOCK.json +++ b/inst/extdata/OSD/G/GRAYLOCK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 15, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C1", "top": 53, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 107, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 1, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GREENGULCH.json b/inst/extdata/OSD/G/GREENGULCH.json index 35c789797b..b221bbe4e6 100644 --- a/inst/extdata/OSD/G/GREENGULCH.json +++ b/inst/extdata/OSD/G/GREENGULCH.json @@ -167,9 +167,9 @@ "name": "Bt3", "top": 51, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/G/GREEN_RIVER.json b/inst/extdata/OSD/G/GREEN_RIVER.json index 1c2f4ebabb..18c64616b2 100644 --- a/inst/extdata/OSD/G/GREEN_RIVER.json +++ b/inst/extdata/OSD/G/GREEN_RIVER.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 28, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 38, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 64, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C5", "top": 97, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C6", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GRIMESCREEK.json b/inst/extdata/OSD/G/GRIMESCREEK.json index f8fb06544e..477ee723ff 100644 --- a/inst/extdata/OSD/G/GRIMESCREEK.json +++ b/inst/extdata/OSD/G/GRIMESCREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "AC", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Ab1", "top": 53, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Ab2", "top": 58, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "ACb", "top": 91, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C", "top": 147, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GRIMM.json b/inst/extdata/OSD/G/GRIMM.json index 77fe266672..1bc45dc802 100644 --- a/inst/extdata/OSD/G/GRIMM.json +++ b/inst/extdata/OSD/G/GRIMM.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A12", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 1, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C2", "top": 36, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 1, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/G/GUBEN.json b/inst/extdata/OSD/G/GUBEN.json index 70099e3eef..971ff2e031 100644 --- a/inst/extdata/OSD/G/GUBEN.json +++ b/inst/extdata/OSD/G/GUBEN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "ABt", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bt", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "Bk1", "top": 56, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "loose", @@ -213,12 +213,12 @@ "name": "Bk2", "top": 102, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -236,11 +236,11 @@ "name": "C3", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GUIJARRAL.json b/inst/extdata/OSD/G/GUIJARRAL.json index 19461a40a8..88998c5718 100644 --- a/inst/extdata/OSD/G/GUIJARRAL.json +++ b/inst/extdata/OSD/G/GUIJARRAL.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate coarse and fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 30, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "Bk3", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/G/GUNNEL.json b/inst/extdata/OSD/G/GUNNEL.json index 937352f3f6..43a7c9a713 100644 --- a/inst/extdata/OSD/G/GUNNEL.json +++ b/inst/extdata/OSD/G/GUNNEL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very fine and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "NA", @@ -144,11 +144,11 @@ "name": "Bkq", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2C", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/G/GUSTIN.json b/inst/extdata/OSD/G/GUSTIN.json index 98f876937e..29af7cfef0 100644 --- a/inst/extdata/OSD/G/GUSTIN.json +++ b/inst/extdata/OSD/G/GUSTIN.json @@ -98,9 +98,9 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 3, diff --git a/inst/extdata/OSD/H/HADDEN.json b/inst/extdata/OSD/H/HADDEN.json index ad409601a3..528b8e4cce 100644 --- a/inst/extdata/OSD/H/HADDEN.json +++ b/inst/extdata/OSD/H/HADDEN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Btn", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "strong fine granular", @@ -121,12 +121,12 @@ "name": "Btkn", "top": 13, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btkny", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sand", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bkny", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HADES.json b/inst/extdata/OSD/H/HADES.json index a77dfab82b..34db55fe12 100644 --- a/inst/extdata/OSD/H/HADES.json +++ b/inst/extdata/OSD/H/HADES.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 97, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate coarse angular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 145, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate coarse angular blocky", diff --git a/inst/extdata/OSD/H/HAKKER.json b/inst/extdata/OSD/H/HAKKER.json index e5d6f337b0..5f1eb9953f 100644 --- a/inst/extdata/OSD/H/HAKKER.json +++ b/inst/extdata/OSD/H/HAKKER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt", "top": 64, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/H/HALFCIRCLE.json b/inst/extdata/OSD/H/HALFCIRCLE.json index e25669132d..45a1e46cb9 100644 --- a/inst/extdata/OSD/H/HALFCIRCLE.json +++ b/inst/extdata/OSD/H/HALFCIRCLE.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -190,12 +190,12 @@ "name": "C", "top": 56, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HANGDO.json b/inst/extdata/OSD/H/HANGDO.json index 6e4bd17542..5e7a4d0c08 100644 --- a/inst/extdata/OSD/H/HANGDO.json +++ b/inst/extdata/OSD/H/HANGDO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "5YR", "moist_value": 3, - "moist_chroma": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "weak coarse subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium prismatic", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 51, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium prismatic", @@ -144,9 +144,9 @@ "name": "2Btb", "top": 89, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 5, "moist_chroma": 4, @@ -167,11 +167,11 @@ "name": "2BCb", "top": 112, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HANN.json b/inst/extdata/OSD/H/HANN.json index 33020bbe42..4eb7dc7f6c 100644 --- a/inst/extdata/OSD/H/HANN.json +++ b/inst/extdata/OSD/H/HANN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "strong medium platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium and coarse prismatic", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 33, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate coarse prismatic", @@ -167,11 +167,11 @@ "name": "Bt4", "top": 64, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt5", "top": 112, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/H/HANS.json b/inst/extdata/OSD/H/HANS.json index 21e3d9f4d4..fbfd48373b 100644 --- a/inst/extdata/OSD/H/HANS.json +++ b/inst/extdata/OSD/H/HANS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine and very fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Ck", "top": 53, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C1", "top": 86, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2", "top": 107, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -213,12 +213,12 @@ "name": "C", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HARDING.json b/inst/extdata/OSD/H/HARDING.json index 37390c250a..e3ee1eb48f 100644 --- a/inst/extdata/OSD/H/HARDING.json +++ b/inst/extdata/OSD/H/HARDING.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Btkn1", "top": 25, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong coarse prismatic", @@ -144,11 +144,11 @@ "name": "Btkn2", "top": 58, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate coarse prismatic", @@ -167,12 +167,12 @@ "name": "Btky", "top": 76, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "strong coarse angular blocky rock", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "C", "top": 137, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "NA", diff --git a/inst/extdata/OSD/H/HARDISTER.json b/inst/extdata/OSD/H/HARDISTER.json index 0aab4adec5..7c51a57cf1 100644 --- a/inst/extdata/OSD/H/HARDISTER.json +++ b/inst/extdata/OSD/H/HARDISTER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "AC1", "top": 28, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "AC2", "top": 58, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C1", "top": 84, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2", "top": 114, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HARDTRIGGER.json b/inst/extdata/OSD/H/HARDTRIGGER.json index 3ff7a0f7e3..e83a9e4751 100644 --- a/inst/extdata/OSD/H/HARDTRIGGER.json +++ b/inst/extdata/OSD/H/HARDTRIGGER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 38, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk", "top": 51, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkq", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HARKNESS.json b/inst/extdata/OSD/H/HARKNESS.json index 85ceced755..1f9d86f73b 100644 --- a/inst/extdata/OSD/H/HARKNESS.json +++ b/inst/extdata/OSD/H/HARKNESS.json @@ -121,11 +121,11 @@ "name": "A1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "A2", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "E", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "B/E", "top": 41, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bt1", "top": 58, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "strong coarse and medium angular blocky", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "Bt2", "top": 91, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "strong coarse and medium angular blocky", diff --git a/inst/extdata/OSD/H/HARPOLE.json b/inst/extdata/OSD/H/HARPOLE.json index e47861d692..545ae85e69 100644 --- a/inst/extdata/OSD/H/HARPOLE.json +++ b/inst/extdata/OSD/H/HARPOLE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 38, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 79, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -190,12 +190,12 @@ "name": "C", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/H/HARRISBURG.json b/inst/extdata/OSD/H/HARRISBURG.json index bcbac66c37..e7a1518f8a 100644 --- a/inst/extdata/OSD/H/HARRISBURG.json +++ b/inst/extdata/OSD/H/HARRISBURG.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 5, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 66, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/H/HAT.json b/inst/extdata/OSD/H/HAT.json index 844869a625..1afc11b3af 100644 --- a/inst/extdata/OSD/H/HAT.json +++ b/inst/extdata/OSD/H/HAT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bq", "top": 48, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HATCH.json b/inst/extdata/OSD/H/HATCH.json index e6b2e0cad5..035c4d2e45 100644 --- a/inst/extdata/OSD/H/HATCH.json +++ b/inst/extdata/OSD/H/HATCH.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "clay loam", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Btk", "top": 23, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate coarse angular blocky", @@ -144,12 +144,12 @@ "name": "Ck", "top": 58, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 8, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HAW.json b/inst/extdata/OSD/H/HAW.json index 0844c96555..18ba31ee0f 100644 --- a/inst/extdata/OSD/H/HAW.json +++ b/inst/extdata/OSD/H/HAW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine and fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium prismatic", @@ -121,12 +121,12 @@ "name": "AB", "top": 30, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine prismatic", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 64, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse prismatic", @@ -213,11 +213,11 @@ "name": "Bk1", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "Bk2", "top": 99, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", @@ -259,11 +259,11 @@ "name": "C", "top": 124, "bottom": 190, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HAWKSY.json b/inst/extdata/OSD/H/HAWKSY.json index 8c24bdf9ae..39006fde4f 100644 --- a/inst/extdata/OSD/H/HAWKSY.json +++ b/inst/extdata/OSD/H/HAWKSY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium prismatic", diff --git a/inst/extdata/OSD/H/HEGLAR.json b/inst/extdata/OSD/H/HEGLAR.json index 1399cd7041..61e0b945a1 100644 --- a/inst/extdata/OSD/H/HEGLAR.json +++ b/inst/extdata/OSD/H/HEGLAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very coarse prismatic", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thick and very thick platy", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 69, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Bk4", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HELLAKE.json b/inst/extdata/OSD/H/HELLAKE.json index 00a474b512..1e1a61aced 100644 --- a/inst/extdata/OSD/H/HELLAKE.json +++ b/inst/extdata/OSD/H/HELLAKE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 56, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 91, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2BC", "top": 109, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2C1", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2C2", "top": 152, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HENDRICKS.json b/inst/extdata/OSD/H/HENDRICKS.json index 22e83f02a8..9075d98a91 100644 --- a/inst/extdata/OSD/H/HENDRICKS.json +++ b/inst/extdata/OSD/H/HENDRICKS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": "NA", "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 13, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 38, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 69, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 122, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HENEFER.json b/inst/extdata/OSD/H/HENEFER.json index b4a71c799c..9a5ea56e36 100644 --- a/inst/extdata/OSD/H/HENEFER.json +++ b/inst/extdata/OSD/H/HENEFER.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 53, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 94, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "weak coarse prismatic", @@ -213,11 +213,11 @@ "name": "BC", "top": 124, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine angular blocky", diff --git a/inst/extdata/OSD/H/HENHILL.json b/inst/extdata/OSD/H/HENHILL.json index 5bcd90e552..b959b70163 100644 --- a/inst/extdata/OSD/H/HENHILL.json +++ b/inst/extdata/OSD/H/HENHILL.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HENRIEVILLE.json b/inst/extdata/OSD/H/HENRIEVILLE.json index 9ec1358fe2..b38f853bc1 100644 --- a/inst/extdata/OSD/H/HENRIEVILLE.json +++ b/inst/extdata/OSD/H/HENRIEVILLE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 30, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 76, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HESS.json b/inst/extdata/OSD/H/HESS.json index 47ed3ac694..bddd9f62e0 100644 --- a/inst/extdata/OSD/H/HESS.json +++ b/inst/extdata/OSD/H/HESS.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", @@ -121,12 +121,12 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "BA", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bt1", "top": 38, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bt2", "top": 51, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2Bt3", "top": 74, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and medium prismatic", @@ -236,11 +236,11 @@ "name": "2Bt4", "top": 97, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine subangular blocky", diff --git a/inst/extdata/OSD/H/HETERWA.json b/inst/extdata/OSD/H/HETERWA.json index 55cdc5d073..64b2e7e90f 100644 --- a/inst/extdata/OSD/H/HETERWA.json +++ b/inst/extdata/OSD/H/HETERWA.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "E", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse platy", @@ -144,11 +144,11 @@ "name": "E/B", "top": 30, "bottom": 50, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bw", "top": 50, "bottom": 75, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HIBBING.json b/inst/extdata/OSD/H/HIBBING.json index 8f85808616..45a3d538f9 100644 --- a/inst/extdata/OSD/H/HIBBING.json +++ b/inst/extdata/OSD/H/HIBBING.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/H/HICKERSON.json b/inst/extdata/OSD/H/HICKERSON.json index 826e960825..16f3b41b50 100644 --- a/inst/extdata/OSD/H/HICKERSON.json +++ b/inst/extdata/OSD/H/HICKERSON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 5, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C1", "top": 69, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky geogenic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HIGHVALLEY.json b/inst/extdata/OSD/H/HIGHVALLEY.json index 3e10ee0e77..629f2a99fc 100644 --- a/inst/extdata/OSD/H/HIGHVALLEY.json +++ b/inst/extdata/OSD/H/HIGHVALLEY.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", @@ -121,12 +121,12 @@ "name": "AB", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 61, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium prismatic", @@ -190,12 +190,12 @@ "name": "Bw3", "top": 122, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HIIBNER.json b/inst/extdata/OSD/H/HIIBNER.json index fc0ba91b92..f08dc32d8a 100644 --- a/inst/extdata/OSD/H/HIIBNER.json +++ b/inst/extdata/OSD/H/HIIBNER.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 30, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/H/HIKO_SPRINGS.json b/inst/extdata/OSD/H/HIKO_SPRINGS.json index b22211cf1c..46276f8342 100644 --- a/inst/extdata/OSD/H/HIKO_SPRINGS.json +++ b/inst/extdata/OSD/H/HIKO_SPRINGS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 36, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 64, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HILLBURN.json b/inst/extdata/OSD/H/HILLBURN.json index 0c6ced2ffa..15456e527e 100644 --- a/inst/extdata/OSD/H/HILLBURN.json +++ b/inst/extdata/OSD/H/HILLBURN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -121,12 +121,12 @@ "name": "C2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/H/HILLCREEK.json b/inst/extdata/OSD/H/HILLCREEK.json index 66455ae566..9c468dea13 100644 --- a/inst/extdata/OSD/H/HILLCREEK.json +++ b/inst/extdata/OSD/H/HILLCREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "strong fine and medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "AB", "top": 25, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bt1", "top": 69, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bt2", "top": 109, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bt3", "top": 150, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/H/HILLTO.json b/inst/extdata/OSD/H/HILLTO.json index f94891ec01..3a1f4ee1e1 100644 --- a/inst/extdata/OSD/H/HILLTO.json +++ b/inst/extdata/OSD/H/HILLTO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 30, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HOBOG.json b/inst/extdata/OSD/H/HOBOG.json index 944fca1f7c..398a893535 100644 --- a/inst/extdata/OSD/H/HOBOG.json +++ b/inst/extdata/OSD/H/HOBOG.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "Bk", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HOFF.json b/inst/extdata/OSD/H/HOFF.json index 9d0ed2473a..cf257b50a8 100644 --- a/inst/extdata/OSD/H/HOFF.json +++ b/inst/extdata/OSD/H/HOFF.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2.5, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "AB", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2.5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/H/HOLMES.json b/inst/extdata/OSD/H/HOLMES.json index 7ec7cdcabd..2d763a91c4 100644 --- a/inst/extdata/OSD/H/HOLMES.json +++ b/inst/extdata/OSD/H/HOLMES.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "BC", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HONTOON.json b/inst/extdata/OSD/H/HONTOON.json index 79f0dbbdba..e156b15923 100644 --- a/inst/extdata/OSD/H/HONTOON.json +++ b/inst/extdata/OSD/H/HONTOON.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": "NA", "texture_class": "sand", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/H/HONUAPO.json b/inst/extdata/OSD/H/HONUAPO.json index 75114d2a48..f0b661716f 100644 --- a/inst/extdata/OSD/H/HONUAPO.json +++ b/inst/extdata/OSD/H/HONUAPO.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "strong very fine and fine granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/H/HOOSKANADEN.json b/inst/extdata/OSD/H/HOOSKANADEN.json index 6cff13addd..af842b1ae0 100644 --- a/inst/extdata/OSD/H/HOOSKANADEN.json +++ b/inst/extdata/OSD/H/HOOSKANADEN.json @@ -170,9 +170,9 @@ "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "clay", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HOPBURN.json b/inst/extdata/OSD/H/HOPBURN.json index dc1e2df409..a26c52e383 100644 --- a/inst/extdata/OSD/H/HOPBURN.json +++ b/inst/extdata/OSD/H/HOPBURN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "E1", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "E2", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 53, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "strong coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 86, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "strong very coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "BC", "top": 114, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak very coarse prismatic", @@ -213,11 +213,11 @@ "name": "C", "top": 132, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HORROCKS.json b/inst/extdata/OSD/H/HORROCKS.json index 7681f33f41..bc98f0998d 100644 --- a/inst/extdata/OSD/H/HORROCKS.json +++ b/inst/extdata/OSD/H/HORROCKS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C", "top": 69, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/H/HORSEMOUNTAIN.json b/inst/extdata/OSD/H/HORSEMOUNTAIN.json index f88c4b3cd4..a0853e7b2e 100644 --- a/inst/extdata/OSD/H/HORSEMOUNTAIN.json +++ b/inst/extdata/OSD/H/HORSEMOUNTAIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 48, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 81, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "single grain", @@ -213,11 +213,11 @@ "name": "Bk3", "top": 155, "bottom": 175, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HOSKINNINI.json b/inst/extdata/OSD/H/HOSKINNINI.json index f18060bef9..8e2ebe17ec 100644 --- a/inst/extdata/OSD/H/HOSKINNINI.json +++ b/inst/extdata/OSD/H/HOSKINNINI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HOSPAH.json b/inst/extdata/OSD/H/HOSPAH.json index 93500f5394..2da7611dbe 100644 --- a/inst/extdata/OSD/H/HOSPAH.json +++ b/inst/extdata/OSD/H/HOSPAH.json @@ -78,9 +78,9 @@ "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and medium granular", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/H/HOSTAGE.json b/inst/extdata/OSD/H/HOSTAGE.json index 62dac02fd1..c8ad04d09a 100644 --- a/inst/extdata/OSD/H/HOSTAGE.json +++ b/inst/extdata/OSD/H/HOSTAGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 8, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "2Bk", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "2C", "top": 81, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/H/HOTCREEK.json b/inst/extdata/OSD/H/HOTCREEK.json index 5053573fc1..2b8fae24b4 100644 --- a/inst/extdata/OSD/H/HOTCREEK.json +++ b/inst/extdata/OSD/H/HOTCREEK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "strong thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Btk", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bkqm", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HOUGHTON.json b/inst/extdata/OSD/H/HOUGHTON.json index 2e7cf43f20..786851bf3a 100644 --- a/inst/extdata/OSD/H/HOUGHTON.json +++ b/inst/extdata/OSD/H/HOUGHTON.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "7.5YR", + "moist_hue": "N", "moist_value": 2.5, - "moist_chroma": 2, + "moist_chroma": "NA", "texture_class": "NA", "structure": "weak medium granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/H/HOULIHAN.json b/inst/extdata/OSD/H/HOULIHAN.json index f75a002263..9fac1c639e 100644 --- a/inst/extdata/OSD/H/HOULIHAN.json +++ b/inst/extdata/OSD/H/HOULIHAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 58, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/H/HOVELTON.json b/inst/extdata/OSD/H/HOVELTON.json index 838fa38512..90798e8d01 100644 --- a/inst/extdata/OSD/H/HOVELTON.json +++ b/inst/extdata/OSD/H/HOVELTON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "AB", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine subangular blocky", diff --git a/inst/extdata/OSD/H/HOYE.json b/inst/extdata/OSD/H/HOYE.json index 0e61915511..fd2459f52e 100644 --- a/inst/extdata/OSD/H/HOYE.json +++ b/inst/extdata/OSD/H/HOYE.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 13, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sandy loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 13, "bottom": 30, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 30, "bottom": 43, "dry_hue": "7.5YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 4, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 43, "bottom": 81, "dry_hue": "7.5YR", - "dry_value": 6, + "dry_value": 5, "dry_chroma": 4, - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -168,11 +168,11 @@ "top": 81, "bottom": 152, "dry_hue": "7.5YR", - "dry_value": 6, + "dry_value": 5, "dry_chroma": 4, - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/H/HOYMOUNT.json b/inst/extdata/OSD/H/HOYMOUNT.json index c8fc948c64..1f25bd577b 100644 --- a/inst/extdata/OSD/H/HOYMOUNT.json +++ b/inst/extdata/OSD/H/HOYMOUNT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 3, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 3, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 64, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,9 +167,9 @@ "name": "Bt3", "top": 109, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10R", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "10R", "moist_value": 4, "moist_chroma": 6, diff --git a/inst/extdata/OSD/H/HUBTALF.json b/inst/extdata/OSD/H/HUBTALF.json index 48866cf3f7..9b1e921e6f 100644 --- a/inst/extdata/OSD/H/HUBTALF.json +++ b/inst/extdata/OSD/H/HUBTALF.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "strong coarse and very coarse platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "strong very thick platy", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bg", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkg1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate medium and coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bkg2", "top": 58, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium and coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bkg3", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HUCKLEBERRY.json b/inst/extdata/OSD/H/HUCKLEBERRY.json index 75155b7114..a7eb19e515 100644 --- a/inst/extdata/OSD/H/HUCKLEBERRY.json +++ b/inst/extdata/OSD/H/HUCKLEBERRY.json @@ -193,9 +193,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/H/HUCKRIDGE.json b/inst/extdata/OSD/H/HUCKRIDGE.json index c971f6ef2a..0630513c99 100644 --- a/inst/extdata/OSD/H/HUCKRIDGE.json +++ b/inst/extdata/OSD/H/HUCKRIDGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "E", "top": 13, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "E/Bt", "top": 56, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt/E", "top": 69, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "strong coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt", "top": 122, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "2BC", "top": 150, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/H/HUDDLE.json b/inst/extdata/OSD/H/HUDDLE.json index 5faec30c8a..481ef7bcb3 100644 --- a/inst/extdata/OSD/H/HUDDLE.json +++ b/inst/extdata/OSD/H/HUDDLE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 18, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 48, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 99, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HULLSGULCH.json b/inst/extdata/OSD/H/HULLSGULCH.json index 4ef721b0c2..31ad595d8f 100644 --- a/inst/extdata/OSD/H/HULLSGULCH.json +++ b/inst/extdata/OSD/H/HULLSGULCH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "moderate fine and medium granular", @@ -98,12 +98,12 @@ "name": "BA", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 64, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bt1", "top": 97, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "Bt2", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "single grain", diff --git a/inst/extdata/OSD/H/HUME.json b/inst/extdata/OSD/H/HUME.json index 1f3dc1473d..88286f449c 100644 --- a/inst/extdata/OSD/H/HUME.json +++ b/inst/extdata/OSD/H/HUME.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium angular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse prismatic", @@ -144,11 +144,11 @@ "name": "Bk", "top": 43, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse prismatic", @@ -167,11 +167,11 @@ "name": "BCk", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/H/HUNTING.json b/inst/extdata/OSD/H/HUNTING.json index 8d68b6e0d6..896be9b35d 100644 --- a/inst/extdata/OSD/H/HUNTING.json +++ b/inst/extdata/OSD/H/HUNTING.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 23, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "C2", "top": 69, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/H/HUPP.json b/inst/extdata/OSD/H/HUPP.json index 1ea44b826f..1e65bcf5ef 100644 --- a/inst/extdata/OSD/H/HUPP.json +++ b/inst/extdata/OSD/H/HUPP.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 46, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/H/HURRYBACK.json b/inst/extdata/OSD/H/HURRYBACK.json index e9e61dcdc1..0808aab302 100644 --- a/inst/extdata/OSD/H/HURRYBACK.json +++ b/inst/extdata/OSD/H/HURRYBACK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "BA", "top": 15, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 61, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/H/HUSTON.json b/inst/extdata/OSD/H/HUSTON.json index f644834d26..39eac21184 100644 --- a/inst/extdata/OSD/H/HUSTON.json +++ b/inst/extdata/OSD/H/HUSTON.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "A2", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "BA", "top": 33, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw", "top": 66, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate medium and coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/H/HUTCHLEY.json b/inst/extdata/OSD/H/HUTCHLEY.json index 5f3a698b4a..fde257541d 100644 --- a/inst/extdata/OSD/H/HUTCHLEY.json +++ b/inst/extdata/OSD/H/HUTCHLEY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and very fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 30, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/H/HUTT.json b/inst/extdata/OSD/H/HUTT.json index 9cbc2c2ce7..0e1b15f684 100644 --- a/inst/extdata/OSD/H/HUTT.json +++ b/inst/extdata/OSD/H/HUTT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "AC", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "weak coarse angular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 30, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "weak coarse angular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 56, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/H/HYNES.json b/inst/extdata/OSD/H/HYNES.json index d03335d89b..7a0d61f965 100644 --- a/inst/extdata/OSD/H/HYNES.json +++ b/inst/extdata/OSD/H/HYNES.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine platy", @@ -98,11 +98,11 @@ "name": "Bk", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bkq", "top": 41, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "B'k", "top": 76, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine platy", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2C1", "top": 104, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2C2", "top": 135, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/H/HYRUM.json b/inst/extdata/OSD/H/HYRUM.json index 1130c84803..79e9bbdf5e 100644 --- a/inst/extdata/OSD/H/HYRUM.json +++ b/inst/extdata/OSD/H/HYRUM.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine granular", @@ -98,11 +98,11 @@ "name": "B1", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "B21t", "top": 43, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "B22t", "top": 79, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 107, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/I/IBOLA.json b/inst/extdata/OSD/I/IBOLA.json index af4d846839..869ee83b55 100644 --- a/inst/extdata/OSD/I/IBOLA.json +++ b/inst/extdata/OSD/I/IBOLA.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong medium angular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bqm", "top": 69, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "NA", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Crk", "top": 71, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/I/IDOW.json b/inst/extdata/OSD/I/IDOW.json index 6ee284bfb6..84fb2f7599 100644 --- a/inst/extdata/OSD/I/IDOW.json +++ b/inst/extdata/OSD/I/IDOW.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk", "top": 58, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bkqm", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "NA", diff --git a/inst/extdata/OSD/I/IGERT.json b/inst/extdata/OSD/I/IGERT.json index a366839e78..201ab2a8ce 100644 --- a/inst/extdata/OSD/I/IGERT.json +++ b/inst/extdata/OSD/I/IGERT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "BA", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt", "top": 46, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 58, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/I/IKIT.json b/inst/extdata/OSD/I/IKIT.json index c089dae5c7..5f7567ae1a 100644 --- a/inst/extdata/OSD/I/IKIT.json +++ b/inst/extdata/OSD/I/IKIT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,10 +98,10 @@ "name": "A2", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", @@ -121,11 +121,11 @@ "name": "C", "top": 15, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/I/INSIDERT.json b/inst/extdata/OSD/I/INSIDERT.json index 57f8512381..595461a7e5 100644 --- a/inst/extdata/OSD/I/INSIDERT.json +++ b/inst/extdata/OSD/I/INSIDERT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine angular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine prismatic", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium angular blocky", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkqm", "top": 61, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/I/IOGOON.json b/inst/extdata/OSD/I/IOGOON.json index 8678d11d70..c59e95dbb5 100644 --- a/inst/extdata/OSD/I/IOGOON.json +++ b/inst/extdata/OSD/I/IOGOON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 28, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 81, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/I/IRELAND.json b/inst/extdata/OSD/I/IRELAND.json index 231c99710b..a2bc5b797f 100644 --- a/inst/extdata/OSD/I/IRELAND.json +++ b/inst/extdata/OSD/I/IRELAND.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and fine subangular blocky", @@ -98,11 +98,11 @@ "name": "ABk", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 41, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and very fine subangular blocky", diff --git a/inst/extdata/OSD/I/IRONCITY.json b/inst/extdata/OSD/I/IRONCITY.json index 02c1902d86..c6e6237ea8 100644 --- a/inst/extdata/OSD/I/IRONCITY.json +++ b/inst/extdata/OSD/I/IRONCITY.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/I/IRONCO.json b/inst/extdata/OSD/I/IRONCO.json index b3c5db4987..7dd729dfe3 100644 --- a/inst/extdata/OSD/I/IRONCO.json +++ b/inst/extdata/OSD/I/IRONCO.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 28, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 64, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt4", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/I/ISOM.json b/inst/extdata/OSD/I/ISOM.json index 1a6e92b4e2..d19be55d7f 100644 --- a/inst/extdata/OSD/I/ISOM.json +++ b/inst/extdata/OSD/I/ISOM.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 25, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cy", "top": 56, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/I/IVINS.json b/inst/extdata/OSD/I/IVINS.json index c8c5d6d297..c88bd9ff7a 100644 --- a/inst/extdata/OSD/I/IVINS.json +++ b/inst/extdata/OSD/I/IVINS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 8, + "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 8, + "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "C1", "top": 10, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 8, + "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 8, + "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "single grain", "dry_rupture": "soft", @@ -121,10 +121,10 @@ "name": "2Btb", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", + "dry_hue": "2.5YR", + "dry_value": 3, + "dry_chroma": 6, + "moist_hue": "10R", "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", @@ -144,10 +144,10 @@ "name": "2Btkb", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", + "dry_hue": "2.5YR", + "dry_value": 3, + "dry_chroma": 6, + "moist_hue": "10R", "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay", @@ -167,11 +167,11 @@ "name": "2Bkb", "top": 99, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5YR", - "moist_value": 4, + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "5YR", + "moist_value": 6, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "NA", diff --git a/inst/extdata/OSD/J/JACOBSEN.json b/inst/extdata/OSD/J/JACOBSEN.json index 565cfd41aa..15a2a9fe2c 100644 --- a/inst/extdata/OSD/J/JACOBSEN.json +++ b/inst/extdata/OSD/J/JACOBSEN.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/J/JAGON.json b/inst/extdata/OSD/J/JAGON.json index c51d8c7063..54e67b2686 100644 --- a/inst/extdata/OSD/J/JAGON.json +++ b/inst/extdata/OSD/J/JAGON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Btk1", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak coarse prismatic", @@ -121,11 +121,11 @@ "name": "Btk2", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,9 +144,9 @@ "name": "Bk", "top": 36, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 4, diff --git a/inst/extdata/OSD/J/JASSEEK.json b/inst/extdata/OSD/J/JASSEEK.json index dcb3a44159..1757695d77 100644 --- a/inst/extdata/OSD/J/JASSEEK.json +++ b/inst/extdata/OSD/J/JASSEEK.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "A", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 69, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and medium prismatic", @@ -190,11 +190,11 @@ "name": "Bt4", "top": 84, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine and medium subangular blocky", @@ -213,12 +213,12 @@ "name": "2C", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/J/JERUSALEM.json b/inst/extdata/OSD/J/JERUSALEM.json index 0acb154f55..25188ea876 100644 --- a/inst/extdata/OSD/J/JERUSALEM.json +++ b/inst/extdata/OSD/J/JERUSALEM.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 58, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/J/JIGSAW.json b/inst/extdata/OSD/J/JIGSAW.json index 954d3bd371..ec73f20a11 100644 --- a/inst/extdata/OSD/J/JIGSAW.json +++ b/inst/extdata/OSD/J/JIGSAW.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine and very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 25, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 69, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine and very fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw3", "top": 99, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine and very fine subangular blocky", @@ -190,11 +190,11 @@ "name": "C1", "top": 124, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C2", "top": 140, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/J/JIMSAGE.json b/inst/extdata/OSD/J/JIMSAGE.json index 8f8f3e38f1..f84afd0668 100644 --- a/inst/extdata/OSD/J/JIMSAGE.json +++ b/inst/extdata/OSD/J/JIMSAGE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 33, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 66, "bottom": 110, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 110, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/J/JONDA.json b/inst/extdata/OSD/J/JONDA.json index 8aa881f12d..e1d7cbb72a 100644 --- a/inst/extdata/OSD/J/JONDA.json +++ b/inst/extdata/OSD/J/JONDA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 41, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 53, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 8, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/J/JOSIE.json b/inst/extdata/OSD/J/JOSIE.json index dedfc23668..6a1f58395a 100644 --- a/inst/extdata/OSD/J/JOSIE.json +++ b/inst/extdata/OSD/J/JOSIE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine granular", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak very fine and fine granular", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 61, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak very fine and fine granular", @@ -167,11 +167,11 @@ "name": "C", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/J/JUAB.json b/inst/extdata/OSD/J/JUAB.json index 247a0e5381..a39bf3fd54 100644 --- a/inst/extdata/OSD/J/JUAB.json +++ b/inst/extdata/OSD/J/JUAB.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular", @@ -121,11 +121,11 @@ "name": "AC", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C2", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C3", "top": 74, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -213,11 +213,11 @@ "name": "C4", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/J/JUMPCREEK.json b/inst/extdata/OSD/J/JUMPCREEK.json index 02ff58650f..e517bd9519 100644 --- a/inst/extdata/OSD/J/JUMPCREEK.json +++ b/inst/extdata/OSD/J/JUMPCREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "BA", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btq", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine angular blocky", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 76, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/J/JUNCTION.json b/inst/extdata/OSD/J/JUNCTION.json index cd145b0061..dc40603cc2 100644 --- a/inst/extdata/OSD/J/JUNCTION.json +++ b/inst/extdata/OSD/J/JUNCTION.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 23, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cy1", "top": 53, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cy2", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/J/JUNKETT.json b/inst/extdata/OSD/J/JUNKETT.json index 95103dfacf..efac1483c9 100644 --- a/inst/extdata/OSD/J/JUNKETT.json +++ b/inst/extdata/OSD/J/JUNKETT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 58, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KABEAR.json b/inst/extdata/OSD/K/KABEAR.json index 9b7ed72602..a7268a8ab5 100644 --- a/inst/extdata/OSD/K/KABEAR.json +++ b/inst/extdata/OSD/K/KABEAR.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KACKLEY.json b/inst/extdata/OSD/K/KACKLEY.json index 8ad7f40963..9f0d40ab13 100644 --- a/inst/extdata/OSD/K/KACKLEY.json +++ b/inst/extdata/OSD/K/KACKLEY.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very coarse platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse platy", @@ -121,11 +121,11 @@ "name": "Bw", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 36, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KADE.json b/inst/extdata/OSD/K/KADE.json index 06cf8ac163..c6e9436526 100644 --- a/inst/extdata/OSD/K/KADE.json +++ b/inst/extdata/OSD/K/KADE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium to thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -121,11 +121,11 @@ "name": "C1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate thin platy", @@ -144,11 +144,11 @@ "name": "C2", "top": 51, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong medium platy", @@ -167,11 +167,11 @@ "name": "C3g", "top": 81, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "C4g", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KADYGULCH.json b/inst/extdata/OSD/K/KADYGULCH.json index d64610d2e9..a6610fe142 100644 --- a/inst/extdata/OSD/K/KADYGULCH.json +++ b/inst/extdata/OSD/K/KADYGULCH.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "E", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bw2", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "BC", "top": 91, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KANLEE.json b/inst/extdata/OSD/K/KANLEE.json index 084253af6f..a295f7649c 100644 --- a/inst/extdata/OSD/K/KANLEE.json +++ b/inst/extdata/OSD/K/KANLEE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate very fine and fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 36, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -167,9 +167,9 @@ "name": "Bt3", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 5, "moist_chroma": 4, diff --git a/inst/extdata/OSD/K/KAPAPALA.json b/inst/extdata/OSD/K/KAPAPALA.json index d527e6e3c5..eb34741b01 100644 --- a/inst/extdata/OSD/K/KAPAPALA.json +++ b/inst/extdata/OSD/K/KAPAPALA.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 3, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "weak medium granular", "dry_rupture": "soft", @@ -121,9 +121,9 @@ "name": "2C", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "7.5YR", "moist_value": 2.5, "moist_chroma": 1, diff --git a/inst/extdata/OSD/K/KAPOD.json b/inst/extdata/OSD/K/KAPOD.json index fd7aedd048..5ad2c34565 100644 --- a/inst/extdata/OSD/K/KAPOD.json +++ b/inst/extdata/OSD/K/KAPOD.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak thick platy and medium subangular blocky", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 46, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk", "top": 79, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C", "top": 132, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KAPTURE.json b/inst/extdata/OSD/K/KAPTURE.json index 8e3c40b0c3..e8fd5bc6ff 100644 --- a/inst/extdata/OSD/K/KAPTURE.json +++ b/inst/extdata/OSD/K/KAPTURE.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,12 +98,12 @@ "name": "C1", "top": 20, "bottom": 45, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C2", "top": 45, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/K/KARANKAWA.json b/inst/extdata/OSD/K/KARANKAWA.json index a2fe6d8764..2ce98fbc96 100644 --- a/inst/extdata/OSD/K/KARANKAWA.json +++ b/inst/extdata/OSD/K/KARANKAWA.json @@ -144,9 +144,9 @@ "name": "Cg2", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 1, diff --git a/inst/extdata/OSD/K/KARNEY.json b/inst/extdata/OSD/K/KARNEY.json index 4b64a3f6fd..8038f41fe9 100644 --- a/inst/extdata/OSD/K/KARNEY.json +++ b/inst/extdata/OSD/K/KARNEY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loam", "structure": "strong thick platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "clay loam", "structure": "strong thick platy", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt4", "top": 51, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "2Cr", "top": 79, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/K/KAUFMAN.json b/inst/extdata/OSD/K/KAUFMAN.json index ce6ea4cc99..13adfd3e77 100644 --- a/inst/extdata/OSD/K/KAUFMAN.json +++ b/inst/extdata/OSD/K/KAUFMAN.json @@ -125,8 +125,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "clay", "structure": "moderate coarse angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KEARNS.json b/inst/extdata/OSD/K/KEARNS.json index 0d2c98d881..650dc7985b 100644 --- a/inst/extdata/OSD/K/KEARNS.json +++ b/inst/extdata/OSD/K/KEARNS.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium granular", "dry_rupture": "soft", @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KEARNSAR.json b/inst/extdata/OSD/K/KEARNSAR.json index 4d9f5b4bcd..4c28432c97 100644 --- a/inst/extdata/OSD/K/KEARNSAR.json +++ b/inst/extdata/OSD/K/KEARNSAR.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium granular", @@ -98,11 +98,11 @@ "name": "A", "top": 23, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 58, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 69, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine subangular blocky", diff --git a/inst/extdata/OSD/K/KEIGLEY.json b/inst/extdata/OSD/K/KEIGLEY.json index 7e5ecdbba2..457ceaf391 100644 --- a/inst/extdata/OSD/K/KEIGLEY.json +++ b/inst/extdata/OSD/K/KEIGLEY.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "A1", "top": 18, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 69, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 107, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KELLIHER.json b/inst/extdata/OSD/K/KELLIHER.json index 0526c4b0e0..50919efb15 100644 --- a/inst/extdata/OSD/K/KELLIHER.json +++ b/inst/extdata/OSD/K/KELLIHER.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, @@ -98,9 +98,9 @@ "name": "E", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 2, diff --git a/inst/extdata/OSD/K/KENTLAND.json b/inst/extdata/OSD/K/KENTLAND.json index 1f74a8a597..1d053e2888 100644 --- a/inst/extdata/OSD/K/KENTLAND.json +++ b/inst/extdata/OSD/K/KENTLAND.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": "NA", "texture_class": "fine sand", "structure": "weak medium platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/K/KEYPORT.json b/inst/extdata/OSD/K/KEYPORT.json index 3791b52b15..23ee5f1de9 100644 --- a/inst/extdata/OSD/K/KEYPORT.json +++ b/inst/extdata/OSD/K/KEYPORT.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/K/KEZAN.json b/inst/extdata/OSD/K/KEZAN.json index bd531aaaf5..a4c0f062e4 100644 --- a/inst/extdata/OSD/K/KEZAN.json +++ b/inst/extdata/OSD/K/KEZAN.json @@ -190,12 +190,12 @@ "name": "Agb2", "top": 112, "bottom": 153, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "N", + "dry_value": 4, + "dry_chroma": 0, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KILBURN.json b/inst/extdata/OSD/K/KILBURN.json index b70bd9d6f3..fb1b7a1860 100644 --- a/inst/extdata/OSD/K/KILBURN.json +++ b/inst/extdata/OSD/K/KILBURN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "NA", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw", "top": 28, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C", "top": 61, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/K/KINESAVA.json b/inst/extdata/OSD/K/KINESAVA.json index f98cb3906b..299589a132 100644 --- a/inst/extdata/OSD/K/KINESAVA.json +++ b/inst/extdata/OSD/K/KINESAVA.json @@ -75,11 +75,11 @@ "name": "All", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 13, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Blt", "top": 79, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "B21t", "top": 99, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "clay", "structure": "strong coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "B22t", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "clay", "structure": "moderate coarse subangular blocky", diff --git a/inst/extdata/OSD/K/KINGHORN.json b/inst/extdata/OSD/K/KINGHORN.json index b7a57487ab..289b3c10a9 100644 --- a/inst/extdata/OSD/K/KINGHORN.json +++ b/inst/extdata/OSD/K/KINGHORN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 5, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 5, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 5, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 5, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", diff --git a/inst/extdata/OSD/K/KISKY.json b/inst/extdata/OSD/K/KISKY.json index d98a3c7a9c..c20aea9319 100644 --- a/inst/extdata/OSD/K/KISKY.json +++ b/inst/extdata/OSD/K/KISKY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak medium and coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/K/KITCHELL.json b/inst/extdata/OSD/K/KITCHELL.json index 0ea25ca185..9a52bddff8 100644 --- a/inst/extdata/OSD/K/KITCHELL.json +++ b/inst/extdata/OSD/K/KITCHELL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "ABk1", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 56, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KIYI.json b/inst/extdata/OSD/K/KIYI.json index 8b2ef5f299..39f68f7126 100644 --- a/inst/extdata/OSD/K/KIYI.json +++ b/inst/extdata/OSD/K/KIYI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "AB", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 64, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and medium angular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "weak fine angular blocky", diff --git a/inst/extdata/OSD/K/KJAR.json b/inst/extdata/OSD/K/KJAR.json index d5df96bf66..1ca3b3fe53 100644 --- a/inst/extdata/OSD/K/KJAR.json +++ b/inst/extdata/OSD/K/KJAR.json @@ -75,11 +75,11 @@ "name": "Oe", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "NA", "structure": "massive", @@ -98,11 +98,11 @@ "name": "Cl", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 48, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KLUG.json b/inst/extdata/OSD/K/KLUG.json index 56d00f4a4c..57bcc78dcf 100644 --- a/inst/extdata/OSD/K/KLUG.json +++ b/inst/extdata/OSD/K/KLUG.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine granular", @@ -98,12 +98,12 @@ "name": "AB", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C1", "top": 51, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "C2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KOKEE.json b/inst/extdata/OSD/K/KOKEE.json index 3a1da88432..99e1955fd3 100644 --- a/inst/extdata/OSD/K/KOKEE.json +++ b/inst/extdata/OSD/K/KOKEE.json @@ -213,8 +213,8 @@ "name": "C", "top": 107, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", "moist_hue": "5YR", "moist_value": 5, diff --git a/inst/extdata/OSD/K/KOLBERG.json b/inst/extdata/OSD/K/KOLBERG.json index 929edc0b7e..82260e1cf7 100644 --- a/inst/extdata/OSD/K/KOLBERG.json +++ b/inst/extdata/OSD/K/KOLBERG.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 8, + "moist_chroma": 0, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/K/KOLOB.json b/inst/extdata/OSD/K/KOLOB.json index e730ce819c..6ab7d873f6 100644 --- a/inst/extdata/OSD/K/KOLOB.json +++ b/inst/extdata/OSD/K/KOLOB.json @@ -121,11 +121,11 @@ "name": "A", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 3, + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate medium granular", @@ -144,11 +144,11 @@ "name": "BAt", "top": 28, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bt2", "top": 58, "bottom": 83, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 5, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "Bt3", "top": 83, "bottom": 111, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -236,9 +236,9 @@ "name": "Bt4", "top": 111, "bottom": 144, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 5, "moist_chroma": 4, diff --git a/inst/extdata/OSD/K/KOMO.json b/inst/extdata/OSD/K/KOMO.json index b412c70aad..9bbd022cc1 100644 --- a/inst/extdata/OSD/K/KOMO.json +++ b/inst/extdata/OSD/K/KOMO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 28, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C1", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 79, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KOOSHAREM.json b/inst/extdata/OSD/K/KOOSHAREM.json index 0e953907d7..e851dbaecb 100644 --- a/inst/extdata/OSD/K/KOOSHAREM.json +++ b/inst/extdata/OSD/K/KOOSHAREM.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 36, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 58, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium angular blocky", @@ -167,12 +167,12 @@ "name": "A5", "top": 86, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2C", "top": 124, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", @@ -213,11 +213,11 @@ "name": "3C", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/K/KOSH.json b/inst/extdata/OSD/K/KOSH.json index 27561e409d..a5b114fd7d 100644 --- a/inst/extdata/OSD/K/KOSH.json +++ b/inst/extdata/OSD/K/KOSH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium and coarse granular", @@ -98,11 +98,11 @@ "name": "C", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/K/KOVICH.json b/inst/extdata/OSD/K/KOVICH.json index 202eb5ed17..b43d282734 100644 --- a/inst/extdata/OSD/K/KOVICH.json +++ b/inst/extdata/OSD/K/KOVICH.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 28, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "NA", @@ -144,11 +144,11 @@ "name": "A4", "top": 61, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "NA", @@ -167,11 +167,11 @@ "name": "2C1", "top": 74, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "3C2", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/K/KRUEGER.json b/inst/extdata/OSD/K/KRUEGER.json index 1592d9714d..d24391b18e 100644 --- a/inst/extdata/OSD/K/KRUEGER.json +++ b/inst/extdata/OSD/K/KRUEGER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 23, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 53, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "strong medium angular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/K/KUKVEY.json b/inst/extdata/OSD/K/KUKVEY.json index 4d684549c8..98b2af3f7e 100644 --- a/inst/extdata/OSD/K/KUKVEY.json +++ b/inst/extdata/OSD/K/KUKVEY.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "strong very fine and fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "strong very thick platy", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 64, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,11 +167,11 @@ "name": "Bk", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/K/KUNZ.json b/inst/extdata/OSD/K/KUNZ.json index 98057a71f5..b8ccd88b72 100644 --- a/inst/extdata/OSD/K/KUNZ.json +++ b/inst/extdata/OSD/K/KUNZ.json @@ -98,12 +98,12 @@ "name": "A1", "top": 3, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, - "moist_chroma": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 10, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate coarse prismatic", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate coarse prismatic", @@ -213,12 +213,12 @@ "name": "Bt4", "top": 97, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "BC", "top": 122, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/K/KUNZLER.json b/inst/extdata/OSD/K/KUNZLER.json index 32e64e2ea8..7dc2d1cf59 100644 --- a/inst/extdata/OSD/K/KUNZLER.json +++ b/inst/extdata/OSD/K/KUNZLER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bq", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bqk1", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bqk2", "top": 64, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bqk3", "top": 81, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate thin platy", @@ -213,12 +213,12 @@ "name": "Bqk4", "top": 104, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LABYRINTH.json b/inst/extdata/OSD/L/LABYRINTH.json index 30ed3c8fa3..5d984b7671 100644 --- a/inst/extdata/OSD/L/LABYRINTH.json +++ b/inst/extdata/OSD/L/LABYRINTH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "C1", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy very fine sand", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "C2", "top": 41, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C3", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/L/LAG.json b/inst/extdata/OSD/L/LAG.json index 9e2a81fe07..cc1ddde253 100644 --- a/inst/extdata/OSD/L/LAG.json +++ b/inst/extdata/OSD/L/LAG.json @@ -121,12 +121,12 @@ "name": "A", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 30, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 94, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LAGNAF.json b/inst/extdata/OSD/L/LAGNAF.json index c158f6ab34..0e519fd4db 100644 --- a/inst/extdata/OSD/L/LAGNAF.json +++ b/inst/extdata/OSD/L/LAGNAF.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and very fine subangular blocky", @@ -121,12 +121,12 @@ "name": "BAt", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 79, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "BC", "top": 99, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and very fine subangular blocky", @@ -213,12 +213,12 @@ "name": "C", "top": 119, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/L/LAIREP.json b/inst/extdata/OSD/L/LAIREP.json index 8f0255a447..468fea4c4f 100644 --- a/inst/extdata/OSD/L/LAIREP.json +++ b/inst/extdata/OSD/L/LAIREP.json @@ -125,7 +125,7 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 6, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LAKESOL.json b/inst/extdata/OSD/L/LAKESOL.json index f1c8ec07db..55452e3fbb 100644 --- a/inst/extdata/OSD/L/LAKESOL.json +++ b/inst/extdata/OSD/L/LAKESOL.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LAKEWIN.json b/inst/extdata/OSD/L/LAKEWIN.json index c7a4a477ce..100e6dc27e 100644 --- a/inst/extdata/OSD/L/LAKEWIN.json +++ b/inst/extdata/OSD/L/LAKEWIN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium and fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bw", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bk2", "top": 69, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2Bk3", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/L/LANGOLA.json b/inst/extdata/OSD/L/LANGOLA.json index af92dc3489..47240f64fb 100644 --- a/inst/extdata/OSD/L/LANGOLA.json +++ b/inst/extdata/OSD/L/LANGOLA.json @@ -75,9 +75,9 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 1, diff --git a/inst/extdata/OSD/L/LANVER.json b/inst/extdata/OSD/L/LANVER.json index 4af84eb125..762db33951 100644 --- a/inst/extdata/OSD/L/LANVER.json +++ b/inst/extdata/OSD/L/LANVER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "Bk", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bkn1", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bkn2", "top": 61, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bkny", "top": 79, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/L/LAPOINT.json b/inst/extdata/OSD/L/LAPOINT.json index c7f9b3451b..05cdff810c 100644 --- a/inst/extdata/OSD/L/LAPOINT.json +++ b/inst/extdata/OSD/L/LAPOINT.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "weak medium prismatic", @@ -144,12 +144,12 @@ "name": "Bk", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bk", "top": 53, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -213,12 +213,12 @@ "name": "3Ck", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LARABEE.json b/inst/extdata/OSD/L/LARABEE.json index ff36f3da02..7530e239a3 100644 --- a/inst/extdata/OSD/L/LARABEE.json +++ b/inst/extdata/OSD/L/LARABEE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "strong medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 51, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine angular blocky", diff --git a/inst/extdata/OSD/L/LARIAT.json b/inst/extdata/OSD/L/LARIAT.json index f21be05ad2..81d96ec7ce 100644 --- a/inst/extdata/OSD/L/LARIAT.json +++ b/inst/extdata/OSD/L/LARIAT.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C1ca", "top": 23, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LARIOSCAMP.json b/inst/extdata/OSD/L/LARIOSCAMP.json index 6e63d3431a..b3de349482 100644 --- a/inst/extdata/OSD/L/LARIOSCAMP.json +++ b/inst/extdata/OSD/L/LARIOSCAMP.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium granular", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium angular blocky", @@ -144,11 +144,11 @@ "name": "2Bkq", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2Bkqm", "top": 64, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/L/LASAC.json b/inst/extdata/OSD/L/LASAC.json index 43f76b8dcc..1e8e99b9e4 100644 --- a/inst/extdata/OSD/L/LASAC.json +++ b/inst/extdata/OSD/L/LASAC.json @@ -75,11 +75,11 @@ "name": "A", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "2BC", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "weak fine granular", diff --git a/inst/extdata/OSD/L/LATTAS.json b/inst/extdata/OSD/L/LATTAS.json index 1265a0958e..684fd77e7d 100644 --- a/inst/extdata/OSD/L/LATTAS.json +++ b/inst/extdata/OSD/L/LATTAS.json @@ -216,9 +216,9 @@ "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 4, "texture_class": "clay", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LAVATE.json b/inst/extdata/OSD/L/LAVATE.json index 0008dfa313..af833b1930 100644 --- a/inst/extdata/OSD/L/LAVATE.json +++ b/inst/extdata/OSD/L/LAVATE.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "BA", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 23, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 48, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 84, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 5, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 5, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LAVERKIN.json b/inst/extdata/OSD/L/LAVERKIN.json index 85b5f26646..069e2c3f62 100644 --- a/inst/extdata/OSD/L/LAVERKIN.json +++ b/inst/extdata/OSD/L/LAVERKIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 8, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 41, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 76, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LA_ROCO.json b/inst/extdata/OSD/L/LA_ROCO.json index a84dd5fa57..d412b3efef 100644 --- a/inst/extdata/OSD/L/LA_ROCO.json +++ b/inst/extdata/OSD/L/LA_ROCO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate coarse and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 51, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thick and medium platy", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 66, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -190,12 +190,12 @@ "name": "Bk4", "top": 86, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2Cg1", "top": 107, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2Cg2", "top": 124, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -259,11 +259,11 @@ "name": "3C", "top": 150, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/L/LEANTO.json b/inst/extdata/OSD/L/LEANTO.json index da739ba322..cead3805e0 100644 --- a/inst/extdata/OSD/L/LEANTO.json +++ b/inst/extdata/OSD/L/LEANTO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "single grain", "dry_rupture": "loose", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/L/LEEBENCH.json b/inst/extdata/OSD/L/LEEBENCH.json index 7b1b2e6e2e..bdf9341d1e 100644 --- a/inst/extdata/OSD/L/LEEBENCH.json +++ b/inst/extdata/OSD/L/LEEBENCH.json @@ -75,11 +75,11 @@ "name": "E", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "Btkn", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 51, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LEEDS.json b/inst/extdata/OSD/L/LEEDS.json index 9940ae17ac..b88eeaa78f 100644 --- a/inst/extdata/OSD/L/LEEDS.json +++ b/inst/extdata/OSD/L/LEEDS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "A", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "C1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "C2", "top": 58, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LEETON.json b/inst/extdata/OSD/L/LEETON.json index 30d2e5a265..a5bdd534ba 100644 --- a/inst/extdata/OSD/L/LEETON.json +++ b/inst/extdata/OSD/L/LEETON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular and subangular blocky", @@ -98,11 +98,11 @@ "name": "B2", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1ca", "top": 43, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2ca", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LEGAULT.json b/inst/extdata/OSD/L/LEGAULT.json index c5daa9b4db..0f67602339 100644 --- a/inst/extdata/OSD/L/LEGAULT.json +++ b/inst/extdata/OSD/L/LEGAULT.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "E", "top": 5, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak fine granular", diff --git a/inst/extdata/OSD/L/LEMBOS.json b/inst/extdata/OSD/L/LEMBOS.json index 9e19365e72..4a6bfb529b 100644 --- a/inst/extdata/OSD/L/LEMBOS.json +++ b/inst/extdata/OSD/L/LEMBOS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bqk", "top": 46, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LEMRAC.json b/inst/extdata/OSD/L/LEMRAC.json index 0853607b46..6be30f441d 100644 --- a/inst/extdata/OSD/L/LEMRAC.json +++ b/inst/extdata/OSD/L/LEMRAC.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 1, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "strong thin platy", @@ -98,12 +98,12 @@ "name": "Cyy1", "top": 1, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 8, - "moist_chroma": 1, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Cyy2", "top": 48, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 8, - "moist_chroma": 1, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/L/LESBOIS.json b/inst/extdata/OSD/L/LESBOIS.json index 43266606f8..a3e7ca2d8f 100644 --- a/inst/extdata/OSD/L/LESBOIS.json +++ b/inst/extdata/OSD/L/LESBOIS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 17, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak coarse platy", @@ -121,11 +121,11 @@ "name": "C1", "top": 17, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C2", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C3", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "C4", "top": 86, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Ab", "top": 107, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LIBBINGS.json b/inst/extdata/OSD/L/LIBBINGS.json index 8c9dcca9d0..d9d4841a57 100644 --- a/inst/extdata/OSD/L/LIBBINGS.json +++ b/inst/extdata/OSD/L/LIBBINGS.json @@ -75,11 +75,11 @@ "name": "Az1", "top": 0, "bottom": 1, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Az2", "top": 1, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "Cz", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine granular", @@ -144,11 +144,11 @@ "name": "Czy1", "top": 23, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Czy2", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/L/LIDOS.json b/inst/extdata/OSD/L/LIDOS.json index bddda6dea2..f1798e001a 100644 --- a/inst/extdata/OSD/L/LIDOS.json +++ b/inst/extdata/OSD/L/LIDOS.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong very fine subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bt2", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong fine subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bt3", "top": 56, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "strong fine subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bt4", "top": 102, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -213,11 +213,11 @@ "name": "3Eb", "top": 119, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -236,12 +236,12 @@ "name": "3Btb", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LIMERIDGE.json b/inst/extdata/OSD/L/LIMERIDGE.json index 912ca2e4cb..e16cc8e3cf 100644 --- a/inst/extdata/OSD/L/LIMERIDGE.json +++ b/inst/extdata/OSD/L/LIMERIDGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LIND.json b/inst/extdata/OSD/L/LIND.json index 11abab3845..41ad9ab26c 100644 --- a/inst/extdata/OSD/L/LIND.json +++ b/inst/extdata/OSD/L/LIND.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "By", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", @@ -121,11 +121,11 @@ "name": "Bky1", "top": 28, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bky2", "top": 69, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bky3", "top": 99, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bky4", "top": 122, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", @@ -213,11 +213,11 @@ "name": "Bky5", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LINDQUIST.json b/inst/extdata/OSD/L/LINDQUIST.json index af872f040d..40e7b6a6d1 100644 --- a/inst/extdata/OSD/L/LINDQUIST.json +++ b/inst/extdata/OSD/L/LINDQUIST.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/L/LINOYER.json b/inst/extdata/OSD/L/LINOYER.json index 6163ae94b0..3de8776b24 100644 --- a/inst/extdata/OSD/L/LINOYER.json +++ b/inst/extdata/OSD/L/LINOYER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "C1", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C2", "top": 43, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C3", "top": 86, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LISADE.json b/inst/extdata/OSD/L/LISADE.json index f9dc3373ab..010248e716 100644 --- a/inst/extdata/OSD/L/LISADE.json +++ b/inst/extdata/OSD/L/LISADE.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 56, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "Bk5", "top": 86, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -236,12 +236,12 @@ "name": "C1", "top": 140, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LITTSAN.json b/inst/extdata/OSD/L/LITTSAN.json index 4131408d5d..c00826c830 100644 --- a/inst/extdata/OSD/L/LITTSAN.json +++ b/inst/extdata/OSD/L/LITTSAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine crumb", @@ -98,11 +98,11 @@ "name": "B21t", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium angular blocky", @@ -121,11 +121,11 @@ "name": "B22t", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium angular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium angular blocky", diff --git a/inst/extdata/OSD/L/LIZZANT.json b/inst/extdata/OSD/L/LIZZANT.json index 73aa8e2cf2..ab892c657a 100644 --- a/inst/extdata/OSD/L/LIZZANT.json +++ b/inst/extdata/OSD/L/LIZZANT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "Bw", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 51, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 81, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 102, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LOCKDOWN.json b/inst/extdata/OSD/L/LOCKDOWN.json index 148211cc53..1996ace7ec 100644 --- a/inst/extdata/OSD/L/LOCKDOWN.json +++ b/inst/extdata/OSD/L/LOCKDOWN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "weak coarse platy", @@ -121,11 +121,11 @@ "name": "Btss1", "top": 8, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse prismatic", @@ -144,11 +144,11 @@ "name": "Btss2", "top": 38, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "weak coarse prismatic", @@ -167,11 +167,11 @@ "name": "Btk1", "top": 56, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium angular blocky", @@ -190,11 +190,11 @@ "name": "Btk2", "top": 69, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bk", "top": 104, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LOCKERBY.json b/inst/extdata/OSD/L/LOCKERBY.json index 04ec07adc9..a108136fca 100644 --- a/inst/extdata/OSD/L/LOCKERBY.json +++ b/inst/extdata/OSD/L/LOCKERBY.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 10, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 10, "bottom": 33, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 33, "bottom": 66, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Cy", "top": 66, "bottom": 97, - "dry_hue": "2.5Y", - "dry_value": 5, - "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/L/LODAR.json b/inst/extdata/OSD/L/LODAR.json index 561742aa8e..227ab83e0c 100644 --- a/inst/extdata/OSD/L/LODAR.json +++ b/inst/extdata/OSD/L/LODAR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LOGAN.json b/inst/extdata/OSD/L/LOGAN.json index a93a24511b..6ad5e636fe 100644 --- a/inst/extdata/OSD/L/LOGAN.json +++ b/inst/extdata/OSD/L/LOGAN.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate medium granular", @@ -121,11 +121,11 @@ "name": "Bkg", "top": 38, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cg1", "top": 71, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cg2", "top": 119, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LONE_ROCK.json b/inst/extdata/OSD/L/LONE_ROCK.json index ed33d35c87..98e343153b 100644 --- a/inst/extdata/OSD/L/LONE_ROCK.json +++ b/inst/extdata/OSD/L/LONE_ROCK.json @@ -98,9 +98,9 @@ "name": "AC", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 3, diff --git a/inst/extdata/OSD/L/LONGS.json b/inst/extdata/OSD/L/LONGS.json index 1affc6bb52..f9752152c5 100644 --- a/inst/extdata/OSD/L/LONGS.json +++ b/inst/extdata/OSD/L/LONGS.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "AB", "top": 23, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "2Bt1", "top": 74, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bt2", "top": 112, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/L/LORHUNT.json b/inst/extdata/OSD/L/LORHUNT.json index 8754504f25..e3e5448564 100644 --- a/inst/extdata/OSD/L/LORHUNT.json +++ b/inst/extdata/OSD/L/LORHUNT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "C", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LOSTVALLEY.json b/inst/extdata/OSD/L/LOSTVALLEY.json index 1f842f7385..9b5084fd0b 100644 --- a/inst/extdata/OSD/L/LOSTVALLEY.json +++ b/inst/extdata/OSD/L/LOSTVALLEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Btkq", "top": 69, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/L/LOTEX.json b/inst/extdata/OSD/L/LOTEX.json index 520fbca651..bafd773606 100644 --- a/inst/extdata/OSD/L/LOTEX.json +++ b/inst/extdata/OSD/L/LOTEX.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/L/LOURDES.json b/inst/extdata/OSD/L/LOURDES.json index 71115391f5..e92d8fbb89 100644 --- a/inst/extdata/OSD/L/LOURDES.json +++ b/inst/extdata/OSD/L/LOURDES.json @@ -75,9 +75,9 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 2, diff --git a/inst/extdata/OSD/L/LUCERO.json b/inst/extdata/OSD/L/LUCERO.json index ca96b3f83e..9be5e97613 100644 --- a/inst/extdata/OSD/L/LUCERO.json +++ b/inst/extdata/OSD/L/LUCERO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btk", "top": 43, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and very fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/L/LUCKY_STAR.json b/inst/extdata/OSD/L/LUCKY_STAR.json index 18db801a87..93edd9eae0 100644 --- a/inst/extdata/OSD/L/LUCKY_STAR.json +++ b/inst/extdata/OSD/L/LUCKY_STAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "E", "top": 33, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "E/B", "top": 89, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "B/E", "top": 140, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "C", "top": 178, "bottom": 218, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/L/LUNDY.json b/inst/extdata/OSD/L/LUNDY.json index 0438317597..acb851412b 100644 --- a/inst/extdata/OSD/L/LUNDY.json +++ b/inst/extdata/OSD/L/LUNDY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/L/LYNNDYL.json b/inst/extdata/OSD/L/LYNNDYL.json index b39310cb3e..70beb2f43c 100644 --- a/inst/extdata/OSD/L/LYNNDYL.json +++ b/inst/extdata/OSD/L/LYNNDYL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "Bk", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak coarse subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "C", "top": 36, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "loose", @@ -144,12 +144,12 @@ "name": "2C", "top": 91, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "3Cy", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/M/MACKEY.json b/inst/extdata/OSD/M/MACKEY.json index c18f4a38a7..a95a4ab2a2 100644 --- a/inst/extdata/OSD/M/MACKEY.json +++ b/inst/extdata/OSD/M/MACKEY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 25, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 53, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/M/MADTURKEY.json b/inst/extdata/OSD/M/MADTURKEY.json index 8429c1be16..6677f29596 100644 --- a/inst/extdata/OSD/M/MADTURKEY.json +++ b/inst/extdata/OSD/M/MADTURKEY.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MAGGODEE.json b/inst/extdata/OSD/M/MAGGODEE.json index d4c8afea0a..29e2482120 100644 --- a/inst/extdata/OSD/M/MAGGODEE.json +++ b/inst/extdata/OSD/M/MAGGODEE.json @@ -239,8 +239,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MAGOTSU.json b/inst/extdata/OSD/M/MAGOTSU.json index 21f2a57953..3993340749 100644 --- a/inst/extdata/OSD/M/MAGOTSU.json +++ b/inst/extdata/OSD/M/MAGOTSU.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong very fine granular", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium and fine angular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Btk", "top": 36, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and very fine angular blocky", diff --git a/inst/extdata/OSD/M/MALAQUITE.json b/inst/extdata/OSD/M/MALAQUITE.json index e40aad984d..7a97a16357 100644 --- a/inst/extdata/OSD/M/MALAQUITE.json +++ b/inst/extdata/OSD/M/MALAQUITE.json @@ -75,9 +75,9 @@ "name": "Anz", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 2, @@ -190,9 +190,9 @@ "name": "Cnzgb2", "top": 97, "bottom": 175, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "2.5Y", "moist_value": 6, "moist_chroma": 1, diff --git a/inst/extdata/OSD/M/MANILA.json b/inst/extdata/OSD/M/MANILA.json index e78f01a2cb..77117397d6 100644 --- a/inst/extdata/OSD/M/MANILA.json +++ b/inst/extdata/OSD/M/MANILA.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "BAt", "top": 15, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong fine angular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 43, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 107, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "BCt", "top": 160, "bottom": 185, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Ck", "top": 185, "bottom": 203, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 8, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MANSELO.json b/inst/extdata/OSD/M/MANSELO.json index 7b1424cbb6..52a73ce538 100644 --- a/inst/extdata/OSD/M/MANSELO.json +++ b/inst/extdata/OSD/M/MANSELO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bkq1", "top": 33, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 76, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkq3", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MAPLE_HOLLOW.json b/inst/extdata/OSD/M/MAPLE_HOLLOW.json index da849779a1..dcb7dc4b85 100644 --- a/inst/extdata/OSD/M/MAPLE_HOLLOW.json +++ b/inst/extdata/OSD/M/MAPLE_HOLLOW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 7, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/M/MARLAKE.json b/inst/extdata/OSD/M/MARLAKE.json index c098c98535..d3961d299d 100644 --- a/inst/extdata/OSD/M/MARLAKE.json +++ b/inst/extdata/OSD/M/MARLAKE.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MARLOW.json b/inst/extdata/OSD/M/MARLOW.json index 955c212f36..3d2adc8ca3 100644 --- a/inst/extdata/OSD/M/MARLOW.json +++ b/inst/extdata/OSD/M/MARLOW.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 3, + "moist_chroma": 0, "texture_class": "fine sandy loam", "structure": "moderate fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": 0, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MARYSSLOUGH.json b/inst/extdata/OSD/M/MARYSSLOUGH.json index e0d226e5aa..c1dacc3aa9 100644 --- a/inst/extdata/OSD/M/MARYSSLOUGH.json +++ b/inst/extdata/OSD/M/MARYSSLOUGH.json @@ -121,9 +121,9 @@ "name": "BC", "top": 23, "bottom": 35, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 3, diff --git a/inst/extdata/OSD/M/MAUGHAN.json b/inst/extdata/OSD/M/MAUGHAN.json index 0a5948e251..5941ae526f 100644 --- a/inst/extdata/OSD/M/MAUGHAN.json +++ b/inst/extdata/OSD/M/MAUGHAN.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 20, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "l0YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "l0YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "E", "top": 64, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 81, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 97, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 127, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "weak medium prismatic", diff --git a/inst/extdata/OSD/M/MAYFIELD.json b/inst/extdata/OSD/M/MAYFIELD.json index 6b566c7fcc..8eb64f7959 100644 --- a/inst/extdata/OSD/M/MAYFIELD.json +++ b/inst/extdata/OSD/M/MAYFIELD.json @@ -75,11 +75,11 @@ "name": "All", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,12 +98,12 @@ "name": "A12", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thick platy", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C2", "top": 28, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C3", "top": 56, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 76, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C5", "top": 114, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C6", "top": 142, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MAYFLOWER.json b/inst/extdata/OSD/M/MAYFLOWER.json index 4a043c9c49..45578e5bc2 100644 --- a/inst/extdata/OSD/M/MAYFLOWER.json +++ b/inst/extdata/OSD/M/MAYFLOWER.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Cr", "top": 64, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sand", "structure": "NA", diff --git a/inst/extdata/OSD/M/MAY_DAY.json b/inst/extdata/OSD/M/MAY_DAY.json index 64e443b99a..d92eb69373 100644 --- a/inst/extdata/OSD/M/MAY_DAY.json +++ b/inst/extdata/OSD/M/MAY_DAY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium granular", diff --git a/inst/extdata/OSD/M/MCCAIN.json b/inst/extdata/OSD/M/MCCAIN.json index 8ae2b477b5..d60ab7f0de 100644 --- a/inst/extdata/OSD/M/MCCAIN.json +++ b/inst/extdata/OSD/M/MCCAIN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "E", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium prismatic", @@ -167,11 +167,11 @@ "name": "Btk", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Bk1", "top": 56, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bk2", "top": 74, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MCCAMMON.json b/inst/extdata/OSD/M/MCCAMMON.json index 2f4534c1c1..47d3e8db8d 100644 --- a/inst/extdata/OSD/M/MCCAMMON.json +++ b/inst/extdata/OSD/M/MCCAMMON.json @@ -167,8 +167,8 @@ "name": "IIR", "top": 76, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 2, "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/M/MCCASH.json b/inst/extdata/OSD/M/MCCASH.json index b2dc0856fb..6b0adf8ecd 100644 --- a/inst/extdata/OSD/M/MCCASH.json +++ b/inst/extdata/OSD/M/MCCASH.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 38, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak coarse prismatic", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak coarse prismatic", @@ -167,12 +167,12 @@ "name": "C", "top": 91, "bottom": 203, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy very fine sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MCCLENDEN.json b/inst/extdata/OSD/M/MCCLENDEN.json index b6fcc1f0b7..caa68f63f1 100644 --- a/inst/extdata/OSD/M/MCCLENDEN.json +++ b/inst/extdata/OSD/M/MCCLENDEN.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate very coarse platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong very coarse prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 46, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very coarse platy", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MCCORT.json b/inst/extdata/OSD/M/MCCORT.json index 8e11a4cd39..7c5c53cfe8 100644 --- a/inst/extdata/OSD/M/MCCORT.json +++ b/inst/extdata/OSD/M/MCCORT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak coarse to medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate coarse to fine subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 53, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 79, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MCDESH.json b/inst/extdata/OSD/M/MCDESH.json index 8e25c191fe..f8f49c7668 100644 --- a/inst/extdata/OSD/M/MCDESH.json +++ b/inst/extdata/OSD/M/MCDESH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very coarse prismatic", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine and medium prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 53, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "weak medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MCGUIRE.json b/inst/extdata/OSD/M/MCGUIRE.json index 7f465fd3af..fef7ee646b 100644 --- a/inst/extdata/OSD/M/MCGUIRE.json +++ b/inst/extdata/OSD/M/MCGUIRE.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MCKEETH.json b/inst/extdata/OSD/M/MCKEETH.json index 9fdb57b315..7a89d5b93c 100644 --- a/inst/extdata/OSD/M/MCKEETH.json +++ b/inst/extdata/OSD/M/MCKEETH.json @@ -75,12 +75,12 @@ "name": "E", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "2Bkq", "top": 33, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "3Bk", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "3C", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MCKRANZ.json b/inst/extdata/OSD/M/MCKRANZ.json index fad2ab9351..60542dd065 100644 --- a/inst/extdata/OSD/M/MCKRANZ.json +++ b/inst/extdata/OSD/M/MCKRANZ.json @@ -190,12 +190,12 @@ "name": "2C2", "top": 130, "bottom": 203, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MCPAN.json b/inst/extdata/OSD/M/MCPAN.json index 373d1ebbda..b6d7cc8cec 100644 --- a/inst/extdata/OSD/M/MCPAN.json +++ b/inst/extdata/OSD/M/MCPAN.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "NA", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Btk", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "NA", @@ -144,12 +144,12 @@ "name": "Bkq1", "top": 51, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkq2", "top": 61, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkqm", "top": 69, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MECLO.json b/inst/extdata/OSD/M/MECLO.json index 37bc349c6d..7b985e2c0c 100644 --- a/inst/extdata/OSD/M/MECLO.json +++ b/inst/extdata/OSD/M/MECLO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "AB", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate thin and medium platy", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Btk", "top": 56, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/M/MEDBURN.json b/inst/extdata/OSD/M/MEDBURN.json index a79ac92f28..b9145d7999 100644 --- a/inst/extdata/OSD/M/MEDBURN.json +++ b/inst/extdata/OSD/M/MEDBURN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 38, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C4", "top": 81, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "C5", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/M/MEEGERO.json b/inst/extdata/OSD/M/MEEGERO.json index 28b1fd025b..139b4d2ffa 100644 --- a/inst/extdata/OSD/M/MEEGERO.json +++ b/inst/extdata/OSD/M/MEEGERO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 48, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bk3", "top": 74, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk4", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/M/MEKKADALE.json b/inst/extdata/OSD/M/MEKKADALE.json index 4a9cf1a3f4..d2ed6e73fa 100644 --- a/inst/extdata/OSD/M/MEKKADALE.json +++ b/inst/extdata/OSD/M/MEKKADALE.json @@ -98,9 +98,9 @@ "name": "Bt", "top": 3, "bottom": 30, - "dry_hue": "7.5YR", - "dry_value": 4, - "dry_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "7.5YR", "moist_value": 4, "moist_chroma": 6, diff --git a/inst/extdata/OSD/M/MELLOR.json b/inst/extdata/OSD/M/MELLOR.json index 8ee458efb6..1fc679fe1c 100644 --- a/inst/extdata/OSD/M/MELLOR.json +++ b/inst/extdata/OSD/M/MELLOR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Btn1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate coarse prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btn2", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "strong medium angular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine angular blocky", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -213,12 +213,12 @@ "name": "Bk3", "top": 71, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "C1", "top": 102, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -259,11 +259,11 @@ "name": "C2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MENEFEE.json b/inst/extdata/OSD/M/MENEFEE.json index b8442c90c1..38d03bcd2d 100644 --- a/inst/extdata/OSD/M/MENEFEE.json +++ b/inst/extdata/OSD/M/MENEFEE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", diff --git a/inst/extdata/OSD/M/MERKLEY.json b/inst/extdata/OSD/M/MERKLEY.json index fa05e3f0da..e44012de28 100644 --- a/inst/extdata/OSD/M/MERKLEY.json +++ b/inst/extdata/OSD/M/MERKLEY.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium granular", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 51, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 71, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 91, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2C1", "top": 102, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2C2", "top": 135, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -259,12 +259,12 @@ "name": "2C3", "top": 142, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/M/MESABA.json b/inst/extdata/OSD/M/MESABA.json index 233a1ef35c..1a1da88f56 100644 --- a/inst/extdata/OSD/M/MESABA.json +++ b/inst/extdata/OSD/M/MESABA.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/METOLE.json b/inst/extdata/OSD/M/METOLE.json index b8c33168a8..b7f3587206 100644 --- a/inst/extdata/OSD/M/METOLE.json +++ b/inst/extdata/OSD/M/METOLE.json @@ -98,9 +98,9 @@ "name": "A2", "top": 12, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/M/MEZZO.json b/inst/extdata/OSD/M/MEZZO.json index 81a45152f3..2c15864efa 100644 --- a/inst/extdata/OSD/M/MEZZO.json +++ b/inst/extdata/OSD/M/MEZZO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 3, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "loose", @@ -121,11 +121,11 @@ "name": "C1", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 43, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C3", "top": 66, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "C4", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MIDDLEFORK.json b/inst/extdata/OSD/M/MIDDLEFORK.json index 0237d56455..535b9b07f8 100644 --- a/inst/extdata/OSD/M/MIDDLEFORK.json +++ b/inst/extdata/OSD/M/MIDDLEFORK.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "BA", "top": 30, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 38, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 81, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium and coarse subangular blocky", @@ -213,11 +213,11 @@ "name": "Bt3", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/M/MIDDLEHILL.json b/inst/extdata/OSD/M/MIDDLEHILL.json index 9fa86d4abc..fd9704ce0f 100644 --- a/inst/extdata/OSD/M/MIDDLEHILL.json +++ b/inst/extdata/OSD/M/MIDDLEHILL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "strong fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/M/MIDVALE.json b/inst/extdata/OSD/M/MIDVALE.json index 4cf606df4a..a2845ca8a7 100644 --- a/inst/extdata/OSD/M/MIDVALE.json +++ b/inst/extdata/OSD/M/MIDVALE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong very fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "BA", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate fine and medium prismatic", @@ -144,11 +144,11 @@ "name": "Bt", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "strong medium prismatic", @@ -167,12 +167,12 @@ "name": "Btb", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium prismatic", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bkqb", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse prismatic", @@ -213,11 +213,11 @@ "name": "C1", "top": 99, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C2", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MILLROCK.json b/inst/extdata/OSD/M/MILLROCK.json index b45edaaec2..77ece0bebd 100644 --- a/inst/extdata/OSD/M/MILLROCK.json +++ b/inst/extdata/OSD/M/MILLROCK.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MILL_HOLLOW.json b/inst/extdata/OSD/M/MILL_HOLLOW.json index eeeefc46e0..6e7fc34d36 100644 --- a/inst/extdata/OSD/M/MILL_HOLLOW.json +++ b/inst/extdata/OSD/M/MILL_HOLLOW.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "Ck1", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Ck2", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Ck3", "top": 36, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MILOK.json b/inst/extdata/OSD/M/MILOK.json index f8bd572407..ee476e2acd 100644 --- a/inst/extdata/OSD/M/MILOK.json +++ b/inst/extdata/OSD/M/MILOK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 64, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/M/MINCHEY.json b/inst/extdata/OSD/M/MINCHEY.json index 6951f8411d..694b54caee 100644 --- a/inst/extdata/OSD/M/MINCHEY.json +++ b/inst/extdata/OSD/M/MINCHEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 51, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 81, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 122, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MINCHUMINA.json b/inst/extdata/OSD/M/MINCHUMINA.json index 6619940056..5e2386188a 100644 --- a/inst/extdata/OSD/M/MINCHUMINA.json +++ b/inst/extdata/OSD/M/MINCHUMINA.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MINERAL_MOUNTAIN.json b/inst/extdata/OSD/M/MINERAL_MOUNTAIN.json index c11379553c..6a8e93257c 100644 --- a/inst/extdata/OSD/M/MINERAL_MOUNTAIN.json +++ b/inst/extdata/OSD/M/MINERAL_MOUNTAIN.json @@ -75,12 +75,12 @@ "name": "A11", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,12 +121,12 @@ "name": "B21t", "top": 20, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Cca", "top": 86, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MINIDOKA.json b/inst/extdata/OSD/M/MINIDOKA.json index 39d7c897fc..5af282e871 100644 --- a/inst/extdata/OSD/M/MINIDOKA.json +++ b/inst/extdata/OSD/M/MINIDOKA.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bk", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bkq1", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 51, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkqm", "top": 66, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/M/MINVENO.json b/inst/extdata/OSD/M/MINVENO.json index 6cd4932338..ca19dec25e 100644 --- a/inst/extdata/OSD/M/MINVENO.json +++ b/inst/extdata/OSD/M/MINVENO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thin and medium platy", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse prismatic", @@ -144,12 +144,12 @@ "name": "Bkq", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bkqm", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/M/MITCH.json b/inst/extdata/OSD/M/MITCH.json index 9c1b689a03..4bba4243f8 100644 --- a/inst/extdata/OSD/M/MITCH.json +++ b/inst/extdata/OSD/M/MITCH.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thick platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "C1", "top": 10, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 74, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse subangular blocky structure blocky", @@ -167,11 +167,11 @@ "name": "C4", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MITKOF.json b/inst/extdata/OSD/M/MITKOF.json index bb327c1b7d..5470a663a6 100644 --- a/inst/extdata/OSD/M/MITKOF.json +++ b/inst/extdata/OSD/M/MITKOF.json @@ -101,8 +101,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/M/MOAB.json b/inst/extdata/OSD/M/MOAB.json index 8f33d9a6c1..3cbc75dfe7 100644 --- a/inst/extdata/OSD/M/MOAB.json +++ b/inst/extdata/OSD/M/MOAB.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 25, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MODENA.json b/inst/extdata/OSD/M/MODENA.json index 5048be8163..a88b69181a 100644 --- a/inst/extdata/OSD/M/MODENA.json +++ b/inst/extdata/OSD/M/MODENA.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "C2", "top": 15, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak coarse granular", @@ -121,11 +121,11 @@ "name": "C3", "top": 48, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MOEPITZ.json b/inst/extdata/OSD/M/MOEPITZ.json index 63fa3b57f9..4293a50ce3 100644 --- a/inst/extdata/OSD/M/MOEPITZ.json +++ b/inst/extdata/OSD/M/MOEPITZ.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 8, "texture_class": "very fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C2", "top": 25, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 8, "texture_class": "very fine sandy loam", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MOKIAK.json b/inst/extdata/OSD/M/MOKIAK.json index 1b455166a9..7c9381381d 100644 --- a/inst/extdata/OSD/M/MOKIAK.json +++ b/inst/extdata/OSD/M/MOKIAK.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine granular", "dry_rupture": "loose", @@ -98,11 +98,11 @@ "name": "Bl", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate very fine subangular blocky", @@ -121,12 +121,12 @@ "name": "B21t", "top": 28, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "B22t", "top": 74, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/M/MONASTERIO.json b/inst/extdata/OSD/M/MONASTERIO.json index de1863b8e1..0e47f258c3 100644 --- a/inst/extdata/OSD/M/MONASTERIO.json +++ b/inst/extdata/OSD/M/MONASTERIO.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "sandy loam", "structure": "moderate fine and medium granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "BA", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium prismatic", @@ -190,11 +190,11 @@ "name": "Btq", "top": 64, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine angular blocky", diff --git a/inst/extdata/OSD/M/MONTCHIEF.json b/inst/extdata/OSD/M/MONTCHIEF.json index cc5ece2532..28200aec3d 100644 --- a/inst/extdata/OSD/M/MONTCHIEF.json +++ b/inst/extdata/OSD/M/MONTCHIEF.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "AC1", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,11 +167,11 @@ "name": "AC2", "top": 64, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/M/MONTREAL.json b/inst/extdata/OSD/M/MONTREAL.json index c4cc6b967a..fd4e0a0ef1 100644 --- a/inst/extdata/OSD/M/MONTREAL.json +++ b/inst/extdata/OSD/M/MONTREAL.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MONTWEL.json b/inst/extdata/OSD/M/MONTWEL.json index c3086bd06d..6db59cf28b 100644 --- a/inst/extdata/OSD/M/MONTWEL.json +++ b/inst/extdata/OSD/M/MONTWEL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "NA", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "C1", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "C2", "top": 23, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "C3", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MONUE.json b/inst/extdata/OSD/M/MONUE.json index 4235e35f0c..4a91fea7f8 100644 --- a/inst/extdata/OSD/M/MONUE.json +++ b/inst/extdata/OSD/M/MONUE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "C1", "top": 28, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MOONSET.json b/inst/extdata/OSD/M/MOONSET.json index 7588bde65a..c7e6d66d0a 100644 --- a/inst/extdata/OSD/M/MOONSET.json +++ b/inst/extdata/OSD/M/MOONSET.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "C", "top": 23, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MOORETOWN.json b/inst/extdata/OSD/M/MOORETOWN.json index 6b187f3919..fff7c95987 100644 --- a/inst/extdata/OSD/M/MOORETOWN.json +++ b/inst/extdata/OSD/M/MOORETOWN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loam", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 18, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loam", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loam", "structure": "strong fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 48, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -190,11 +190,11 @@ "name": "2Bg", "top": 69, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -213,11 +213,11 @@ "name": "2C1", "top": 117, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", @@ -236,12 +236,12 @@ "name": "2C2", "top": 145, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/M/MOOSABEC.json b/inst/extdata/OSD/M/MOOSABEC.json index f620047b61..a2971ff480 100644 --- a/inst/extdata/OSD/M/MOOSABEC.json +++ b/inst/extdata/OSD/M/MOOSABEC.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MOOSEJAW.json b/inst/extdata/OSD/M/MOOSEJAW.json index 25d791a917..b200082f2f 100644 --- a/inst/extdata/OSD/M/MOOSEJAW.json +++ b/inst/extdata/OSD/M/MOOSEJAW.json @@ -101,8 +101,8 @@ "dry_hue": "10YR", "dry_value": 3, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2.5, "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", diff --git a/inst/extdata/OSD/M/MORONI.json b/inst/extdata/OSD/M/MORONI.json index ce1b0e1ee2..7a5d37167c 100644 --- a/inst/extdata/OSD/M/MORONI.json +++ b/inst/extdata/OSD/M/MORONI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 23, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate coarse prismatic structure; wedge shaped", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 51, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate coarse prismatic", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 104, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/M/MORTENSON.json b/inst/extdata/OSD/M/MORTENSON.json index 0fe5db3328..eb0e70abb0 100644 --- a/inst/extdata/OSD/M/MORTENSON.json +++ b/inst/extdata/OSD/M/MORTENSON.json @@ -75,11 +75,11 @@ "name": "E1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "E2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "E3", "top": 58, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bt1", "top": 86, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium angular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium angular blocky", diff --git a/inst/extdata/OSD/M/MOWER.json b/inst/extdata/OSD/M/MOWER.json index 2f46e5a474..1f5fe38cbe 100644 --- a/inst/extdata/OSD/M/MOWER.json +++ b/inst/extdata/OSD/M/MOWER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 64, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium platy rock", diff --git a/inst/extdata/OSD/M/MUDIE.json b/inst/extdata/OSD/M/MUDIE.json index e1810aeefd..7b7eca493f 100644 --- a/inst/extdata/OSD/M/MUDIE.json +++ b/inst/extdata/OSD/M/MUDIE.json @@ -121,9 +121,9 @@ "name": "Cg2", "top": 29, "bottom": 60, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "2.5Y", "moist_value": 4, "moist_chroma": 1, diff --git a/inst/extdata/OSD/M/MULEYPOINT.json b/inst/extdata/OSD/M/MULEYPOINT.json index 4994303d23..088ec1f2b4 100644 --- a/inst/extdata/OSD/M/MULEYPOINT.json +++ b/inst/extdata/OSD/M/MULEYPOINT.json @@ -75,12 +75,12 @@ "name": "A", "top": "NA", "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MUMFORD.json b/inst/extdata/OSD/M/MUMFORD.json index d24deb04c0..6c289dd02e 100644 --- a/inst/extdata/OSD/M/MUMFORD.json +++ b/inst/extdata/OSD/M/MUMFORD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk3", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine subangular blocky", diff --git a/inst/extdata/OSD/M/MURPHILL.json b/inst/extdata/OSD/M/MURPHILL.json index 7eca4eff67..0a31806520 100644 --- a/inst/extdata/OSD/M/MURPHILL.json +++ b/inst/extdata/OSD/M/MURPHILL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate fine platy", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/M/MUSINIA.json b/inst/extdata/OSD/M/MUSINIA.json index 7a6857a432..71f2b6140d 100644 --- a/inst/extdata/OSD/M/MUSINIA.json +++ b/inst/extdata/OSD/M/MUSINIA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak very coarse granular", @@ -98,11 +98,11 @@ "name": "C", "top": 18, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/M/MUSSENTUCHIT.json b/inst/extdata/OSD/M/MUSSENTUCHIT.json index 5dbd9b5d38..15b428aac3 100644 --- a/inst/extdata/OSD/M/MUSSENTUCHIT.json +++ b/inst/extdata/OSD/M/MUSSENTUCHIT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "By", "top": 5, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 6, + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Cy1", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Cy2", "top": 58, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Cr", "top": 97, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/M/MYTON.json b/inst/extdata/OSD/M/MYTON.json index 9123e4fc14..9606363757 100644 --- a/inst/extdata/OSD/M/MYTON.json +++ b/inst/extdata/OSD/M/MYTON.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -98,11 +98,11 @@ "name": "C2", "top": 10, "bottom": 229, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/N/NAGITSY.json b/inst/extdata/OSD/N/NAGITSY.json index 12e6c72c8d..85ff5695ea 100644 --- a/inst/extdata/OSD/N/NAGITSY.json +++ b/inst/extdata/OSD/N/NAGITSY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "strong very fine and fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "AB", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bw", "top": 58, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -167,12 +167,12 @@ "name": "R", "top": 86, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 1, + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/N/NAMMOTH.json b/inst/extdata/OSD/N/NAMMOTH.json index c1657078ca..0c8e71d1c2 100644 --- a/inst/extdata/OSD/N/NAMMOTH.json +++ b/inst/extdata/OSD/N/NAMMOTH.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "BA", "top": 13, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/N/NAMON.json b/inst/extdata/OSD/N/NAMON.json index 67a94d1333..c4eeac739f 100644 --- a/inst/extdata/OSD/N/NAMON.json +++ b/inst/extdata/OSD/N/NAMON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "E", "top": 13, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "B/E", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt", "top": 84, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/N/NANNYTON.json b/inst/extdata/OSD/N/NANNYTON.json index 0713bdfa05..342fdada2a 100644 --- a/inst/extdata/OSD/N/NANNYTON.json +++ b/inst/extdata/OSD/N/NANNYTON.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "NA", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 36, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2Bk3", "top": 58, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "2Bk4", "top": 69, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "soft", @@ -236,12 +236,12 @@ "name": "3Bk5", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/N/NAPLENE.json b/inst/extdata/OSD/N/NAPLENE.json index 62c972c997..914a46776c 100644 --- a/inst/extdata/OSD/N/NAPLENE.json +++ b/inst/extdata/OSD/N/NAPLENE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "C1", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 38, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -167,9 +167,9 @@ "name": "C3", "top": 56, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 5, "moist_chroma": 4, @@ -190,11 +190,11 @@ "name": "C4", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/N/NARROWS.json b/inst/extdata/OSD/N/NARROWS.json index 8a4b579ec6..5179b3bcf4 100644 --- a/inst/extdata/OSD/N/NARROWS.json +++ b/inst/extdata/OSD/N/NARROWS.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NASER.json b/inst/extdata/OSD/N/NASER.json index f037571bea..5f60f955ac 100644 --- a/inst/extdata/OSD/N/NASER.json +++ b/inst/extdata/OSD/N/NASER.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -98,11 +98,11 @@ "name": "C1", "top": 25, "bottom": 82, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 82, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/N/NAZ.json b/inst/extdata/OSD/N/NAZ.json index 4c8ed66f11..a8073dd152 100644 --- a/inst/extdata/OSD/N/NAZ.json +++ b/inst/extdata/OSD/N/NAZ.json @@ -75,12 +75,12 @@ "name": "Oe", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 45, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine granular", @@ -121,12 +121,12 @@ "name": "A2", "top": 45, "bottom": 78, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C", "top": 78, "bottom": 123, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cr", "top": 123, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "NA", diff --git a/inst/extdata/OSD/N/NEARL.json b/inst/extdata/OSD/N/NEARL.json index b89d69faaa..b9de07345f 100644 --- a/inst/extdata/OSD/N/NEARL.json +++ b/inst/extdata/OSD/N/NEARL.json @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -167,12 +167,12 @@ "name": "Bw2", "top": 58, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse prismatic", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "Bss", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/N/NEHAR.json b/inst/extdata/OSD/N/NEHAR.json index 65aa40a3ac..176ad2c985 100644 --- a/inst/extdata/OSD/N/NEHAR.json +++ b/inst/extdata/OSD/N/NEHAR.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "B21t", "top": 13, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "strong coarse prismatic", @@ -121,12 +121,12 @@ "name": "B22t", "top": 41, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay", "structure": "moderate coarse prismatic structure that parts to moderate, fine and very fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "B3", "top": 74, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/N/NEPONSET.json b/inst/extdata/OSD/N/NEPONSET.json index ddb020359c..2228ae2c71 100644 --- a/inst/extdata/OSD/N/NEPONSET.json +++ b/inst/extdata/OSD/N/NEPONSET.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "C2", "top": 33, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NESKAHI.json b/inst/extdata/OSD/N/NESKAHI.json index 26f880f867..a9114f0157 100644 --- a/inst/extdata/OSD/N/NESKAHI.json +++ b/inst/extdata/OSD/N/NESKAHI.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 8, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 64, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "NA", @@ -167,11 +167,11 @@ "name": "C4", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate coarse subangular blocky", diff --git a/inst/extdata/OSD/N/NETO.json b/inst/extdata/OSD/N/NETO.json index f6d743ba20..9737015221 100644 --- a/inst/extdata/OSD/N/NETO.json +++ b/inst/extdata/OSD/N/NETO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "C1", "top": 5, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C2", "top": 33, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C3", "top": 41, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C4", "top": 71, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "C5", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/N/NEVA.json b/inst/extdata/OSD/N/NEVA.json index 584e8e7e90..6f161100a5 100644 --- a/inst/extdata/OSD/N/NEVA.json +++ b/inst/extdata/OSD/N/NEVA.json @@ -241,7 +241,7 @@ "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NEWSROCK.json b/inst/extdata/OSD/N/NEWSROCK.json index c7f05fe089..c005459769 100644 --- a/inst/extdata/OSD/N/NEWSROCK.json +++ b/inst/extdata/OSD/N/NEWSROCK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -98,9 +98,9 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 4, @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "BC", "top": 43, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Ck", "top": 79, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "3C", "top": 117, "bottom": 175, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "NA", diff --git a/inst/extdata/OSD/N/NIBBS.json b/inst/extdata/OSD/N/NIBBS.json index 6c8ce2acc0..d4062b38a2 100644 --- a/inst/extdata/OSD/N/NIBBS.json +++ b/inst/extdata/OSD/N/NIBBS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "2Bk1", "top": 46, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "2Bk2", "top": 79, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/N/NICHOLFLAT.json b/inst/extdata/OSD/N/NICHOLFLAT.json index 8d98335d74..4156570bc1 100644 --- a/inst/extdata/OSD/N/NICHOLFLAT.json +++ b/inst/extdata/OSD/N/NICHOLFLAT.json @@ -75,11 +75,11 @@ "name": "E", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine subangular blocky", @@ -98,12 +98,12 @@ "name": "BE", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very fine angular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt", "top": 18, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine columnar", @@ -144,12 +144,12 @@ "name": "Bkqm", "top": 46, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 6, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bqm", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 4, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/N/NIKEY.json b/inst/extdata/OSD/N/NIKEY.json index 7e5978107f..be1a31db50 100644 --- a/inst/extdata/OSD/N/NIKEY.json +++ b/inst/extdata/OSD/N/NIKEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "2Bk1", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "2Bk2", "top": 97, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2C", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NINEKAR.json b/inst/extdata/OSD/N/NINEKAR.json index a77a8cfaf6..9d9635f43b 100644 --- a/inst/extdata/OSD/N/NINEKAR.json +++ b/inst/extdata/OSD/N/NINEKAR.json @@ -167,8 +167,8 @@ "name": "R", "top": 71, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 3, "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/N/NIPINTUCK.json b/inst/extdata/OSD/N/NIPINTUCK.json index d981814161..c9c4eebf45 100644 --- a/inst/extdata/OSD/N/NIPINTUCK.json +++ b/inst/extdata/OSD/N/NIPINTUCK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/N/NOANK.json b/inst/extdata/OSD/N/NOANK.json index 56a8023252..b10cb23742 100644 --- a/inst/extdata/OSD/N/NOANK.json +++ b/inst/extdata/OSD/N/NOANK.json @@ -124,8 +124,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/N/NOOKACHAMPS.json b/inst/extdata/OSD/N/NOOKACHAMPS.json index bb84c005ba..588d1c0aef 100644 --- a/inst/extdata/OSD/N/NOOKACHAMPS.json +++ b/inst/extdata/OSD/N/NOOKACHAMPS.json @@ -101,9 +101,9 @@ "dry_hue": "5Y", "dry_value": 7, "dry_chroma": 1, - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 6, + "moist_chroma": 0, "texture_class": "silt loam", "structure": "moderate very coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NOONKU.json b/inst/extdata/OSD/N/NOONKU.json index 5bb05fb9fd..6222860e96 100644 --- a/inst/extdata/OSD/N/NOONKU.json +++ b/inst/extdata/OSD/N/NOONKU.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "5G", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 2, + "moist_chroma": "NA", "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/N/NORTHCASTLE.json b/inst/extdata/OSD/N/NORTHCASTLE.json index 61187a3dfc..029822df3a 100644 --- a/inst/extdata/OSD/N/NORTHCASTLE.json +++ b/inst/extdata/OSD/N/NORTHCASTLE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "strong medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 41, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine prismatic", @@ -144,12 +144,12 @@ "name": "Bqm", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 152, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/N/NORTHFORK.json b/inst/extdata/OSD/N/NORTHFORK.json index 0d11fc1bcc..5496dac5c2 100644 --- a/inst/extdata/OSD/N/NORTHFORK.json +++ b/inst/extdata/OSD/N/NORTHFORK.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw1", "top": 36, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 112, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw3", "top": 142, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/N/NOTTER.json b/inst/extdata/OSD/N/NOTTER.json index dd9335236c..e8a8ccd427 100644 --- a/inst/extdata/OSD/N/NOTTER.json +++ b/inst/extdata/OSD/N/NOTTER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 38, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 56, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/N/NOYO.json b/inst/extdata/OSD/N/NOYO.json index 795e1a80bd..d4cf442e04 100644 --- a/inst/extdata/OSD/N/NOYO.json +++ b/inst/extdata/OSD/N/NOYO.json @@ -167,9 +167,9 @@ "name": "B2t", "top": 74, "bottom": 135, - "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 8, + "dry_hue": "N", + "dry_value": 7, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/N/NYSSATON.json b/inst/extdata/OSD/N/NYSSATON.json index ec4bb0c39c..733dcb4d32 100644 --- a/inst/extdata/OSD/N/NYSSATON.json +++ b/inst/extdata/OSD/N/NYSSATON.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine and fine granular", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 8, + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 51, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk3", "top": 69, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "NA", @@ -167,11 +167,11 @@ "name": "C", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "NA", diff --git a/inst/extdata/OSD/O/OAKCITY.json b/inst/extdata/OSD/O/OAKCITY.json index 748a338c9a..d9baac6eee 100644 --- a/inst/extdata/OSD/O/OAKCITY.json +++ b/inst/extdata/OSD/O/OAKCITY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 38, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay", "structure": "weak fine subangular blocky", @@ -167,12 +167,12 @@ "name": "C1", "top": 79, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "C2", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/O/OBRAST.json b/inst/extdata/OSD/O/OBRAST.json index cdb164e74c..452d564d66 100644 --- a/inst/extdata/OSD/O/OBRAST.json +++ b/inst/extdata/OSD/O/OBRAST.json @@ -75,11 +75,11 @@ "name": "A11", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A13", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic structure that parts to strong angular blocky; extremely hard, very firm, very sticky, very plastic; few fine and few coarse roots; few very fine pores; few slickensides and wedge", @@ -144,11 +144,11 @@ "name": "Cl", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic structure that parts to strong angular blocky; extremely hard, very firm, very sticky, very plastic; few fine and few coarse roots; few very fine pores; common slickensides and wedge", @@ -167,11 +167,11 @@ "name": "C2", "top": 38, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic structure that parts to strong angular block; extremely hard, very firm, very sticky, very plastic; few fine, few coarse roots; few fine pores; common slickensides and wedge", @@ -190,11 +190,11 @@ "name": "C3", "top": 91, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C5", "top": 142, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "l0YR", - "moist_value": 8, + "dry_hue": "l0YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 7, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/O/OCEANHOUSE.json b/inst/extdata/OSD/O/OCEANHOUSE.json index 834c99ccc5..a92a7d8373 100644 --- a/inst/extdata/OSD/O/OCEANHOUSE.json +++ b/inst/extdata/OSD/O/OCEANHOUSE.json @@ -168,8 +168,8 @@ "top": 110, "bottom": 150, "dry_hue": "2.5Y", - "dry_value": 5, - "dry_chroma": 4, + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", "moist_value": 4, "moist_chroma": 2, @@ -191,8 +191,8 @@ "top": 150, "bottom": 200, "dry_hue": "2.5Y", - "dry_value": 5, - "dry_chroma": 4, + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", "moist_value": 4, "moist_chroma": 2, diff --git a/inst/extdata/OSD/O/OCOSTA.json b/inst/extdata/OSD/O/OCOSTA.json index 299946f326..5e5b6da29b 100644 --- a/inst/extdata/OSD/O/OCOSTA.json +++ b/inst/extdata/OSD/O/OCOSTA.json @@ -167,9 +167,9 @@ "name": "2Oa", "top": 58, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 2, + "dry_chroma": 2, "moist_hue": "5YR", "moist_value": 2, "moist_chroma": 1, diff --git a/inst/extdata/OSD/O/ODARK.json b/inst/extdata/OSD/O/ODARK.json index ef639cd1d2..0313b7b4a0 100644 --- a/inst/extdata/OSD/O/ODARK.json +++ b/inst/extdata/OSD/O/ODARK.json @@ -98,11 +98,11 @@ "name": "A", "top": 10, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sand", "structure": "strong medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 69, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium granular", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 114, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt4", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/O/OGILVIE.json b/inst/extdata/OSD/O/OGILVIE.json index da38dded50..da82757fc2 100644 --- a/inst/extdata/OSD/O/OGILVIE.json +++ b/inst/extdata/OSD/O/OGILVIE.json @@ -75,9 +75,9 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/O/OHTOG.json b/inst/extdata/OSD/O/OHTOG.json index e78d62e3ea..90a74e9357 100644 --- a/inst/extdata/OSD/O/OHTOG.json +++ b/inst/extdata/OSD/O/OHTOG.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 46, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cy1", "top": 71, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Cy2", "top": 94, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Ck", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/O/OKEELANTA.json b/inst/extdata/OSD/O/OKEELANTA.json index 01a54f8d6c..883666e999 100644 --- a/inst/extdata/OSD/O/OKEELANTA.json +++ b/inst/extdata/OSD/O/OKEELANTA.json @@ -78,8 +78,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2, "moist_chroma": "NA", "texture_class": "NA", "structure": "weak fine and medium granular", diff --git a/inst/extdata/OSD/O/OKERLAND.json b/inst/extdata/OSD/O/OKERLAND.json index 98f3ebd1c2..a518ee83b7 100644 --- a/inst/extdata/OSD/O/OKERLAND.json +++ b/inst/extdata/OSD/O/OKERLAND.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 16, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A", "top": 16, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C3", "top": 64, "bottom": 90, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C4", "top": 90, "bottom": 118, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C5", "top": 118, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/O/OKRIST.json b/inst/extdata/OSD/O/OKRIST.json index 75470d11a7..a75ccf306c 100644 --- a/inst/extdata/OSD/O/OKRIST.json +++ b/inst/extdata/OSD/O/OKRIST.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "l0YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bqk1", "top": 20, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bqk2", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Ck", "top": 76, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 140, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/O/OLATON.json b/inst/extdata/OSD/O/OLATON.json index 0c9a0f955a..921244eeb1 100644 --- a/inst/extdata/OSD/O/OLATON.json +++ b/inst/extdata/OSD/O/OLATON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "coarse sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "AB", "top": 13, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 56, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 97, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 140, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/O/OLDSFERRY.json b/inst/extdata/OSD/O/OLDSFERRY.json index 9fdb34c616..dd0ed50537 100644 --- a/inst/extdata/OSD/O/OLDSFERRY.json +++ b/inst/extdata/OSD/O/OLDSFERRY.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine platy", @@ -121,11 +121,11 @@ "name": "Bw", "top": 46, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", diff --git a/inst/extdata/OSD/O/OLDWOMANRIVER.json b/inst/extdata/OSD/O/OLDWOMANRIVER.json index d61f6d3c6a..5376b1522e 100644 --- a/inst/extdata/OSD/O/OLDWOMANRIVER.json +++ b/inst/extdata/OSD/O/OLDWOMANRIVER.json @@ -121,9 +121,9 @@ "name": "Bw", "top": 14, "bottom": 35, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/O/OLEO.json b/inst/extdata/OSD/O/OLEO.json index e83b34fab3..0d45d28b0e 100644 --- a/inst/extdata/OSD/O/OLEO.json +++ b/inst/extdata/OSD/O/OLEO.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse platy", @@ -121,11 +121,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "B/E", "top": 28, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 74, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong coarse subangular blocky", diff --git a/inst/extdata/OSD/O/OLJETO.json b/inst/extdata/OSD/O/OLJETO.json index b6d3f9aea8..c8e73e2153 100644 --- a/inst/extdata/OSD/O/OLJETO.json +++ b/inst/extdata/OSD/O/OLJETO.json @@ -75,12 +75,12 @@ "name": "C1", "top": "NA", "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "loamy fine sand", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Ck", "top": 51, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", @@ -121,12 +121,12 @@ "name": "C2", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 8, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/O/OMAK.json b/inst/extdata/OSD/O/OMAK.json index 41d480765a..759d4d71c1 100644 --- a/inst/extdata/OSD/O/OMAK.json +++ b/inst/extdata/OSD/O/OMAK.json @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "E", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt/E", "top": 43, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt", "top": 71, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine angular blocky", @@ -213,11 +213,11 @@ "name": "Bqm", "top": 102, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -236,12 +236,12 @@ "name": "Bkqm", "top": 119, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/O/ONAQUI.json b/inst/extdata/OSD/O/ONAQUI.json index 528aca592e..c3bac3bfec 100644 --- a/inst/extdata/OSD/O/ONAQUI.json +++ b/inst/extdata/OSD/O/ONAQUI.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and very fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and very fine subangular blocky", diff --git a/inst/extdata/OSD/O/OPOLIS.json b/inst/extdata/OSD/O/OPOLIS.json index 49ef68a3f3..8f4b9785e2 100644 --- a/inst/extdata/OSD/O/OPOLIS.json +++ b/inst/extdata/OSD/O/OPOLIS.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/O/ORCAP.json b/inst/extdata/OSD/O/ORCAP.json index 3a27c80e53..807b99f07f 100644 --- a/inst/extdata/OSD/O/ORCAP.json +++ b/inst/extdata/OSD/O/ORCAP.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and very fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,9 +121,9 @@ "name": "Bw2", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 6, @@ -144,11 +144,11 @@ "name": "Bw3", "top": 30, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "weak coarse and medium subangular blocky", diff --git a/inst/extdata/OSD/O/ORCKY.json b/inst/extdata/OSD/O/ORCKY.json index dd1df9f612..2e651bc588 100644 --- a/inst/extdata/OSD/O/ORCKY.json +++ b/inst/extdata/OSD/O/ORCKY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bk", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "2Bk1", "top": 43, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,11 +167,11 @@ "name": "2Bk2", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/O/ORNEA.json b/inst/extdata/OSD/O/ORNEA.json index e2466360b3..ca9883c758 100644 --- a/inst/extdata/OSD/O/ORNEA.json +++ b/inst/extdata/OSD/O/ORNEA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "strong very fine platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate coarse prismatic", @@ -121,12 +121,12 @@ "name": "Btk", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "2Bk", "top": 30, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/O/ORTIZ.json b/inst/extdata/OSD/O/ORTIZ.json index 8401fbc00f..a48f5b0469 100644 --- a/inst/extdata/OSD/O/ORTIZ.json +++ b/inst/extdata/OSD/O/ORTIZ.json @@ -98,9 +98,9 @@ "name": "Bt1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/O/OSOTE.json b/inst/extdata/OSD/O/OSOTE.json index 972d8ad8d5..11a0ac2b62 100644 --- a/inst/extdata/OSD/O/OSOTE.json +++ b/inst/extdata/OSD/O/OSOTE.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "Bw", "top": 23, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak coarse and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 51, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate coarse and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 66, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bk", "top": 84, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "3C", "top": 94, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "4C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/O/OSTLER.json b/inst/extdata/OSD/O/OSTLER.json index 32650991c9..82c41ed51e 100644 --- a/inst/extdata/OSD/O/OSTLER.json +++ b/inst/extdata/OSD/O/OSTLER.json @@ -99,11 +99,11 @@ "top": 3, "bottom": 21, "dry_hue": "10YR", - "dry_value": 4, - "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 2, - "moist_chroma": 1, + "dry_value": 2, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -122,11 +122,11 @@ "top": 21, "bottom": 49, "dry_hue": "10YR", - "dry_value": 4, + "dry_value": 2, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 2, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 49, "bottom": 59, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -168,11 +168,11 @@ "top": 59, "bottom": 74, "dry_hue": "2.5Y", - "dry_value": 7, - "dry_chroma": 2, - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 3, + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -191,11 +191,11 @@ "top": 74, "bottom": 97, "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -214,11 +214,11 @@ "top": 97, "bottom": 127, "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -237,10 +237,10 @@ "top": 127, "bottom": 155, "dry_hue": "2.5Y", - "dry_value": 7, + "dry_value": 6, "dry_chroma": 2, - "moist_hue": "2.5Y", - "moist_value": 6, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/O/OTA.json b/inst/extdata/OSD/O/OTA.json index 102f33e4d4..b30e656391 100644 --- a/inst/extdata/OSD/O/OTA.json +++ b/inst/extdata/OSD/O/OTA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium platy", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular", @@ -144,11 +144,11 @@ "name": "2Bw3", "top": 48, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular", @@ -167,11 +167,11 @@ "name": "2Bkq1", "top": 58, "bottom": 75, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2Bkq2", "top": 75, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/O/OUARD.json b/inst/extdata/OSD/O/OUARD.json index 35ca187ffd..12c17b26f8 100644 --- a/inst/extdata/OSD/O/OUARD.json +++ b/inst/extdata/OSD/O/OUARD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine crumb", @@ -98,12 +98,12 @@ "name": "B21t", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "B22t", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "B3ca", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak coarse angular blocky", diff --git a/inst/extdata/OSD/O/OVIDCREEK.json b/inst/extdata/OSD/O/OVIDCREEK.json index 8702b26a1d..8078b262ab 100644 --- a/inst/extdata/OSD/O/OVIDCREEK.json +++ b/inst/extdata/OSD/O/OVIDCREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "strong medium and thick platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Btkn1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "moderate medium prismatic", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Btkn2", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "strong medium columnar", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Bkn", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Btkn", "top": 61, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "weak thick and very thick platy", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bkn1", "top": 97, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "Bkn2", "top": 155, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/O/OWSEL.json b/inst/extdata/OSD/O/OWSEL.json index 6b6b626f1d..d9dda2bd5e 100644 --- a/inst/extdata/OSD/O/OWSEL.json +++ b/inst/extdata/OSD/O/OWSEL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bkq", "top": 66, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk", "top": 132, "bottom": 173, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PACKERJOHN.json b/inst/extdata/OSD/P/PACKERJOHN.json index e2fae47dfd..5b437cf196 100644 --- a/inst/extdata/OSD/P/PACKERJOHN.json +++ b/inst/extdata/OSD/P/PACKERJOHN.json @@ -98,11 +98,11 @@ "name": "Al", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 48, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "2C1", "top": 84, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C2", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", @@ -213,12 +213,12 @@ "name": "2C3", "top": 152, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/P/PAGARI.json b/inst/extdata/OSD/P/PAGARI.json index 23e9bf04f6..1b0f83aec6 100644 --- a/inst/extdata/OSD/P/PAGARI.json +++ b/inst/extdata/OSD/P/PAGARI.json @@ -193,9 +193,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PAHREAH.json b/inst/extdata/OSD/P/PAHREAH.json index e360ae76fe..1875413374 100644 --- a/inst/extdata/OSD/P/PAHREAH.json +++ b/inst/extdata/OSD/P/PAHREAH.json @@ -75,12 +75,12 @@ "name": "Bw", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,9 +144,9 @@ "name": "Bk3", "top": 43, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 7, "moist_chroma": 3, @@ -167,11 +167,11 @@ "name": "Bk4", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PAHSIMEROI.json b/inst/extdata/OSD/P/PAHSIMEROI.json index 10eae490c2..cb627c9ca1 100644 --- a/inst/extdata/OSD/P/PAHSIMEROI.json +++ b/inst/extdata/OSD/P/PAHSIMEROI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine and fine platy", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/P/PAILO.json b/inst/extdata/OSD/P/PAILO.json index 391e107b7a..28f8ca707b 100644 --- a/inst/extdata/OSD/P/PAILO.json +++ b/inst/extdata/OSD/P/PAILO.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "l0YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "NA", @@ -216,9 +216,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/PAINTER.json b/inst/extdata/OSD/P/PAINTER.json index 3cf7316ff1..2f337eeb67 100644 --- a/inst/extdata/OSD/P/PAINTER.json +++ b/inst/extdata/OSD/P/PAINTER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/P/PAISLEY.json b/inst/extdata/OSD/P/PAISLEY.json index 7265309f07..75c17e86df 100644 --- a/inst/extdata/OSD/P/PAISLEY.json +++ b/inst/extdata/OSD/P/PAISLEY.json @@ -78,8 +78,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 3, "moist_chroma": "NA", "texture_class": "loamy fine sand", "structure": "moderate medium granular", @@ -124,8 +124,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "sandy clay", "structure": "moderate fine subangular blocky", @@ -147,8 +147,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 5, "moist_chroma": "NA", "texture_class": "sandy clay", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/P/PAJO.json b/inst/extdata/OSD/P/PAJO.json index 7560d7f874..b38b0bd491 100644 --- a/inst/extdata/OSD/P/PAJO.json +++ b/inst/extdata/OSD/P/PAJO.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "AC", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "2C", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/P/PALISADE.json b/inst/extdata/OSD/P/PALISADE.json index 90d76f3fdd..f8059ef2d6 100644 --- a/inst/extdata/OSD/P/PALISADE.json +++ b/inst/extdata/OSD/P/PALISADE.json @@ -190,9 +190,9 @@ "name": "Cn2", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/P/PALMYRA.json b/inst/extdata/OSD/P/PALMYRA.json index ed5efc63f7..cd6b07363c 100644 --- a/inst/extdata/OSD/P/PALMYRA.json +++ b/inst/extdata/OSD/P/PALMYRA.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/PANGUITCH.json b/inst/extdata/OSD/P/PANGUITCH.json index fc8ef9fc86..b6980de5ed 100644 --- a/inst/extdata/OSD/P/PANGUITCH.json +++ b/inst/extdata/OSD/P/PANGUITCH.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 28, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 66, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 7, - "moist_chroma": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/PARAGONAH.json b/inst/extdata/OSD/P/PARAGONAH.json index 59d8754001..d594d19d8e 100644 --- a/inst/extdata/OSD/P/PARAGONAH.json +++ b/inst/extdata/OSD/P/PARAGONAH.json @@ -75,12 +75,12 @@ "name": "An", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "BAn", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Btn", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", "dry_rupture": "NA", @@ -144,11 +144,11 @@ "name": "C1", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C2", "top": 46, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "C3", "top": 107, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "C4", "top": 137, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "NA", diff --git a/inst/extdata/OSD/P/PARIA.json b/inst/extdata/OSD/P/PARIA.json index b90045a6a9..00c603fa85 100644 --- a/inst/extdata/OSD/P/PARIA.json +++ b/inst/extdata/OSD/P/PARIA.json @@ -75,12 +75,12 @@ "name": "C1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -98,12 +98,12 @@ "name": "C2", "top": 8, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy fine sand", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C3", "top": 46, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy sand", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C4", "top": 71, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PARIETTE.json b/inst/extdata/OSD/P/PARIETTE.json index c031faa9c0..75826f2d98 100644 --- a/inst/extdata/OSD/P/PARIETTE.json +++ b/inst/extdata/OSD/P/PARIETTE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk3", "top": 51, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/P/PAROHTOG.json b/inst/extdata/OSD/P/PAROHTOG.json index a68e607504..4257dda7ba 100644 --- a/inst/extdata/OSD/P/PAROHTOG.json +++ b/inst/extdata/OSD/P/PAROHTOG.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "C1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C2", "top": 18, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "C3", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PAROWAN.json b/inst/extdata/OSD/P/PAROWAN.json index 7efbac4714..7cc5e632d1 100644 --- a/inst/extdata/OSD/P/PAROWAN.json +++ b/inst/extdata/OSD/P/PAROWAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "NA", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "C2", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C3", "top": 56, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "C4", "top": 69, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C5", "top": 86, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "C6", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PASTERN.json b/inst/extdata/OSD/P/PASTERN.json index 9288a67791..ba89ff9e37 100644 --- a/inst/extdata/OSD/P/PASTERN.json +++ b/inst/extdata/OSD/P/PASTERN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate fine and very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "moderate coarse and very coarse prismatic", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium and coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkm", "top": 46, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PATHEAD.json b/inst/extdata/OSD/P/PATHEAD.json index cfcb0e0ed0..856f1f07f6 100644 --- a/inst/extdata/OSD/P/PATHEAD.json +++ b/inst/extdata/OSD/P/PATHEAD.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 36, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/P/PAULVILLE.json b/inst/extdata/OSD/P/PAULVILLE.json index 7241bd8553..e962895453 100644 --- a/inst/extdata/OSD/P/PAULVILLE.json +++ b/inst/extdata/OSD/P/PAULVILLE.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 20, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 43, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 79, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 102, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -213,12 +213,12 @@ "name": "Bk3", "top": 119, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PAUNSAUGUNT.json b/inst/extdata/OSD/P/PAUNSAUGUNT.json index 8b4626f050..2eb0da7a6d 100644 --- a/inst/extdata/OSD/P/PAUNSAUGUNT.json +++ b/inst/extdata/OSD/P/PAUNSAUGUNT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy vesicular surface crust over very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -121,12 +121,12 @@ "name": "C", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/PAY.json b/inst/extdata/OSD/P/PAY.json index 2907f5f65b..4c571807f4 100644 --- a/inst/extdata/OSD/P/PAY.json +++ b/inst/extdata/OSD/P/PAY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "weak fine granular", @@ -100,9 +100,9 @@ "bottom": 18, "dry_hue": "10YR", "dry_value": 5, - "dry_chroma": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "weak fine granular", @@ -122,10 +122,10 @@ "top": 18, "bottom": 28, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "weak fine subangular blocky", @@ -145,10 +145,10 @@ "top": 28, "bottom": 66, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "massive", @@ -168,10 +168,10 @@ "top": 66, "bottom": 104, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", @@ -191,11 +191,11 @@ "top": 104, "bottom": 152, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 6, + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 1, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/P/PAYNECREEK.json b/inst/extdata/OSD/P/PAYNECREEK.json index 4edc068650..daf28c2d18 100644 --- a/inst/extdata/OSD/P/PAYNECREEK.json +++ b/inst/extdata/OSD/P/PAYNECREEK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "BA", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "strong medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PEANUTROCK.json b/inst/extdata/OSD/P/PEANUTROCK.json index e5ba9b38b0..da88e3b2db 100644 --- a/inst/extdata/OSD/P/PEANUTROCK.json +++ b/inst/extdata/OSD/P/PEANUTROCK.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/PEGRAM.json b/inst/extdata/OSD/P/PEGRAM.json index 63812d363d..2311a5dac8 100644 --- a/inst/extdata/OSD/P/PEGRAM.json +++ b/inst/extdata/OSD/P/PEGRAM.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk1", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Btk2", "top": 71, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -190,9 +190,9 @@ "name": "2Bk1", "top": 99, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, "moist_chroma": 4, @@ -213,9 +213,9 @@ "name": "3Bk2", "top": 127, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/P/PELION.json b/inst/extdata/OSD/P/PELION.json index c7e431dce4..c6b24e8518 100644 --- a/inst/extdata/OSD/P/PELION.json +++ b/inst/extdata/OSD/P/PELION.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 5, "moist_chroma": 2, diff --git a/inst/extdata/OSD/P/PENDANT.json b/inst/extdata/OSD/P/PENDANT.json index c68fbaa5a3..72dfc1692b 100644 --- a/inst/extdata/OSD/P/PENDANT.json +++ b/inst/extdata/OSD/P/PENDANT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", diff --git a/inst/extdata/OSD/P/PENELAS.json b/inst/extdata/OSD/P/PENELAS.json index 34d707c1e2..7e2ce2cdaf 100644 --- a/inst/extdata/OSD/P/PENELAS.json +++ b/inst/extdata/OSD/P/PENELAS.json @@ -121,9 +121,9 @@ "name": "Cr", "top": 13, "bottom": 25, - "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 3, + "dry_hue": "N", + "dry_value": 5, + "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/P/PENNELL.json b/inst/extdata/OSD/P/PENNELL.json index be82359d1a..1566ca7aa6 100644 --- a/inst/extdata/OSD/P/PENNELL.json +++ b/inst/extdata/OSD/P/PENNELL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PERHAM.json b/inst/extdata/OSD/P/PERHAM.json index 1fc56d6d62..28c2eb7ed0 100644 --- a/inst/extdata/OSD/P/PERHAM.json +++ b/inst/extdata/OSD/P/PERHAM.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/PERLA.json b/inst/extdata/OSD/P/PERLA.json index e8360905c0..a89a6e24ae 100644 --- a/inst/extdata/OSD/P/PERLA.json +++ b/inst/extdata/OSD/P/PERLA.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "BA", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and very fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt", "structure": "strong medium prismatic", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 46, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong fine and very fine angular blocky", @@ -190,12 +190,12 @@ "name": "Bt3", "top": 53, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PHARO.json b/inst/extdata/OSD/P/PHARO.json index ef47f06560..aadf13f035 100644 --- a/inst/extdata/OSD/P/PHARO.json +++ b/inst/extdata/OSD/P/PHARO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 20, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", "dry_rupture": "loose", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/PHYLLIS.json b/inst/extdata/OSD/P/PHYLLIS.json index af52a83b85..f97d344d1c 100644 --- a/inst/extdata/OSD/P/PHYLLIS.json +++ b/inst/extdata/OSD/P/PHYLLIS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Ag", "top": 18, "bottom": 27, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "very fine sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Cg1", "top": 27, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Cg2", "top": 56, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PIBLER.json b/inst/extdata/OSD/P/PIBLER.json index e447eacbd3..a4bd0ec276 100644 --- a/inst/extdata/OSD/P/PIBLER.json +++ b/inst/extdata/OSD/P/PIBLER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 33, "bottom": 40, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PICKETPIN.json b/inst/extdata/OSD/P/PICKETPIN.json index 2d83f23f5f..d25173b6b9 100644 --- a/inst/extdata/OSD/P/PICKETPIN.json +++ b/inst/extdata/OSD/P/PICKETPIN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 43, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/P/PICKRELL.json b/inst/extdata/OSD/P/PICKRELL.json index 09e1460577..e0833beae1 100644 --- a/inst/extdata/OSD/P/PICKRELL.json +++ b/inst/extdata/OSD/P/PICKRELL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PIERCEPARK.json b/inst/extdata/OSD/P/PIERCEPARK.json index b58e202da9..45bcd321d0 100644 --- a/inst/extdata/OSD/P/PIERCEPARK.json +++ b/inst/extdata/OSD/P/PIERCEPARK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak thin platy", @@ -121,11 +121,11 @@ "name": "A3", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "AB", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -167,12 +167,12 @@ "name": "BA", "top": 41, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt1", "top": 69, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bt2", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/P/PILOTPEAK.json b/inst/extdata/OSD/P/PILOTPEAK.json index 9e81d6586d..f2c5cd977e 100644 --- a/inst/extdata/OSD/P/PILOTPEAK.json +++ b/inst/extdata/OSD/P/PILOTPEAK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 36, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PINCHEY.json b/inst/extdata/OSD/P/PINCHEY.json index 48b343277d..d865bfcbfd 100644 --- a/inst/extdata/OSD/P/PINCHEY.json +++ b/inst/extdata/OSD/P/PINCHEY.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PINEPOINT.json b/inst/extdata/OSD/P/PINEPOINT.json index 026de9eab9..251c339cd7 100644 --- a/inst/extdata/OSD/P/PINEPOINT.json +++ b/inst/extdata/OSD/P/PINEPOINT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sand", "structure": "weak fine subangular blocky", @@ -98,12 +98,12 @@ "name": "C1", "top": 15, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -121,12 +121,12 @@ "name": "C2", "top": 38, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/P/PINNEY.json b/inst/extdata/OSD/P/PINNEY.json index 3f9b122592..3371490687 100644 --- a/inst/extdata/OSD/P/PINNEY.json +++ b/inst/extdata/OSD/P/PINNEY.json @@ -98,11 +98,11 @@ "name": "A1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bt1", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bt2", "top": 58, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bt3", "top": 76, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2Bt4", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/P/PINTURA.json b/inst/extdata/OSD/P/PINTURA.json index d45b66088d..3a6abd9b21 100644 --- a/inst/extdata/OSD/P/PINTURA.json +++ b/inst/extdata/OSD/P/PINTURA.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 8, "texture_class": "loamy fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C2", "top": 8, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 8, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/P/PIONEERTOWN.json b/inst/extdata/OSD/P/PIONEERTOWN.json index 6006f1bdee..c7b5cffb09 100644 --- a/inst/extdata/OSD/P/PIONEERTOWN.json +++ b/inst/extdata/OSD/P/PIONEERTOWN.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sand", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/PIONEERVIL.json b/inst/extdata/OSD/P/PIONEERVIL.json index 14ecd46dd9..6612341594 100644 --- a/inst/extdata/OSD/P/PIONEERVIL.json +++ b/inst/extdata/OSD/P/PIONEERVIL.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "BC", "top": 64, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak medium platy", @@ -213,11 +213,11 @@ "name": "Ab", "top": 79, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -236,11 +236,11 @@ "name": "C1", "top": 89, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", @@ -259,11 +259,11 @@ "name": "C2", "top": 104, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -282,11 +282,11 @@ "name": "C3", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -305,11 +305,11 @@ "name": "C4", "top": 152, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", diff --git a/inst/extdata/OSD/P/PIUTE.json b/inst/extdata/OSD/P/PIUTE.json index 92b321a4c0..3e319da3f7 100644 --- a/inst/extdata/OSD/P/PIUTE.json +++ b/inst/extdata/OSD/P/PIUTE.json @@ -75,11 +75,11 @@ "name": "C", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/P/PIXLEY.json b/inst/extdata/OSD/P/PIXLEY.json index 4a32ca28d4..0175bb54d9 100644 --- a/inst/extdata/OSD/P/PIXLEY.json +++ b/inst/extdata/OSD/P/PIXLEY.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 15, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Btq", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bqm", "top": 46, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "NA", "structure": "moderate thick platy", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bq", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PLEGOMIR.json b/inst/extdata/OSD/P/PLEGOMIR.json index 714ab5e65f..ce72ae1d09 100644 --- a/inst/extdata/OSD/P/PLEGOMIR.json +++ b/inst/extdata/OSD/P/PLEGOMIR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "l0YR", - "moist_value": 5, + "dry_hue": "l0YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and coarse platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "l0YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Bqk", "top": 13, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "l0YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "l0YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/P/PLITE.json b/inst/extdata/OSD/P/PLITE.json index 408d15fd75..e88d453618 100644 --- a/inst/extdata/OSD/P/PLITE.json +++ b/inst/extdata/OSD/P/PLITE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "A3", "top": 41, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PLUSH.json b/inst/extdata/OSD/P/PLUSH.json index cfaf70dd0d..65843b1ac4 100644 --- a/inst/extdata/OSD/P/PLUSH.json +++ b/inst/extdata/OSD/P/PLUSH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C", "top": 51, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PODMOR.json b/inst/extdata/OSD/P/PODMOR.json index 585914a286..aff94b3336 100644 --- a/inst/extdata/OSD/P/PODMOR.json +++ b/inst/extdata/OSD/P/PODMOR.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "A3", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw", "top": 41, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/P/PODO.json b/inst/extdata/OSD/P/PODO.json index 3a1679b0b3..2895574923 100644 --- a/inst/extdata/OSD/P/PODO.json +++ b/inst/extdata/OSD/P/PODO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/POINTLA.json b/inst/extdata/OSD/P/POINTLA.json index 8e9617c979..75ba950524 100644 --- a/inst/extdata/OSD/P/POINTLA.json +++ b/inst/extdata/OSD/P/POINTLA.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "Btk", "top": 3, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "2Bk2", "top": 46, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/P/POISONCREEK.json b/inst/extdata/OSD/P/POISONCREEK.json index abfaf86e44..3b4d003a3a 100644 --- a/inst/extdata/OSD/P/POISONCREEK.json +++ b/inst/extdata/OSD/P/POISONCREEK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "coarse sandy loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C/Bt", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Cr1", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/POISONHOL.json b/inst/extdata/OSD/P/POISONHOL.json index 2e44a1fa77..b76a079b5c 100644 --- a/inst/extdata/OSD/P/POISONHOL.json +++ b/inst/extdata/OSD/P/POISONHOL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very coarse platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very coarse platy", @@ -121,11 +121,11 @@ "name": "Bw", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak coarse prismatic", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate coarse platy", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 53, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "strong medium and coarse platy", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2Bkqm", "top": 79, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 6, + "moist_chroma": 4, "texture_class": "NA", "structure": "strong very coarse and coarse platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/POLARIS.json b/inst/extdata/OSD/P/POLARIS.json index caabd1ff6c..fa4507d4c1 100644 --- a/inst/extdata/OSD/P/POLARIS.json +++ b/inst/extdata/OSD/P/POLARIS.json @@ -144,12 +144,12 @@ "name": "Cr", "top": 46, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy sand", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/P/POLUMAR.json b/inst/extdata/OSD/P/POLUMAR.json index edde4dc5a7..36557dfd0e 100644 --- a/inst/extdata/OSD/P/POLUMAR.json +++ b/inst/extdata/OSD/P/POLUMAR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium and coarse granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 46, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bkq1", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bkq2", "top": 71, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/P/POMADE.json b/inst/extdata/OSD/P/POMADE.json index b4f96d7a96..e6b715dddf 100644 --- a/inst/extdata/OSD/P/POMADE.json +++ b/inst/extdata/OSD/P/POMADE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bk", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 33, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PONTO.json b/inst/extdata/OSD/P/PONTO.json index 43685f3f3d..1834696c80 100644 --- a/inst/extdata/OSD/P/PONTO.json +++ b/inst/extdata/OSD/P/PONTO.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 3, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "sandy loam", "structure": "weak medium platy", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/PORTER.json b/inst/extdata/OSD/P/PORTER.json index 792b4706b3..9f415f6484 100644 --- a/inst/extdata/OSD/P/PORTER.json +++ b/inst/extdata/OSD/P/PORTER.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A", "top": 28, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 56, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 86, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 122, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/P/PORTNEUF.json b/inst/extdata/OSD/P/PORTNEUF.json index bfbbf3abdd..4586b4d5d1 100644 --- a/inst/extdata/OSD/P/PORTNEUF.json +++ b/inst/extdata/OSD/P/PORTNEUF.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bk", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -121,12 +121,12 @@ "name": "Bkq1", "top": 33, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 69, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium and coarse subangular blocky", @@ -167,12 +167,12 @@ "name": "C", "top": 107, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/POTRILLO.json b/inst/extdata/OSD/P/POTRILLO.json index f1b17cb790..cdb96e4907 100644 --- a/inst/extdata/OSD/P/POTRILLO.json +++ b/inst/extdata/OSD/P/POTRILLO.json @@ -193,9 +193,9 @@ "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/POVEY.json b/inst/extdata/OSD/P/POVEY.json index bd76bf7155..bbff822a4a 100644 --- a/inst/extdata/OSD/P/POVEY.json +++ b/inst/extdata/OSD/P/POVEY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 53, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/POVIRT.json b/inst/extdata/OSD/P/POVIRT.json index 94a9f5ff68..69f8920d5d 100644 --- a/inst/extdata/OSD/P/POVIRT.json +++ b/inst/extdata/OSD/P/POVIRT.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong medium and coarse subangular blocky", "dry_rupture": "hard", @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/POWER.json b/inst/extdata/OSD/P/POWER.json index d63aeddc96..02becf0df6 100644 --- a/inst/extdata/OSD/P/POWER.json +++ b/inst/extdata/OSD/P/POWER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 23, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium prismatic", @@ -121,11 +121,11 @@ "name": "Btk", "top": 53, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 69, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 79, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2Bk3", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PREUSS.json b/inst/extdata/OSD/P/PREUSS.json index ae06d6a819..494ddba091 100644 --- a/inst/extdata/OSD/P/PREUSS.json +++ b/inst/extdata/OSD/P/PREUSS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/P/PREUSSRANGE.json b/inst/extdata/OSD/P/PREUSSRANGE.json index 34cd6fad45..a31c1d0228 100644 --- a/inst/extdata/OSD/P/PREUSSRANGE.json +++ b/inst/extdata/OSD/P/PREUSSRANGE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate coarse platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -121,9 +121,9 @@ "name": "Btk1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", "moist_value": 6, "moist_chroma": 2, @@ -144,11 +144,11 @@ "name": "Btk2", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "5Y", + "moist_value": 5, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "5Y", + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", @@ -190,10 +190,10 @@ "name": "C", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "5Y", "moist_value": 7, "moist_chroma": 2, "texture_class": "silty clay loam", diff --git a/inst/extdata/OSD/P/PRITCHETT.json b/inst/extdata/OSD/P/PRITCHETT.json index 51ebbf2fbc..07af0a9c26 100644 --- a/inst/extdata/OSD/P/PRITCHETT.json +++ b/inst/extdata/OSD/P/PRITCHETT.json @@ -75,12 +75,12 @@ "name": "All", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A12", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "A13", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "A21", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "B21t", "top": 61, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium angular blocky", @@ -190,11 +190,11 @@ "name": "B22t", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium angular blocky", diff --git a/inst/extdata/OSD/P/PROBERT.json b/inst/extdata/OSD/P/PROBERT.json index 418773e9e1..24dc7efec1 100644 --- a/inst/extdata/OSD/P/PROBERT.json +++ b/inst/extdata/OSD/P/PROBERT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 38, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/P/PROPER.json b/inst/extdata/OSD/P/PROPER.json index bcab9430a7..289128d811 100644 --- a/inst/extdata/OSD/P/PROPER.json +++ b/inst/extdata/OSD/P/PROPER.json @@ -78,8 +78,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 2.5, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/P/PROVO_BAY.json b/inst/extdata/OSD/P/PROVO_BAY.json index 708c1c45f4..c574ec7415 100644 --- a/inst/extdata/OSD/P/PROVO_BAY.json +++ b/inst/extdata/OSD/P/PROVO_BAY.json @@ -75,12 +75,12 @@ "name": "Ak1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 1, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Ak2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak coarse prismatic", @@ -121,11 +121,11 @@ "name": "Ak3", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "NA", @@ -144,11 +144,11 @@ "name": "Ak4", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "clay loam", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Ck", "top": 56, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/P/PROW.json b/inst/extdata/OSD/P/PROW.json index 4431e71abc..8eeab0cf8d 100644 --- a/inst/extdata/OSD/P/PROW.json +++ b/inst/extdata/OSD/P/PROW.json @@ -98,11 +98,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate very fine granular", @@ -121,12 +121,12 @@ "name": "C1", "top": 5, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/P/PRUCREE.json b/inst/extdata/OSD/P/PRUCREE.json index aebd834338..9cf5b513ca 100644 --- a/inst/extdata/OSD/P/PRUCREE.json +++ b/inst/extdata/OSD/P/PRUCREE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "strong very fine and fine granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 48, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium and coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Cr", "top": 71, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "NA", @@ -190,11 +190,11 @@ "name": "R", "top": 74, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sand", "structure": "NA", diff --git a/inst/extdata/OSD/P/PUICE.json b/inst/extdata/OSD/P/PUICE.json index 6f76def55c..12844fe1d5 100644 --- a/inst/extdata/OSD/P/PUICE.json +++ b/inst/extdata/OSD/P/PUICE.json @@ -98,9 +98,9 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/P/PUMPKIN.json b/inst/extdata/OSD/P/PUMPKIN.json index ff2ca8bc97..f6ea4a0701 100644 --- a/inst/extdata/OSD/P/PUMPKIN.json +++ b/inst/extdata/OSD/P/PUMPKIN.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin and medium platy", @@ -121,11 +121,11 @@ "name": "AB", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "BCt", "top": 56, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/P/PURDAM.json b/inst/extdata/OSD/P/PURDAM.json index 85bbe9610b..431ae8d6ac 100644 --- a/inst/extdata/OSD/P/PURDAM.json +++ b/inst/extdata/OSD/P/PURDAM.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Btkq", "top": 48, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bkqm", "top": 61, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/P/PURNER.json b/inst/extdata/OSD/P/PURNER.json index 7fc076250e..4bc24577d7 100644 --- a/inst/extdata/OSD/P/PURNER.json +++ b/inst/extdata/OSD/P/PURNER.json @@ -121,8 +121,8 @@ "name": "Ckm", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", "moist_hue": "7.5YR", "moist_value": 6, @@ -144,9 +144,9 @@ "name": "R", "top": 38, "bottom": 69, - "dry_hue": "5YR", - "dry_value": 4, - "dry_chroma": 1, + "dry_hue": "N", + "dry_value": 8, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/P/PUTT.json b/inst/extdata/OSD/P/PUTT.json index c697490d5d..d67cccbbb6 100644 --- a/inst/extdata/OSD/P/PUTT.json +++ b/inst/extdata/OSD/P/PUTT.json @@ -144,9 +144,9 @@ "name": "A13", "top": 18, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/P/PYEATT.json b/inst/extdata/OSD/P/PYEATT.json index 305383058d..22d71531b0 100644 --- a/inst/extdata/OSD/P/PYEATT.json +++ b/inst/extdata/OSD/P/PYEATT.json @@ -170,9 +170,9 @@ "dry_hue": "7.5YR", "dry_value": 7, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/Q/QUAILRIDGE.json b/inst/extdata/OSD/Q/QUAILRIDGE.json index 5917139c27..df84e23d90 100644 --- a/inst/extdata/OSD/Q/QUAILRIDGE.json +++ b/inst/extdata/OSD/Q/QUAILRIDGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak fine and medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Btl", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt", "top": 48, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/Q/QUAKER.json b/inst/extdata/OSD/Q/QUAKER.json index 9f93ba5921..8d46c6d479 100644 --- a/inst/extdata/OSD/Q/QUAKER.json +++ b/inst/extdata/OSD/Q/QUAKER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C3", "top": 58, "bottom": 83, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "C4", "top": 83, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C5", "top": 127, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "C6", "top": 145, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/Q/QUARTZBURG.json b/inst/extdata/OSD/Q/QUARTZBURG.json index d168ab86c9..3e11c88d2c 100644 --- a/inst/extdata/OSD/Q/QUARTZBURG.json +++ b/inst/extdata/OSD/Q/QUARTZBURG.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loamy coarse sand", "structure": "weak very fine and fine granular", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "AC", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak very fine and fine granular", @@ -144,12 +144,12 @@ "name": "C", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Cr", "top": 61, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/Q/QUICHIPA.json b/inst/extdata/OSD/Q/QUICHIPA.json index ab9108617a..f8d09189da 100644 --- a/inst/extdata/OSD/Q/QUICHIPA.json +++ b/inst/extdata/OSD/Q/QUICHIPA.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak coarse platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "C2", "top": 56, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C3", "top": 84, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C4", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/Q/QUICKSILVER.json b/inst/extdata/OSD/Q/QUICKSILVER.json index cefb3d1dda..6a2f0c9f16 100644 --- a/inst/extdata/OSD/Q/QUICKSILVER.json +++ b/inst/extdata/OSD/Q/QUICKSILVER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "BC", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/Q/QUIERO.json b/inst/extdata/OSD/Q/QUIERO.json index 56b7af9713..ae5a8d8936 100644 --- a/inst/extdata/OSD/Q/QUIERO.json +++ b/inst/extdata/OSD/Q/QUIERO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/Q/QUILT.json b/inst/extdata/OSD/Q/QUILT.json index a7b2b991d2..6176f19095 100644 --- a/inst/extdata/OSD/Q/QUILT.json +++ b/inst/extdata/OSD/Q/QUILT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate fine angular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay", "structure": "strong coarse angular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 48, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C1", "top": 109, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "C2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/Q/QUINNEY.json b/inst/extdata/OSD/Q/QUINNEY.json index 73b9c8d1b2..6ef50fe130 100644 --- a/inst/extdata/OSD/Q/QUINNEY.json +++ b/inst/extdata/OSD/Q/QUINNEY.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Btn1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium angular blocky", @@ -121,11 +121,11 @@ "name": "Btn2", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "Ck", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "C", "top": 66, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2C", "top": 99, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/Q/QUOMUS.json b/inst/extdata/OSD/Q/QUOMUS.json index 855904ae71..88fce2db4c 100644 --- a/inst/extdata/OSD/Q/QUOMUS.json +++ b/inst/extdata/OSD/Q/QUOMUS.json @@ -193,9 +193,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RABE.json b/inst/extdata/OSD/R/RABE.json index 47322a9b17..4e4922cd8d 100644 --- a/inst/extdata/OSD/R/RABE.json +++ b/inst/extdata/OSD/R/RABE.json @@ -213,9 +213,9 @@ "name": "2B/E", "top": 89, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/R/RAFAEL.json b/inst/extdata/OSD/R/RAFAEL.json index 08d0de8838..3b162e4eb3 100644 --- a/inst/extdata/OSD/R/RAFAEL.json +++ b/inst/extdata/OSD/R/RAFAEL.json @@ -75,11 +75,11 @@ "name": "Ag", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "ABg1", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "ABg2", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "weak coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Byg", "top": 43, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Cg1", "top": 84, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Cg2", "top": 109, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RAFTRIVER.json b/inst/extdata/OSD/R/RAFTRIVER.json index d9012a3b92..9b3d8e3573 100644 --- a/inst/extdata/OSD/R/RAFTRIVER.json +++ b/inst/extdata/OSD/R/RAFTRIVER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bqk", "top": 30, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate thick platy", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bqkm", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "B'qk", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RAGAMUFFIN.json b/inst/extdata/OSD/R/RAGAMUFFIN.json index 12f93ecaa0..0dd98ec75f 100644 --- a/inst/extdata/OSD/R/RAGAMUFFIN.json +++ b/inst/extdata/OSD/R/RAGAMUFFIN.json @@ -121,11 +121,11 @@ "name": "A", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "C1", "top": 10, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "C2", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "2.5Y", + "moist_value": 6, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C3", "top": 64, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/R/RAIL.json b/inst/extdata/OSD/R/RAIL.json index be051c9714..63f14b6b69 100644 --- a/inst/extdata/OSD/R/RAIL.json +++ b/inst/extdata/OSD/R/RAIL.json @@ -193,9 +193,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RAINDANCE.json b/inst/extdata/OSD/R/RAINDANCE.json index 9dfe1c71ff..5a71c5e057 100644 --- a/inst/extdata/OSD/R/RAINDANCE.json +++ b/inst/extdata/OSD/R/RAINDANCE.json @@ -121,9 +121,9 @@ "name": "C1", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5Y", "moist_value": 5, "moist_chroma": 3, diff --git a/inst/extdata/OSD/R/RAKANE.json b/inst/extdata/OSD/R/RAKANE.json index e913ed5e4e..4284deb040 100644 --- a/inst/extdata/OSD/R/RAKANE.json +++ b/inst/extdata/OSD/R/RAKANE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 23, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 64, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/R/RALDRIDGE.json b/inst/extdata/OSD/R/RALDRIDGE.json index 8c2e6457d8..cb461a8be7 100644 --- a/inst/extdata/OSD/R/RALDRIDGE.json +++ b/inst/extdata/OSD/R/RALDRIDGE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine and fine platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak very fine and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RALORE.json b/inst/extdata/OSD/R/RALORE.json index 7c13beee56..bc886151e6 100644 --- a/inst/extdata/OSD/R/RALORE.json +++ b/inst/extdata/OSD/R/RALORE.json @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/R/RALTON.json b/inst/extdata/OSD/R/RALTON.json index b3053185e1..106a6a3e51 100644 --- a/inst/extdata/OSD/R/RALTON.json +++ b/inst/extdata/OSD/R/RALTON.json @@ -145,7 +145,7 @@ "top": 61, "bottom": 86, "dry_hue": "10YR", - "dry_value": 7, + "dry_value": 6, "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 6, diff --git a/inst/extdata/OSD/R/RAMPS.json b/inst/extdata/OSD/R/RAMPS.json index 9dfe160bff..a2ff8f8bb3 100644 --- a/inst/extdata/OSD/R/RAMPS.json +++ b/inst/extdata/OSD/R/RAMPS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak very fine granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 10, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk", "top": 38, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/R/RAPHO.json b/inst/extdata/OSD/R/RAPHO.json index 97d36562d6..058b74e8c5 100644 --- a/inst/extdata/OSD/R/RAPHO.json +++ b/inst/extdata/OSD/R/RAPHO.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thin platy structure;", @@ -98,11 +98,11 @@ "name": "Cl", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 28, "bottom": 55, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 55, "bottom": 78, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C4", "top": 78, "bottom": 100, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "C5", "top": 100, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "loose", @@ -213,12 +213,12 @@ "name": "C6", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RAPLEE.json b/inst/extdata/OSD/R/RAPLEE.json index a4529f0d7f..484621ea15 100644 --- a/inst/extdata/OSD/R/RAPLEE.json +++ b/inst/extdata/OSD/R/RAPLEE.json @@ -75,11 +75,11 @@ "name": "C1", "top": "NA", "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "massive", @@ -98,11 +98,11 @@ "name": "C2", "top": 10, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RATSNEST.json b/inst/extdata/OSD/R/RATSNEST.json index 67919b0762..1ee31c4db6 100644 --- a/inst/extdata/OSD/R/RATSNEST.json +++ b/inst/extdata/OSD/R/RATSNEST.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay", "structure": "weak medium prismatic", @@ -144,12 +144,12 @@ "name": "Btk", "top": 25, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 6, - "moist_chroma": 4, + "moist_chroma": 8, "texture_class": "silty clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk", "top": 64, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 84, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 7, - "moist_chroma": 2, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/R/RAVENDOG.json b/inst/extdata/OSD/R/RAVENDOG.json index 297cfbab22..256938e1d1 100644 --- a/inst/extdata/OSD/R/RAVENDOG.json +++ b/inst/extdata/OSD/R/RAVENDOG.json @@ -78,9 +78,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/REAM.json b/inst/extdata/OSD/R/REAM.json index 929f25b6f8..01c9deb399 100644 --- a/inst/extdata/OSD/R/REAM.json +++ b/inst/extdata/OSD/R/REAM.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin and medium platy", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium prismatic", @@ -121,12 +121,12 @@ "name": "Btk", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium prismatic", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 48, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak thick platy", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 61, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 74, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "2Bkq1", "top": 86, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", @@ -236,11 +236,11 @@ "name": "2Bkq2", "top": 127, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/R/REDFIELD.json b/inst/extdata/OSD/R/REDFIELD.json index b48cd6f735..595777ee96 100644 --- a/inst/extdata/OSD/R/REDFIELD.json +++ b/inst/extdata/OSD/R/REDFIELD.json @@ -75,11 +75,11 @@ "name": "Ap", "top": "NA", "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -98,11 +98,11 @@ "name": "C1", "top": 15, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 48, "bottom": 55, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "C3", "top": 55, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/REDHOUSE.json b/inst/extdata/OSD/R/REDHOUSE.json index 53040b788f..1e7eeee93a 100644 --- a/inst/extdata/OSD/R/REDHOUSE.json +++ b/inst/extdata/OSD/R/REDHOUSE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine platy", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": "NA", "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw3", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 86, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 142, "bottom": 173, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/REDOLA.json b/inst/extdata/OSD/R/REDOLA.json index 9932595b7f..75f5df0015 100644 --- a/inst/extdata/OSD/R/REDOLA.json +++ b/inst/extdata/OSD/R/REDOLA.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy structure, below this the", @@ -98,11 +98,11 @@ "name": "A", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "C1", "top": 51, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -144,11 +144,11 @@ "name": "C2", "top": 76, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2C", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/R/REDVIEW.json b/inst/extdata/OSD/R/REDVIEW.json index e2e0257a62..f8bd2d5747 100644 --- a/inst/extdata/OSD/R/REDVIEW.json +++ b/inst/extdata/OSD/R/REDVIEW.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium granular", @@ -98,12 +98,12 @@ "name": "C1", "top": 20, "bottom": 50, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C2", "top": 50, "bottom": 103, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 103, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RED_BUTTE.json b/inst/extdata/OSD/R/RED_BUTTE.json index d0d813202a..586d969661 100644 --- a/inst/extdata/OSD/R/RED_BUTTE.json +++ b/inst/extdata/OSD/R/RED_BUTTE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy structure parting to thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 20, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse blocky structure parting to fine angular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 41, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 51, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/R/REEBOK.json b/inst/extdata/OSD/R/REEBOK.json index f4b13c799d..8748fe1c76 100644 --- a/inst/extdata/OSD/R/REEBOK.json +++ b/inst/extdata/OSD/R/REEBOK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 28, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 38, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "NA", @@ -190,12 +190,12 @@ "name": "Bkkm", "top": 48, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 8, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/R/RENBAC.json b/inst/extdata/OSD/R/RENBAC.json index 4bcbb3756b..a05a09f4d1 100644 --- a/inst/extdata/OSD/R/RENBAC.json +++ b/inst/extdata/OSD/R/RENBAC.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak thin and medium platy", @@ -98,9 +98,9 @@ "name": "Bw", "top": 3, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 5, "moist_chroma": 4, @@ -121,12 +121,12 @@ "name": "Bt1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay", "structure": "moderate fine and very fine angular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay", "structure": "moderate fine and very fine angular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RENOL.json b/inst/extdata/OSD/R/RENOL.json index a3036fcc2a..c487cd0ee4 100644 --- a/inst/extdata/OSD/R/RENOL.json +++ b/inst/extdata/OSD/R/RENOL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bkqm", "top": 74, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RENVERS.json b/inst/extdata/OSD/R/RENVERS.json index 6e0e1f5276..bac1837388 100644 --- a/inst/extdata/OSD/R/RENVERS.json +++ b/inst/extdata/OSD/R/RENVERS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/R/RETSABAL.json b/inst/extdata/OSD/R/RETSABAL.json index c5ff210d18..3731088695 100644 --- a/inst/extdata/OSD/R/RETSABAL.json +++ b/inst/extdata/OSD/R/RETSABAL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "moderate thin platy", @@ -98,12 +98,12 @@ "name": "Cyy1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Cyy2", "top": 8, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/REXMONT.json b/inst/extdata/OSD/R/REXMONT.json index 466bd54a07..4eb63b5b6c 100644 --- a/inst/extdata/OSD/R/REXMONT.json +++ b/inst/extdata/OSD/R/REXMONT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", @@ -98,11 +98,11 @@ "name": "A2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/R/RHYLOW.json b/inst/extdata/OSD/R/RHYLOW.json index 1f3ea3341e..95b17c2664 100644 --- a/inst/extdata/OSD/R/RHYLOW.json +++ b/inst/extdata/OSD/R/RHYLOW.json @@ -98,12 +98,12 @@ "name": "A1", "top": 1, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw", "top": 36, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 81, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 127, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/R/RICAFIED.json b/inst/extdata/OSD/R/RICAFIED.json index d6c3b982b3..9499adda5a 100644 --- a/inst/extdata/OSD/R/RICAFIED.json +++ b/inst/extdata/OSD/R/RICAFIED.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 7, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 7, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "strong medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 28, "bottom": 87, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/R/RICETON.json b/inst/extdata/OSD/R/RICETON.json index bea9c46ed6..f4960a2ed8 100644 --- a/inst/extdata/OSD/R/RICETON.json +++ b/inst/extdata/OSD/R/RICETON.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak medium subangular", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 71, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak medium and coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 117, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RICHWOOD.json b/inst/extdata/OSD/R/RICHWOOD.json index 3013da04ee..030a4b5f20 100644 --- a/inst/extdata/OSD/R/RICHWOOD.json +++ b/inst/extdata/OSD/R/RICHWOOD.json @@ -98,9 +98,9 @@ "name": "A", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/R/RICKER.json b/inst/extdata/OSD/R/RICKER.json index b35da29cbc..dbd824999d 100644 --- a/inst/extdata/OSD/R/RICKER.json +++ b/inst/extdata/OSD/R/RICKER.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "NA", "structure": "weak thin platy", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "NA", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/R/RIDD.json b/inst/extdata/OSD/R/RIDD.json index 8722983533..07e1edd919 100644 --- a/inst/extdata/OSD/R/RIDD.json +++ b/inst/extdata/OSD/R/RIDD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "BC", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "C", "top": 66, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RIDGECREST.json b/inst/extdata/OSD/R/RIDGECREST.json index 8cba686828..f435cb5011 100644 --- a/inst/extdata/OSD/R/RIDGECREST.json +++ b/inst/extdata/OSD/R/RIDGECREST.json @@ -190,9 +190,9 @@ "name": "R1", "top": 76, "bottom": 86, - "dry_hue": "10YR", + "dry_hue": "N", "dry_value": 4, - "dry_chroma": 4, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", @@ -213,8 +213,8 @@ "name": "R2", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 4, "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/R/RIVERPOINT.json b/inst/extdata/OSD/R/RIVERPOINT.json index c729abb013..aa3af12c0e 100644 --- a/inst/extdata/OSD/R/RIVERPOINT.json +++ b/inst/extdata/OSD/R/RIVERPOINT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular and angular blocky", @@ -167,11 +167,11 @@ "name": "2Bt3", "top": 48, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "2CBt", "top": 79, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2C", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/R/ROBBSCREEK.json b/inst/extdata/OSD/R/ROBBSCREEK.json index 787e8e9265..3ca0b3eff3 100644 --- a/inst/extdata/OSD/R/ROBBSCREEK.json +++ b/inst/extdata/OSD/R/ROBBSCREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak medium platy", @@ -121,12 +121,12 @@ "name": "BA", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 48, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "strong medium and coarse subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 66, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium prismatic", diff --git a/inst/extdata/OSD/R/ROBIDO.json b/inst/extdata/OSD/R/ROBIDO.json index 1efe652015..194693c4b7 100644 --- a/inst/extdata/OSD/R/ROBIDO.json +++ b/inst/extdata/OSD/R/ROBIDO.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak very fine and fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C1", "top": 20, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C2", "top": 61, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2C3", "top": 74, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", @@ -190,12 +190,12 @@ "name": "2C4", "top": 99, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", @@ -213,11 +213,11 @@ "name": "2C5", "top": 130, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/R/ROBROOST.json b/inst/extdata/OSD/R/ROBROOST.json index 44032b737d..ff170baa1f 100644 --- a/inst/extdata/OSD/R/ROBROOST.json +++ b/inst/extdata/OSD/R/ROBROOST.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "By", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine prismatic", @@ -121,11 +121,11 @@ "name": "Byk1", "top": 25, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse prismatic", @@ -144,11 +144,11 @@ "name": "Byk2", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/ROB_ROY.json b/inst/extdata/OSD/R/ROB_ROY.json index 64a6e89430..ee5419722b 100644 --- a/inst/extdata/OSD/R/ROB_ROY.json +++ b/inst/extdata/OSD/R/ROB_ROY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "Bt", "top": 20, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C", "top": 48, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RODROF.json b/inst/extdata/OSD/R/RODROF.json index 263f35daae..433d2cd491 100644 --- a/inst/extdata/OSD/R/RODROF.json +++ b/inst/extdata/OSD/R/RODROF.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", diff --git a/inst/extdata/OSD/R/ROFISS.json b/inst/extdata/OSD/R/ROFISS.json index 211bb1c226..cdc8d8d664 100644 --- a/inst/extdata/OSD/R/ROFISS.json +++ b/inst/extdata/OSD/R/ROFISS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C1", "top": 30, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 69, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/R/RONEY.json b/inst/extdata/OSD/R/RONEY.json index ec4822fb5f..371113e6cd 100644 --- a/inst/extdata/OSD/R/RONEY.json +++ b/inst/extdata/OSD/R/RONEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak coarse granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/R/ROSEWORTH.json b/inst/extdata/OSD/R/ROSEWORTH.json index ed0693e08c..fce90d099f 100644 --- a/inst/extdata/OSD/R/ROSEWORTH.json +++ b/inst/extdata/OSD/R/ROSEWORTH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "Bkqm", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -167,11 +167,11 @@ "name": "2Bkq", "top": 46, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2Bkqm", "top": 69, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/R/RUCLICK.json b/inst/extdata/OSD/R/RUCLICK.json index e7840c804c..76450ef964 100644 --- a/inst/extdata/OSD/R/RUCLICK.json +++ b/inst/extdata/OSD/R/RUCLICK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "BA", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate fine and medium angular blocky", diff --git a/inst/extdata/OSD/R/RUESH.json b/inst/extdata/OSD/R/RUESH.json index 414c3c40f9..903a158b64 100644 --- a/inst/extdata/OSD/R/RUESH.json +++ b/inst/extdata/OSD/R/RUESH.json @@ -167,11 +167,11 @@ "name": "2By3", "top": 74, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 8, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/R/RUKO.json b/inst/extdata/OSD/R/RUKO.json index e6c0e6ab9d..48962da4c3 100644 --- a/inst/extdata/OSD/R/RUKO.json +++ b/inst/extdata/OSD/R/RUKO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 1, "texture_class": "clay", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 18, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 1, "texture_class": "clay", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/R/RUSTICO.json b/inst/extdata/OSD/R/RUSTICO.json index edc47f9003..6a8fed80ff 100644 --- a/inst/extdata/OSD/R/RUSTICO.json +++ b/inst/extdata/OSD/R/RUSTICO.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A1", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "A2", "top": 46, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 86, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Ab", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/R/RYPOD.json b/inst/extdata/OSD/R/RYPOD.json index 07723d7134..7ac99bcb13 100644 --- a/inst/extdata/OSD/R/RYPOD.json +++ b/inst/extdata/OSD/R/RYPOD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium prismatic", @@ -190,11 +190,11 @@ "name": "Bk1", "top": 69, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", @@ -213,11 +213,11 @@ "name": "Bk2", "top": 79, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium and fine subangular blocky", @@ -236,11 +236,11 @@ "name": "C", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/S/SACKETT.json b/inst/extdata/OSD/S/SACKETT.json index bf3e33344b..dc5d637946 100644 --- a/inst/extdata/OSD/S/SACKETT.json +++ b/inst/extdata/OSD/S/SACKETT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 30, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk3", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SAGERS.json b/inst/extdata/OSD/S/SAGERS.json index a56169726b..e4eb6bcce8 100644 --- a/inst/extdata/OSD/S/SAGERS.json +++ b/inst/extdata/OSD/S/SAGERS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium and thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 46, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "weak medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "BCk", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SALERATUS.json b/inst/extdata/OSD/S/SALERATUS.json index 73b1cd8b3b..4eb7c991eb 100644 --- a/inst/extdata/OSD/S/SALERATUS.json +++ b/inst/extdata/OSD/S/SALERATUS.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 15, "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 15, "bottom": 43, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 43, "bottom": 58, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky and granular", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 58, "bottom": 114, "dry_hue": "7.5YR", - "dry_value": 7, + "dry_value": 5, "dry_chroma": 6, - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -168,11 +168,11 @@ "top": 114, "bottom": 152, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 4, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SANDALEE.json b/inst/extdata/OSD/S/SANDALEE.json index 021bcfcee3..01640b320b 100644 --- a/inst/extdata/OSD/S/SANDALEE.json +++ b/inst/extdata/OSD/S/SANDALEE.json @@ -121,9 +121,9 @@ "name": "Bw", "top": 11, "bottom": 40, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/S/SANDBENCH.json b/inst/extdata/OSD/S/SANDBENCH.json index 5e62209cad..2714a6aed3 100644 --- a/inst/extdata/OSD/S/SANDBENCH.json +++ b/inst/extdata/OSD/S/SANDBENCH.json @@ -75,11 +75,11 @@ "name": "A", "top": "NA", "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sand", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bkl", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "Bk3", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SANDWASH.json b/inst/extdata/OSD/S/SANDWASH.json index 2b6ea4a0f4..dfd0b6e259 100644 --- a/inst/extdata/OSD/S/SANDWASH.json +++ b/inst/extdata/OSD/S/SANDWASH.json @@ -75,11 +75,11 @@ "name": "A", "top": "NA", "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "2Bk", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SANPETE.json b/inst/extdata/OSD/S/SANPETE.json index 19b72d9f12..74bd31d250 100644 --- a/inst/extdata/OSD/S/SANPETE.json +++ b/inst/extdata/OSD/S/SANPETE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 43, "bottom": 120, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "C", "top": 120, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SANPITCH.json b/inst/extdata/OSD/S/SANPITCH.json index d0c2a5321d..98f61c6164 100644 --- a/inst/extdata/OSD/S/SANPITCH.json +++ b/inst/extdata/OSD/S/SANPITCH.json @@ -75,11 +75,11 @@ "name": "All", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "A12", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Clca", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "C2ca", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "C3ca", "top": 51, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C4", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C6", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SATANKA.json b/inst/extdata/OSD/S/SATANKA.json index 288c656635..947d337140 100644 --- a/inst/extdata/OSD/S/SATANKA.json +++ b/inst/extdata/OSD/S/SATANKA.json @@ -79,7 +79,7 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 6, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "moderate fine granular", @@ -102,7 +102,7 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium prismatic", @@ -125,8 +125,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "2.5Y", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak coarse prismatic", "dry_rupture": "soft", @@ -148,8 +148,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SATURDAY.json b/inst/extdata/OSD/S/SATURDAY.json index f52df832d6..35ab66a472 100644 --- a/inst/extdata/OSD/S/SATURDAY.json +++ b/inst/extdata/OSD/S/SATURDAY.json @@ -98,12 +98,12 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 2, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, - "moist_chroma": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "A2", "top": 8, "bottom": 26, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt", "top": 26, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C", "top": 64, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SAVAGECREEK.json b/inst/extdata/OSD/S/SAVAGECREEK.json index 5cdfd0e29e..629f8bce5f 100644 --- a/inst/extdata/OSD/S/SAVAGECREEK.json +++ b/inst/extdata/OSD/S/SAVAGECREEK.json @@ -259,8 +259,8 @@ "name": "3Cg", "top": 180, "bottom": 200, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", "moist_hue": "10B", "moist_value": 8, diff --git a/inst/extdata/OSD/S/SCALA.json b/inst/extdata/OSD/S/SCALA.json index e184bc914c..8d0b34d489 100644 --- a/inst/extdata/OSD/S/SCALA.json +++ b/inst/extdata/OSD/S/SCALA.json @@ -98,11 +98,11 @@ "name": "A", "top": 1, "bottom": 2, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy fine sand", "structure": "single grain", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 2, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bw3", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw4", "top": 58, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "E and B", "top": 91, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -236,12 +236,12 @@ "name": "2Bw5", "top": 122, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5Y", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -259,12 +259,12 @@ "name": "2Bt", "top": 150, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5Y", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SCALADE.json b/inst/extdata/OSD/S/SCALADE.json index 758a634e67..01ec4e9119 100644 --- a/inst/extdata/OSD/S/SCALADE.json +++ b/inst/extdata/OSD/S/SCALADE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and thin platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and coarse prismatic", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bkq", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkqm2", "top": 58, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bk", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sand", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SCARBORO.json b/inst/extdata/OSD/S/SCARBORO.json index 4b567919dd..158042eb3c 100644 --- a/inst/extdata/OSD/S/SCARBORO.json +++ b/inst/extdata/OSD/S/SCARBORO.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SCHAUSON.json b/inst/extdata/OSD/S/SCHAUSON.json index 5a6d470fa8..5003ad96e2 100644 --- a/inst/extdata/OSD/S/SCHAUSON.json +++ b/inst/extdata/OSD/S/SCHAUSON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "BC", "top": 64, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Btb", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SCHEINER.json b/inst/extdata/OSD/S/SCHEINER.json index 70969a09fd..bc44b7de55 100644 --- a/inst/extdata/OSD/S/SCHEINER.json +++ b/inst/extdata/OSD/S/SCHEINER.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SCHILLER.json b/inst/extdata/OSD/S/SCHILLER.json index c9f83a8496..f7123dfeaa 100644 --- a/inst/extdata/OSD/S/SCHILLER.json +++ b/inst/extdata/OSD/S/SCHILLER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 53, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bw3", "top": 69, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -190,11 +190,11 @@ "name": "BC", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/S/SCHMUTZ.json b/inst/extdata/OSD/S/SCHMUTZ.json index 90041c7be6..f5030cecc6 100644 --- a/inst/extdata/OSD/S/SCHMUTZ.json +++ b/inst/extdata/OSD/S/SCHMUTZ.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "C2", "top": 61, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SCHNIPPER.json b/inst/extdata/OSD/S/SCHNIPPER.json index fb483e3c14..13a67df96f 100644 --- a/inst/extdata/OSD/S/SCHNIPPER.json +++ b/inst/extdata/OSD/S/SCHNIPPER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bkq", "top": 38, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bkqm", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2Bk", "top": 99, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SCIOTA.json b/inst/extdata/OSD/S/SCIOTA.json index a9472b423a..178d59e98a 100644 --- a/inst/extdata/OSD/S/SCIOTA.json +++ b/inst/extdata/OSD/S/SCIOTA.json @@ -216,9 +216,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "NA", @@ -239,9 +239,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "sand", "structure": "single grain", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SCIPIO.json b/inst/extdata/OSD/S/SCIPIO.json index bb7bbe5b86..f1f7c1c7c2 100644 --- a/inst/extdata/OSD/S/SCIPIO.json +++ b/inst/extdata/OSD/S/SCIPIO.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 13, "dry_hue": "10YR", - "dry_value": 5, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine and medium granular", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 13, "bottom": 28, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 3, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -122,11 +122,11 @@ "top": 28, "bottom": 53, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 3, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -145,11 +145,11 @@ "top": 53, "bottom": 91, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "loose", @@ -168,11 +168,11 @@ "top": 91, "bottom": 152, "dry_hue": "10YR", - "dry_value": 5, + "dry_value": 4, "dry_chroma": 2, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SCISM.json b/inst/extdata/OSD/S/SCISM.json index bf72d6eca3..2a78441349 100644 --- a/inst/extdata/OSD/S/SCISM.json +++ b/inst/extdata/OSD/S/SCISM.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bkqm", "top": 53, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkq", "top": 76, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2C", "top": 107, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SEDGWAY.json b/inst/extdata/OSD/S/SEDGWAY.json index 5e5780ddf7..8003d98def 100644 --- a/inst/extdata/OSD/S/SEDGWAY.json +++ b/inst/extdata/OSD/S/SEDGWAY.json @@ -121,12 +121,12 @@ "name": "A1", "top": 6, "bottom": 19, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "A2", "top": 19, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "E", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt/E", "top": 53, "bottom": 75, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse and medium angular blocky", @@ -213,11 +213,11 @@ "name": "Bt1", "top": 75, "bottom": 87, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse and medium angular blocky", @@ -236,11 +236,11 @@ "name": "Bt2", "top": 87, "bottom": 156, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium angular blocky", diff --git a/inst/extdata/OSD/S/SEDWELL.json b/inst/extdata/OSD/S/SEDWELL.json index 82404c1eb6..4361cc11d4 100644 --- a/inst/extdata/OSD/S/SEDWELL.json +++ b/inst/extdata/OSD/S/SEDWELL.json @@ -75,12 +75,12 @@ "name": "All", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A13", "top": 33, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Clca", "top": 56, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "C2ca", "top": 74, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C3ca", "top": 107, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 7, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SEEPRID.json b/inst/extdata/OSD/S/SEEPRID.json index dc244fb864..eecd02e672 100644 --- a/inst/extdata/OSD/S/SEEPRID.json +++ b/inst/extdata/OSD/S/SEEPRID.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse prismatic", @@ -144,12 +144,12 @@ "name": "2Bt3", "top": 46, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bk1", "top": 71, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -190,12 +190,12 @@ "name": "2Bk2", "top": 97, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "2Bk3", "top": 119, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SEMINOLE.json b/inst/extdata/OSD/S/SEMINOLE.json index ee47de40c5..67a268927b 100644 --- a/inst/extdata/OSD/S/SEMINOLE.json +++ b/inst/extdata/OSD/S/SEMINOLE.json @@ -170,9 +170,9 @@ "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "weak coarse subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SESSIONS.json b/inst/extdata/OSD/S/SESSIONS.json index c0f09c0819..1a579e7ecc 100644 --- a/inst/extdata/OSD/S/SESSIONS.json +++ b/inst/extdata/OSD/S/SESSIONS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 33, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse angular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 89, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate coarse angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 137, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SETH.json b/inst/extdata/OSD/S/SETH.json index 4c6d9b194c..c2bd08641d 100644 --- a/inst/extdata/OSD/S/SETH.json +++ b/inst/extdata/OSD/S/SETH.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 61, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "strong coarse prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 81, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", "moist_value": 4, - "moist_chroma": 3, + "moist_chroma": 6, "texture_class": "clay", "structure": "strong coarse prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "strong coarse blocky", diff --git a/inst/extdata/OSD/S/SEVIER.json b/inst/extdata/OSD/S/SEVIER.json index 343590128a..ad72707bf2 100644 --- a/inst/extdata/OSD/S/SEVIER.json +++ b/inst/extdata/OSD/S/SEVIER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak very thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", diff --git a/inst/extdata/OSD/S/SEVY.json b/inst/extdata/OSD/S/SEVY.json index 64a8acc4fa..c52c3142a2 100644 --- a/inst/extdata/OSD/S/SEVY.json +++ b/inst/extdata/OSD/S/SEVY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "strong very fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Btk", "top": 33, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk", "top": 41, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium and coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHAFER.json b/inst/extdata/OSD/S/SHAFER.json index 16fdd165a5..23420bbaa7 100644 --- a/inst/extdata/OSD/S/SHAFER.json +++ b/inst/extdata/OSD/S/SHAFER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate thin and medium platy", @@ -98,11 +98,11 @@ "name": "BA", "top": 3, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate coarse and very coarse prismatic", @@ -121,11 +121,11 @@ "name": "Btss1", "top": 18, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "strong very coarse prismatic", @@ -144,11 +144,11 @@ "name": "Btss2", "top": 46, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong medium subangular blocky", diff --git a/inst/extdata/OSD/S/SHALAKO.json b/inst/extdata/OSD/S/SHALAKO.json index 22a3bcb06d..8f3e26cc1e 100644 --- a/inst/extdata/OSD/S/SHALAKO.json +++ b/inst/extdata/OSD/S/SHALAKO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "sandy loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHALET.json b/inst/extdata/OSD/S/SHALET.json index ead35ac3f3..26fc211dac 100644 --- a/inst/extdata/OSD/S/SHALET.json +++ b/inst/extdata/OSD/S/SHALET.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "C", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/S/SHANKS.json b/inst/extdata/OSD/S/SHANKS.json index 8838ec0a68..036aa25230 100644 --- a/inst/extdata/OSD/S/SHANKS.json +++ b/inst/extdata/OSD/S/SHANKS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine and medium granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 33, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/S/SHARESNOUT.json b/inst/extdata/OSD/S/SHARESNOUT.json index a4ef65c86f..9a29543994 100644 --- a/inst/extdata/OSD/S/SHARESNOUT.json +++ b/inst/extdata/OSD/S/SHARESNOUT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "BA", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 38, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SHAVANO.json b/inst/extdata/OSD/S/SHAVANO.json index 53323414d7..d4236a6b2c 100644 --- a/inst/extdata/OSD/S/SHAVANO.json +++ b/inst/extdata/OSD/S/SHAVANO.json @@ -121,9 +121,9 @@ "name": "BCk", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 5, "moist_chroma": 4, diff --git a/inst/extdata/OSD/S/SHAWMOUNT.json b/inst/extdata/OSD/S/SHAWMOUNT.json index 08400cc1af..805c523464 100644 --- a/inst/extdata/OSD/S/SHAWMOUNT.json +++ b/inst/extdata/OSD/S/SHAWMOUNT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt", "top": 97, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHECKLE.json b/inst/extdata/OSD/S/SHECKLE.json index 1543592531..4c9a332fc7 100644 --- a/inst/extdata/OSD/S/SHECKLE.json +++ b/inst/extdata/OSD/S/SHECKLE.json @@ -98,12 +98,12 @@ "name": "A1", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "A2", "top": 20, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "A3", "top": 66, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "AC", "top": 109, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 124, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHEDADO.json b/inst/extdata/OSD/S/SHEDADO.json index 40b004f55b..4bbd123e46 100644 --- a/inst/extdata/OSD/S/SHEDADO.json +++ b/inst/extdata/OSD/S/SHEDADO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy very fine sand", "structure": "weak medium granular", @@ -98,12 +98,12 @@ "name": "C1", "top": 18, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "very fine sand", "structure": "single grain", "dry_rupture": "NA", @@ -121,11 +121,11 @@ "name": "C2", "top": 38, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy very fine sand", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 61, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loamy very fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHEEPCAN.json b/inst/extdata/OSD/S/SHEEPCAN.json index 420a19080a..512ca2f785 100644 --- a/inst/extdata/OSD/S/SHEEPCAN.json +++ b/inst/extdata/OSD/S/SHEEPCAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": "NA", "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "lOYR", - "moist_value": 6, + "dry_hue": "lOYR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and very fine subanqular blocky", @@ -121,12 +121,12 @@ "name": "Cl", "top": 23, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "lOYR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "lOYR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C2", "top": 48, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 8, + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "lOYR", + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and fine suhangular blocky", @@ -167,12 +167,12 @@ "name": "C3", "top": 71, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "lOYR", + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "lOYR", - "moist_value": 8, - "moist_chroma": 1, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C4", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and very fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SHEEPSKIN.json b/inst/extdata/OSD/S/SHEEPSKIN.json index e0c9fb7964..0178112f0f 100644 --- a/inst/extdata/OSD/S/SHEEPSKIN.json +++ b/inst/extdata/OSD/S/SHEEPSKIN.json @@ -75,12 +75,12 @@ "name": "Ap1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "moderate thick and very thick platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "NA", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 53, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C1", "top": 69, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "C2", "top": 81, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -236,12 +236,12 @@ "name": "Ck1", "top": 145, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak thick platy rock", "dry_rupture": "soft", @@ -259,12 +259,12 @@ "name": "Ck2", "top": 160, "bottom": 203, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SHELLDRAKE.json b/inst/extdata/OSD/S/SHELLDRAKE.json index 447596559e..57b79fab90 100644 --- a/inst/extdata/OSD/S/SHELLDRAKE.json +++ b/inst/extdata/OSD/S/SHELLDRAKE.json @@ -124,9 +124,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SHILLING.json b/inst/extdata/OSD/S/SHILLING.json index 8a734a6423..83c301540c 100644 --- a/inst/extdata/OSD/S/SHILLING.json +++ b/inst/extdata/OSD/S/SHILLING.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 4, + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "AB", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 4, + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 25, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw2", "top": 48, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw3", "top": 89, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -213,11 +213,11 @@ "name": "Bw4", "top": 137, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/S/SHIMO.json b/inst/extdata/OSD/S/SHIMO.json index 6aa95acd3a..e1833d4926 100644 --- a/inst/extdata/OSD/S/SHIMO.json +++ b/inst/extdata/OSD/S/SHIMO.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "weak fine granular", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", @@ -121,11 +121,11 @@ "name": "C1", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C2", "top": 51, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/S/SHINDY.json b/inst/extdata/OSD/S/SHINDY.json index defd752b5a..d667c6b91e 100644 --- a/inst/extdata/OSD/S/SHINDY.json +++ b/inst/extdata/OSD/S/SHINDY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Ab1", "top": 43, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C2", "top": 76, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and very fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Ab2", "top": 124, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C3", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHIRTS.json b/inst/extdata/OSD/S/SHIRTS.json index 4dfb752270..3b6478ad95 100644 --- a/inst/extdata/OSD/S/SHIRTS.json +++ b/inst/extdata/OSD/S/SHIRTS.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak thin platy", @@ -121,11 +121,11 @@ "name": "AB", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw1", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bw2", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 64, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SHOBAN.json b/inst/extdata/OSD/S/SHOBAN.json index db2dfbc07c..0db94ee152 100644 --- a/inst/extdata/OSD/S/SHOBAN.json +++ b/inst/extdata/OSD/S/SHOBAN.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "A", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 1, "texture_class": "loamy sand", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "BA", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk", "top": 56, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bkg1", "top": 94, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -213,12 +213,12 @@ "name": "Bkg2", "top": 157, "bottom": 203, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "5Y", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SHOEBEND.json b/inst/extdata/OSD/S/SHOEBEND.json index 22064d0a68..55b2298b14 100644 --- a/inst/extdata/OSD/S/SHOEBEND.json +++ b/inst/extdata/OSD/S/SHOEBEND.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium and coarse granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "AB", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 36, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 51, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/S/SHOEPEG.json b/inst/extdata/OSD/S/SHOEPEG.json index 7fe05e83d6..be43132f0a 100644 --- a/inst/extdata/OSD/S/SHOEPEG.json +++ b/inst/extdata/OSD/S/SHOEPEG.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "A3", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", @@ -144,12 +144,12 @@ "name": "C1", "top": 74, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2C2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SHOOFLY.json b/inst/extdata/OSD/S/SHOOFLY.json index ab4686c57d..66295c18c1 100644 --- a/inst/extdata/OSD/S/SHOOFLY.json +++ b/inst/extdata/OSD/S/SHOOFLY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium and thick platy", @@ -121,11 +121,11 @@ "name": "Bt", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkqm", "top": 30, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "NA", "structure": "NA", @@ -167,12 +167,12 @@ "name": "2Bkq1", "top": 38, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sand", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SHOWALTER.json b/inst/extdata/OSD/S/SHOWALTER.json index 655359bb9f..b12b1ace36 100644 --- a/inst/extdata/OSD/S/SHOWALTER.json +++ b/inst/extdata/OSD/S/SHOWALTER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium prismatic", @@ -144,12 +144,12 @@ "name": "2Bt3", "top": 43, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "2Btk1", "top": 56, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 7, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2Btk2", "top": 76, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -213,12 +213,12 @@ "name": "3Bk", "top": 91, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "3C", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHUMWAY.json b/inst/extdata/OSD/S/SHUMWAY.json index c629b1871d..a0a5d4a7c9 100644 --- a/inst/extdata/OSD/S/SHUMWAY.json +++ b/inst/extdata/OSD/S/SHUMWAY.json @@ -75,11 +75,11 @@ "name": "All", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", @@ -98,11 +98,11 @@ "name": "A12", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "silty clay", "structure": "moderate medium angular blocky", @@ -121,11 +121,11 @@ "name": "B2", "top": 33, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Clg", "top": 64, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -167,11 +167,11 @@ "name": "A13bg", "top": 91, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2g", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 1, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/S/SHUPERT.json b/inst/extdata/OSD/S/SHUPERT.json index 3a8f2a86cb..5a8f44e3df 100644 --- a/inst/extdata/OSD/S/SHUPERT.json +++ b/inst/extdata/OSD/S/SHUPERT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "C1", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C2", "top": 30, "bottom": 72, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C3", "top": 72, "bottom": 92, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "C4", "top": 92, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "loose", @@ -190,11 +190,11 @@ "name": "C5", "top": 104, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -213,12 +213,12 @@ "name": "C6", "top": 160, "bottom": 188, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SIGURD.json b/inst/extdata/OSD/S/SIGURD.json index 7c0ae8b28f..3e1f67ee14 100644 --- a/inst/extdata/OSD/S/SIGURD.json +++ b/inst/extdata/OSD/S/SIGURD.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -121,12 +121,12 @@ "name": "C2", "top": 23, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "C3", "top": 64, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C4", "top": 109, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SILVERSTATE.json b/inst/extdata/OSD/S/SILVERSTATE.json index d10ede6d8c..c31e15faad 100644 --- a/inst/extdata/OSD/S/SILVERSTATE.json +++ b/inst/extdata/OSD/S/SILVERSTATE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "clay", "structure": "strong medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 70, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "clay", "structure": "strong medium columnar", @@ -144,11 +144,11 @@ "name": "C1", "top": 70, "bottom": 85, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -167,11 +167,11 @@ "name": "C2", "top": 85, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 1, "texture_class": "clay", "structure": "massive", diff --git a/inst/extdata/OSD/S/SIMON.json b/inst/extdata/OSD/S/SIMON.json index 2495266231..4ae7a76b94 100644 --- a/inst/extdata/OSD/S/SIMON.json +++ b/inst/extdata/OSD/S/SIMON.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thick platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine granular", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 30, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "2Bt", "top": 71, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "moderate fine subangular blocky", @@ -190,11 +190,11 @@ "name": "3Bt", "top": 104, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -213,11 +213,11 @@ "name": "3C", "top": 135, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SIMPER.json b/inst/extdata/OSD/S/SIMPER.json index 7d8179072e..9713302b23 100644 --- a/inst/extdata/OSD/S/SIMPER.json +++ b/inst/extdata/OSD/S/SIMPER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium granular", @@ -121,11 +121,11 @@ "name": "Bt", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Btk", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bkqm1", "top": 53, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "NA", "structure": "NA", @@ -190,11 +190,11 @@ "name": "Bkq", "top": 86, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "NA", @@ -213,11 +213,11 @@ "name": "Bk", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SINOPAH.json b/inst/extdata/OSD/S/SINOPAH.json index b55b708155..5ba68a6d11 100644 --- a/inst/extdata/OSD/S/SINOPAH.json +++ b/inst/extdata/OSD/S/SINOPAH.json @@ -75,9 +75,9 @@ "name": "Oe", "top": 0, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 2, @@ -98,9 +98,9 @@ "name": "Oa", "top": 36, "bottom": 77, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 1, @@ -144,9 +144,9 @@ "name": "O'a", "top": 94, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, "moist_chroma": 1, diff --git a/inst/extdata/OSD/S/SIPHONLAKE.json b/inst/extdata/OSD/S/SIPHONLAKE.json index b7be57a5d2..56489c5ffa 100644 --- a/inst/extdata/OSD/S/SIPHONLAKE.json +++ b/inst/extdata/OSD/S/SIPHONLAKE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "BA", "top": 15, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt", "top": 48, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "strong fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "BC", "top": 79, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 107, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "single grain", @@ -213,12 +213,12 @@ "name": "Cr", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SIRREF.json b/inst/extdata/OSD/S/SIRREF.json index 1e09660407..86bdb5ef64 100644 --- a/inst/extdata/OSD/S/SIRREF.json +++ b/inst/extdata/OSD/S/SIRREF.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay", "structure": "strong coarse subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 38, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong coarse angular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Btk", "top": 84, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 5, "moist_chroma": 6, "texture_class": "clay", "structure": "strong medium angular blocky", @@ -190,11 +190,11 @@ "name": "Bk", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SITAR.json b/inst/extdata/OSD/S/SITAR.json index 0810d551f7..860de954ec 100644 --- a/inst/extdata/OSD/S/SITAR.json +++ b/inst/extdata/OSD/S/SITAR.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "BK1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "BK2", "top": 36, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -167,9 +167,9 @@ "name": "C", "top": 74, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 3, diff --git a/inst/extdata/OSD/S/SKOS.json b/inst/extdata/OSD/S/SKOS.json index de4ebdcf59..4e2f840832 100644 --- a/inst/extdata/OSD/S/SKOS.json +++ b/inst/extdata/OSD/S/SKOS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,9 +98,9 @@ "name": "C", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/S/SKUTUM.json b/inst/extdata/OSD/S/SKUTUM.json index 618333fb9d..3a56d1ac93 100644 --- a/inst/extdata/OSD/S/SKUTUM.json +++ b/inst/extdata/OSD/S/SKUTUM.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2C", "top": 91, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SKYLICK.json b/inst/extdata/OSD/S/SKYLICK.json index 1d52086273..c7e7118d45 100644 --- a/inst/extdata/OSD/S/SKYLICK.json +++ b/inst/extdata/OSD/S/SKYLICK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -121,11 +121,11 @@ "name": "A3", "top": 43, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -144,12 +144,12 @@ "name": "Bt1", "top": 69, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium prismatic,", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt2", "top": 107, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium prismatic,", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 132, "bottom": 168, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -213,11 +213,11 @@ "name": "BCt", "top": 168, "bottom": 175, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/S/SLINGER.json b/inst/extdata/OSD/S/SLINGER.json index eafb35212d..b0dca43195 100644 --- a/inst/extdata/OSD/S/SLINGER.json +++ b/inst/extdata/OSD/S/SLINGER.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 13, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 3, "moist_chroma": 6, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "C2", "top": 36, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/S/SOFTBACK.json b/inst/extdata/OSD/S/SOFTBACK.json index 48b180b0c9..bd48b7b100 100644 --- a/inst/extdata/OSD/S/SOFTBACK.json +++ b/inst/extdata/OSD/S/SOFTBACK.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "strong fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A3", "top": 25, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 61, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate very fine and fine subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 76, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bt3", "top": 99, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium and coarse subangular blocky", diff --git a/inst/extdata/OSD/S/SOLARVIEW.json b/inst/extdata/OSD/S/SOLARVIEW.json index 42b2bff6fb..a641b4a68f 100644 --- a/inst/extdata/OSD/S/SOLARVIEW.json +++ b/inst/extdata/OSD/S/SOLARVIEW.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "AC", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "C", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/S/SOMA.json b/inst/extdata/OSD/S/SOMA.json index be2b232134..278a161a10 100644 --- a/inst/extdata/OSD/S/SOMA.json +++ b/inst/extdata/OSD/S/SOMA.json @@ -76,11 +76,11 @@ "top": 0, "bottom": 5, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -99,11 +99,11 @@ "top": 5, "bottom": 15, "dry_hue": "10YR", - "dry_value": 6, + "dry_value": 4, "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 36, "bottom": 46, - "dry_hue": "10RY", - "dry_value": 6, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SOUTHMOUNT.json b/inst/extdata/OSD/S/SOUTHMOUNT.json index 72b87ff309..3a56f50591 100644 --- a/inst/extdata/OSD/S/SOUTHMOUNT.json +++ b/inst/extdata/OSD/S/SOUTHMOUNT.json @@ -98,12 +98,12 @@ "name": "A", "top": 3, "bottom": 16, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 16, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 36, "bottom": 49, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bt", "top": 49, "bottom": 110, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -190,11 +190,11 @@ "name": "2C", "top": 110, "bottom": 155, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SOWARD.json b/inst/extdata/OSD/S/SOWARD.json index 13c049938b..8c0b4fc77b 100644 --- a/inst/extdata/OSD/S/SOWARD.json +++ b/inst/extdata/OSD/S/SOWARD.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 43, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw1", "top": 86, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/S/SOWCAN.json b/inst/extdata/OSD/S/SOWCAN.json index f27be403d1..046f00c089 100644 --- a/inst/extdata/OSD/S/SOWCAN.json +++ b/inst/extdata/OSD/S/SOWCAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 43, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bw1", "top": 86, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bw2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/S/SOWEGO.json b/inst/extdata/OSD/S/SOWEGO.json index 158f950f2d..f320029f41 100644 --- a/inst/extdata/OSD/S/SOWEGO.json +++ b/inst/extdata/OSD/S/SOWEGO.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SPAGER.json b/inst/extdata/OSD/S/SPAGER.json index 774bde7faf..530db0ae43 100644 --- a/inst/extdata/OSD/S/SPAGER.json +++ b/inst/extdata/OSD/S/SPAGER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk2", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkm", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 8, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SPEELYAI.json b/inst/extdata/OSD/S/SPEELYAI.json index 3ed9d9eb75..62faf02397 100644 --- a/inst/extdata/OSD/S/SPEELYAI.json +++ b/inst/extdata/OSD/S/SPEELYAI.json @@ -144,11 +144,11 @@ "name": "Cqm", "top": 28, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 5, "moist_chroma": "NA", "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/S/SPENLO.json b/inst/extdata/OSD/S/SPENLO.json index 1da1672e35..2a2acfb182 100644 --- a/inst/extdata/OSD/S/SPENLO.json +++ b/inst/extdata/OSD/S/SPENLO.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium granular", @@ -98,9 +98,9 @@ "name": "B", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 6, @@ -121,11 +121,11 @@ "name": "Bt1", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 4, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 69, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Btk", "top": 112, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -190,12 +190,12 @@ "name": "Bk", "top": 130, "bottom": 163, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SPINNAKER.json b/inst/extdata/OSD/S/SPINNAKER.json index e63da53f6f..609aa1f314 100644 --- a/inst/extdata/OSD/S/SPINNAKER.json +++ b/inst/extdata/OSD/S/SPINNAKER.json @@ -124,9 +124,9 @@ "dry_hue": "7.5YR", "dry_value": 4, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 2.5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SPINNEY.json b/inst/extdata/OSD/S/SPINNEY.json index f38285fe1c..cd6c98bef7 100644 --- a/inst/extdata/OSD/S/SPINNEY.json +++ b/inst/extdata/OSD/S/SPINNEY.json @@ -170,9 +170,9 @@ "dry_hue": "5Y", "dry_value": 6, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 1, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SPITZEN.json b/inst/extdata/OSD/S/SPITZEN.json index 1857db1f97..b7a3390404 100644 --- a/inst/extdata/OSD/S/SPITZEN.json +++ b/inst/extdata/OSD/S/SPITZEN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "weak very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sand", "structure": "weak very fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 25, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "2C3", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "2C4", "top": 71, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak thin platy", @@ -213,11 +213,11 @@ "name": "2C5", "top": 86, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "2C6", "top": 99, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -259,11 +259,11 @@ "name": "2C7", "top": 112, "bottom": 140, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -282,11 +282,11 @@ "name": "2C8", "top": 140, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SPLIMO.json b/inst/extdata/OSD/S/SPLIMO.json index 4c1f1256d3..a2aae5989c 100644 --- a/inst/extdata/OSD/S/SPLIMO.json +++ b/inst/extdata/OSD/S/SPLIMO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SPLITBUTTE.json b/inst/extdata/OSD/S/SPLITBUTTE.json index d7e7bd45fa..117a99e451 100644 --- a/inst/extdata/OSD/S/SPLITBUTTE.json +++ b/inst/extdata/OSD/S/SPLITBUTTE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 3, + "dry_hue": "7.5YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/SPLITEN.json b/inst/extdata/OSD/S/SPLITEN.json index 44576effef..360a8f39fa 100644 --- a/inst/extdata/OSD/S/SPLITEN.json +++ b/inst/extdata/OSD/S/SPLITEN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw", "top": 10, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SPOTSYLVANIA.json b/inst/extdata/OSD/S/SPOTSYLVANIA.json index 1615055b44..fd2ea70790 100644 --- a/inst/extdata/OSD/S/SPOTSYLVANIA.json +++ b/inst/extdata/OSD/S/SPOTSYLVANIA.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine granular", "dry_rupture": "NA", @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "moderate fine granular", "dry_rupture": "NA", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "NA", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay", "structure": "moderate fine subangular blocky", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay", "structure": "moderate fine subangular blocky", "dry_rupture": "NA", @@ -216,9 +216,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -239,9 +239,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SPRAGUERIVER.json b/inst/extdata/OSD/S/SPRAGUERIVER.json index 4cf43be935..136cbcf267 100644 --- a/inst/extdata/OSD/S/SPRAGUERIVER.json +++ b/inst/extdata/OSD/S/SPRAGUERIVER.json @@ -213,9 +213,9 @@ "name": "2BCc", "top": 122, "bottom": 160, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/S/SPROLLOW.json b/inst/extdata/OSD/S/SPROLLOW.json index 89879bec73..49d8dd47e7 100644 --- a/inst/extdata/OSD/S/SPROLLOW.json +++ b/inst/extdata/OSD/S/SPROLLOW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 41, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SQUARE_BUTTE.json b/inst/extdata/OSD/S/SQUARE_BUTTE.json index 6d0e726e05..313ae220be 100644 --- a/inst/extdata/OSD/S/SQUARE_BUTTE.json +++ b/inst/extdata/OSD/S/SQUARE_BUTTE.json @@ -121,9 +121,9 @@ "name": "2C/B", "top": 46, "bottom": 104, - "dry_hue": "10YR", - "dry_value": 4, - "dry_chroma": 6, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "2.5Y", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/S/SQUAWCREEK.json b/inst/extdata/OSD/S/SQUAWCREEK.json index 131bd8cd0e..50d93220c2 100644 --- a/inst/extdata/OSD/S/SQUAWCREEK.json +++ b/inst/extdata/OSD/S/SQUAWCREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium platy", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 10, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium prismatic", diff --git a/inst/extdata/OSD/S/ST._GEORGE.json b/inst/extdata/OSD/S/ST._GEORGE.json index d398494219..a47bf5677c 100644 --- a/inst/extdata/OSD/S/ST._GEORGE.json +++ b/inst/extdata/OSD/S/ST._GEORGE.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Cy1", "top": 23, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "5YR", + "moist_value": 4, "moist_chroma": 6, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Cy2", "top": 51, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "Cy3", "top": 74, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Cy4", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/STAIRCASE.json b/inst/extdata/OSD/S/STAIRCASE.json index b9efcc94e6..4afcd7e494 100644 --- a/inst/extdata/OSD/S/STAIRCASE.json +++ b/inst/extdata/OSD/S/STAIRCASE.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak thin and medium platy", @@ -98,11 +98,11 @@ "name": "A1", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A3", "top": 56, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "A4", "top": 81, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "AB", "top": 107, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "Bw1", "top": 127, "bottom": 147, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -236,11 +236,11 @@ "name": "Bw2", "top": 147, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/S/STAKE.json b/inst/extdata/OSD/S/STAKE.json index 0714aa4c77..5286318c7f 100644 --- a/inst/extdata/OSD/S/STAKE.json +++ b/inst/extdata/OSD/S/STAKE.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "2A2b", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "3A3b", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "4A4b", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "5A5b", "top": 76, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "5Bk1", "top": 102, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 1, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "5Bk2", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -236,12 +236,12 @@ "name": "6Ck", "top": 152, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sandy loam", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/STAMP.json b/inst/extdata/OSD/S/STAMP.json index 5f29201a74..6181d1b639 100644 --- a/inst/extdata/OSD/S/STAMP.json +++ b/inst/extdata/OSD/S/STAMP.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine granular", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 28, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Cg1", "top": 51, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "Cg2", "top": 74, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate coarse subangular blocky", @@ -190,12 +190,12 @@ "name": "Cg3", "top": 91, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/STANROD.json b/inst/extdata/OSD/S/STANROD.json index 6652ef9c33..8a6bf5e9a2 100644 --- a/inst/extdata/OSD/S/STANROD.json +++ b/inst/extdata/OSD/S/STANROD.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "Btn", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Btkn", "top": 15, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bk1", "top": 20, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "Bk3", "top": 43, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "Bkz", "top": 76, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -236,12 +236,12 @@ "name": "2C", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/STARDUST.json b/inst/extdata/OSD/S/STARDUST.json index ec96adc631..37bfebe8ee 100644 --- a/inst/extdata/OSD/S/STARDUST.json +++ b/inst/extdata/OSD/S/STARDUST.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 23, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt2", "top": 46, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium and coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt3", "top": 97, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium subangular blocky", @@ -213,11 +213,11 @@ "name": "BC", "top": 137, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", diff --git a/inst/extdata/OSD/S/STARVEOUT.json b/inst/extdata/OSD/S/STARVEOUT.json index 934ca94296..16acb7a108 100644 --- a/inst/extdata/OSD/S/STARVEOUT.json +++ b/inst/extdata/OSD/S/STARVEOUT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt4", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium and coarse subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/STILLMAN.json b/inst/extdata/OSD/S/STILLMAN.json index 4829832c65..61a1abd5d6 100644 --- a/inst/extdata/OSD/S/STILLMAN.json +++ b/inst/extdata/OSD/S/STILLMAN.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "C", "top": 38, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/S/STINES.json b/inst/extdata/OSD/S/STINES.json index e6ed9ce0e6..86c9067b49 100644 --- a/inst/extdata/OSD/S/STINES.json +++ b/inst/extdata/OSD/S/STINES.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw1", "top": 23, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bw2", "top": 56, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk", "top": 84, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Cr", "top": 107, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", - "moist_hue": "N", - "moist_value": 7, + "moist_hue": "NA", + "moist_value": "NA", "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/S/STORMITT.json b/inst/extdata/OSD/S/STORMITT.json index 9dfa0f02bf..f02de0bda3 100644 --- a/inst/extdata/OSD/S/STORMITT.json +++ b/inst/extdata/OSD/S/STORMITT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "NA", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 46, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/STREEK.json b/inst/extdata/OSD/S/STREEK.json index a0f0639f8a..9e5da27dd4 100644 --- a/inst/extdata/OSD/S/STREEK.json +++ b/inst/extdata/OSD/S/STREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine and very fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate coarse and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "AB", "top": 28, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "2Btss", "top": 41, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong coarse and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Btkss", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate coarse and medium subangular blocky", diff --git a/inst/extdata/OSD/S/STRELL.json b/inst/extdata/OSD/S/STRELL.json index 8dce4d0ff8..4802b5225c 100644 --- a/inst/extdata/OSD/S/STRELL.json +++ b/inst/extdata/OSD/S/STRELL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sand", "structure": "weak thin platy", "dry_rupture": "loose", @@ -98,12 +98,12 @@ "name": "C1", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sand", "structure": "massive", "dry_rupture": "loose", @@ -121,12 +121,12 @@ "name": "C2", "top": 33, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sand", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/S/STREULING.json b/inst/extdata/OSD/S/STREULING.json index 1b4c8fa307..230332d7cf 100644 --- a/inst/extdata/OSD/S/STREULING.json +++ b/inst/extdata/OSD/S/STREULING.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/S/STREVELL.json b/inst/extdata/OSD/S/STREVELL.json index 6776598d07..c52720a61c 100644 --- a/inst/extdata/OSD/S/STREVELL.json +++ b/inst/extdata/OSD/S/STREVELL.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "Bw", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 33, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 64, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "2Bkz", "top": 79, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -213,12 +213,12 @@ "name": "2Ckz", "top": 107, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -236,12 +236,12 @@ "name": "3C", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/STRIKE.json b/inst/extdata/OSD/S/STRIKE.json index 3e1f883f9d..896b87fc45 100644 --- a/inst/extdata/OSD/S/STRIKE.json +++ b/inst/extdata/OSD/S/STRIKE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "2Bkq", "top": 48, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2C1", "top": 64, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "2C2", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/STRYCH.json b/inst/extdata/OSD/S/STRYCH.json index e07bc01033..0a2293d1af 100644 --- a/inst/extdata/OSD/S/STRYCH.json +++ b/inst/extdata/OSD/S/STRYCH.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 28, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 64, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "C", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/STU.json b/inst/extdata/OSD/S/STU.json index bec01038ea..e1ad983d8e 100644 --- a/inst/extdata/OSD/S/STU.json +++ b/inst/extdata/OSD/S/STU.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/STURGILL.json b/inst/extdata/OSD/S/STURGILL.json index 77da35cac5..8fe4fa6468 100644 --- a/inst/extdata/OSD/S/STURGILL.json +++ b/inst/extdata/OSD/S/STURGILL.json @@ -98,8 +98,8 @@ "name": "A", "top": 20, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 5, "dry_chroma": "NA", "moist_hue": "10YR", "moist_value": 2, diff --git a/inst/extdata/OSD/S/STYGEE.json b/inst/extdata/OSD/S/STYGEE.json index 94c24daab7..6b0f8e336c 100644 --- a/inst/extdata/OSD/S/STYGEE.json +++ b/inst/extdata/OSD/S/STYGEE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "weak medium platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "BC", "top": 5, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "strong coarse prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "BCssy1", "top": 36, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "BCssy2", "top": 79, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "weak medium and fine prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "BCssy3", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SUCCOR.json b/inst/extdata/OSD/S/SUCCOR.json index 4853125012..ac6f2b69de 100644 --- a/inst/extdata/OSD/S/SUCCOR.json +++ b/inst/extdata/OSD/S/SUCCOR.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 13, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium prismatic", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 46, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bq1", "top": 56, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "5Y", + "moist_value": 5, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate medium platy", @@ -190,12 +190,12 @@ "name": "Bq2", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "5Y", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SUGARCREEK.json b/inst/extdata/OSD/S/SUGARCREEK.json index c8ee133261..a4bffe1e1f 100644 --- a/inst/extdata/OSD/S/SUGARCREEK.json +++ b/inst/extdata/OSD/S/SUGARCREEK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium platy", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkq1", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkq2", "top": 71, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SUMERDUCK.json b/inst/extdata/OSD/S/SUMERDUCK.json index 6204e4d849..84688aead1 100644 --- a/inst/extdata/OSD/S/SUMERDUCK.json +++ b/inst/extdata/OSD/S/SUMERDUCK.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 8, "texture_class": "silt loam", "structure": "weak thin and medium platy", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 8, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/S/SUNNYVALE.json b/inst/extdata/OSD/S/SUNNYVALE.json index 9ebfa9cab4..743f21bf76 100644 --- a/inst/extdata/OSD/S/SUNNYVALE.json +++ b/inst/extdata/OSD/S/SUNNYVALE.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 4, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 3, "moist_chroma": "NA", "texture_class": "silty clay", "structure": "strong fine granular", @@ -98,8 +98,8 @@ "name": "A1ca", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 4, "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", @@ -121,11 +121,11 @@ "name": "C1ca", "top": 36, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "silty clay", "structure": "strong medium subangular blocky", diff --git a/inst/extdata/OSD/S/SURFAZ.json b/inst/extdata/OSD/S/SURFAZ.json index 44a2311726..845667f92b 100644 --- a/inst/extdata/OSD/S/SURFAZ.json +++ b/inst/extdata/OSD/S/SURFAZ.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak fine platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate very fine and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "2Bk1", "top": 51, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "coarse sand", "structure": "NA", "dry_rupture": "loose", @@ -167,12 +167,12 @@ "name": "2Bk2", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "coarse sand", "structure": "NA", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/S/SURYON.json b/inst/extdata/OSD/S/SURYON.json index da02346fa7..2a10e45918 100644 --- a/inst/extdata/OSD/S/SURYON.json +++ b/inst/extdata/OSD/S/SURYON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 25, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very coarse prismatic", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 43, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bw3", "top": 74, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C1", "top": 97, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C2", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SWAN.json b/inst/extdata/OSD/S/SWAN.json index b07ea31a23..a0048e31e5 100644 --- a/inst/extdata/OSD/S/SWAN.json +++ b/inst/extdata/OSD/S/SWAN.json @@ -144,9 +144,9 @@ "name": "Cg2", "top": 76, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5Y", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "5Y", "moist_value": 6, "moist_chroma": 1, diff --git a/inst/extdata/OSD/S/SWAPPS.json b/inst/extdata/OSD/S/SWAPPS.json index 27fde2fff2..1afbd21f7b 100644 --- a/inst/extdata/OSD/S/SWAPPS.json +++ b/inst/extdata/OSD/S/SWAPPS.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 11, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium granular", @@ -121,12 +121,12 @@ "name": "Bt", "top": 11, "bottom": 24, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 24, "bottom": 42, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 42, "bottom": 62, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/S/SWASEY.json b/inst/extdata/OSD/S/SWASEY.json index 6e3e894fc0..983afea437 100644 --- a/inst/extdata/OSD/S/SWASEY.json +++ b/inst/extdata/OSD/S/SWASEY.json @@ -75,11 +75,11 @@ "name": "E", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "Btn", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium prismatic", @@ -121,11 +121,11 @@ "name": "C1", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium angular blocky", @@ -144,11 +144,11 @@ "name": "C2", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium angular blocky", @@ -167,11 +167,11 @@ "name": "C3", "top": 61, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/S/SYRETT.json b/inst/extdata/OSD/S/SYRETT.json index def61630fc..eb066caa62 100644 --- a/inst/extdata/OSD/S/SYRETT.json +++ b/inst/extdata/OSD/S/SYRETT.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 30, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 58, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 8, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 8, "texture_class": "silt loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TACAN.json b/inst/extdata/OSD/T/TACAN.json index 7f0b1ec6bb..2878b1869a 100644 --- a/inst/extdata/OSD/T/TACAN.json +++ b/inst/extdata/OSD/T/TACAN.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak very fine and fine granular", @@ -98,12 +98,12 @@ "name": "B2t", "top": 20, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 5, "texture_class": "sandy clay loam", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Cl", "top": 66, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C2", "top": 122, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TADPOLE.json b/inst/extdata/OSD/T/TADPOLE.json index 7bc59d49f4..09efed26c0 100644 --- a/inst/extdata/OSD/T/TADPOLE.json +++ b/inst/extdata/OSD/T/TADPOLE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong fine platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium platy", @@ -121,11 +121,11 @@ "name": "Bw", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular", @@ -144,11 +144,11 @@ "name": "Bk", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bkq", "top": 46, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "2C", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/T/TAHOULA.json b/inst/extdata/OSD/T/TAHOULA.json index 4cd711b777..1a671d04ff 100644 --- a/inst/extdata/OSD/T/TAHOULA.json +++ b/inst/extdata/OSD/T/TAHOULA.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "clay", "structure": "moderate medium blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TAKEUCHI.json b/inst/extdata/OSD/T/TAKEUCHI.json index 0e72c78cab..419c43bb5c 100644 --- a/inst/extdata/OSD/T/TAKEUCHI.json +++ b/inst/extdata/OSD/T/TAKEUCHI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 30, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 46, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "moderate medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Cr", "top": 66, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "coarse sand", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TAKPOCHAO.json b/inst/extdata/OSD/T/TAKPOCHAO.json index 641af2e58f..599ad154b0 100644 --- a/inst/extdata/OSD/T/TAKPOCHAO.json +++ b/inst/extdata/OSD/T/TAKPOCHAO.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "loam", "structure": "strong very fine granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TANNER.json b/inst/extdata/OSD/T/TANNER.json index d193388b6a..e0d6fb70ad 100644 --- a/inst/extdata/OSD/T/TANNER.json +++ b/inst/extdata/OSD/T/TANNER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "strong fine angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "strong medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -190,12 +190,12 @@ "name": "Bkqm", "top": 89, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "massive", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "2R", "top": 130, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 1, "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/T/TARNACH.json b/inst/extdata/OSD/T/TARNACH.json index df4353220b..3d65495f35 100644 --- a/inst/extdata/OSD/T/TARNACH.json +++ b/inst/extdata/OSD/T/TARNACH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 10, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/T/TASSI.json b/inst/extdata/OSD/T/TASSI.json index 101653f430..95370193de 100644 --- a/inst/extdata/OSD/T/TASSI.json +++ b/inst/extdata/OSD/T/TASSI.json @@ -144,9 +144,9 @@ "name": "Bkm1", "top": 25, "bottom": 30, - "dry_hue": "7.5YR", + "dry_hue": "N", "dry_value": 8, - "dry_chroma": 2, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", @@ -167,9 +167,9 @@ "name": "Bkm2", "top": 30, "bottom": 71, - "dry_hue": "7.5YR", + "dry_hue": "N", "dry_value": 8, - "dry_chroma": 2, + "dry_chroma": "NA", "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/T/TAYLORSFLAT.json b/inst/extdata/OSD/T/TAYLORSFLAT.json index 4adfa5524e..2a60e7ddd9 100644 --- a/inst/extdata/OSD/T/TAYLORSFLAT.json +++ b/inst/extdata/OSD/T/TAYLORSFLAT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 13, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk", "top": 51, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "2C", "top": 84, "bottom": 183, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TEBBS.json b/inst/extdata/OSD/T/TEBBS.json index baaf8d8b11..246ab622dc 100644 --- a/inst/extdata/OSD/T/TEBBS.json +++ b/inst/extdata/OSD/T/TEBBS.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 13, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C1", "top": 71, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C2", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TEELER.json b/inst/extdata/OSD/T/TEELER.json index c0b1d1ab76..a78dcdc1a1 100644 --- a/inst/extdata/OSD/T/TEELER.json +++ b/inst/extdata/OSD/T/TEELER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk", "top": 25, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TEEMAT.json b/inst/extdata/OSD/T/TEEMAT.json index dd7562511b..05e9c8a89b 100644 --- a/inst/extdata/OSD/T/TEEMAT.json +++ b/inst/extdata/OSD/T/TEEMAT.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk", "top": 25, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TEETERS.json b/inst/extdata/OSD/T/TEETERS.json index 5fdbf6d1b7..440381b2dc 100644 --- a/inst/extdata/OSD/T/TEETERS.json +++ b/inst/extdata/OSD/T/TEETERS.json @@ -121,8 +121,8 @@ "name": "Ckz", "top": 41, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", "moist_hue": "5YR", "moist_value": 4, @@ -144,12 +144,12 @@ "name": "C2", "top": 76, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 4, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silt", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C4", "top": 114, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 3, - "moist_chroma": 1, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silt", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TENNEYCANYON.json b/inst/extdata/OSD/T/TENNEYCANYON.json index 8b4fce4d98..903e6bc245 100644 --- a/inst/extdata/OSD/T/TENNEYCANYON.json +++ b/inst/extdata/OSD/T/TENNEYCANYON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 6, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sand", "structure": "weak fine subangular blocky", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 8, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 38, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loamy fine sand", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "E", "top": 74, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "fine sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,12 +167,12 @@ "name": "E/Bt", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loamy fine sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "C", "top": 152, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 6, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TEROUGE.json b/inst/extdata/OSD/T/TEROUGE.json index 4e87bb742c..d10e1d7135 100644 --- a/inst/extdata/OSD/T/TEROUGE.json +++ b/inst/extdata/OSD/T/TEROUGE.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 3, - "moist_chroma": 2, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "moderate medium blocky", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 3, - "moist_chroma": 2, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "strong coarse blocky", "dry_rupture": "NA", @@ -216,9 +216,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "5Y", - "moist_value": 5, - "moist_chroma": 2, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/T/THACKER.json b/inst/extdata/OSD/T/THACKER.json index 14f5cca8ff..dad039a020 100644 --- a/inst/extdata/OSD/T/THACKER.json +++ b/inst/extdata/OSD/T/THACKER.json @@ -75,12 +75,12 @@ "name": "E1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "E2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,9 +121,9 @@ "name": "Bt", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 4, @@ -144,11 +144,11 @@ "name": "2Bkqm", "top": 53, "bottom": 78, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "NA", "structure": "strong medium platy", @@ -167,11 +167,11 @@ "name": "2C1", "top": 78, "bottom": 110, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "massive", diff --git a/inst/extdata/OSD/T/THATCHERFLATS.json b/inst/extdata/OSD/T/THATCHERFLATS.json index 3425b1b4fb..ac8cfdbcc0 100644 --- a/inst/extdata/OSD/T/THATCHERFLATS.json +++ b/inst/extdata/OSD/T/THATCHERFLATS.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong very fine platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong coarse platy", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Btn", "top": 13, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong medium columnar", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Btkn1", "top": 23, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Btkn2", "top": 28, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate fine and medium angular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bkn1", "top": 64, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bkn2", "top": 114, "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "Bkn3", "top": 142, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/THERMOSPRINGS.json b/inst/extdata/OSD/T/THERMOSPRINGS.json index e65ddd0dfb..dc2f300e84 100644 --- a/inst/extdata/OSD/T/THERMOSPRINGS.json +++ b/inst/extdata/OSD/T/THERMOSPRINGS.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "strong thick platy", @@ -98,11 +98,11 @@ "name": "Btkn1", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "moderate fine prismatic", @@ -121,11 +121,11 @@ "name": "Btkn2", "top": 33, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "strong medium angular blocky", @@ -144,11 +144,11 @@ "name": "C", "top": 79, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/THREEK.json b/inst/extdata/OSD/T/THREEK.json index d938c01a4a..ae53504756 100644 --- a/inst/extdata/OSD/T/THREEK.json +++ b/inst/extdata/OSD/T/THREEK.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 33, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine angular blocky", @@ -167,12 +167,12 @@ "name": "2Bq", "top": 79, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TIESIDE.json b/inst/extdata/OSD/T/TIESIDE.json index f8364cd67b..e910ba3c74 100644 --- a/inst/extdata/OSD/T/TIESIDE.json +++ b/inst/extdata/OSD/T/TIESIDE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bk1", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 6, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TIGON.json b/inst/extdata/OSD/T/TIGON.json index dc5ad7729b..e3578fd911 100644 --- a/inst/extdata/OSD/T/TIGON.json +++ b/inst/extdata/OSD/T/TIGON.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium crumb", @@ -98,11 +98,11 @@ "name": "B21t", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -121,11 +121,11 @@ "name": "B22t", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak medium angular blocky", diff --git a/inst/extdata/OSD/T/TIKI.json b/inst/extdata/OSD/T/TIKI.json index 9c46824ed6..ea287ea2ec 100644 --- a/inst/extdata/OSD/T/TIKI.json +++ b/inst/extdata/OSD/T/TIKI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "weak medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 6, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 7, + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 5, "moist_chroma": 6, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TILLAMOOK.json b/inst/extdata/OSD/T/TILLAMOOK.json index caa16b4977..bf48e37a52 100644 --- a/inst/extdata/OSD/T/TILLAMOOK.json +++ b/inst/extdata/OSD/T/TILLAMOOK.json @@ -98,9 +98,9 @@ "name": "A1", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 2, "moist_chroma": 2, diff --git a/inst/extdata/OSD/T/TIMBERBUTTE.json b/inst/extdata/OSD/T/TIMBERBUTTE.json index 092022b72f..1a0e1aeeb6 100644 --- a/inst/extdata/OSD/T/TIMBERBUTTE.json +++ b/inst/extdata/OSD/T/TIMBERBUTTE.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 30, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak very fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 53, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bw3", "top": 74, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak very fine subangular blocky", @@ -190,12 +190,12 @@ "name": "2C", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/T/TIMGULCH.json b/inst/extdata/OSD/T/TIMGULCH.json index c2b491ebf6..c149ee61f5 100644 --- a/inst/extdata/OSD/T/TIMGULCH.json +++ b/inst/extdata/OSD/T/TIMGULCH.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "AC", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/T/TINDAHAY.json b/inst/extdata/OSD/T/TINDAHAY.json index 9f77524f1f..52208696cd 100644 --- a/inst/extdata/OSD/T/TINDAHAY.json +++ b/inst/extdata/OSD/T/TINDAHAY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak very thin platy", @@ -121,11 +121,11 @@ "name": "A3", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "AC", "top": 33, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak coarse subangular blocky", @@ -167,11 +167,11 @@ "name": "C1", "top": 48, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C2", "top": 61, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "C3", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 2, "moist_chroma": 1, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TOBINCREEK.json b/inst/extdata/OSD/T/TOBINCREEK.json index 58b99beef2..dc4d6bb53b 100644 --- a/inst/extdata/OSD/T/TOBINCREEK.json +++ b/inst/extdata/OSD/T/TOBINCREEK.json @@ -98,11 +98,11 @@ "name": "A", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Cr1", "top": 64, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "R", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TOBISH.json b/inst/extdata/OSD/T/TOBISH.json index afe414805a..477a0afcaa 100644 --- a/inst/extdata/OSD/T/TOBISH.json +++ b/inst/extdata/OSD/T/TOBISH.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -98,9 +98,9 @@ "name": "Blt", "top": 3, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, "moist_chroma": 4, @@ -121,11 +121,11 @@ "name": "B21t", "top": 13, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium and fine angular blocky", @@ -144,11 +144,11 @@ "name": "B22t", "top": 43, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay", "structure": "moderate coarse angular blocky", @@ -167,11 +167,11 @@ "name": "B3", "top": 79, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/T/TOBLER.json b/inst/extdata/OSD/T/TOBLER.json index c1abebb2a5..7a6a61ebb6 100644 --- a/inst/extdata/OSD/T/TOBLER.json +++ b/inst/extdata/OSD/T/TOBLER.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 33, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "C3", "top": 97, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "2.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "fine sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/T/TOEHEAD.json b/inst/extdata/OSD/T/TOEHEAD.json index c6147de520..38b6435320 100644 --- a/inst/extdata/OSD/T/TOEHEAD.json +++ b/inst/extdata/OSD/T/TOEHEAD.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -98,12 +98,12 @@ "name": "A", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bw", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 56, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 71, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate fine angular blocky", @@ -190,11 +190,11 @@ "name": "Bk3", "top": 104, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TOGHOTTHELE.json b/inst/extdata/OSD/T/TOGHOTTHELE.json index 9c9f008b5c..9968bd4698 100644 --- a/inst/extdata/OSD/T/TOGHOTTHELE.json +++ b/inst/extdata/OSD/T/TOGHOTTHELE.json @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "fine sand", "structure": "massive", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/T/TOMASAKI.json b/inst/extdata/OSD/T/TOMASAKI.json index d6ccf4083b..7aaf002294 100644 --- a/inst/extdata/OSD/T/TOMASAKI.json +++ b/inst/extdata/OSD/T/TOMASAKI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium prismatic", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 28, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay", "structure": "NA", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 61, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "2Bt4", "top": 86, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay", "structure": "NA", "dry_rupture": "NA", @@ -190,11 +190,11 @@ "name": "2C", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TOMBAR.json b/inst/extdata/OSD/T/TOMBAR.json index d70226753b..cd62d720f9 100644 --- a/inst/extdata/OSD/T/TOMBAR.json +++ b/inst/extdata/OSD/T/TOMBAR.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine and very fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Btk", "top": 38, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk", "top": 46, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/T/TOMSHERRY.json b/inst/extdata/OSD/T/TOMSHERRY.json index 6d15a6153d..75d6eccd0b 100644 --- a/inst/extdata/OSD/T/TOMSHERRY.json +++ b/inst/extdata/OSD/T/TOMSHERRY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak medium granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "AB", "top": 10, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 28, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "single grain", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 81, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "strong very thick platy", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "2Ckz", "top": 91, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "massive", @@ -213,11 +213,11 @@ "name": "2C", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TOMTY.json b/inst/extdata/OSD/T/TOMTY.json index 692fb5b9f4..ef50b9c0b1 100644 --- a/inst/extdata/OSD/T/TOMTY.json +++ b/inst/extdata/OSD/T/TOMTY.json @@ -193,8 +193,8 @@ "dry_hue": "N", "dry_value": 5, "dry_chroma": 0, - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "silty clay", "structure": "weak coarse angular blocky", diff --git a/inst/extdata/OSD/T/TOOELE.json b/inst/extdata/OSD/T/TOOELE.json index 6ed2c4cc56..dd8fc02041 100644 --- a/inst/extdata/OSD/T/TOOELE.json +++ b/inst/extdata/OSD/T/TOOELE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "C1", "top": 43, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C2", "top": 84, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C3", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TOPONCE.json b/inst/extdata/OSD/T/TOPONCE.json index c9a1946347..97d1e30f6e 100644 --- a/inst/extdata/OSD/T/TOPONCE.json +++ b/inst/extdata/OSD/T/TOPONCE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "NA", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 36, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong fine and very fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt3", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "clay", "structure": "moderate coarse prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TOQUERVILLE.json b/inst/extdata/OSD/T/TOQUERVILLE.json index b0cd6745dc..cb9a702dcf 100644 --- a/inst/extdata/OSD/T/TOQUERVILLE.json +++ b/inst/extdata/OSD/T/TOQUERVILLE.json @@ -75,11 +75,11 @@ "name": "C1", "top": 0, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 8, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TORREON.json b/inst/extdata/OSD/T/TORREON.json index 3f03212e29..43c65e8af3 100644 --- a/inst/extdata/OSD/T/TORREON.json +++ b/inst/extdata/OSD/T/TORREON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate fine prismatic", @@ -121,11 +121,11 @@ "name": "Bt", "top": 28, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Btk", "top": 53, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium prismatic", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 91, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak fine prismatic", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 132, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/T/TOSCA.json b/inst/extdata/OSD/T/TOSCA.json index 3a72076734..9aea3438dd 100644 --- a/inst/extdata/OSD/T/TOSCA.json +++ b/inst/extdata/OSD/T/TOSCA.json @@ -98,12 +98,12 @@ "name": "A1", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 28, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk2", "top": 48, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bk3", "top": 99, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C", "top": 135, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TOSSER.json b/inst/extdata/OSD/T/TOSSER.json index 2f04e73976..8d7631e012 100644 --- a/inst/extdata/OSD/T/TOSSER.json +++ b/inst/extdata/OSD/T/TOSSER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak medium and thick platy", @@ -98,12 +98,12 @@ "name": "A2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bkq1", "top": 25, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 58, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "Bkq3", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/T/TOTATLANIKA.json b/inst/extdata/OSD/T/TOTATLANIKA.json index b251684858..69c8387437 100644 --- a/inst/extdata/OSD/T/TOTATLANIKA.json +++ b/inst/extdata/OSD/T/TOTATLANIKA.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 6, + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "moderate medium platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/T/TOZE.json b/inst/extdata/OSD/T/TOZE.json index 2be988972c..8ad80cb86b 100644 --- a/inst/extdata/OSD/T/TOZE.json +++ b/inst/extdata/OSD/T/TOZE.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "A3", "top": 23, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "A4", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silt loam", "structure": "massive", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 89, "bottom": 109, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 109, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -213,12 +213,12 @@ "name": "Bk3", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TRACHUTE.json b/inst/extdata/OSD/T/TRACHUTE.json index 5f18b83a2b..fb1d72a427 100644 --- a/inst/extdata/OSD/T/TRACHUTE.json +++ b/inst/extdata/OSD/T/TRACHUTE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy fine sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium prismatic", @@ -121,11 +121,11 @@ "name": "C2yk", "top": 20, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3yk", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TRAILCREEK.json b/inst/extdata/OSD/T/TRAILCREEK.json index d05317fea0..7d66ce02c2 100644 --- a/inst/extdata/OSD/T/TRAILCREEK.json +++ b/inst/extdata/OSD/T/TRAILCREEK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "very fine sandy loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "BA", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "soft", @@ -121,12 +121,12 @@ "name": "Bw", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "BC", "top": 51, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Cr", "top": 66, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, "dry_chroma": "NA", "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 6, "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", diff --git a/inst/extdata/OSD/T/TRAILHOLLOW.json b/inst/extdata/OSD/T/TRAILHOLLOW.json index d1e00c041c..f397e260aa 100644 --- a/inst/extdata/OSD/T/TRAILHOLLOW.json +++ b/inst/extdata/OSD/T/TRAILHOLLOW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "BCk1", "top": 28, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "BCk2", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TRANQUILLITY.json b/inst/extdata/OSD/T/TRANQUILLITY.json index 81592d7153..861e17734d 100644 --- a/inst/extdata/OSD/T/TRANQUILLITY.json +++ b/inst/extdata/OSD/T/TRANQUILLITY.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "strong coarse subangular blocky", @@ -98,11 +98,11 @@ "name": "Ap2", "top": 15, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bknyss1", "top": 41, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bknyss2", "top": 79, "bottom": 122, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bkny", "top": 122, "bottom": 165, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/T/TRESANO.json b/inst/extdata/OSD/T/TRESANO.json index 30d0888d38..765c06abd0 100644 --- a/inst/extdata/OSD/T/TRESANO.json +++ b/inst/extdata/OSD/T/TRESANO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "NA", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btz", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium angular blocky", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 61, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/T/TREVINO.json b/inst/extdata/OSD/T/TREVINO.json index 43dcf02346..2ebb7bf95a 100644 --- a/inst/extdata/OSD/T/TREVINO.json +++ b/inst/extdata/OSD/T/TREVINO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin and very thin platy", @@ -98,12 +98,12 @@ "name": "AB", "top": 8, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bw", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium prismatic", @@ -144,11 +144,11 @@ "name": "Bkq1", "top": 25, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium and fine subangular blocky", @@ -167,12 +167,12 @@ "name": "Bkq2", "top": 33, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TRIPOD.json b/inst/extdata/OSD/T/TRIPOD.json index 2cfe0525af..5721502616 100644 --- a/inst/extdata/OSD/T/TRIPOD.json +++ b/inst/extdata/OSD/T/TRIPOD.json @@ -98,11 +98,11 @@ "name": "Al", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 15, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "2AC", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", @@ -167,11 +167,11 @@ "name": "2Cl", "top": 58, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 2, "texture_class": "coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C2", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "2.5Y", + "moist_value": 6, "moist_chroma": 1, "texture_class": "coarse sand", "structure": "massive", diff --git a/inst/extdata/OSD/T/TROUGHS.json b/inst/extdata/OSD/T/TROUGHS.json index 67499fdb9e..bbdb9cafe4 100644 --- a/inst/extdata/OSD/T/TROUGHS.json +++ b/inst/extdata/OSD/T/TROUGHS.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine and fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bkq", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bkqm", "top": 38, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 3, "texture_class": "NA", "structure": "strong medium and thick platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TROVE.json b/inst/extdata/OSD/T/TROVE.json index 9ef97b934a..e29d8c2b26 100644 --- a/inst/extdata/OSD/T/TROVE.json +++ b/inst/extdata/OSD/T/TROVE.json @@ -75,11 +75,11 @@ "name": "A1", "top": "NA", "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium angular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "2Bk", "top": 48, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/T/TRUDE.json b/inst/extdata/OSD/T/TRUDE.json index 1d956fa3ee..cdbb0c6fed 100644 --- a/inst/extdata/OSD/T/TRUDE.json +++ b/inst/extdata/OSD/T/TRUDE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw3", "top": 43, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "weak very fine subangular blocky", diff --git a/inst/extdata/OSD/T/TRUHOY.json b/inst/extdata/OSD/T/TRUHOY.json index 41fca89e95..d241baa7fe 100644 --- a/inst/extdata/OSD/T/TRUHOY.json +++ b/inst/extdata/OSD/T/TRUHOY.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate thin and medium platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TUCKER.json b/inst/extdata/OSD/T/TUCKER.json index 8a91430b26..7fed264dff 100644 --- a/inst/extdata/OSD/T/TUCKER.json +++ b/inst/extdata/OSD/T/TUCKER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate fine platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "AB", "top": 15, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bw", "top": 28, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Cg", "top": 81, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 2, "moist_chroma": 1, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/T/TUFTUFF.json b/inst/extdata/OSD/T/TUFTUFF.json index b334d2a063..7ad4454505 100644 --- a/inst/extdata/OSD/T/TUFTUFF.json +++ b/inst/extdata/OSD/T/TUFTUFF.json @@ -168,7 +168,7 @@ "top": 76, "bottom": 91, "dry_hue": "7.5YR", - "dry_value": 3, + "dry_value": 5, "dry_chroma": 4, "moist_hue": "NA", "moist_value": "NA", diff --git a/inst/extdata/OSD/T/TUKUHNIK.json b/inst/extdata/OSD/T/TUKUHNIK.json index 45ad5fdf02..ec6ed7eaa2 100644 --- a/inst/extdata/OSD/T/TUKUHNIK.json +++ b/inst/extdata/OSD/T/TUKUHNIK.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,9 +121,9 @@ "name": "Bt", "top": 33, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 4, @@ -144,11 +144,11 @@ "name": "Btk1", "top": 86, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "NA", @@ -167,12 +167,12 @@ "name": "Btk2", "top": 104, "bottom": 130, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silty clay", "structure": "moderate medium prismatic", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TULANA.json b/inst/extdata/OSD/T/TULANA.json index 58278453e4..54576a88e1 100644 --- a/inst/extdata/OSD/T/TULANA.json +++ b/inst/extdata/OSD/T/TULANA.json @@ -98,11 +98,11 @@ "name": "A", "top": 20, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 7, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 5, "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/T/TULOSO.json b/inst/extdata/OSD/T/TULOSO.json index 6617fd9a88..312f25f863 100644 --- a/inst/extdata/OSD/T/TULOSO.json +++ b/inst/extdata/OSD/T/TULOSO.json @@ -78,9 +78,9 @@ "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak thin platy", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/T/TUPELO.json b/inst/extdata/OSD/T/TUPELO.json index 851921993b..b8ba359265 100644 --- a/inst/extdata/OSD/T/TUPELO.json +++ b/inst/extdata/OSD/T/TUPELO.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "2.5Y", + "moist_hue": "N", "moist_value": 6, - "moist_chroma": 2, + "moist_chroma": 0, "texture_class": "clay", "structure": "weak medium angular blocky", "dry_rupture": "NA", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_hue": "N", + "moist_value": 6, + "moist_chroma": 0, "texture_class": "clay", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/T/TUPUKNUK.json b/inst/extdata/OSD/T/TUPUKNUK.json index d74434f6ce..ca5b75b9f8 100644 --- a/inst/extdata/OSD/T/TUPUKNUK.json +++ b/inst/extdata/OSD/T/TUPUKNUK.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 3, - "moist_chroma": 4, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak thin platy", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/T/TUSIP.json b/inst/extdata/OSD/T/TUSIP.json index c7b09c233a..4b4cbed948 100644 --- a/inst/extdata/OSD/T/TUSIP.json +++ b/inst/extdata/OSD/T/TUSIP.json @@ -124,9 +124,9 @@ "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 6, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loamy sand", "structure": "single grain", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/T/TWIST.json b/inst/extdata/OSD/T/TWIST.json index 7c7fdfcfe6..09e3bb7ed0 100644 --- a/inst/extdata/OSD/T/TWIST.json +++ b/inst/extdata/OSD/T/TWIST.json @@ -213,11 +213,11 @@ "name": "2By2", "top": 147, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 8, "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 8, "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/T/TWORIVERS.json b/inst/extdata/OSD/T/TWORIVERS.json index ba5a54b4a7..ae462b0ec8 100644 --- a/inst/extdata/OSD/T/TWORIVERS.json +++ b/inst/extdata/OSD/T/TWORIVERS.json @@ -170,9 +170,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/T/TYZAK.json b/inst/extdata/OSD/T/TYZAK.json index 7aba58563c..6a7927a3cd 100644 --- a/inst/extdata/OSD/T/TYZAK.json +++ b/inst/extdata/OSD/T/TYZAK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", @@ -98,11 +98,11 @@ "name": "Bk", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/U/UINTA.json b/inst/extdata/OSD/U/UINTA.json index 6f127de5c6..682a57c457 100644 --- a/inst/extdata/OSD/U/UINTA.json +++ b/inst/extdata/OSD/U/UINTA.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 1, "texture_class": "sandy loam", "structure": "moderate very fine granular", @@ -121,11 +121,11 @@ "name": "E", "top": 8, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate thin platy", @@ -144,11 +144,11 @@ "name": "E/B", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt1", "top": 53, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bt2", "top": 112, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak coarse subangular blocky", @@ -213,11 +213,11 @@ "name": "C", "top": 135, "bottom": 180, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/U/UMBO.json b/inst/extdata/OSD/U/UMBO.json index 6a5a65ef1f..ce7ee25055 100644 --- a/inst/extdata/OSD/U/UMBO.json +++ b/inst/extdata/OSD/U/UMBO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "C1", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C2", "top": 51, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 76, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/U/UNIVEGA.json b/inst/extdata/OSD/U/UNIVEGA.json index 0a41b2584a..e770b79588 100644 --- a/inst/extdata/OSD/U/UNIVEGA.json +++ b/inst/extdata/OSD/U/UNIVEGA.json @@ -191,8 +191,8 @@ "top": 107, "bottom": 152, "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 4, + "dry_value": 8, + "dry_chroma": 1, "moist_hue": "NA", "moist_value": "NA", "moist_chroma": "NA", diff --git a/inst/extdata/OSD/U/UNKEE.json b/inst/extdata/OSD/U/UNKEE.json index 446504f1b3..c1822e3ff6 100644 --- a/inst/extdata/OSD/U/UNKEE.json +++ b/inst/extdata/OSD/U/UNKEE.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "strong fine to medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bss1", "top": 20, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay", "structure": "NA", @@ -144,11 +144,11 @@ "name": "Bss2", "top": 119, "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay", "structure": "NA", diff --git a/inst/extdata/OSD/U/UPCREEK.json b/inst/extdata/OSD/U/UPCREEK.json index 64188e5a83..c562ba5841 100644 --- a/inst/extdata/OSD/U/UPCREEK.json +++ b/inst/extdata/OSD/U/UPCREEK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak coarse prismatic", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 41, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "2C1", "top": 74, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", @@ -167,11 +167,11 @@ "name": "2C2", "top": 84, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/U/UTSO.json b/inst/extdata/OSD/U/UTSO.json index cc5363e9a7..8690b3bf9c 100644 --- a/inst/extdata/OSD/U/UTSO.json +++ b/inst/extdata/OSD/U/UTSO.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -98,11 +98,11 @@ "name": "A2", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "AB", "top": 43, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk", "top": 58, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/U/UVER.json b/inst/extdata/OSD/U/UVER.json index 48900c5c17..9f9d090b16 100644 --- a/inst/extdata/OSD/U/UVER.json +++ b/inst/extdata/OSD/U/UVER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bk1", "top": 15, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", @@ -121,11 +121,11 @@ "name": "Bk2", "top": 38, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", @@ -144,11 +144,11 @@ "name": "C", "top": 94, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/U/UWIHREH.json b/inst/extdata/OSD/U/UWIHREH.json index 792f354d61..1126c93659 100644 --- a/inst/extdata/OSD/U/UWIHREH.json +++ b/inst/extdata/OSD/U/UWIHREH.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_hue": "2.5YR", + "moist_value": 5, + "moist_chroma": 2, "texture_class": "silty clay", "structure": "strong fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/V/VALLEY.json b/inst/extdata/OSD/V/VALLEY.json index 9dd0464927..8a5fa1d0d4 100644 --- a/inst/extdata/OSD/V/VALLEY.json +++ b/inst/extdata/OSD/V/VALLEY.json @@ -124,9 +124,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 1, + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "moderate medium and coarse prismatic", "dry_rupture": "soft", @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_hue": "N", + "moist_value": 3, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "moderate coarse subangular blocky", "dry_rupture": "soft", @@ -193,9 +193,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 6, + "moist_chroma": "NA", "texture_class": "silty clay loam", "structure": "moderate coarse subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/V/VALLEYCITY.json b/inst/extdata/OSD/V/VALLEYCITY.json index 64ccb17bc9..161f62f5ca 100644 --- a/inst/extdata/OSD/V/VALLEYCITY.json +++ b/inst/extdata/OSD/V/VALLEYCITY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "Bt", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "BCk", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/V/VANAJO.json b/inst/extdata/OSD/V/VANAJO.json index 472901df58..18c13b7deb 100644 --- a/inst/extdata/OSD/V/VANAJO.json +++ b/inst/extdata/OSD/V/VANAJO.json @@ -75,11 +75,11 @@ "name": "Ap", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silty clay", "structure": "moderate medium granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 25, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 64, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silty clay", "structure": "massive", diff --git a/inst/extdata/OSD/V/VANET.json b/inst/extdata/OSD/V/VANET.json index 2501bdcd72..0e62377b32 100644 --- a/inst/extdata/OSD/V/VANET.json +++ b/inst/extdata/OSD/V/VANET.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 6, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -144,12 +144,12 @@ "name": "Bk", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Cr", "top": 36, "bottom": "NA", - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 7, - "moist_chroma": 4, + "dry_hue": "5YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/V/VANNI.json b/inst/extdata/OSD/V/VANNI.json index b3872964c0..011953c7b3 100644 --- a/inst/extdata/OSD/V/VANNI.json +++ b/inst/extdata/OSD/V/VANNI.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "B2", "top": 18, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C1ca", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 7, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "C2ca", "top": 46, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "C3ca", "top": 89, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -190,12 +190,12 @@ "name": "C4", "top": 127, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/V/VAN_DUSEN.json b/inst/extdata/OSD/V/VAN_DUSEN.json index 5f41588dec..54b98c4f2e 100644 --- a/inst/extdata/OSD/V/VAN_DUSEN.json +++ b/inst/extdata/OSD/V/VAN_DUSEN.json @@ -75,12 +75,12 @@ "name": "Al", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 1, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 38, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 61, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak fine and medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bt3", "top": 74, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "BC", "top": 86, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -213,11 +213,11 @@ "name": "C1", "top": 107, "bottom": 127, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/V/VAN_WAGONER.json b/inst/extdata/OSD/V/VAN_WAGONER.json index 382b95d244..24d65400c8 100644 --- a/inst/extdata/OSD/V/VAN_WAGONER.json +++ b/inst/extdata/OSD/V/VAN_WAGONER.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A2", "top": 3, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "C", "top": 38, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "sand", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/V/VENTURE.json b/inst/extdata/OSD/V/VENTURE.json index fc80b2e719..0082f2fcb5 100644 --- a/inst/extdata/OSD/V/VENTURE.json +++ b/inst/extdata/OSD/V/VENTURE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium angular blocky", @@ -121,12 +121,12 @@ "name": "Btk", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/V/VEYO.json b/inst/extdata/OSD/V/VEYO.json index b9137024de..8c8d9ffb5e 100644 --- a/inst/extdata/OSD/V/VEYO.json +++ b/inst/extdata/OSD/V/VEYO.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "BA", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium subangular blocky", @@ -167,9 +167,9 @@ "name": "Bk", "top": 43, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", "moist_value": 5, "moist_chroma": 4, diff --git a/inst/extdata/OSD/V/VIBLE.json b/inst/extdata/OSD/V/VIBLE.json index 83463c530b..6ec1a3faa6 100644 --- a/inst/extdata/OSD/V/VIBLE.json +++ b/inst/extdata/OSD/V/VIBLE.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium crumb", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "C1", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak medium subangular blocky", @@ -144,12 +144,12 @@ "name": "C3", "top": 41, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "coarse sand", "structure": "single grain", "dry_rupture": "loose", @@ -167,11 +167,11 @@ "name": "C4", "top": 64, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "C5", "top": 107, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/V/VICKERY.json b/inst/extdata/OSD/V/VICKERY.json index 0c83d8e960..da65f0ef33 100644 --- a/inst/extdata/OSD/V/VICKERY.json +++ b/inst/extdata/OSD/V/VICKERY.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw1", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bw2", "top": 38, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -190,11 +190,11 @@ "name": "Bkqm", "top": 86, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 8, "moist_chroma": 2, "texture_class": "NA", "structure": "massive", diff --git a/inst/extdata/OSD/V/VICKING.json b/inst/extdata/OSD/V/VICKING.json index 6d604c0876..91046ef7c7 100644 --- a/inst/extdata/OSD/V/VICKING.json +++ b/inst/extdata/OSD/V/VICKING.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 20, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium angular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Btk1", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Btk2", "top": 64, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "Bk1", "top": 84, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "Bk2", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/V/VITALE.json b/inst/extdata/OSD/V/VITALE.json index 096d81419b..577f6da63c 100644 --- a/inst/extdata/OSD/V/VITALE.json +++ b/inst/extdata/OSD/V/VITALE.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 15, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate very fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak very fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine subangular blocky", diff --git a/inst/extdata/OSD/V/VOGEL.json b/inst/extdata/OSD/V/VOGEL.json index f8b42aacf9..41284ad522 100644 --- a/inst/extdata/OSD/V/VOGEL.json +++ b/inst/extdata/OSD/V/VOGEL.json @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/V/VONDERGREEN.json b/inst/extdata/OSD/V/VONDERGREEN.json index c896058df5..231d9457df 100644 --- a/inst/extdata/OSD/V/VONDERGREEN.json +++ b/inst/extdata/OSD/V/VONDERGREEN.json @@ -216,8 +216,8 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 6, - "moist_hue": "10YR", - "moist_value": 8, + "moist_hue": "2.5Y", + "moist_value": 5, "moist_chroma": 1, "texture_class": "silty clay", "structure": "weak coarse subangular blocky", diff --git a/inst/extdata/OSD/V/VOSSET.json b/inst/extdata/OSD/V/VOSSET.json index 0ee438f942..6b662fbf97 100644 --- a/inst/extdata/OSD/V/VOSSET.json +++ b/inst/extdata/OSD/V/VOSSET.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin and very thin platy", @@ -98,11 +98,11 @@ "name": "B1", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak thin platy", @@ -121,11 +121,11 @@ "name": "B2t", "top": 10, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate coarse blocky", @@ -144,12 +144,12 @@ "name": "B3", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "single grain", "dry_rupture": "loose", @@ -167,11 +167,11 @@ "name": "C1ca", "top": 69, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "C2", "top": 86, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 2, "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "single grain", diff --git a/inst/extdata/OSD/V/VULTURE.json b/inst/extdata/OSD/V/VULTURE.json index 583a94e1c2..a3a75eca31 100644 --- a/inst/extdata/OSD/V/VULTURE.json +++ b/inst/extdata/OSD/V/VULTURE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 9, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 3, - "moist_chroma": 2, + "moist_value": 2.5, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 9, "bottom": 19, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 19, "bottom": 31, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 4, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "silty clay loam", "structure": "moderate medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "BC", "top": 31, "bottom": 73, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "C", "top": 73, "bottom": 150, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WACAHOOTA.json b/inst/extdata/OSD/W/WACAHOOTA.json index 6caabfb0a0..ce6a06e72f 100644 --- a/inst/extdata/OSD/W/WACAHOOTA.json +++ b/inst/extdata/OSD/W/WACAHOOTA.json @@ -124,8 +124,8 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 5, "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": "NA", "texture_class": "sandy clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WALDO.json b/inst/extdata/OSD/W/WALDO.json index 6f6d90e499..50f9d4b294 100644 --- a/inst/extdata/OSD/W/WALDO.json +++ b/inst/extdata/OSD/W/WALDO.json @@ -167,12 +167,12 @@ "name": "Bg1", "top": 38, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 5, "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "silt", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "Bg2", "top": 58, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 5, "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 8, + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": "NA", "texture_class": "clay", "structure": "moderate coarse subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "BCg", "top": 94, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 6, "dry_chroma": "NA", - "moist_hue": "7.5YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 8, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -236,12 +236,12 @@ "name": "Cg", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", + "dry_hue": "N", + "dry_value": 6, "dry_chroma": "NA", - "moist_hue": "7.5YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 8, + "moist_chroma": "NA", "texture_class": "silty clay", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WALES.json b/inst/extdata/OSD/W/WALES.json index 1d4b3732c7..53217efa4d 100644 --- a/inst/extdata/OSD/W/WALES.json +++ b/inst/extdata/OSD/W/WALES.json @@ -75,11 +75,11 @@ "name": "Ap1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very thin platy", @@ -98,12 +98,12 @@ "name": "Ap2", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C1", "top": 23, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "C2", "top": 43, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak thin platy", @@ -167,12 +167,12 @@ "name": "Ab", "top": 53, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thin platy", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C3", "top": 66, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak coarse subangular blocky", "dry_rupture": "hard", @@ -213,12 +213,12 @@ "name": "C4", "top": 81, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak coarse and medium subangular blocky", "dry_rupture": "hard", @@ -236,11 +236,11 @@ "name": "C5", "top": 104, "bottom": 135, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silt loam", "structure": "weak coarse and medium subangular blocky", @@ -259,11 +259,11 @@ "name": "C6", "top": 135, "bottom": 145, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", @@ -282,12 +282,12 @@ "name": "C7", "top": 145, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "silt loam", "structure": "moderate thin platy", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WALKUP.json b/inst/extdata/OSD/W/WALKUP.json index 255a2e46da..b0efbd418f 100644 --- a/inst/extdata/OSD/W/WALKUP.json +++ b/inst/extdata/OSD/W/WALKUP.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "C1", "top": 13, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "C2", "top": 48, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "C3", "top": 91, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WALLSBURG.json b/inst/extdata/OSD/W/WALLSBURG.json index f0174e9f0f..17ee0825f1 100644 --- a/inst/extdata/OSD/W/WALLSBURG.json +++ b/inst/extdata/OSD/W/WALLSBURG.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "weak medium granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/W/WALTERSHOW.json b/inst/extdata/OSD/W/WALTERSHOW.json index 2eff9146e6..9040394992 100644 --- a/inst/extdata/OSD/W/WALTERSHOW.json +++ b/inst/extdata/OSD/W/WALTERSHOW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 51, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 79, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 99, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/W/WAPAL.json b/inst/extdata/OSD/W/WAPAL.json index fdd591a499..21cb0307e6 100644 --- a/inst/extdata/OSD/W/WAPAL.json +++ b/inst/extdata/OSD/W/WAPAL.json @@ -147,9 +147,9 @@ "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/W/WAREAGLE.json b/inst/extdata/OSD/W/WAREAGLE.json index 70f8f528cb..0c3cd9cdd4 100644 --- a/inst/extdata/OSD/W/WAREAGLE.json +++ b/inst/extdata/OSD/W/WAREAGLE.json @@ -121,12 +121,12 @@ "name": "A", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "BA", "top": 23, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bw", "top": 30, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -190,12 +190,12 @@ "name": "C", "top": 43, "bottom": 157, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WATCHUNG.json b/inst/extdata/OSD/W/WATCHUNG.json index 37c8fa7190..fd909a3390 100644 --- a/inst/extdata/OSD/W/WATCHUNG.json +++ b/inst/extdata/OSD/W/WATCHUNG.json @@ -147,9 +147,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "10YR", + "moist_hue": "N", "moist_value": 5, - "moist_chroma": 8, + "moist_chroma": "NA", "texture_class": "clay", "structure": "strong medium prismatic and angular blocky", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WATERCANYON.json b/inst/extdata/OSD/W/WATERCANYON.json index 89324a5e91..63c1956b5c 100644 --- a/inst/extdata/OSD/W/WATERCANYON.json +++ b/inst/extdata/OSD/W/WATERCANYON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and very fine granular", @@ -98,12 +98,12 @@ "name": "Bw1", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "soft", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 23, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium prismatic", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 41, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 56, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "C", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "very fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WATERHILL.json b/inst/extdata/OSD/W/WATERHILL.json index c9dc67b68d..78c0ed8626 100644 --- a/inst/extdata/OSD/W/WATERHILL.json +++ b/inst/extdata/OSD/W/WATERHILL.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine granular", @@ -98,12 +98,12 @@ "name": "Bw", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 36, "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 74, "bottom": 91, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 91, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -190,12 +190,12 @@ "name": "C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WATKINS_RIDGE.json b/inst/extdata/OSD/W/WATKINS_RIDGE.json index a697335b0a..1ffc6518f2 100644 --- a/inst/extdata/OSD/W/WATKINS_RIDGE.json +++ b/inst/extdata/OSD/W/WATKINS_RIDGE.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak thick platy", @@ -98,11 +98,11 @@ "name": "A2", "top": 10, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 30, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak coarse subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 51, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 86, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 5, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 5, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 117, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 7, + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WATUSI.json b/inst/extdata/OSD/W/WATUSI.json index 13518314f3..9c7e382f21 100644 --- a/inst/extdata/OSD/W/WATUSI.json +++ b/inst/extdata/OSD/W/WATUSI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "B2", "top": 8, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "C1ca", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "C2ca", "top": 30, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 7, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "C3ca", "top": 61, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WAUCEDAH.json b/inst/extdata/OSD/W/WAUCEDAH.json index 51760bb030..864c693752 100644 --- a/inst/extdata/OSD/W/WAUCEDAH.json +++ b/inst/extdata/OSD/W/WAUCEDAH.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, "texture_class": "NA", "structure": "weak medium granular", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WEISER.json b/inst/extdata/OSD/W/WEISER.json index c915ed0b7d..802345ac63 100644 --- a/inst/extdata/OSD/W/WEISER.json +++ b/inst/extdata/OSD/W/WEISER.json @@ -121,9 +121,9 @@ "name": "Bkq1", "top": 25, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 6, "moist_chroma": 4, diff --git a/inst/extdata/OSD/W/WELAKA.json b/inst/extdata/OSD/W/WELAKA.json index 74818a0805..ac19b91b92 100644 --- a/inst/extdata/OSD/W/WELAKA.json +++ b/inst/extdata/OSD/W/WELAKA.json @@ -101,9 +101,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, "texture_class": "sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/W/WELRING.json b/inst/extdata/OSD/W/WELRING.json index 5fdf0d00fa..5043dd2fe6 100644 --- a/inst/extdata/OSD/W/WELRING.json +++ b/inst/extdata/OSD/W/WELRING.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "C1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "C2", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WELTER.json b/inst/extdata/OSD/W/WELTER.json index 0679a89372..a669e5561f 100644 --- a/inst/extdata/OSD/W/WELTER.json +++ b/inst/extdata/OSD/W/WELTER.json @@ -170,9 +170,9 @@ "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "N", + "moist_value": 4, + "moist_chroma": 0, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WHETSOON.json b/inst/extdata/OSD/W/WHETSOON.json index f7429db631..e21aa86772 100644 --- a/inst/extdata/OSD/W/WHETSOON.json +++ b/inst/extdata/OSD/W/WHETSOON.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak coarse prismatic", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "weak fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 53, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WHISK.json b/inst/extdata/OSD/W/WHISK.json index b4d155bae9..9bca28bff4 100644 --- a/inst/extdata/OSD/W/WHISK.json +++ b/inst/extdata/OSD/W/WHISK.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "moderate fine platy", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 8, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 28, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/W/WHITEMAN.json b/inst/extdata/OSD/W/WHITEMAN.json index 0f8a288cb3..d0c2b499f8 100644 --- a/inst/extdata/OSD/W/WHITEMAN.json +++ b/inst/extdata/OSD/W/WHITEMAN.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "very fine sandy loam", "structure": "NA", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bt", "top": 5, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak medium subangular blocky", diff --git a/inst/extdata/OSD/W/WHITEMARSH.json b/inst/extdata/OSD/W/WHITEMARSH.json index a65b5dbbb5..844730dbbc 100644 --- a/inst/extdata/OSD/W/WHITEMARSH.json +++ b/inst/extdata/OSD/W/WHITEMARSH.json @@ -240,8 +240,8 @@ "dry_value": "NA", "dry_chroma": "NA", "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 1, "texture_class": "silt loam", "structure": "weak coarse prismatic", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WHITESAGE.json b/inst/extdata/OSD/W/WHITESAGE.json index e01eead6e9..9e986cb74b 100644 --- a/inst/extdata/OSD/W/WHITESAGE.json +++ b/inst/extdata/OSD/W/WHITESAGE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate very fine granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "Bw", "top": 8, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 13, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", "dry_rupture": "soft", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 25, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk3", "top": 36, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Bk4", "top": 48, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "loam", "structure": "massive", @@ -213,12 +213,12 @@ "name": "Bk5", "top": 76, "bottom": 102, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", @@ -236,12 +236,12 @@ "name": "C", "top": 102, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WHITETOP.json b/inst/extdata/OSD/W/WHITETOP.json index a157df9059..e9976520af 100644 --- a/inst/extdata/OSD/W/WHITETOP.json +++ b/inst/extdata/OSD/W/WHITETOP.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, "texture_class": "fine sandy loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/W/WICKAHONEY.json b/inst/extdata/OSD/W/WICKAHONEY.json index 18c9482206..4bc91cbaf6 100644 --- a/inst/extdata/OSD/W/WICKAHONEY.json +++ b/inst/extdata/OSD/W/WICKAHONEY.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak thin platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 13, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine and medium angular blocky", diff --git a/inst/extdata/OSD/W/WIDTSOE.json b/inst/extdata/OSD/W/WIDTSOE.json index 8ec30dc4ea..61489c0bd0 100644 --- a/inst/extdata/OSD/W/WIDTSOE.json +++ b/inst/extdata/OSD/W/WIDTSOE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "weak fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bt", "top": 20, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk", "top": 38, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 8, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 8, - "moist_chroma": 4, + "moist_value": 6, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "2Bk1", "top": 48, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loamy sand", "structure": "massive", @@ -167,9 +167,9 @@ "name": "2Bk2", "top": 79, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", "moist_value": 8, "moist_chroma": 2, @@ -190,12 +190,12 @@ "name": "2Bk3", "top": 84, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 5, - "moist_chroma": 4, + "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WIGGLER.json b/inst/extdata/OSD/W/WIGGLER.json index 0f2a479b65..da57a76e6d 100644 --- a/inst/extdata/OSD/W/WIGGLER.json +++ b/inst/extdata/OSD/W/WIGGLER.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 1, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium granular", "dry_rupture": "soft", @@ -98,12 +98,12 @@ "name": "C1", "top": 18, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 1, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WILDMOUNT.json b/inst/extdata/OSD/W/WILDMOUNT.json index 5018f87f4a..872b30cd61 100644 --- a/inst/extdata/OSD/W/WILDMOUNT.json +++ b/inst/extdata/OSD/W/WILDMOUNT.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine and very fine granular", "dry_rupture": "soft", @@ -98,11 +98,11 @@ "name": "Bw", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 36, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine and very fine subangular blocky", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 58, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "Bk3", "top": 81, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 6, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WILLARD.json b/inst/extdata/OSD/W/WILLARD.json index ea45c200d8..e324b6be65 100644 --- a/inst/extdata/OSD/W/WILLARD.json +++ b/inst/extdata/OSD/W/WILLARD.json @@ -75,9 +75,9 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", "moist_value": 4, "moist_chroma": 3, diff --git a/inst/extdata/OSD/W/WILSONGULCH.json b/inst/extdata/OSD/W/WILSONGULCH.json index ae1d5f0be6..11877a8b20 100644 --- a/inst/extdata/OSD/W/WILSONGULCH.json +++ b/inst/extdata/OSD/W/WILSONGULCH.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak very fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine subangular blocky", @@ -121,12 +121,12 @@ "name": "Bk1", "top": 36, "bottom": 69, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 69, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/W/WINDWHISTLE.json b/inst/extdata/OSD/W/WINDWHISTLE.json index 29c18b242c..94caecd05b 100644 --- a/inst/extdata/OSD/W/WINDWHISTLE.json +++ b/inst/extdata/OSD/W/WINDWHISTLE.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 6, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak thin platy", "dry_rupture": "loose", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 5, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "Bt2", "top": 18, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 6, + "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "weak medium prismatic", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "BCk", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Ck1", "top": 51, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "very fine sandy loam", "structure": "massive", @@ -190,11 +190,11 @@ "name": "Ck2", "top": 64, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy very fine sand", "structure": "massive", diff --git a/inst/extdata/OSD/W/WINDYPOINT.json b/inst/extdata/OSD/W/WINDYPOINT.json index 6a9907da3b..faf7389c33 100644 --- a/inst/extdata/OSD/W/WINDYPOINT.json +++ b/inst/extdata/OSD/W/WINDYPOINT.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate fine platy", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 23, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt3", "top": 38, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "2Bk", "top": 71, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WINEGLASS.json b/inst/extdata/OSD/W/WINEGLASS.json index d626ea6134..0f54ea3504 100644 --- a/inst/extdata/OSD/W/WINEGLASS.json +++ b/inst/extdata/OSD/W/WINEGLASS.json @@ -98,11 +98,11 @@ "name": "A", "top": 3, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "loam", "structure": "moderate medium granular", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 30, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate very coarse subangular blocky", @@ -144,12 +144,12 @@ "name": "Bt2", "top": 64, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate coarse and very coarse subangular blocky", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bk1", "top": 86, "bottom": 112, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "loam", "structure": "moderate medium and coarse subangular blocky", @@ -190,12 +190,12 @@ "name": "Bk2", "top": 112, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 6, + "moist_value": 5, + "moist_chroma": 8, "texture_class": "loam", "structure": "weak fine subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WINETTI.json b/inst/extdata/OSD/W/WINETTI.json index 73e56fc9f0..9d6424bb16 100644 --- a/inst/extdata/OSD/W/WINETTI.json +++ b/inst/extdata/OSD/W/WINETTI.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "C1", "top": 10, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "massive", @@ -121,11 +121,11 @@ "name": "C2", "top": 18, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "C3", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak thick platy", @@ -167,11 +167,11 @@ "name": "C4", "top": 61, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 6, "texture_class": "sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WINKEL.json b/inst/extdata/OSD/W/WINKEL.json index 25b1e782a7..ece98a0f2e 100644 --- a/inst/extdata/OSD/W/WINKEL.json +++ b/inst/extdata/OSD/W/WINKEL.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 3, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 3, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak medium platy", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 15, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk2", "top": 30, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WINNEBAGO.json b/inst/extdata/OSD/W/WINNEBAGO.json index 50a67ca6c9..ef441e3f6e 100644 --- a/inst/extdata/OSD/W/WINNEBAGO.json +++ b/inst/extdata/OSD/W/WINNEBAGO.json @@ -98,9 +98,9 @@ "name": "A", "top": 25, "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "7.5YR", "moist_value": 3, "moist_chroma": 2, diff --git a/inst/extdata/OSD/W/WINNEMUCCA.json b/inst/extdata/OSD/W/WINNEMUCCA.json index 1f80e2122a..e559ef8d4d 100644 --- a/inst/extdata/OSD/W/WINNEMUCCA.json +++ b/inst/extdata/OSD/W/WINNEMUCCA.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "silt loam", "structure": "weak medium subangular blocky", @@ -121,11 +121,11 @@ "name": "BA", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "weak medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt1", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "C", "top": 71, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WOMACK.json b/inst/extdata/OSD/W/WOMACK.json index 1185ecdb6a..d00aedf70e 100644 --- a/inst/extdata/OSD/W/WOMACK.json +++ b/inst/extdata/OSD/W/WOMACK.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -98,12 +98,12 @@ "name": "A2", "top": 8, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "NA", "dry_rupture": "NA", @@ -121,12 +121,12 @@ "name": "Bt", "top": 13, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "clay loam", "structure": "NA", "dry_rupture": "NA", @@ -144,12 +144,12 @@ "name": "Btk", "top": 28, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -167,12 +167,12 @@ "name": "2Bk1", "top": 33, "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", @@ -190,12 +190,12 @@ "name": "2Bk2", "top": 43, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WONSITS.json b/inst/extdata/OSD/W/WONSITS.json index 0c5b1f833c..6f31fd61d0 100644 --- a/inst/extdata/OSD/W/WONSITS.json +++ b/inst/extdata/OSD/W/WONSITS.json @@ -75,12 +75,12 @@ "name": "A1", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "sandy loam", "structure": "moderate very fine and fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "A2", "top": 23, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "sandy loam", "structure": "massive", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "A3", "top": 36, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", @@ -144,11 +144,11 @@ "name": "2C1", "top": 51, "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "massive", @@ -167,11 +167,11 @@ "name": "2C2", "top": 76, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", @@ -190,11 +190,11 @@ "name": "2C3", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/W/WOODCANYON.json b/inst/extdata/OSD/W/WOODCANYON.json index a898efc751..620a11307d 100644 --- a/inst/extdata/OSD/W/WOODCANYON.json +++ b/inst/extdata/OSD/W/WOODCANYON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate fine and medium granular", "dry_rupture": "hard", @@ -98,9 +98,9 @@ "name": "Bt1", "top": 8, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 3, @@ -121,12 +121,12 @@ "name": "Bt2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 3, + "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine and medium prismatic", "dry_rupture": "hard", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 48, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 4, - "moist_chroma": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium angular blocky", "dry_rupture": "hard", @@ -167,12 +167,12 @@ "name": "Bt4", "top": 66, "bottom": 86, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/W/WOOLLY.json b/inst/extdata/OSD/W/WOOLLY.json index af0a11b49e..42370cdf04 100644 --- a/inst/extdata/OSD/W/WOOLLY.json +++ b/inst/extdata/OSD/W/WOOLLY.json @@ -170,9 +170,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "N", - "moist_value": 2, - "moist_chroma": 0, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/W/WOOZLE.json b/inst/extdata/OSD/W/WOOZLE.json index d3e494e9e6..6f26f55a2a 100644 --- a/inst/extdata/OSD/W/WOOZLE.json +++ b/inst/extdata/OSD/W/WOOZLE.json @@ -75,12 +75,12 @@ "name": "Ap", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt", "top": 25, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "loam", "structure": "weak medium and fine subangular blocky", "dry_rupture": "hard", @@ -121,12 +121,12 @@ "name": "2Bk1", "top": 53, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -144,12 +144,12 @@ "name": "3Bk2", "top": 89, "bottom": 107, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak fine and medium subangular blocky", "dry_rupture": "soft", @@ -167,12 +167,12 @@ "name": "4Bk3", "top": 107, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 7, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loamy fine sand", "structure": "massive", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "5C", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "fine sand", "structure": "single grain", diff --git a/inst/extdata/OSD/W/WORTHENTON.json b/inst/extdata/OSD/W/WORTHENTON.json index c5e6240635..5181bff55d 100644 --- a/inst/extdata/OSD/W/WORTHENTON.json +++ b/inst/extdata/OSD/W/WORTHENTON.json @@ -170,8 +170,8 @@ "dry_hue": "5GY", "dry_value": 7, "dry_chroma": 1, - "moist_hue": "NA", - "moist_value": "NA", + "moist_hue": "N", + "moist_value": 4, "moist_chroma": "NA", "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/W/WYNTOON.json b/inst/extdata/OSD/W/WYNTOON.json index 52350e9812..3609ceb185 100644 --- a/inst/extdata/OSD/W/WYNTOON.json +++ b/inst/extdata/OSD/W/WYNTOON.json @@ -216,9 +216,9 @@ "dry_hue": "7.5YR", "dry_value": 7, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, "texture_class": "clay", "structure": "moderate medium subangular blocky", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/Y/YAD.json b/inst/extdata/OSD/Y/YAD.json index b407b43d7a..384d69276d 100644 --- a/inst/extdata/OSD/Y/YAD.json +++ b/inst/extdata/OSD/Y/YAD.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine and medium granular", @@ -98,11 +98,11 @@ "name": "BA", "top": 5, "bottom": 15, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Btss1", "top": 15, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "weak coarse prismatic", @@ -144,11 +144,11 @@ "name": "Btss2", "top": 36, "bottom": 64, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay", "structure": "strong medium and coarse prismatic", @@ -167,11 +167,11 @@ "name": "2Bt1", "top": 64, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong fine and medium subangular blocky", @@ -190,11 +190,11 @@ "name": "2Bt2", "top": 104, "bottom": 132, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "moderate fine subangular blocky", @@ -213,11 +213,11 @@ "name": "2Bt3", "top": 132, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate fine and medium subangular blocky", diff --git a/inst/extdata/OSD/Y/YAGO.json b/inst/extdata/OSD/Y/YAGO.json index 512a1bd8ba..f0da6e17d2 100644 --- a/inst/extdata/OSD/Y/YAGO.json +++ b/inst/extdata/OSD/Y/YAGO.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "moderate medium and fine subangular blocky", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate medium and fine angular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 41, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse and medium angular blocky", @@ -144,11 +144,11 @@ "name": "Btk1", "top": 94, "bottom": 114, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse and medium angular blocky", @@ -167,11 +167,11 @@ "name": "Bkc", "top": 114, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 6, "moist_hue": "7.5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 6, "texture_class": "silty clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/Y/YAKI.json b/inst/extdata/OSD/Y/YAKI.json index 2dc2414b7d..5755311817 100644 --- a/inst/extdata/OSD/Y/YAKI.json +++ b/inst/extdata/OSD/Y/YAKI.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "A2", "top": 5, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -121,11 +121,11 @@ "name": "Bk1", "top": 20, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,12 +144,12 @@ "name": "Bk2", "top": 30, "bottom": 48, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "7.5YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "loam", "structure": "massive", "dry_rupture": "hard", diff --git a/inst/extdata/OSD/Y/YANKEEFORK.json b/inst/extdata/OSD/Y/YANKEEFORK.json index 161086ebbb..73e409b9ba 100644 --- a/inst/extdata/OSD/Y/YANKEEFORK.json +++ b/inst/extdata/OSD/Y/YANKEEFORK.json @@ -101,9 +101,9 @@ "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/Y/YATAHONEY.json b/inst/extdata/OSD/Y/YATAHONEY.json index 4c169c6064..347c84ecf5 100644 --- a/inst/extdata/OSD/Y/YATAHONEY.json +++ b/inst/extdata/OSD/Y/YATAHONEY.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 4, + "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate fine and medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "AB", "top": 8, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 23, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong very fine and fine angular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 56, "bottom": 66, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 6, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 6, "texture_class": "clay", "structure": "strong fine prismatic", @@ -167,12 +167,12 @@ "name": "Bkqm", "top": 66, "bottom": 97, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 4, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "NA", "structure": "massive", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/Y/YEATES_HOLLOW.json b/inst/extdata/OSD/Y/YEATES_HOLLOW.json index bd3385546f..b6c314d967 100644 --- a/inst/extdata/OSD/Y/YEATES_HOLLOW.json +++ b/inst/extdata/OSD/Y/YEATES_HOLLOW.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 28, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 5, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate coarse granular", @@ -98,11 +98,11 @@ "name": "Bt1", "top": 28, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "moderate coarse subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 46, "bottom": 84, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "7.5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium subangular blocky", @@ -144,9 +144,9 @@ "name": "Bt3", "top": 84, "bottom": 117, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "5YR", "moist_value": 4, "moist_chroma": 4, diff --git a/inst/extdata/OSD/Y/YENRAB.json b/inst/extdata/OSD/Y/YENRAB.json index 119d3c5f7b..f7e79dab11 100644 --- a/inst/extdata/OSD/Y/YENRAB.json +++ b/inst/extdata/OSD/Y/YENRAB.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 30, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "loamy sand", "structure": "single grain", @@ -98,11 +98,11 @@ "name": "C", "top": 30, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "sand", "structure": "single grain", diff --git a/inst/extdata/OSD/Y/YREKA.json b/inst/extdata/OSD/Y/YREKA.json index c0ccc37746..ef4b3d3be9 100644 --- a/inst/extdata/OSD/Y/YREKA.json +++ b/inst/extdata/OSD/Y/YREKA.json @@ -75,12 +75,12 @@ "name": "E", "top": 5, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "strong medium granular", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "E/Bt", "top": 36, "bottom": 50, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 5, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium granular", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt", "top": 50, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", diff --git a/inst/extdata/OSD/Z/ZAGG.json b/inst/extdata/OSD/Z/ZAGG.json index aa25dd483f..f8e3dcf19f 100644 --- a/inst/extdata/OSD/Z/ZAGG.json +++ b/inst/extdata/OSD/Z/ZAGG.json @@ -75,11 +75,11 @@ "name": "A1", "top": 0, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "weak medium subangular blocky", @@ -98,11 +98,11 @@ "name": "C1", "top": 23, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", diff --git a/inst/extdata/OSD/Z/ZAN.json b/inst/extdata/OSD/Z/ZAN.json index 72e1457131..6d2a62ca85 100644 --- a/inst/extdata/OSD/Z/ZAN.json +++ b/inst/extdata/OSD/Z/ZAN.json @@ -98,11 +98,11 @@ "name": "A1", "top": 3, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine granular", @@ -121,11 +121,11 @@ "name": "A2", "top": 8, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", @@ -144,12 +144,12 @@ "name": "AB", "top": 36, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loamy coarse sand", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "Bw", "top": 61, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 3, "moist_chroma": 3, "texture_class": "loamy coarse sand", "structure": "weak fine and medium subangular blocky", @@ -190,12 +190,12 @@ "name": "2C", "top": 89, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 4, + "moist_chroma": 4, "texture_class": "loamy coarse sand", "structure": "single grain", "dry_rupture": "loose", diff --git a/inst/extdata/OSD/Z/ZECANYON.json b/inst/extdata/OSD/Z/ZECANYON.json index bf6805edbc..9901ef89ef 100644 --- a/inst/extdata/OSD/Z/ZECANYON.json +++ b/inst/extdata/OSD/Z/ZECANYON.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 8, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 2, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "weak thin platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "BA", "top": 8, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 3, "moist_chroma": 3, "texture_class": "loam", "structure": "moderate medium and fine subangular blocky", @@ -121,11 +121,11 @@ "name": "Bt1", "top": 25, "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "strong medium and fine subangular blocky", @@ -144,11 +144,11 @@ "name": "Bt2", "top": 46, "bottom": 61, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay", "structure": "strong medium and fine angular blocky", @@ -167,11 +167,11 @@ "name": "Bq", "top": 61, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "clay loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/Z/ZEEBAR.json b/inst/extdata/OSD/Z/ZEEBAR.json index 658431beb6..42f11abaf8 100644 --- a/inst/extdata/OSD/Z/ZEEBAR.json +++ b/inst/extdata/OSD/Z/ZEEBAR.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, + "moist_value": 2, + "moist_chroma": 2, "texture_class": "loam", "structure": "weak very fine subangular blocky", "dry_rupture": "hard", @@ -98,12 +98,12 @@ "name": "Bt1", "top": 20, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, + "moist_value": 3, + "moist_chroma": 3, "texture_class": "loam", "structure": "moderate very fine subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "Bt2", "top": 36, "bottom": 56, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "loam", "structure": "moderate fine prismatic", @@ -144,12 +144,12 @@ "name": "Bt3", "top": 56, "bottom": 89, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, - "moist_chroma": 4, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, "texture_class": "sandy clay loam", "structure": "moderate fine and medium prismatic", "dry_rupture": "hard", @@ -167,11 +167,11 @@ "name": "Bt4", "top": 89, "bottom": 124, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "weak medium and coarse subangular blocky", @@ -190,11 +190,11 @@ "name": "C", "top": 124, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 5, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, "moist_chroma": 4, "texture_class": "sandy clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/Z/ZEESIX.json b/inst/extdata/OSD/Z/ZEESIX.json index 28b372f42f..449bb8afe3 100644 --- a/inst/extdata/OSD/Z/ZEESIX.json +++ b/inst/extdata/OSD/Z/ZEESIX.json @@ -75,11 +75,11 @@ "name": "All", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 1, "texture_class": "loam", "structure": "weak fine granular", @@ -98,12 +98,12 @@ "name": "A12", "top": 5, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 2, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", "texture_class": "silt loam", "structure": "weak medium subangular blocky", "dry_rupture": "hard", @@ -121,11 +121,11 @@ "name": "A13", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 3, + "moist_value": 2, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate fine subangular blocky", @@ -144,12 +144,12 @@ "name": "B2t", "top": 33, "bottom": 58, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay", "structure": "strong fine angular blocky", "dry_rupture": "soft", @@ -167,11 +167,11 @@ "name": "B3ca", "top": 58, "bottom": 79, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "Clca", "top": 79, "bottom": 119, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, - "moist_chroma": 3, + "moist_value": 5, + "moist_chroma": 4, "texture_class": "clay", "structure": "weak fine subangular blocky", "dry_rupture": "hard", @@ -213,11 +213,11 @@ "name": "C2ca", "top": 119, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "clay loam", "structure": "massive", diff --git a/inst/extdata/OSD/Z/ZEGRO.json b/inst/extdata/OSD/Z/ZEGRO.json index abb0eb2ea1..27f72a2356 100644 --- a/inst/extdata/OSD/Z/ZEGRO.json +++ b/inst/extdata/OSD/Z/ZEGRO.json @@ -75,11 +75,11 @@ "name": "Al", "top": 0, "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 4, "texture_class": "silty clay loam", "structure": "weak medium platy", @@ -98,11 +98,11 @@ "name": "C1", "top": 20, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 8, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 4, "moist_chroma": 8, "texture_class": "silty clay loam", "structure": "strong fine and medium subangular blocky", @@ -121,11 +121,11 @@ "name": "C2", "top": 51, "bottom": 94, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "2.5Y", - "moist_value": 8, + "moist_value": 6, "moist_chroma": 2, "texture_class": "silty clay loam", "structure": "strong medium angular blocky", diff --git a/inst/extdata/OSD/Z/ZER.json b/inst/extdata/OSD/Z/ZER.json index 22bb194377..d9f1d0c62b 100644 --- a/inst/extdata/OSD/Z/ZER.json +++ b/inst/extdata/OSD/Z/ZER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate thick platy", @@ -98,11 +98,11 @@ "name": "Bw", "top": 5, "bottom": 23, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 3, "texture_class": "silt loam", "structure": "moderate medium subangular blocky", @@ -121,11 +121,11 @@ "name": "Bkq1", "top": 23, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 3, "texture_class": "sand", "structure": "moderate fine and medium subangular blocky", @@ -144,11 +144,11 @@ "name": "Bkq2", "top": 33, "bottom": 51, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 6, "moist_chroma": 3, "texture_class": "sandy loam", "structure": "strong fine and medium subangular blocky", @@ -167,12 +167,12 @@ "name": "Bk1", "top": 51, "bottom": 81, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 8, - "moist_chroma": 2, + "moist_value": 6, + "moist_chroma": 4, "texture_class": "sandy loam", "structure": "weak fine subangular blocky", "dry_rupture": "soft", @@ -190,11 +190,11 @@ "name": "Bk2", "top": 81, "bottom": 104, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 7, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", @@ -213,11 +213,11 @@ "name": "Bk3", "top": 104, "bottom": 152, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "10YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loamy sand", "structure": "single grain", diff --git a/inst/extdata/OSD/Z/ZILLICOA.json b/inst/extdata/OSD/Z/ZILLICOA.json index 418defc553..49bcedc501 100644 --- a/inst/extdata/OSD/Z/ZILLICOA.json +++ b/inst/extdata/OSD/Z/ZILLICOA.json @@ -78,9 +78,9 @@ "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, "texture_class": "NA", "structure": "NA", "dry_rupture": "NA", diff --git a/inst/extdata/OSD/Z/ZIMMER.json b/inst/extdata/OSD/Z/ZIMMER.json index 8ceed311cf..62ec72f2cb 100644 --- a/inst/extdata/OSD/Z/ZIMMER.json +++ b/inst/extdata/OSD/Z/ZIMMER.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 18, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "coarse sandy loam", "structure": "moderate fine granular", @@ -98,11 +98,11 @@ "name": "Bw", "top": 18, "bottom": 36, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 3, "texture_class": "coarse sandy loam", "structure": "weak fine subangular blocky", diff --git a/inst/extdata/OSD/Z/ZOLA.json b/inst/extdata/OSD/Z/ZOLA.json index c71e864caf..cc44d10272 100644 --- a/inst/extdata/OSD/Z/ZOLA.json +++ b/inst/extdata/OSD/Z/ZOLA.json @@ -75,12 +75,12 @@ "name": "A", "top": 0, "bottom": 13, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, + "moist_value": 2, + "moist_chroma": 1, "texture_class": "loam", "structure": "moderate medium platy", "dry_rupture": "hard", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 13, "bottom": 33, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 4, + "moist_value": 3, "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular blocky", @@ -121,12 +121,12 @@ "name": "Bw2", "top": 33, "bottom": 53, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, + "moist_value": 3, + "moist_chroma": 2, "texture_class": "loam", "structure": "moderate medium subangular or blocky", "dry_rupture": "hard", @@ -144,11 +144,11 @@ "name": "Bk1", "top": 53, "bottom": 71, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 2, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -167,11 +167,11 @@ "name": "Bk2", "top": 71, "bottom": 99, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, "moist_hue": "10YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 1, "texture_class": "clay loam", "structure": "moderate medium subangular blocky", @@ -190,12 +190,12 @@ "name": "2Bk1", "top": 99, "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, "moist_hue": "10YR", "moist_value": 3, - "moist_chroma": 2, + "moist_chroma": 1, "texture_class": "clay", "structure": "massive", "dry_rupture": "soft", @@ -213,12 +213,12 @@ "name": "2Bk2", "top": 137, "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "2.5Y", - "moist_value": 6, - "moist_chroma": 4, + "moist_value": 5, + "moist_chroma": 2, "texture_class": "sandy clay", "structure": "massive", "dry_rupture": "soft", diff --git a/inst/extdata/OSD/Z/ZUKAN.json b/inst/extdata/OSD/Z/ZUKAN.json index a4bafee705..4c2ded17ca 100644 --- a/inst/extdata/OSD/Z/ZUKAN.json +++ b/inst/extdata/OSD/Z/ZUKAN.json @@ -75,11 +75,11 @@ "name": "A", "top": 0, "bottom": 5, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 4, "moist_chroma": 4, "texture_class": "fine sandy loam", "structure": "weak fine granular", @@ -98,11 +98,11 @@ "name": "Bw1", "top": 5, "bottom": 10, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "very fine sandy loam", "structure": "moderate thin platy", @@ -121,11 +121,11 @@ "name": "Bw2", "top": 10, "bottom": 25, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 5, + "moist_value": 3, "moist_chroma": 4, "texture_class": "loam", "structure": "massive", @@ -144,11 +144,11 @@ "name": "Bk", "top": 25, "bottom": 41, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", + "dry_hue": "5YR", + "dry_value": 6, + "dry_chroma": 4, "moist_hue": "5YR", - "moist_value": 6, + "moist_value": 5, "moist_chroma": 4, "texture_class": "loam", "structure": "massive",