diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index 277c0c6966..102d1d7bf1 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -21,6 +21,7 @@ # l[['sections']] <- .extractSections(res) # l[['section-indices']] <- .findSectionIndices(res) + message(filename) l <- list() l[['site-data']] <- .extractSiteData(x, logfile, filename) tp <- strsplit(as.character(x$`TYPICAL PEDON`$content), "\n") @@ -303,28 +304,27 @@ #' @importFrom stringi stri_match_all .extractHzData <- function(tp, logfile = "OSD.log", filename = "FOO.txt") { - + # 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)" - + hz.rule <- "([\\^\\'\\\"`\\/a-zA-Z0-9]+(?: and [\\^\\'\\\"`\\/a-zA-Z0-9]+)?)\\s*[-=\u2014]+\\s*([Ol0-9.]+)\\s*?([toTO0\\-]+)?\\s+?([Ol0-9.]+)\\s*?(inche?s?|in|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)" - + hz.rule.no.bottom <- "([\\^\\'\\\"`\\/a-zA-Z0-9]+(?: and [\\^\\'\\\"`\\/a-zA-Z0-9]+)?)\\s*[-=\u2014]+?\\s*([Ol0-9./ ]+)\\s*(inche?s?|in|cm|centimeters?)?\\s*([toTO0\\-]+)?\\s*([Ol0-9./ ]+)?\\s*(inche?s?|in|cm|centimeters?)?" + ## default encoding of colors: Toggle dry/moist assumption ## ## 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 - if (dry.is.default) default.moisture.state <- 'dry' if (moist.is.default) @@ -347,7 +347,7 @@ # eliminate empty lines within typical pedon tp <- tp[nzchar(trimws(tp))] - + # ID starting lines of horizon information hz.idx <- sort(unique(c(grep(hz.rule, tp), grep(hz.rule.no.bottom, tp)))) @@ -356,7 +356,7 @@ if (length(first.line.flag) > 0) { hz.idx <- hz.idx[-first.line.flag] } - + check.multiline <- diff(hz.idx) > 1 if (any(check.multiline)) { # multiline typical pedon horizon formatting (needs fix) @@ -380,45 +380,64 @@ # if none, then try searching for only top depths if (all(is.na(h))) { # this won't have the correct number of elements, adjust manually - h <- stringi::stri_match(this.chunk, regex = hz.rule.no.bottom) - h_num <- grep("^\\d+$", h) - h_alp <- grep("[A-Za-z]", h)[2:3] - h <- h[sort(c(h_num, h_alp))] - + h <- trimws(stringi::stri_match(this.chunk, regex = hz.rule.no.bottom)) + h[2] <- gsub("0", "O", h[2], fixed=TRUE) + h[6] <- gsub("l", "1", h[6], fixed=TRUE) + h <- gsub(" *3/4", ".75", h) + h <- gsub(" *[1l]/2", ".5", h) + h <- gsub(" *[1l]/[48]", ".25", h) # NB: fudging 1/8 inch -> 1 cm + h <- gsub("^\\.", "0.", h) + h <- gsub("l", "1", h) + i_num <- grep("^\\d+\\.*\\d*$", h) # fill missing depth with NA - if (length(h) == 3) { - h <- c(h, h[3]) - h[3] <- NA + if (length(i_num) == 1) { + i_num <- c(i_num, NA) } + h_num <- h[i_num] + l_alp <- grepl("[A-Za-z]", h) + h_alp <- h[l_alp & h != "to" & h != "-"][2:3] + h <- c(h_alp[1], h_num, h_alp[2]) + } else { + h[2] <- gsub("0", "O", h[2], fixed=TRUE) + h[c(3,5)] <- gsub("l", "1", h[c(3,5)], fixed=TRUE) h <- h[c(2:3,5:6)] } - # save hz data to list - hz.data[[i]] <- h - - # save narrative to list - narrative.data[[i]] <- this.chunk - - ## 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]] + # apply a filter so horizon data with no horizon designation skip + if (!is.na(h[1]) && grepl("[OABCDELMRVWbcxw]", h[1])) { + # save hz data to list + hz.data[[i]] <- h + + # save narrative to list + narrative.data[[i]] <- this.chunk + + ## 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 + + # 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] + + # there there was at least 1 match, keep the first 1 + if (nrow(dc) > 0) { + dry.colors[[i]] <- dc[1, ] + } else dry.colors[[i]] <- matrix(rep(NA, times = 4), nrow = 1) + + if (nrow(mc) > 0) + moist.colors[[i]] <- mc[1, ] + else moist.colors[[i]] <- matrix(rep(NA, times = 4), nrow = 1) + } else { + hz.data[[i]] <- NULL + narrative.data[[i]] <- NULL + dry.colors[[i]] <- NULL + moist.colors[[i]] <- NULL + } - # replace missing moisture state with (parsed) default value - colors[, 5][which(colors[, 5] == '')] <- default.moisture.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] - - # there there was at least 1 match, keep the first 1 - if (nrow(dc) > 0) { - dry.colors[[i]] <- dc[1, ] - } else dry.colors[[i]] <- matrix(rep(NA, times = 4), nrow = 1) - - if (nrow(mc) > 0) - moist.colors[[i]] <- mc[1, ] - else moist.colors[[i]] <- matrix(rep(NA, times = 4), nrow = 1) } # test for no parsed data, must be some funky formatting... @@ -427,6 +446,8 @@ # convert to DF hz.data <- as.data.frame(do.call('rbind', hz.data)) + if (ncol(hz.data) != 4) + return(NULL) dry.colors <- as.data.frame(do.call('rbind', dry.colors))[2:4] moist.colors <- as.data.frame(do.call('rbind', moist.colors))[2:4] narrative.data <- as.data.frame(do.call('rbind', narrative.data)) @@ -448,9 +469,9 @@ moist.colors$moist_chroma <- as.numeric(moist.colors$moist_chroma) }) - ## TODO: sanity check / unit reporting: this will fail when formatting is inconsistent (PROPER series) # convert in -> cm using the first horizon - if (hz.data$units[1] %in% c('inches', 'in')) { + if (!is.na(hz.data$units[1]) && + startsWith(tolower(hz.data$units[1]), "in")) { hz.data$top <- round(hz.data$top * 2.54) hz.data$bottom <- round(hz.data$bottom * 2.54) } diff --git a/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv b/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv index 2c877dda94..e4601b0b03 100644 --- a/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/auburn-hz.csv @@ -3,8 +3,8 @@ "ACKWATER","Bt2",23,41,NA,NA,NA,"lOYR","5","8" "ALAMUCHEE","Bwl",13,33,NA,NA,NA,"10YR","4","4" "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" +"ANDRY","O22",15,0,NA,NA,NA,"10YR","3","2" +"ANDRY","O21",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" @@ -14,78 +14,45 @@ "BELHAVEN","Oal",23,33,NA,NA,NA,"5YR","2.5","2" "BENNDALE","Btl",13,28,NA,NA,NA,"10YR","5","6" "BLICHTON","Btvgl",76,114,NA,NA,NA,"N","4","0" -"BODINE","0e",0,3,NA,NA,NA,"10YR","2","2" -"BOURNE","0i",0,3,NA,NA,NA,NA,NA,NA "BRIGHTON","Oap",0,30,NA,NA,NA,"l0YR","2","1" -"BROCKROAD","01",0,5,NA,NA,NA,NA,NA,NA "BURROWSVILLE","A",0,8,NA,NA,NA,"lOYR","5","2" "BURROWSVILLE","E",8,36,NA,NA,NA,"lOYR","6","4" "BURROWSVILLE","Bt",36,64,NA,NA,NA,"lOYR","6","4" "BURROWSVILLE","Btx",64,97,NA,NA,NA,"lOYR","5","6" -"CAROLINE","0i",0,5,NA,NA,NA,NA,NA,NA -"CHEAHA","0i",0,3,NA,NA,NA,NA,NA,NA "CHRISTIAN","Btl",15,38,NA,NA,NA,"5YR","5","8" -"COLFAX","0i",3,3,NA,NA,NA,NA,NA,NA -"DEMORY","0a",0,8,NA,NA,NA,"10YR","2","1" +"COLFAX","Oi",3,0,NA,NA,NA,NA,NA,NA "EATON","Btgl",76,84,NA,NA,NA,"10YR","5","1" "ELLOREE","Btgl",58,69,NA,NA,NA,"10YR","5","2" "ELLOREE","BCgl",107,135,NA,NA,NA,"10YR","6","1" "EUREKA","Btgl",28,51,NA,NA,NA,"N","5","0" -"FORK","0i",0,3,NA,NA,NA,NA,NA,NA -"FORK","0e",3,5,NA,NA,NA,"10YR","3","2" "FORTUNA","B2lg",13,23,NA,NA,NA,"5GY","4","1" "FREELAND","Btl",33,51,NA,NA,NA,"10YR","4","4" "GRIFFITH","Al",25,56,NA,NA,NA,"5Y","3","1" "GRITNEY","Btl",23,43,NA,NA,NA,"10YR","5","6" "KEYESPOINT","Bgl",18,46,NA,NA,NA,"10YR","4","2" -"LAROQUE","0i",0,3,NA,NA,NA,NA,NA,NA -"LEDWITH","0a",0,23,NA,NA,NA,"10YR","3","3" -"MATTAPONI","0i",0,3,NA,NA,NA,NA,NA,NA "MCLAURIN","Btl",36,51,NA,NA,NA,"5YR","5","6" -"MONTROSS","0i",0,5,NA,NA,NA,NA,NA,NA -"NATCHEZ","0i",0,3,NA,NA,NA,NA,NA,NA "NEWBERN","Ap",0,13,NA,NA,NA,"1OYR","5","4" "NEWBERN","Bw",13,33,NA,NA,NA,"1OYR","6","6" "NEWBERN","Cr",33,46,NA,NA,NA,"1OYR","6","8" -"NEWFLAT","0i",0,3,NA,NA,NA,NA,NA,NA "NEWHAN","A",0,5,NA,NA,NA,"l0YR","5","2" "NEWHAN","C1",5,127,NA,NA,NA,"l0YR","7","2" "NEWHAN","C2",127,183,NA,NA,NA,"l0YR","7","2" "OAKLIMETER","Bwl",28,51,NA,NA,NA,"10YR","5","4" -"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","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" -"POCATY","0i",0,30,NA,NA,NA,"10YR","2","2" -"POCATY","0e",30,51,NA,NA,NA,"10YR","2","2" -"POCATY","0a1",51,104,NA,NA,NA,"10YR","2","1" -"POCATY","0a2",104,122,NA,NA,NA,"10YR","2","1" -"POCATY","0a3",122,152,NA,NA,NA,"10YR","4","1" "PUNTA","A",0,10,NA,NA,NA,"l0YR","4",NA "PUNTA","E1",10,28,NA,NA,NA,"l0YR","6","2" "PUNTA","E2",28,145,NA,NA,NA,"l0YR","8",NA -"RAPPAHANNOCK","0a1",0,41,NA,NA,NA,"10YR","3","2" -"RAPPAHANNOCK","0a2",41,76,NA,NA,NA,"10YR","3","1" -"RAPPAHANNOCK","0a3",76,104,NA,NA,NA,"10YR","2","2" -"RAPPAHANNOCK","0'a",160,190,NA,NA,NA,"10YR","2","1" "RED HILLS","Oi",3,0,NA,NA,NA,NA,NA,NA -"REMLIK","0i",0,5,NA,NA,NA,NA,NA,NA -"REPARADA","110C",46,15,NA,NA,NA,"10YR","2","1" "ROME","Btl",23,51,NA,NA,NA,"7.5YR","5","6" -"SEKIL","0i",0,3,NA,NA,NA,NA,NA,NA -"SEKIL","0e",3,5,NA,NA,NA,"10YR","2","1" -"SOCO","0i",0,5,NA,NA,NA,NA,NA,NA -"STECOAH","0i",0,3,NA,NA,NA,NA,NA,NA -"SURRENCY","0i",0,3,NA,NA,NA,NA,NA,NA "SWAFFORD","Btl",20,30,NA,NA,NA,"7.5YR","4","6" "TALANTE","Alg",10,25,NA,NA,NA,"10YR","5","2" "TALANTE","Blg",25,46,NA,NA,NA,"10YR","5","3" -"TALLADEGA","0i",0,5,NA,NA,NA,NA,NA,NA "TRENHOLM","Btl",30,51,NA,NA,NA,"10YR","5","6" "TRENHOLM","Cl",91,114,NA,NA,NA,"10YR","5","8" "TRENHOLM","A",NA,5,NA,NA,NA,"10YR","3","1" @@ -96,6 +63,4 @@ "VICKSBURG","Cl",18,71,NA,NA,NA,"10YR","4","3" "WANDO","Cl",20,89,NA,NA,NA,"7.5YR","5","8" "WEEKSVILLE","Cgl",114,152,NA,NA,NA,"10YR","6","1" -"WESTWEGO","II02bg",53,91,NA,NA,NA,"N","2","0" -"YULEE","0i",0,5,NA,NA,NA,NA,NA,NA "ZUBER","Btl",38,51,NA,NA,NA,"10YR","4","4" diff --git a/inst/extdata/OSD-error-reporting/RO/auburn-sections.csv b/inst/extdata/OSD-error-reporting/RO/auburn-sections.csv index 311aac9caa..4562de6bfc 100644 --- a/inst/extdata/OSD-error-reporting/RO/auburn-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/auburn-sections.csv @@ -4,7 +4,6 @@ "ANDRY","MULTILINE TYPICAL PEDON","[number of multilines=6]","auburn, al" "ANNISTON","MULTILINE TYPICAL PEDON","[number of multilines=4]","auburn, al" "BASSFIELD","MULTILINE TYPICAL PEDON","[number of multilines=5]","auburn, al" -"BEARKNOB","MULTILINE TYPICAL PEDON","[number of multilines=1]","auburn, al" "BOWMANTOWN","MULTILINE TYPICAL PEDON","[number of multilines=1]","auburn, al" "BREWTON","MULTILINE TYPICAL PEDON","[number of multilines=1]","auburn, al" "BUGLEY","DUPLICATION OF HEADERS","[RANGE IN CHARACTERISTICS:]","auburn, al" diff --git a/inst/extdata/OSD-error-reporting/RO/auburn-series.csv b/inst/extdata/OSD-error-reporting/RO/auburn-series.csv index ea2ccf80de..f483420bed 100644 --- a/inst/extdata/OSD-error-reporting/RO/auburn-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/auburn-series.csv @@ -1,71 +1,45 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"BODINE",1152290,TRUE,2009,FALSE,TRUE -"SURRENCY",773555,FALSE,2021,FALSE,TRUE "MCLAURIN",564282,FALSE,1997,FALSE,TRUE "BENNDALE",408250,FALSE,2012,FALSE,TRUE "OAKLIMETER",364788,FALSE,2005,FALSE,TRUE "CHRISTIAN",297423,FALSE,2001,FALSE,TRUE -"NATCHEZ",227417,FALSE,1998,FALSE,TRUE "BELHAVEN",213210,FALSE,2002,FALSE,TRUE -"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 -"MATTAPONI",92795,FALSE,2003,FALSE,TRUE -"CAROLINE",77934,FALSE,2002,FALSE,TRUE "PAILO",77493,FALSE,2002,FALSE,TRUE "PETAL",74698,FALSE,2003,FALSE,TRUE "NEWBERN",73692,FALSE,1998,FALSE,TRUE "BLICHTON",71250,FALSE,2002,FALSE,TRUE -"COLFAX",58035,FALSE,1997,TRUE,TRUE -"CHEAHA",53744,FALSE,1999,FALSE,TRUE +"COLFAX",58035,FALSE,1997,TRUE,FALSE "NEWHAN",51040,FALSE,2003,FALSE,TRUE -"BOURNE",45410,FALSE,2002,FALSE,TRUE -"FREELAND",44420,FALSE,2002,FALSE,TRUE +"FREELAND",44420,FALSE,2002,TRUE,TRUE "GRIFFITH",39628,FALSE,2004,FALSE,TRUE "OPENLAKE",31864,FALSE,2004,FALSE,TRUE -"DEMORY",29488,FALSE,2000,FALSE,TRUE "EUREKA",29370,FALSE,2002,FALSE,TRUE -"OKEECHOBEE",29101,FALSE,2000,FALSE,TRUE "ELLOREE",28778,FALSE,1997,FALSE,TRUE "PARTLOW",26416,FALSE,1999,FALSE,TRUE "KEYESPOINT",24448,FALSE,2002,FALSE,TRUE -"WESTWEGO",23971,FALSE,2011,FALSE,TRUE "PAMUNKEY",23728,FALSE,2002,FALSE,TRUE "BEECH GROVE",23364,FALSE,2002,TRUE,FALSE "WANDO",21363,FALSE,2002,FALSE,TRUE "ROME",20963,FALSE,2003,FALSE,TRUE "ACKWATER",20910,FALSE,1997,FALSE,TRUE -"MONTROSS",19220,FALSE,2007,FALSE,TRUE "EATON",19201,FALSE,2002,FALSE,TRUE "BRIGHTON",17281,FALSE,2000,FALSE,TRUE -"RAPPAHANNOCK",16907,FALSE,2003,FALSE,TRUE "WEEKSVILLE",16893,FALSE,2006,FALSE,TRUE -"ORENDA",14755,FALSE,2008,FALSE,TRUE "SWAFFORD",12895,FALSE,2001,FALSE,TRUE -"NEWFLAT",12053,FALSE,1997,FALSE,TRUE -"YULEE",8230,FALSE,1998,FALSE,TRUE -"FORK",8078,FALSE,1997,FALSE,TRUE -"ANDRY",7778,FALSE,2003,TRUE,TRUE +"ANDRY",7778,FALSE,2003,TRUE,FALSE "ZUBER",7641,FALSE,2003,FALSE,TRUE -"POCATY",7379,FALSE,2003,FALSE,TRUE -"SEKIL",6120,FALSE,2002,FALSE,TRUE -"LEDWITH",5574,FALSE,2003,FALSE,TRUE "TALANTE",5463,FALSE,2002,FALSE,TRUE -"BROCKROAD",5373,FALSE,1999,FALSE,TRUE "RED HILLS",4713,FALSE,2006,TRUE,FALSE "TRENHOLM",4019,FALSE,2002,TRUE,TRUE "PUNTA",3805,FALSE,1993,FALSE,TRUE "TUCKAHOE",3244,FALSE,1999,FALSE,TRUE "BURROWSVILLE",3176,FALSE,1997,FALSE,TRUE "FORTUNA",3050,FALSE,2002,FALSE,TRUE -"LAROQUE",2387,FALSE,1999,FALSE,TRUE "ALAMUCHEE",744,FALSE,2000,FALSE,TRUE "BAHIAHONDA",672,FALSE,2009,FALSE,TRUE +"MAYO",649,FALSE,2001,TRUE,FALSE "ALDERFLATS",529,FALSE,2006,FALSE,TRUE -"REPARADA",351,FALSE,2002,TRUE,TRUE -"BEARKNOB",189,FALSE,2013,TRUE,FALSE "VERO",NA,FALSE,2004,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 899a766141..a8d8aa0739 100644 --- a/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/bozeman-hz.csv @@ -1,97 +1,105 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"ABSAQUIL","Oi",4,0,NA,NA,NA,NA,NA,NA +"AHL","O2",3,0,NA,NA,NA,NA,NA,NA "AHL","O1",8,3,NA,NA,NA,NA,NA,NA -"AITS","0i",0,3,NA,NA,NA,NA,NA,NA +"AHREN","Oe",4,0,NA,NA,NA,NA,NA,NA +"ALKIRIDGE","O",3,0,NA,NA,NA,NA,NA,NA +"ALMAC","Oi",6,0,NA,NA,NA,NA,NA,NA "ALMONT","Clg",48,66,"2.5Y","5","2","2.5Y","4","2" -"AMPAD","0iOi",0,3,NA,NA,NA,NA,NA,NA -"ANGLEN","0e",0,3,NA,NA,NA,"10YR","3","3" -"ANGOSTURA","0i",0,5,NA,NA,NA,NA,NA,NA -"APEX","0i",0,3,NA,NA,NA,NA,NA,NA +"ANGLE","Oi",1,0,NA,NA,NA,NA,NA,NA +"ANUNDE","Oi",5,0,NA,NA,NA,NA,NA,NA "ARISTINE","Bwl",25,41,"7.5YR","5","6","7.5YR","3","3" -"ASHCROFT","0i1",0,3,NA,NA,NA,NA,NA,NA -"ASHCROFT","0i2",3,5,NA,NA,NA,NA,NA,NA -"AUGGIE","0i",0,5,NA,NA,NA,NA,NA,NA +"ASHBRAY","Oi",1,0,NA,NA,NA,NA,NA,NA +"AZWELL","Oi",1,0,NA,NA,NA,NA,NA,NA "AZWELL","C",38,66,"10YR","4","2","l0YR","3","4" +"BACONA","O",5,0,NA,NA,NA,NA,NA,NA "BADWATER","Btl",15,61,"10YR","4","3","10YR","3","2" +"BALD","O1",1,0,NA,NA,NA,NA,NA,NA "BALDHILL","A",0,10,"l0YR","5","3","l0YR","3","3" -"BALDHILL","BA",10,74,NA,NA,NA,"l0YR","4","4" +"BALDHILL","BA",10,30,NA,NA,NA,"l0YR","4","4" +"BALDHILL","Bwl",30,74,"l0YR","6","3","l0YR","4","3" "BALDHILL","Bw3",91,114,"l0YR","6","3","2.5Y","4","4" "BALDHILL","Bw4",114,137,"l0YR","6","3","l0YR","4","4" "BALDHILL","C",137,152,"l0YR","5","8","l0YR","4","6" -"BALDHILL","Bwl",NA,74,"l0YR","6","3","l0YR","4","3" +"BANDID","Oa",1,0,NA,NA,NA,NA,NA,NA +"BANDID","Oi",5,1,NA,NA,NA,NA,NA,NA +"BANNEL","Oi",1,0,NA,NA,NA,NA,NA,NA +"BARLOW","O2",13,0,NA,NA,NA,"10YR","3","1" "BARLOW","O1",15,13,NA,NA,NA,NA,NA,NA -"BARNELLCREEK","01",0,3,NA,NA,NA,NA,NA,NA -"BATEMAN","0i",3,18,NA,NA,NA,NA,NA,NA +"BARNHARDT","Oi",3,0,NA,NA,NA,NA,NA,NA +"BATEMAN","Oi",3,0,NA,NA,NA,NA,NA,NA +"BAUMGARD","Oa",1,0,NA,NA,NA,NA,NA,NA "BAUMGARD","Oi",3,1,NA,NA,NA,NA,NA,NA -"BAUMGARD","2R",117,NA,NA,NA,NA,NA,NA,NA -"BAUMGARD","Oa",NA,1554,NA,NA,NA,NA,NA,NA "BEAR PRAIRIE","Al",8,25,"10YR","3","2","10YR","2","1" "BEAR PRAIRIE","Bwl",71,114,"10YR","5","4","10YR","4","4" -"BEESKOVE","0",0,5,NA,NA,NA,NA,NA,NA -"BELLICUM","E",0,5,"l0YR","6","2","l0YR","4","2" -"BELLICUM","Bs2",18,84,"l0YR","7","6","5YR","5","6" +"BEIGLE","Oe",5,0,NA,NA,NA,NA,NA,NA +"BELLICUM","E",0,3,"l0YR","6","2","l0YR","4","2" +"BELLICUM","Bs1",3,18,"l0YR","6","6","7.5YR","5","6" +"BELLICUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"BELLICUM","Bs2",18,46,"l0YR","7","6","5YR","5","6" +"BELLICUM","2Bwb",46,84,"l0YR","7","4","l0YR","3","3" "BELLICUM","2BCb",84,127,"2.5Y","6","4","l0YR","4","4" -"BELLICUM","3R",127,NA,NA,NA,NA,NA,NA,NA -"BELLICUM","Bs1",NA,18,"l0YR","6","6","7.5YR","5","6" -"BELLICUM","2Bwb",NA,84,"l0YR","7","4","l0YR","3","3" +"BELLTOWER","Oi",5,0,NA,NA,NA,NA,NA,NA +"BENHAM","Oe",11,0,NA,NA,NA,NA,NA,NA "BENHAM","3Bsb1",69,79,"l0YR","6",NA,"10YR","4","1" -"BENHAM","Oe",NA,1554,NA,NA,NA,NA,NA,NA "BENSLEY","Al",3,15,"l0YR","5","2","l0YR","2","2" "BENSLEY","A2",15,30,"l0YR","6","2","l0YR","3","2" "BENSLEY","Bwl",30,58,"l0YR","6","2","l0YR","4","3" "BENSLEY","Bw2",58,79,"l0YR","6","2","l0YR","4","3" "BENSLEY","Bw3",79,114,"l0YR","6","2","l0YR","4","2" "BENSLEY","BC",114,160,"l0YR","6","3","l0YR","4","3" -"BENTILLA","0i",5,8,NA,NA,NA,NA,NA,NA -"BERGSVIK","0e3",43,86,NA,NA,NA,"10YR","3","2" -"BERGSVIK","2C2",114,51,"2.5Y","5","2","2.5Y","3","2" +"BENTILLA","Oi",5,0,NA,NA,NA,NA,NA,NA "BICKETT","2Bkgl",28,61,NA,NA,NA,"2.5Y","6","1" "BIRDSVIEW","A",0,13,"l0YR","5","4","l0YR","3","3" -"BIRDSVIEW","0",10,13,NA,NA,NA,NA,NA,NA +"BIRDSVIEW","O",10,0,NA,NA,NA,NA,NA,NA "BIRDSVIEW","Bwl",13,76,NA,NA,NA,"l0YR","4","4" "BIRDSVIEW","Bw2",76,137,"l0YR","6","4","l0YR","4","4" +"BISPING","Oi",3,0,NA,NA,NA,NA,NA,NA +"BLACKLOCK","Oi",3,0,NA,NA,NA,NA,NA,NA "BLAG","A",0,15,"l0YR","6","2","l0YR","4","3" -"BLAG","Bw",15,NA,"l0YR","6","3","l0YR","4","4" -"BLAG","R",NA,1554,NA,NA,NA,NA,NA,NA +"BLAG","Bw",15,41,"l0YR","6","3","l0YR","4","4" "BLALOCK","IIClsicam",46,66,"10YR","8","1","10YR","6","2" "BLETHEN","A",0,13,"l0YR","4","3","l0YR","3","2" -"BLETHEN","0a",5,13,NA,NA,NA,NA,NA,NA -"BLETHEN","0i",13,5,NA,NA,NA,NA,NA,NA +"BLETHEN","Oa",5,0,NA,NA,NA,NA,NA,NA +"BLETHEN","Oi",13,5,NA,NA,NA,NA,NA,NA "BLETHEN","Bs1",13,33,"l0YR","5","4","l0YR","4","3" +"BLETHEN","Bs2",33,61,"l0YR","6","4",NA,NA,NA "BLETHEN","Bs3",61,107,"l0YR","6","4","l0YR","4","4" "BLETHEN","C",107,152,"l0YR","7","4","l0YR","5","4" -"BLETHEN","Bs2",NA,61,"l0YR","6","4",NA,NA,NA "BLEWETT","A",0,8,"l0YR","5","3","l0YR","3","2" -"BLEWETT","Bw",8,NA,"l0YR","5","4","l0YR","3","3" -"BLEWETT","R",NA,1554,NA,NA,NA,NA,NA,NA -"BOBTAIL","02",3,0,NA,NA,NA,NA,NA,NA -"BOBTAIL","01",5,3,NA,NA,NA,NA,NA,NA +"BLEWETT","Oi",1,0,NA,NA,NA,NA,NA,NA +"BLEWETT","Bw",8,25,"l0YR","5","4","l0YR","3","3" +"BOARDFLOWER","Oi",5,0,NA,NA,NA,NA,NA,NA +"BOBTAIL","O2",3,0,NA,NA,NA,NA,NA,NA +"BOBTAIL","O1",5,3,NA,NA,NA,NA,NA,NA "BOISTFORT","Al",5,28,"l0YR","4","2","7.5YR","3","2" "BOISTFORT","A2",28,53,"l0YR","4","3","7.5YR","3","2" "BOISTFORT","2Bwl",53,99,"l0YR","5","6","7.5YR","4","4" "BOISTFORT","2Bw2",99,140,"l0YR","5","8","7.5YR","5","6" -"BOOTEN","0i",3,15,NA,NA,NA,NA,NA,NA +"BOOTEN","Oi",3,0,NA,NA,NA,NA,NA,NA "BORDEAUX","Al",0,20,NA,NA,NA,"lOYR","5","2" "BORDEAUX","Clca",20,46,NA,NA,NA,"lOYR","5","2" "BORDEAUX","C2ca",46,152,NA,NA,NA,"lOYR","6","3" -"BOSSBURG","30a2",137,173,"2.5Y","6","2","2.5Y","4","2" "BROADAX","Apl",0,10,"10YR","4","2","10YR","2","2" -"BROMO","Al",0,10,"l0YR","6",NA,"l0YR","3",NA -"BROMO","0",10,10,NA,NA,NA,NA,NA,NA -"BROMO","AB",10,58,"l0YR","5","2","l0YR","3","2" +"BROADUS","Oi",3,0,NA,NA,NA,NA,NA,NA +"BROMO","Al",0,3,"l0YR","6",NA,"l0YR","3",NA +"BROMO","A2",3,10,"l0YR","5","3","l0YR","3","3" +"BROMO","O",10,0,NA,NA,NA,NA,NA,NA +"BROMO","AB",10,25,"l0YR","5","2","l0YR","3","2" "BROMO","2Bsb1",58,89,"l0YR","6","4","l0YR","3","3" "BROMO","2Bsb2",89,152,"l0YR","7","4","l0YR","4","4" -"BROMO","A2",NA,10,"l0YR","5","3","l0YR","3","3" -"BROMO","Bs",NA,58,NA,NA,NA,"5YR","4","6" -"BUCKHOUSE","0i",0,8,NA,NA,NA,NA,NA,NA -"BULLGULCH","0i",0,5,NA,NA,NA,NA,NA,NA +"BUCKPEAK","Oe",3,0,NA,NA,NA,NA,NA,NA +"BULL RUN","Oi",3,0,NA,NA,NA,NA,NA,NA +"BURNTHILL","Oi",5,0,NA,NA,NA,NA,NA,NA "BUTTECREEK","Oe",5,0,NA,NA,NA,NA,NA,NA "CAMBARGE","Clca",36,53,"2.5Y","8","2","2.5Y","6","2" "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 +"CASHNER","Oi",3,0,NA,NA,NA,NA,NA,NA "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" +"CATTCREEK","Oe",3,0,NA,NA,NA,NA,NA,NA +"CAYUSE","O",1,0,NA,NA,NA,NA,NA,NA +"CHAPOT","Oi",1,0,NA,NA,NA,NA,NA,NA "CHICANE","A12",13,36,"lOYR","3","2","lOYR","2","1" "CHICANE","B2",36,53,"lOYR","4","2","lOYR","3","1" "CHICANE","IIA21",53,69,"lOYR","6","3","lOYR","4","2" @@ -101,585 +109,602 @@ "CHICANE","IIB23t",104,130,"lOYR","5","4","lOYR","4","4" "CHICANE","IIB24t",130,170,"lOYR","4","4","lOYR","4","4" "CHICANE","Ap",NA,13,"lOYR","3","2","lOYR","2","1" -"CHICKAMAN","0i",0,5,NA,NA,NA,NA,NA,NA -"CINEBAR","0a",3,4,NA,NA,NA,NA,NA,NA -"CINEBAR","0i",4,3,NA,NA,NA,NA,NA,NA -"CINNAMON","Oa",8,8,NA,NA,NA,NA,NA,NA +"CINEBAR","Oa",3,0,NA,NA,NA,NA,NA,NA +"CINEBAR","Oi",4,3,NA,NA,NA,NA,NA,NA +"CINNAMON","Oa",8,0,NA,NA,NA,NA,NA,NA "CINNAMON","Oi",10,8,NA,NA,NA,NA,NA,NA -"CISPUS","A",0,5,"l0YR","5","2","l0YR","3","2" +"CISPUS","A",0,25,"l0YR","5","2","l0YR","3","2" +"CISPUS","Oe",5,0,NA,NA,NA,NA,NA,NA +"CISPUS","Bw",25,38,"l0YR","8","4","l0YR","5","4" +"CISPUS","C",38,109,"l0YR","8","4","l0YR","8","8" "CISPUS","2Bwb",109,152,"l0YR","6","3","l0YR","4","4" -"CISPUS","Bw",NA,NA,"l0YR","8","4","l0YR","5","4" -"CISPUS","C",NA,109,"l0YR","8","4","l0YR","8","8" -"CLENDENEN","0a",5,10,NA,NA,NA,NA,NA,NA +"CLE ELUM","Oi",1,0,NA,NA,NA,NA,NA,NA +"CLENDENEN","Oa",5,0,NA,NA,NA,NA,NA,NA "CLENDENEN","Oi",20,5,NA,NA,NA,NA,NA,NA "CLOQUATO","2Cl",102,132,"10YR","5","2","10YR","4","2" -"CLOQUATO","A2",NA,102,"10YR","5","3","10YR","3","3" -"COEROCK","0i",0,3,NA,NA,NA,NA,NA,NA -"COLDCREEK","0i",0,3,NA,NA,NA,NA,NA,NA +"CLOVERLAND","Oe",5,0,NA,NA,NA,NA,NA,NA +"COLTER","Oe",5,0,NA,NA,NA,NA,NA,NA +"COMAR","Oa",10,0,NA,NA,NA,NA,NA,NA "COMAR","Oi",13,10,NA,NA,NA,NA,NA,NA "CORA","Alg",0,30,NA,NA,NA,NA,NA,NA "CORA","Ae",8,0,NA,NA,NA,NA,NA,NA +"CORDY","Oi",1,0,NA,NA,NA,NA,NA,NA +"COTTERAL","Oa",3,0,NA,NA,NA,NA,NA,NA "COTTERAL","Oe",5,3,NA,NA,NA,NA,NA,NA "COWEEMAN","A",0,18,"l0YR","6","2","l0YR","4","2" -"COWEEMAN","BAt",18,56,"l0YR","8","2","l0YR","6","2" -"COWEEMAN","Btgl",NA,56,"2.5Y","8","2","2.5Y","6","2" +"COWEEMAN","BAt",18,36,"l0YR","8","2","l0YR","6","2" +"COWEEMAN","Btgl",36,56,"2.5Y","8","2","2.5Y","6","2" "CRACKERCREEK","2Btbl",41,53,"10YR","5","4","10YR","3","3" -"CRIMS","20e1",23,51,"10YR","3","1","10YR","2","1" -"CRIMS","20e2",51,102,"10YR","3","1","2.5Y","3","2" -"CRINKER","02",3,3,NA,NA,NA,NA,NA,NA -"CRINKER","01",8,3,NA,NA,NA,NA,NA,NA -"CROQUIB","0",5,5,NA,NA,NA,NA,NA,NA -"CRUTCH","0i",0,3,NA,NA,NA,NA,NA,NA -"CRUTCH","0e",3,5,NA,NA,NA,NA,NA,NA +"CRATER LAKE","Oi",4,0,NA,NA,NA,NA,NA,NA +"CRINKER","O2",3,0,NA,NA,NA,NA,NA,NA +"CRINKER","O1",8,3,NA,NA,NA,NA,NA,NA +"CROQUIB","O",5,0,NA,NA,NA,NA,NA,NA +"CRUISER","Oi",3,0,NA,NA,NA,NA,NA,NA "CULVING","Bwl",13,23,"10YR","6","3","10YR","4","2" "CULVOP","Oi",3,0,NA,NA,NA,NA,NA,NA "CUNDIYO","El",0,15,"l0YR","6","3","l0YR","4","2" -"CUNDIYO","E2",15,86,"l0YR","6","3","l0YR","4","2" +"CUNDIYO","Oi",3,0,NA,NA,NA,NA,NA,NA +"CUNDIYO","E2",15,36,"l0YR","6","3","l0YR","4","2" +"CUNDIYO","Btl",36,86,"l0YR","7","3","l0YR","4","3" "CUNDIYO","Bt2",86,117,"l0YR","6","4","l0YR","5","4" "CUNDIYO","C",117,152,"l0YR","6","4","l0YR","5","4" -"CUNDIYO","Oi",NA,0,NA,NA,NA,NA,NA,NA -"CUNDIYO","Btl",NA,86,"l0YR","7","3","l0YR","4","3" -"CUPPLES","0a",10,18,NA,NA,NA,NA,NA,NA -"CUPPLES","0i",18,10,NA,NA,NA,NA,NA,NA -"DARLING","02",3,0,NA,NA,NA,NA,NA,NA -"DARLING","01",10,3,NA,NA,NA,NA,NA,NA -"DEATMAN","0",3,13,NA,NA,NA,NA,NA,NA +"CUNNIFF","Oi",5,0,NA,NA,NA,NA,NA,NA +"CUPPLES","Oa",10,0,NA,NA,NA,NA,NA,NA +"CUPPLES","Oi",18,10,NA,NA,NA,NA,NA,NA +"DARLING","O2",3,0,NA,NA,NA,NA,NA,NA +"DARLING","O1",10,3,NA,NA,NA,NA,NA,NA +"DEATMAN","O",3,0,NA,NA,NA,NA,NA,NA +"DEKAPEN","O2",1,0,NA,NA,NA,NA,NA,NA +"DEKAPEN","O1",3,1,NA,NA,NA,NA,NA,NA "DELAMETER","C1",0,25,"l0YR","6","1","l0YR","4","1" "DELAMETER","C2",25,152,"l0YR","5","1","l0YR","4","1" -"DELETE MEII","0i",0,3,NA,NA,NA,NA,NA,NA -"DELETE MEII","0e",3,4,NA,NA,NA,NA,NA,NA +"DELPHI","Oa",3,0,NA,NA,NA,NA,NA,NA "DELPHI","Oi",5,3,NA,NA,NA,NA,NA,NA "DELPHI","Bwl",33,79,"10YR","6","4","10YR","4","4" +"DEMING","Oa",3,0,NA,NA,NA,NA,NA,NA "DEMING","Oi",10,3,NA,NA,NA,NA,NA,NA -"DEMING","Oa",NA,1554,NA,NA,NA,NA,NA,NA -"DIOBSUD","0a",3,5,NA,NA,NA,NA,NA,NA -"DIOBSUD","0i",23,3,NA,NA,NA,NA,NA,NA +"DESONS","Oi",3,0,NA,NA,NA,NA,NA,NA +"DINZER","O2",4,0,NA,NA,NA,"10YR","2","1" +"DINZER","O1",9,4,NA,NA,NA,NA,NA,NA +"DIOBSUD","Oa",3,0,NA,NA,NA,NA,NA,NA +"DIOBSUD","Oi",23,3,NA,NA,NA,NA,NA,NA "DOBBS","Bwl",43,69,"l0YR","5","4","7.5YR","3","4" "DOBBS","Bw2",69,97,"l0YR","5","4","7.5YR","3","4" "DOBBS","2Cd",97,168,"l0YR","6","3","l0YR","4","3" "DOMELL","Al",0,13,"l0YR","4","3","l0YR","3","3" +"DOMELL","Oa",8,0,NA,NA,NA,NA,NA,NA "DOMELL","Oe",13,8,NA,NA,NA,NA,NA,NA -"DOMELL","A2",13,58,"l0YR","5","3","l0YR","3","3" +"DOMELL","A2",13,28,"l0YR","5","3","l0YR","3","3" +"DOMELL","Bw1",28,58,"l0YR","6","4","l0YR","3","3" "DOMELL","Bw2",58,94,"l0YR","7","4","l0YR","4","4" -"DOMELL","Bw1",NA,58,"l0YR","6","4","l0YR","3","3" -"DREXEL","0i",0,3,NA,NA,NA,NA,NA,NA -"DRYADINE","0i",0,1,NA,NA,NA,NA,NA,NA -"DRYADINE","0e",1,4,NA,NA,NA,NA,NA,NA -"DUGUALLA","0a1",0,28,"10YR","3","1","10YR","2","1" -"DUGUALLA","0a2",28,51,"7.5YR","4","2","7.5YR","2.5","2" -"DUGUALLA","0a3",51,66,"10YR","3","1","10YR","2","2" -"DUGUALLA","0a4",66,152,"7.5YR","4","2","7.5YR","2.5","2" "EASTPINE","Oi",3,0,NA,NA,NA,NA,NA,NA -"EDFRO","0i",0,1,NA,NA,NA,NA,NA,NA -"EDFRO","0a",1,10,NA,NA,NA,NA,NA,NA "EDFRO","Bsl",18,28,NA,NA,NA,"7.5YR","4","6" "EDGEWICK","Bwl",20,25,"2.5Y","7","2","2.5Y","4","4" -"ELKNER","0i",0,5,NA,NA,NA,NA,NA,NA -"ELWELL","01",5,3,NA,NA,NA,NA,NA,NA +"EDSON","Oi",5,0,NA,NA,NA,NA,NA,NA +"EGYPTCREEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"ELWELL","O2",3,0,NA,NA,NA,NA,NA,NA +"ELWELL","O1",5,3,NA,NA,NA,NA,NA,NA "ELWELL","Bsl",5,20,"7.5YR","6","6","7.5YR","5","6" "EMBLEM","2Bkl",51,76,"10YR","6","3","10YR","4","4" -"ESMERALDA","0e",3,5,NA,NA,NA,NA,NA,NA +"ESMERALDA","Oe",3,0,NA,NA,NA,NA,NA,NA +"ETACH","Oa",8,0,NA,NA,NA,NA,NA,NA "ETACH","Oi",10,8,NA,NA,NA,NA,NA,NA +"EVICK","Oi",3,0,NA,NA,NA,NA,NA,NA +"FEAGINRANCH","Oi",14,0,NA,NA,NA,NA,NA,NA "FELTNER","Cca",30,41,"l0YR","6","4","10YR","5","4" -"FERN CLIFF","02",5,0,NA,NA,NA,NA,NA,NA +"FERGUSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"FERN CLIFF","O2",5,0,NA,NA,NA,NA,NA,NA "FERN CLIFF","O1",10,5,NA,NA,NA,NA,NA,NA -"FERNHAVEN","0i",10,10,NA,NA,NA,NA,NA,NA -"FERTEG","0",8,13,NA,NA,NA,NA,NA,NA -"FIVES","01",5,10,NA,NA,NA,NA,NA,NA +"FERNHAVEN","Oi",10,0,NA,NA,NA,NA,NA,NA +"FERTEG","O",8,0,NA,NA,NA,NA,NA,NA +"FIVES","O2",3,0,NA,NA,NA,"10YR","2","2" +"FIVES","O1",5,3,NA,NA,NA,NA,NA,NA +"FLANNERY","Oe",3,0,NA,NA,NA,NA,NA,NA "FLANNERY","Oi",4,3,NA,NA,NA,NA,NA,NA -"FLATSTONE","0i",0,3,NA,NA,NA,NA,NA,NA +"FLARM","Oi",10,0,NA,NA,NA,NA,NA,NA "FLYCREEK","2Btbl",58,69,"10YR","6","3","10YR","4","3" "FORDCREEK","Btl",15,41,"10YR","6","3","10YR","3","4" "FORDCREEK","Cr",104,NA,NA,NA,NA,NA,NA,NA "FORDCREEK","Al",NA,8,"10YR","5","3","10YR","3","3" -"FORSYTH","0a",3,3,NA,NA,NA,NA,NA,NA -"FORSYTH","0e",5,3,NA,NA,NA,NA,NA,NA +"FORSYTH","Oa",3,0,NA,NA,NA,NA,NA,NA +"FORSYTH","Oe",5,3,NA,NA,NA,NA,NA,NA "FORTRAN","A",0,8,"l0YR","5","3","l0YR","3","3" +"FORTRAN","Oa",3,0,NA,NA,NA,NA,NA,NA "FORTRAN","Oi",8,3,NA,NA,NA,NA,NA,NA "FORTRAN","Bw",8,28,"l0YR","6","4","l0YR","4","4" "FORTRAN","BC",28,43,"l0YR","5","3","l0YR","4","3" -"FORTRAN","Oa",NA,1554,NA,NA,NA,NA,NA,NA -"FOURLOG","01",0,3,NA,NA,NA,NA,NA,NA "FOXTON","Btl",20,41,"5YR","5","4","5YR","4","4" -"FRANKPORT","0i",0,5,NA,NA,NA,NA,NA,NA +"FRAILEY","O1",5,0,NA,NA,NA,NA,NA,NA +"GAMBLER","Oe",1,0,NA,NA,NA,NA,NA,NA +"GAP","Oi",10,0,NA,NA,NA,NA,NA,NA "GERMANY","Al",0,5,"7.5YR","3","2","l0YR","2","2" "GERMANY","A2",5,56,"7.5YR","4","4","l0YR","3","3" "GERMANY","2BAt",56,124,"l0YR","5","4","l0YR","4","3" "GERMANY","2Bt",124,183,"l0YR","5","4","7.5YR","4","4" "GILES","Oe",3,0,NA,NA,NA,NA,NA,NA +"GLAZE","Oi",8,0,NA,NA,NA,NA,NA,NA "GOLD CREEK","O1",5,0,NA,NA,NA,NA,NA,NA +"GOODLOW","Oi",3,0,NA,NA,NA,NA,NA,NA "GRANATH","Btkl",102,124,"5YR","4","4","5YR","4","4" -"GRENADIER","0i",0,8,NA,NA,NA,NA,NA,NA -"GRENADIER","0e",8,10,NA,NA,NA,NA,NA,NA -"GRENET","0i",3,10,NA,NA,NA,NA,NA,NA -"GROTTO","02",3,5,NA,NA,NA,NA,NA,NA -"GROTTO","01",5,3,NA,NA,NA,NA,NA,NA -"GUEMES","01",3,20,NA,NA,NA,NA,NA,NA -"HAGSTADT","0i",0,3,NA,NA,NA,NA,NA,NA +"GRENET","Oi",3,0,NA,NA,NA,NA,NA,NA +"GROTTO","O2",3,0,NA,NA,NA,NA,NA,NA +"GROTTO","O1",5,3,NA,NA,NA,NA,NA,NA +"GROVE","Oe",3,0,NA,NA,NA,NA,NA,NA +"GROVE","Oi",6,3,NA,NA,NA,NA,NA,NA +"GUEMES","O1",3,0,NA,NA,NA,NA,NA,NA +"HALL RANCH","Oi",3,0,NA,NA,NA,NA,NA,NA +"HANNEGAN","O2",10,0,NA,NA,NA,NA,NA,NA "HANNEGAN","O1",13,10,NA,NA,NA,NA,NA,NA +"HARTNIT","O2",15,0,NA,NA,NA,NA,NA,NA "HARTNIT","O1",18,15,NA,NA,NA,NA,NA,NA -"HAUGAN","0i",0,1,NA,NA,NA,NA,NA,NA -"HAZELCAMP","0i",3,13,NA,NA,NA,NA,NA,NA +"HAVERLY","Oi",3,0,NA,NA,NA,NA,NA,NA +"HAZELCAMP","Oi",3,0,NA,NA,NA,NA,NA,NA "HAZELDELL","Oa",5,0,NA,NA,NA,NA,NA,NA -"HEMCROSS","0i",0,5,NA,NA,NA,NA,NA,NA +"HEHE","Oi",3,0,NA,NA,NA,NA,NA,NA +"HEISLER","Oa",1,0,NA,NA,NA,NA,NA,NA +"HEISLER","OI",3,1,NA,NA,NA,NA,NA,NA "HENRYSLAKE","Btl",8,25,"10YR","5","2","10YR","3","2" "HESPER","Clca",41,51,"2.5Y","5","3","2.5Y","4","2" -"HIERRO","0i1",0,3,NA,NA,NA,NA,NA,NA -"HIERRO","0e2",3,5,NA,NA,NA,NA,NA,NA -"HIGHHORN","0i",0,8,NA,NA,NA,NA,NA,NA -"HOOTER","0e",5,0,NA,NA,NA,NA,NA,NA -"HOOTER","0i",8,5,NA,NA,NA,NA,NA,NA -"HOVDE","A",0,9,NA,NA,NA,"l0YR","3","2" -"HOVDE","2C4",39,60,"l0YR","4","2","l0YR","3","2" -"HOVDE","0i",NA,NA,NA,NA,NA,NA,NA,NA -"HOVDE","2C2",NA,29,"l0YR","5","3","l0YR","4","3" +"HIGHCAMP","Oi",5,0,NA,NA,NA,NA,NA,NA +"HOFFSTADT","Oe",5,0,NA,NA,NA,NA,NA,NA +"HOODSPORT","Oe",3,0,NA,NA,NA,"5YR","2","1" +"HOODSPORT","Oi",6,3,NA,NA,NA,NA,NA,NA +"HOOSKANADEN","Oi",3,0,NA,NA,NA,NA,NA,NA +"HOOTER","Oe",5,0,NA,NA,NA,NA,NA,NA +"HOOTER","Oi",8,5,NA,NA,NA,NA,NA,NA +"HOPBURN","Oi",1,0,NA,NA,NA,NA,NA,NA +"HOVDE","A",0,23,NA,NA,NA,"l0YR","3","2" +"HOVDE","Oi",3,0,NA,NA,NA,NA,NA,NA +"HOVDE","2C2",33,74,"l0YR","5","3","l0YR","4","3" +"HOVDE","2C4",99,152,"l0YR","4","2","l0YR","3","2" +"HOWASH","Oi",5,0,NA,NA,NA,NA,NA,NA +"HOZOMEEN","Oa",13,0,NA,NA,NA,NA,NA,NA "HOZOMEEN","Oi",15,13,NA,NA,NA,NA,NA,NA "HUCKLE","Bwl",10,20,"10YR","5","4","10YR","3","4" -"HUMSKEL","01",3,5,NA,NA,NA,NA,NA,NA -"HUN","0i",0,4,NA,NA,NA,NA,NA,NA -"HUN","0e",4,5,"10YR","7","1",NA,NA,NA -"HUNTROCK","0i",0,3,NA,NA,NA,NA,NA,NA -"ILLABOT","02",3,8,NA,NA,NA,NA,NA,NA -"ILLABOT","01",8,3,NA,NA,NA,NA,NA,NA -"INDART","0i",0,8,NA,NA,NA,NA,NA,NA -"INDART","0e",8,10,NA,NA,NA,NA,NA,NA -"JACKMAN","0i",10,10,NA,NA,NA,NA,NA,NA +"HUDSPETH","O",3,0,NA,NA,NA,NA,NA,NA +"HUMSKEL","O1",3,0,NA,NA,NA,NA,NA,NA +"ILLABOT","O2",3,0,NA,NA,NA,NA,NA,NA +"ILLABOT","O1",8,3,NA,NA,NA,NA,NA,NA +"JACKMAN","Oi",10,0,NA,NA,NA,NA,NA,NA "JACKNIFE","Btl",48,86,"7.5YR","3","2","7.5YR","3","2" -"JENKINS","02",3,0,NA,NA,NA,NA,NA,NA -"JENKINS","01",5,8,NA,NA,NA,NA,NA,NA -"JERU","0i",0,1,NA,NA,NA,NA,NA,NA -"JERU","0e",1,5,"10YR","7","1",NA,NA,NA -"JIMLAKE","0i",0,5,NA,NA,NA,NA,NA,NA -"JOJO","0i",5,18,NA,NA,NA,NA,NA,NA +"JENKINS","O2",3,0,NA,NA,NA,NA,NA,NA +"JOENEY","Oi",3,0,NA,NA,NA,NA,NA,NA +"JOJO","Oi",5,0,NA,NA,NA,NA,NA,NA +"JORGENSEN","Oe",18,0,NA,NA,NA,NA,NA,NA "JORGENSEN","Oi",46,18,NA,NA,NA,NA,NA,NA +"JUG","Oa",3,0,NA,NA,NA,NA,NA,NA "JUG","Oi",10,3,NA,NA,NA,NA,NA,NA -"JUMPSTART","0i",0,3,NA,NA,NA,NA,NA,NA "JUNTURA","All",0,3,"10YR","5","2","10YR","2","2" -"KACHESS","0i",0,5,NA,NA,NA,NA,NA,NA +"KALEETAN","O2",8,0,NA,NA,NA,"5YR","2.5","2" "KALEETAN","O1",10,8,NA,NA,NA,NA,NA,NA +"KANASKAT","Oa",3,0,NA,NA,NA,"10YR","2","1" "KANASKAT","Oi",5,3,NA,NA,NA,NA,NA,NA -"KATULA","0e",5,8,NA,NA,NA,NA,NA,NA -"KATULA","0i",18,5,NA,NA,NA,NA,NA,NA -"KEBLER","02",3,5,NA,NA,NA,NA,NA,NA -"KEBLER","01",5,3,NA,NA,NA,NA,NA,NA -"KEGEL","0e",0,3,NA,NA,NA,NA,NA,NA -"KELLERBUTTE","0i and 0e",0,3,NA,NA,NA,NA,NA,NA -"KIEHL","0i",0,3,NA,NA,NA,NA,NA,NA -"KINGMONT","El",0,71,"l0YR","7","3","l0YR","5","4" +"KATULA","Oe",5,0,NA,NA,NA,NA,NA,NA +"KATULA","Oi",18,5,NA,NA,NA,NA,NA,NA +"KEBLER","O2",3,0,NA,NA,NA,NA,NA,NA +"KEBLER","O1",5,3,NA,NA,NA,NA,NA,NA +"KINDY","Oa",1,0,NA,NA,NA,NA,NA,NA +"KINDY","Oi",6,1,NA,NA,NA,NA,NA,NA +"KINGMONT","El",0,36,"l0YR","7","3","l0YR","5","4" +"KINGMONT","Oi",1,0,NA,NA,NA,NA,NA,NA +"KINGMONT","E2",36,71,"l0YR","7","3","l0YR","5","4" "KINGMONT","Btl",71,91,"l0YR","6","3","l0YR","4","3" "KINGMONT","Bt2",91,152,"l0YR","6","4","l0YR","5","4" -"KINGMONT","E2",NA,71,"l0YR","7","3","l0YR","5","4" -"KIPER","0e",0,3,NA,NA,NA,NA,NA,NA "KITSAP","Bwl",15,25,"10YR","6","3","10YR","4","3" -"KLAWATTI","0i",18,13,NA,NA,NA,NA,NA,NA -"KLUTCH","0i",0,3,NA,NA,NA,NA,NA,NA -"KLUTCH","0e",3,4,NA,NA,NA,NA,NA,NA +"KLAWATTI","Oa",13,0,NA,NA,NA,NA,NA,NA +"KLAWATTI","Oi",18,13,NA,NA,NA,NA,NA,NA "KOERLING","Bwl",23,56,"10YR","6","3","10YR","4","3" -"KUCKUP","0i",3,15,NA,NA,NA,NA,NA,NA +"KUCKUP","Oi",3,0,NA,NA,NA,NA,NA,NA +"KULSHAN","Oa",5,0,NA,NA,NA,NA,NA,NA "KULSHAN","Oi",18,5,NA,NA,NA,NA,NA,NA +"KUSU","Oi",5,0,NA,NA,NA,NA,NA,NA +"KUTCHER","Oi",5,0,NA,NA,NA,NA,NA,NA "LACONNER","Bwl",8,25,"10YR","6","3","10YR","4","3" "LACONNER","Cl",51,84,"2.5Y","5","4","2.5Y","4","2" -"LACY","0i",0,3,NA,NA,NA,NA,NA,NA -"LAGALL","0i",0,3,NA,NA,NA,NA,NA,NA -"LANTERN","0i",0,5,NA,NA,NA,NA,NA,NA +"LAGITOS","Oi",5,0,NA,NA,NA,NA,NA,NA +"LAGITOS","C1",51,1,"5Y","8","1","5Y","6","2" +"LAMEDEER","Oi",5,0,NA,NA,NA,NA,NA,NA "LASSEL","Clca",30,46,"10YR","6","3","10YR","5","3" -"LASTANCE","0e",3,3,NA,NA,NA,"10YR","2","1" -"LASTANCE","0i",5,5,NA,NA,NA,NA,NA,NA -"LEADVILLE","0i",0,8,NA,NA,NA,NA,NA,NA -"LEADVILLE","0e",8,10,NA,NA,NA,NA,NA,NA -"LEGAULT","0e",0,3,NA,NA,NA,NA,NA,NA -"LEMAH","0e",0,1,NA,NA,NA,NA,NA,NA -"LEMOLO","Oa",13,13,NA,NA,NA,"10YR","2","1" +"LASTANCE","Oe",3,0,NA,NA,NA,"10YR","2","1" +"LASTANCE","Oi",5,3,NA,NA,NA,NA,NA,NA +"LAVENTANA","Oi",1,0,NA,NA,NA,NA,NA,NA +"LE BAR","Oe",1,0,NA,NA,NA,NA,NA,NA +"LE BAR","Oi",3,1,NA,NA,NA,NA,NA,NA +"LEDOW","O",5,0,NA,NA,NA,NA,NA,NA +"LEMOLO","Oa",13,0,NA,NA,NA,"10YR","2","1" "LEMOLO","Oi",15,13,NA,NA,NA,NA,NA,NA +"LEMPIRA","Oi",1,0,NA,NA,NA,NA,NA,NA +"LITTLEFAWN","Oi",3,0,NA,NA,NA,NA,NA,NA "LITTLESALMON","2Cl",79,109,"10YR","5","2","10YR","6","2" -"LOLOPEAK","0i",0,8,NA,NA,NA,NA,NA,NA -"LONESTAR","Oa",5,5,NA,NA,NA,NA,NA,NA +"LONESTAR","Oa",5,0,NA,NA,NA,NA,NA,NA "LONESTAR","Oi",8,5,NA,NA,NA,NA,NA,NA "LOPER","Oa",5,0,NA,NA,NA,NA,NA,NA -"LOWERCREEK","01 and 02",3,8,NA,NA,NA,NA,NA,NA +"LOWERCREEK","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"LYNNWOOD","Oa",5,0,NA,NA,NA,NA,NA,NA "LYNNWOOD","Oi",8,5,NA,NA,NA,NA,NA,NA -"MACFARLANE","0i",0,8,NA,NA,NA,NA,NA,NA -"MACFARLANE","0e",8,10,NA,NA,NA,NA,NA,NA -"MACMEAL","0i2",3,5,NA,NA,NA,NA,NA,NA -"MACMEAL","0i1",5,18,NA,NA,NA,NA,NA,NA +"MACKATIE","Oi",8,0,NA,NA,NA,NA,NA,NA +"MACMEAL","Oi1",5,3,NA,NA,NA,NA,NA,NA "MADRAK","A",3,5,"l0YR","4","2","10YR","3","2" "MADRAK","Bwl",5,25,"7.5YR","5","4","7.5YR","3","4" +"MAL","Oa",3,0,NA,NA,NA,NA,NA,NA "MARA","Bw2",25,46,"l0YR","5","3","l0YR","4","3" "MARA","Bk1",46,76,"l0YR","6","3","l0YR","4","3" "MARA","Bk2",76,152,"l0YR","6","3","l0YR","5","3" -"MCCAFFERY","0i",0,3,NA,NA,NA,NA,NA,NA -"MCINTYRE","02",3,5,NA,NA,NA,NA,NA,NA -"MCINTYRE","01",5,3,NA,NA,NA,NA,NA,NA +"MARBLEMOUNT","Oe",8,0,NA,NA,NA,NA,NA,NA +"MASHEL","Oe",8,0,NA,NA,NA,NA,NA,NA +"MCDOUG","Oi",3,0,NA,NA,NA,NA,NA,NA +"MCINTYRE","O2",3,0,NA,NA,NA,NA,NA,NA +"MCINTYRE","O1",5,3,NA,NA,NA,NA,NA,NA +"MELAKWA","O2",3,0,NA,NA,NA,NA,NA,NA "MELAKWA","O1",8,3,NA,NA,NA,NA,NA,NA "MELHORN","Oi",5,0,NA,NA,NA,NA,NA,NA +"MILLERFLAT","Oi",5,0,NA,NA,NA,NA,NA,NA "MILLPOT","Clca",36,107,"7.5YR","8","2","7.5YR","6","3" +"MINNIEPEAK","Oi",5,0,NA,NA,NA,NA,NA,NA "MINNIEPEAK","2Bwl",30,41,"10YR","8","1","10YR","7","1" "MITCHELL","Cl",48,74,"10YR","8","2","10YR","6","2" -"MOBATE","0i",0,3,NA,NA,NA,NA,NA,NA -"MOHAGGIN","0i",0,5,NA,NA,NA,NA,NA,NA -"MOHAGGIN","0e",5,13,NA,NA,NA,NA,NA,NA -"MONTBORNE","0e",8,20,NA,NA,NA,NA,NA,NA +"MONTBORNE","Oe",8,0,NA,NA,NA,NA,NA,NA +"MOOLACK","O2",1,0,NA,NA,NA,NA,NA,NA +"MOOLACK","O1",3,1,NA,NA,NA,NA,NA,NA "MOOSED","Al",0,5,"7.5YR","4","2","7.5YR","3","2" -"MOOSED","Bwl",18,NA,"5YR","4","4","5YR","3","3" -"MOOSED","Bw2",NA,NA,"5YR","4","4","5YR","3","4" -"MOOSED","C",NA,NA,"5YR","5","4","5YR","4","4" -"MOOSED","R",NA,1554,"5YR","5","4",NA,NA,NA +"MOOSED","Bwl",18,28,"5YR","4","4","5YR","3","3" +"MOWAKO","Oi",3,0,NA,NA,NA,NA,NA,NA +"MOWBRAY","Oi",5,0,NA,NA,NA,NA,NA,NA +"MOWICH","Oa",13,0,NA,NA,NA,NA,NA,NA "MOWICH","Oi",20,13,NA,NA,NA,NA,NA,NA +"MULHOLLAND","Oe",4,0,NA,NA,NA,NA,NA,NA +"MULTORPOR","O",1,0,NA,NA,NA,NA,NA,NA +"MURNEN","Oe",3,0,NA,NA,NA,NA,NA,NA "MUTTON","Oi",3,0,NA,NA,NA,NA,NA,NA -"MYSTEN","02",3,5,NA,NA,NA,NA,NA,NA -"MYSTEN","01",5,3,NA,NA,NA,NA,NA,NA -"NANAMKIN","0i",0,3,NA,NA,NA,NA,NA,NA -"NANITA","0e",0,3,NA,NA,NA,NA,NA,NA +"MYSTEN","O2",3,0,NA,NA,NA,NA,NA,NA +"MYSTEN","O1",5,3,NA,NA,NA,NA,NA,NA +"NAGROM","Oa",1,0,NA,NA,NA,NA,NA,NA +"NAGROM","Oi",4,1,NA,NA,NA,NA,NA,NA +"NARDINE","Oi",3,0,NA,NA,NA,NA,NA,NA "NARDMONT","Oi",5,0,NA,NA,NA,NA,NA,NA -"NAREL","01",13,41,NA,NA,NA,NA,NA,NA +"NAREL","O1",13,0,NA,NA,NA,NA,NA,NA +"NARGAR","O2",1,0,NA,NA,NA,"10YR","2","1" +"NARGAR","O1",3,1,NA,NA,NA,NA,NA,NA +"NATAPOC","Oi",1,0,NA,NA,NA,NA,NA,NA +"NATI","Oa",8,0,NA,NA,NA,NA,NA,NA +"NATI","Oi",9,8,NA,NA,NA,NA,NA,NA +"NATIONAL","Oa",5,0,NA,NA,NA,"5YR","2","1" "NATIONAL","2Cl",104,124,"10YR","6","3","10YR","4","4" -"NATKIM","0i",0,1,NA,NA,NA,NA,NA,NA -"NATKIM","0e",1,3,NA,NA,NA,NA,NA,NA "NELSON","Alp",0,23,"10YR","6","2","10YR","4","2" -"NETRAC","Al",0,2,"l0YR","5",NA,"l0YR","3",NA -"NETRAC","Cl",2,7,"l0YR","8","3","l0YR","5",NA -"NETRAC","2Alb",7,NA,"l0YR","4","3","l0YR","3","2" -"NETRAC","0l",NA,NA,NA,NA,NA,NA,NA,NA -"NETRAC","2B2b",NA,NA,"l0YR","5","3","l0YR","3","4" -"NETRAC","2C2",NA,60,"l0YR","4","3","l0YR","3","4" -"NEVINE","0i",0,3,NA,NA,NA,NA,NA,NA -"NEVINE","A",3,3,"10YR","6","2","10YR","4","2" +"NETRAC","Al",0,5,"l0YR","5",NA,"l0YR","3",NA +"NETRAC","O1",3,3,NA,NA,NA,NA,NA,NA +"NETRAC","Cl",5,18,"l0YR","8","3","l0YR","5",NA +"NETRAC","2Alb",18,25,"l0YR","4","3","l0YR","3","2" +"NETRAC","2B2b",25,53,"l0YR","5","3","l0YR","3","4" +"NETRAC","2C2",53,152,"l0YR","4","3","l0YR","3","4" "NEWAUKUM","A",0,23,"l0YR","4","3","l0YR","2","2" -"NEWAUKUM","0e",5,23,NA,NA,NA,NA,NA,NA -"NEWAUKUM","Bwl",23,64,"l0YR","5","4","l0YR","3","3" -"NEWAUKUM","Bw3",64,NA,"l0YR","7","4","l0YR","4","4" -"NEWAUKUM","Bw2",NA,64,"l0YR","6","4","l0YR","3","4" -"NEWAUKUM","BC",NA,NA,"7.5YR","6","6","7.5YR","4","6" -"NEWAUKUM","C",NA,152,"7.5YR","7","4","7.5YR","4","4" -"NEWBELL","0e",0,3,NA,NA,NA,NA,NA,NA +"NEWAUKUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"NEWAUKUM","Bwl",23,41,"l0YR","5","4","l0YR","3","3" +"NEWAUKUM","Bw2",41,64,"l0YR","6","4","l0YR","3","4" +"NEWAUKUM","Bw3",64,104,"l0YR","7","4","l0YR","4","4" "NIMS","2Bqkl",66,74,"10YR","8","2","10YR","7","2" "NISQUALLY","2Cl",79,122,"2.5Y","5","2","2.5Y","5","4" -"NORDICOL","0i",0,3,NA,NA,NA,NA,NA,NA "NORTHSTAR","Al",5,10,"10YR","5","2","10YR","3","2" -"OAKES","0i",5,0,NA,NA,NA,NA,NA,NA -"ODIN","01",3,8,NA,NA,NA,NA,NA,NA -"ODO","0e",0,3,NA,NA,NA,NA,NA,NA -"OJIBWAY","0e",5,13,NA,NA,NA,NA,NA,NA -"OLEO","0i",0,3,NA,NA,NA,NA,NA,NA +"OAKES","Oi",5,0,NA,NA,NA,NA,NA,NA +"ODIN","O1",3,0,NA,NA,NA,NA,NA,NA +"OGARTY","Oa",1,0,NA,NA,NA,NA,NA,NA +"OGARTY","Oi",4,1,NA,NA,NA,NA,NA,NA +"OJIBWAY","Oe",5,0,NA,NA,NA,NA,NA,NA +"OLEQUA","Oe",5,0,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 +"OLOMOUNT","Oe",5,0,NA,NA,NA,NA,NA,NA +"OLOMOUNT","Oi",6,5,NA,NA,NA,NA,NA,NA +"OLYIC","O1",1,0,NA,NA,NA,NA,NA,NA +"ORWIG","Oe",5,0,NA,NA,NA,"10YR","3","3" +"OSO","Oi",5,0,NA,NA,NA,NA,NA,NA +"OVIATT","Oi",3,0,NA,NA,NA,NA,NA,NA "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","AB",15,43,"l0YR","6","2","l0YR","3","3" +"PALMICH","Bw1",43,71,"l0YR","6","2","l0YR","4","3" "PALMICH","Bw2",71,117,"l0YR","6","3","l0YR","4","4" "PALMICH","2Bw3",117,157,"l0YR","7","3","l0YR","4","4" -"PALMICH","Bw1",NA,71,"l0YR","6","2","l0YR","4","3" "PANAMAKER","C1",0,8,"l0YR","6",NA,"l0YR","4",NA "PANAMAKER","C2",8,152,"l0YR","6",NA,"l0YR","4",NA "PANIOGUE","A",0,8,"2.5Y","5","2","1OYR","3","2" "PANIOGUE","Bwl",18,36,"10YR","6","2","10YR","4","2" -"PARA","0",3,8,NA,NA,NA,NA,NA,NA +"PARA","O",3,0,NA,NA,NA,NA,NA,NA "PARLIN","IICca",79,152,"1OYR","6","2","lOYR","5","2" "PARLIN","A1",NA,18,"7.5YR","5","2","7.5YR","3","2" -"PEAHKE","0i",3,10,NA,NA,NA,NA,NA,NA -"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 -"PERVINA","01",3,10,NA,NA,NA,NA,NA,NA +"PEAHKE","Oi",3,0,NA,NA,NA,NA,NA,NA +"PELEE","Oa",1,0,NA,NA,NA,NA,NA,NA +"PELEE","Oi",3,1,NA,NA,NA,NA,NA,NA +"PERSIS","Oa",1,0,NA,NA,NA,NA,NA,NA +"PERSIS","Oi",9,1,NA,NA,NA,NA,NA,NA +"PERVINA","O1",3,0,NA,NA,NA,NA,NA,NA "PERVINA","Cl",140,152,"7.5YR","5","8","5YR","5","8" -"PETTY","0i",0,8,NA,NA,NA,NA,NA,NA -"PHILLCHER","0i",0,5,NA,NA,NA,NA,NA,NA +"PHILIPPA","Oa",1,0,NA,NA,NA,NA,NA,NA +"PHILIPPA","Oi",5,1,NA,NA,NA,NA,NA,NA "PIERIAN","C",20,152,"1OYR","6","3",NA,NA,NA "PIERIAN","A1",NA,20,"1OYR","5","2",NA,NA,NA "PIERKING","Oa",5,0,NA,NA,NA,"10YR","2","2" "PIERKING","Oe",10,5,NA,NA,NA,NA,NA,NA -"PIKADEN","0i",0,1,NA,NA,NA,NA,NA,NA +"PILLERY","Oi",3,0,NA,NA,NA,NA,NA,NA "PINEBREAKS","Oi",5,0,NA,NA,NA,NA,NA,NA -"PINHEAD","0i",0,5,NA,NA,NA,NA,NA,NA +"PINOTY","Oa",1,0,NA,NA,NA,NA,NA,NA +"PINOTY","Oi",5,1,NA,NA,NA,NA,NA,NA +"PIPP","Oi",3,0,NA,NA,NA,NA,NA,NA +"PIUMPSHA","Oi",5,0,NA,NA,NA,NA,NA,NA "PLATORO","A1",0,10,"1OYR","6","2","10YR","4","2" "PLATORO","B3ca",38,46,"1OYR","5","3","1OYR","4","3" "PLATORO","Clca",46,66,"10YR","5","3","10YR","4","3" +"POLEPATCH","Oe",3,0,NA,NA,NA,NA,NA,NA "POOSE","Oe",5,0,NA,NA,NA,NA,NA,NA -"POTCHUB","Oa",18,18,NA,NA,NA,NA,NA,NA +"POTCHUB","Oa",18,0,NA,NA,NA,NA,NA,NA "POTCHUB","Oi",23,18,NA,NA,NA,NA,NA,NA "POTCHUB","Bsl",33,43,"7.5YR","7","6","7.5YR","5","6" -"PRATHER","Bt1",NA,66,"10YR","5","8","7.5YR","4","4" "PRIMEN","IICr",46,NA,NA,NA,NA,"2.5Y","7","2" "PRIMEN","A1",NA,10,NA,NA,NA,"1OYR","4","2" -"PRONG","0i",0,3,NA,NA,NA,NA,NA,NA "PSUGA","Oa",3,0,NA,NA,NA,NA,NA,NA -"PTARMIGAN","02",3,5,NA,NA,NA,NA,NA,NA -"PTARMIGAN","01",5,20,NA,NA,NA,NA,NA,NA -"PUGET","Al",0,18,NA,NA,NA,"2.5Y","3","2" -"PUGET","A2",NA,18,"2.5Y","7","2","2.5Y","4","2" -"PUGET","Bg2",NA,64,"5Y","6","2","2.5Y","5","2" -"PUGET","Bg4",NA,102,"5Y","7",NA,"2.5Y","5","2" +"PTARMIGAN","O2",3,0,NA,NA,NA,NA,NA,NA +"PTARMIGAN","O1",5,3,NA,NA,NA,NA,NA,NA +"PUGET","Al",0,3,NA,NA,NA,"2.5Y","3","2" "PUYALLUP","2Cl",46,69,"10YR","5","2","10YR","3","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 -"RALEIGH","0e",0,3,NA,NA,NA,NA,NA,NA +"QUILLAYUTE","O1",3,0,NA,NA,NA,NA,NA,NA +"RAINIER","O",3,0,NA,NA,NA,NA,NA,NA "RANDMAN","Alg",0,15,"10YR","5","2","10YR","3","2" +"RANDMAN","O1",3,0,NA,NA,NA,NA,NA,NA "RANDMAN","Blg",15,25,"10YR","5","2","10YR","3","2" -"RANDMAN","01",NA,0,NA,NA,NA,NA,NA,NA "RANSECT","A",0,8,"l0YR","6","4","l0YR","4","4" -"RANSECT","Bkl",8,61,"l0YR","5","3","l0YR","3","3" +"RANSECT","Bkl",8,41,"l0YR","5","3","l0YR","3","3" +"RANSECT","Bk2",41,61,"l0YR","5","3","l0YR","4","3" "RANSECT","Bk3",61,97,"l0YR","6","4","l0YR","5","4" -"RANSECT","2R",97,NA,NA,NA,NA,NA,NA,NA -"RANSECT","Bk2",NA,61,"l0YR","5","3","l0YR","4","3" -"RARICK","02",5,8,NA,NA,NA,NA,NA,NA -"RARICK","01",8,5,NA,NA,NA,NA,NA,NA +"RARICK","O2",5,0,NA,NA,NA,NA,NA,NA +"RARICK","O1",8,5,NA,NA,NA,NA,NA,NA "RATON","Al",0,13,"10YR","3","2","10YR","2","2" -"RAUGHT","Al",0,2,"5YR","4","2","5YR","3","2" -"RAUGHT","AB",7,NA,"5YR","5","3","5YR","3","3" -"RAUGHT","Oe",NA,NA,NA,NA,NA,NA,NA,NA -"RAUGHT","BA",NA,NA,"5YR","5","4","5YR","3","4" -"RAUGHT","Bt",NA,65,"5YR","5","4","2.5YR","3","6" +"RAUGHT","Al",0,5,"5YR","4","2","5YR","3","2" +"RAUGHT","Oe",3,0,NA,NA,NA,NA,NA,NA "RAWAH","Clca",51,76,"2.5YR","6","4","2.5YR","5","4" "REDCLOUD","C1ca",56,91,"1OYR","7","3","1OYR","5","3" "REDCLOUD","A1",NA,30,"7.5YR","5","3","7.5YR","3","3" +"REDFERN","Oi",1,0,NA,NA,NA,NA,NA,NA +"REDFLAT","Oi",3,0,NA,NA,NA,NA,NA,NA "REHFIELD","A",0,8,"l0YR","5","3","l0YR","3","3" -"REPPART","0i",0,3,NA,NA,NA,NA,NA,NA -"REVEL","Bs",10,89,"l0YR","5","4","7.5YR","4","4" -"REVEL","2Cr",89,NA,NA,NA,NA,NA,NA,NA -"REVEL","Oi",NA,1,NA,NA,NA,NA,NA,NA -"REVEL","Oa",NA,NA,NA,NA,NA,NA,NA,NA -"REVEL","C",NA,89,"l0YR","6","4","l0YR","4","4" -"RINEARSON","0",3,8,NA,NA,NA,NA,NA,NA -"RINKER","0a",3,5,NA,NA,NA,NA,NA,NA -"RINKER","0i",13,3,NA,NA,NA,NA,NA,NA -"RISWOLD","0i",0,4,NA,NA,NA,NA,NA,NA -"ROBER","0a",3,8,NA,NA,NA,NA,NA,NA +"REVEL","Oa",1,0,NA,NA,NA,NA,NA,NA +"REVEL","Oi",4,1,NA,NA,NA,NA,NA,NA +"REVEL","Bs",10,41,"l0YR","5","4","7.5YR","4","4" +"REVEL","C",41,89,"l0YR","6","4","l0YR","4","4" +"RIDGE","Oi",1,0,NA,NA,NA,NA,NA,NA +"RINEARSON","O",3,0,NA,NA,NA,NA,NA,NA +"RINKER","Oa",3,0,NA,NA,NA,NA,NA,NA +"RINKER","Oi",13,3,NA,NA,NA,NA,NA,NA +"ROBER","Oa",3,0,NA,NA,NA,NA,NA,NA +"ROBER","Oi",6,3,NA,NA,NA,NA,NA,NA +"ROLO","Oe",3,0,NA,NA,NA,NA,NA,NA "ROLO","Oi",5,3,NA,NA,NA,NA,NA,NA "RONSEL","E",0,8,"l0YR","6",NA,NA,NA,NA -"RONSEL","2BC",20,NA,"2.5YR","5","4","l0YR","4","4" -"RONSEL","0e",NA,0,NA,NA,NA,NA,NA,NA -"RONSEL","2C",NA,152,"2.5Y","6","6","2.5Y","4","4" +"RONSEL","Oe",3,0,NA,NA,NA,NA,NA,NA +"RONSEL","2BC",20,43,"2.5YR","5","4","l0YR","4","4" "ROSLYN","O",3,0,NA,NA,NA,NA,NA,NA -"ROXER","0e",0,3,NA,NA,NA,NA,NA,NA -"RUGLES","0e",5,0,NA,NA,NA,NA,NA,NA -"RULE","02",3,8,NA,NA,NA,NA,NA,NA -"RULE","01",8,3,NA,NA,NA,NA,NA,NA -"RYORP","0e",0,5,NA,NA,NA,NA,NA,NA -"SAAR","0a",3,5,NA,NA,NA,NA,NA,NA -"SAAR","0i",10,3,NA,NA,NA,NA,NA,NA +"RUGLES","Oe",5,0,NA,NA,NA,NA,NA,NA +"RULE","O2",3,0,NA,NA,NA,NA,NA,NA +"RULE","O1",8,3,NA,NA,NA,NA,NA,NA +"RUSTYBUTTE","Oi",3,0,NA,NA,NA,NA,NA,NA +"SAAR","Oa",3,0,NA,NA,NA,NA,NA,NA +"SAAR","Oi",10,3,NA,NA,NA,NA,NA,NA +"SACH","Oi",3,0,NA,NA,NA,NA,NA,NA +"SADDLEPEAK","Oi",3,0,NA,NA,NA,NA,NA,NA +"SAG","Oi",3,0,NA,NA,NA,NA,NA,NA "SAN ARCACIO","Al",0,10,"1OYR","6","2","1OYR","4","2" "SAN ARCACIO","B2t",10,33,"1OYR","5","3","1OYR","4","3" "SAN ARCACIO","B3ca",33,41,"1OYR","5","3","1OYR","4","3" "SAN ARCACIO","C1ca",41,66,"1OYR","6","2","10YR","5","2" +"SANDUN","Oi",8,0,NA,NA,NA,NA,NA,NA "SARATON","Clca",25,76,"7.5YR","8","2",NA,NA,NA "SARATON","A1",NA,13,"7.5YR","5","4","7.5YR","4","4" -"SAUK","0a",3,8,NA,NA,NA,NA,NA,NA -"SAUK","0i",10,3,NA,NA,NA,NA,NA,NA -"SAUVOLA","A",0,26,"l0YR","3","2",NA,NA,NA -"SAUVOLA","Bt2",26,32,"l0YR","5","3",NA,NA,NA -"SAUVOLA","Bt3",32,43,"l0YR","5","3",NA,NA,NA -"SAUVOLA","BC",43,60,"l0YR","5","3",NA,NA,NA -"SAUVOLA","Oe",NA,NA,NA,NA,NA,NA,NA,NA -"SAUVOLA","ABt",NA,NA,"l0YR","3","3",NA,NA,NA -"SAUVOLA","Bt1",NA,26,"l0YR","5","3",NA,NA,NA -"SAWATCH","01",15,20,NA,NA,NA,NA,NA,NA +"SASKA","Oi and Oe",5,0,NA,NA,NA,NA,NA,NA +"SAUK","Oa",3,0,NA,NA,NA,NA,NA,NA +"SAUK","Oi",10,3,NA,NA,NA,NA,NA,NA +"SAUVOLA","A",0,25,"l0YR","3","2",NA,NA,NA +"SAUVOLA","Oe",3,0,NA,NA,NA,NA,NA,NA +"SAUVOLA","ABt",25,46,"l0YR","3","3",NA,NA,NA +"SAUVOLA","Bt1",46,66,"l0YR","5","3",NA,NA,NA +"SAUVOLA","Bt2",66,81,"l0YR","5","3",NA,NA,NA +"SAUVOLA","Bt3",81,109,"l0YR","5","3",NA,NA,NA +"SAUVOLA","BC",109,152,"l0YR","5","3",NA,NA,NA +"SAWATCH","O1",15,0,NA,NA,NA,NA,NA,NA "SAWATCH","Allg",NA,20,"10YR","4","2","7.5YR","5","6" +"SAXON","Oa",10,0,NA,NA,NA,NA,NA,NA "SAXON","Oi",23,10,NA,NA,NA,NA,NA,NA -"SCALEROCK","0i",3,10,NA,NA,NA,NA,NA,NA +"SCALEROCK","Oi",3,0,NA,NA,NA,NA,NA,NA "SCAR","Bsl",8,23,"7.5YR","5","6","10YR","4","4" -"SCAR","Cl",NA,53,"N","7","0","5Y","5","1" -"SCOTTIES","Bwl",3,79,"l0YR","6","3","l0YR","4","3" +"SCAR","Cl",30,53,"N","7","0","5Y","5","1" +"SCOTTIES","Bwl",3,28,"l0YR","6","3","l0YR","4","3" +"SCOTTIES","2Bw2",28,48,"l0YR","6","4","l0YR","4","4" +"SCOTTIES","2Cl",48,79,"l0YR","5","6","l0YR","3","4" "SCOTTIES","2C2",79,114,"l0YR","6","4","l0YR","4","3" -"SCOTTIES","2R",114,NA,NA,NA,NA,NA,NA,NA -"SCOTTIES","2Bw2",NA,NA,"l0YR","6","4","l0YR","4","4" -"SCOTTIES","2Cl",NA,79,"l0YR","5","6","l0YR","3","4" -"SCRABBLERS","0e",0,1,NA,NA,NA,"10YR","3","2" "SEAQUEST","Bt2",61,97,"l0YR","5","4","7.5YR","4","4" "SEELOVERS","Al",NA,15,"10YR","4","2","10YR","2","2" -"SELWAY","0i",3,8,NA,NA,NA,NA,NA,NA -"SEMIAHMOO","30e",155,165,NA,NA,NA,"5YR","2","2" -"SERPENTANO","0i",8,13,NA,NA,NA,NA,NA,NA -"SHAMEL","0i",3,28,NA,NA,NA,NA,NA,NA -"SHARROTT","0i",0,5,NA,NA,NA,NA,NA,NA -"SHELTON","02",3,8,NA,NA,NA,NA,NA,NA -"SHERLOCK","0a",0,3,NA,NA,NA,NA,NA,NA +"SEHOME","Oi",1,0,NA,NA,NA,NA,NA,NA +"SERPENTANO","Oi",8,0,NA,NA,NA,NA,NA,NA +"SHAMEL","Oi",3,0,NA,NA,NA,NA,NA,NA +"SHELTON","O2",3,0,NA,NA,NA,NA,NA,NA "SHERLOCK","Bwl",4,13,"10YR","5","6","7.5YR","3","4" "SHERLOCK","2Btl",25,74,"2.5Y","7","2","2.5Y","4","4" -"SHOOFLIN","0i",0,5,NA,NA,NA,NA,NA,NA +"SHUKSAN","Oa",18,0,NA,NA,NA,NA,NA,NA "SHUKSAN","Oi",23,18,NA,NA,NA,NA,NA,NA "SIFTON","Ap",0,13,"l0YR","4","2","l0YR","2",NA -"SIFTON","All",13,61,"l0YR","4","2","l0YR","2",NA +"SIFTON","All",13,25,"l0YR","4","2","l0YR","2",NA +"SIFTON","Al2",25,41,"l0YR","4","2","l0YR","2","2" +"SIFTON","2Cl",41,61,"l0YR","4","3","l0YR","3","3" "SIFTON","2C2",61,152,"l0YR","4","2","l0YR","3","2" -"SIFTON","Al2",NA,NA,"l0YR","4","2","l0YR","2","2" -"SIFTON","2Cl",NA,61,"l0YR","4","3","l0YR","3","3" +"SIMNASHO","Oi",3,0,NA,NA,NA,NA,NA,NA +"SINCLAIR","O2",2,0,NA,NA,NA,"5YR","2","1" +"SINCLAIR","O1",7,2,NA,NA,NA,NA,NA,NA "SINGERTON","Ckl",38,66,"2.5Y","7","4","2.5Y","6","6" +"SINNICE","Oi",1,0,NA,NA,NA,NA,NA,NA "SKAGIT","Apl",0,15,"10YR","6","2","10YR","3","2" +"SKAMANIA","Oa",1,0,NA,NA,NA,NA,NA,NA "SKAMANIA","Oi",4,1,NA,NA,NA,NA,NA,NA -"SKAMANIA","Oa",NA,1554,NA,NA,NA,NA,NA,NA "SKATE","A2",0,6,"l0YR","5",NA,"l0YR","4",NA "SKATE","B2lir",6,18,"l0YR","5","4","l0YR","4","3" -"SKATE","B22ir",18,99,"l0YR","5","8","7.5YR","5","8" +"SKATE","O1 and O2",9,0,NA,NA,NA,NA,NA,NA +"SKATE","B22ir",18,38,"l0YR","5","8","7.5YR","5","8" +"SKATE","2B2irb",38,99,"l0YR","6","6","l0YR","4","6" "SKATE","3Cl",99,124,NA,NA,NA,"2.5Y","4","4" -"SKATE","0l and 02",NA,NA,NA,NA,NA,NA,NA,NA -"SKATE","2B2irb",NA,99,"l0YR","6","6","l0YR","4","6" -"SKOOKUMHOUSE","0i",3,28,NA,NA,NA,NA,NA,NA +"SKIYOU","O1",4,0,NA,NA,NA,NA,NA,NA +"SKOOKER","Oi",5,0,NA,NA,NA,NA,NA,NA +"SKOOKUMHOUSE","Oi",3,0,NA,NA,NA,NA,NA,NA +"SKYKOMISH","Oa",8,0,NA,NA,NA,NA,NA,NA "SKYKOMISH","Oi",10,8,NA,NA,NA,NA,NA,NA -"SLY","0i",0,2,NA,NA,NA,NA,NA,NA -"SLY","0e",2,4,NA,NA,NA,NA,NA,NA -"SMACKOUT","0e",0,3,NA,NA,NA,NA,NA,NA "SNOHOMISH","Apl",0,18,"10YR","6","2","10YR","3","2" "SODACREEK","Oi",3,0,NA,NA,NA,NA,NA,NA "SOLO","Oe",5,0,NA,NA,NA,NA,NA,NA +"SORENSEN","Oa",3,0,NA,NA,NA,NA,NA,NA +"SORENSEN","Oi",28,3,NA,NA,NA,NA,NA,NA "SPANA","2Cl",74,91,"10YR","6","2","10YR","4","2" "SPIEDEN","Cl",91,122,"2.5Y","6","3","2.5Y","3","3" -"SPOKEL","0i",0,3,NA,NA,NA,NA,NA,NA -"SPOKEL","0e",3,5,NA,NA,NA,NA,NA,NA -"SPRINGSTEEN","Oa",5,5,NA,NA,NA,NA,NA,NA +"SPILYAY","Oi",3,0,NA,NA,NA,NA,NA,NA +"SPRINGSTEEN","Oa",5,0,NA,NA,NA,NA,NA,NA "SPRINGSTEEN","Oi",13,5,NA,NA,NA,NA,NA,NA -"SQUALICUM","A",0,3,"l0YR","5","3","l0YR","3","2" -"SQUALICUM","Bs1",3,30,"l0YR","7","6","l0YR","4","6" -"SQUALICUM","Oi",NA,NA,NA,NA,NA,NA,NA,NA -"SQUALICUM","Bs2",NA,30,"l0YR","7","6","l0YR","3","6" -"SQUALLY","Al",0,63,"7.5YR","5","4","7.5YR","3","3" -"SQUALLY","C",63,75,"l0YR","6","3","l0YR","4","3" -"SQUALLY","0l",NA,NA,NA,NA,NA,NA,NA,NA -"SQUALLY","B2",NA,63,"l0YR","6","6","5YR","3","4" -"SQUIRES","Oa",3,3,NA,NA,NA,NA,NA,NA +"SQUALICUM","A",0,8,"l0YR","5","3","l0YR","3","2" +"SQUALICUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"SQUALICUM","Bs1",8,43,"l0YR","7","6","l0YR","4","6" +"SQUALICUM","Bs2",43,76,"l0YR","7","6","l0YR","3","6" +"SQUALLY","Al",0,25,"7.5YR","5","4","7.5YR","3","3" +"SQUALLY","O1",3,0,NA,NA,NA,NA,NA,NA +"SQUALLY","B2",25,160,"l0YR","6","6","5YR","3","4" +"SQUALLY","C",160,190,"l0YR","6","3","l0YR","4","3" +"SQUIRES","Oa",3,0,NA,NA,NA,NA,NA,NA +"SQUIRES","Oi",5,3,NA,NA,NA,NA,NA,NA "ST. ELMO","Clca",25,76,"10YR","7","3",NA,NA,NA "ST. ELMO","A1",NA,25,"7.5YR","5","2",NA,NA,NA -"ST. MARTIN","0i",5,10,NA,NA,NA,NA,NA,NA +"ST. HELENS","Oe",3,0,NA,NA,NA,NA,NA,NA +"ST. MARTIN","Oi",5,0,NA,NA,NA,NA,NA,NA "STANDUP","A",3,13,"l0YR","6","2","l0YR","3","3" -"STANDUP","2Bw1",13,66,"l0YR","7","2","l0YR","5","3" +"STANDUP","2Bw1",13,48,"l0YR","7","2","l0YR","5","3" +"STANDUP","2Bw2",48,66,"l0YR","7","2","l0YR","6","3" "STANDUP","2C",66,155,"l0YR","7","2","l0YR","6","3" -"STANDUP","2Bw2",NA,66,"l0YR","7","2","l0YR","6","3" "STELLA","Oa",3,0,NA,NA,NA,NA,NA,NA -"STICES","0i",0,3,NA,NA,NA,NA,NA,NA -"STIEN","0i",0,3,NA,NA,NA,NA,NA,NA -"STIEN","0e",3,5,NA,NA,NA,NA,NA,NA -"STIMSON","01",5,15,NA,NA,NA,NA,NA,NA +"STIMSON","O1",5,0,NA,NA,NA,NA,NA,NA +"STRINGAM","Oi",1,0,NA,NA,NA,NA,NA,NA "STUMPP","Clsa",66,81,"2.5Y","5","1","2.5Y","4","1" -"SULOAF","0i",0,3,NA,NA,NA,NA,NA,NA "SUNSHINE","A1",NA,28,"7.5YR","3","1","1OYR","2","1" "SWEITING","Oi and Oe",5,0,NA,NA,NA,NA,NA,NA -"SWEM","0i",0,1,NA,NA,NA,NA,NA,NA -"SWEM","0e",1,4,NA,NA,NA,NA,NA,NA +"SWIFT","Oa",3,0,NA,NA,NA,NA,NA,NA "SWIFT","Oi",5,3,NA,NA,NA,NA,NA,NA -"SWIFTON","0i",0,3,NA,NA,NA,NA,NA,NA -"SWINOMISH","01",3,8,NA,NA,NA,NA,NA,NA -"TALLS","0i",0,3,NA,NA,NA,NA,NA,NA -"TAMELY","0i",0,3,NA,NA,NA,NA,NA,NA -"TARKIO","0i",0,5,NA,NA,NA,NA,NA,NA -"TECOLOTE","0i",0,3,NA,NA,NA,NA,NA,NA -"TEEWEE","0i",0,5,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 +"SWINOMISH","O1",3,0,NA,NA,NA,NA,NA,NA +"TABERNASH","O2",1,0,NA,NA,NA,NA,NA,NA +"TABERNASH","O1",3,1,NA,NA,NA,NA,NA,NA "TELEMON","Oi",3,0,NA,NA,NA,NA,NA,NA -"TENAS","0e",0,3,NA,NA,NA,NA,NA,NA +"TENERIFFE","Oa",5,0,NA,NA,NA,NA,NA,NA "TENERIFFE","Oi",8,5,NA,NA,NA,NA,NA,NA -"TEX","02",3,5,NA,NA,NA,NA,NA,NA -"TEX","01",5,3,NA,NA,NA,NA,NA,NA -"THETIS","0e",5,0,NA,NA,NA,NA,NA,NA -"THORNTON","02",3,5,NA,NA,NA,NA,NA,NA -"THORNTON","01",5,3,NA,NA,NA,NA,NA,NA +"TEX","O2",3,0,NA,NA,NA,NA,NA,NA +"TEX","O1",5,3,NA,NA,NA,NA,NA,NA +"THETIS","Oe",5,0,NA,NA,NA,NA,NA,NA +"THISTLEBURN","Oi",1,0,NA,NA,NA,NA,NA,NA +"THORNTON","O2",3,0,NA,NA,NA,NA,NA,NA +"THORNTON","O1",5,3,NA,NA,NA,NA,NA,NA "THRASH","Al",0,20,"7.5YR","5","4","7.5YR","4","4" +"THRASH","O2",3,0,NA,NA,NA,"l0YR","3","2" "THRASH","B2l",20,69,"7.5YR","5","6","7.5YR","4","6" -"THRASH","02",NA,1554,NA,NA,NA,"l0YR","3","2" -"THREETREES","0i",3,18,NA,NA,NA,NA,NA,NA +"THREETREES","Oi",3,0,NA,NA,NA,NA,NA,NA "TILLICUM","A",0,20,"l0YR","6","2","l0YR","4","3" -"TILLICUM","0e",5,20,NA,NA,NA,NA,NA,NA -"TILLICUM","Bw",20,61,"l0YR","6","2","l0YR","4","4" +"TILLICUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"TILLICUM","Bw",20,41,"l0YR","6","2","l0YR","4","4" +"TILLICUM","BC",41,61,"l0YR","6","3","l0YR","4","3" "TILLICUM","2C",61,107,"l0YR","6","3","l0YR","4","2" -"TILLICUM","2R",107,NA,NA,NA,NA,NA,NA,NA -"TILLICUM","BC",NA,61,"l0YR","6","3","l0YR","4","3" +"TIMBERLY","O1",1,0,NA,NA,NA,NA,NA,NA +"TIPTOP","Oi",1,0,NA,NA,NA,NA,NA,NA "TISCH","Ap",0,18,"l0YR","5","2","l0YR","2","2" -"TISCH","A3",18,66,"l0YR","5","2","l0YR","3","2" +"TISCH","A3",18,30,"l0YR","5","2","l0YR","3","2" +"TISCH","Cl",30,43,"l0YR","6","2","l0YR","3","2" +"TISCH","C2",43,66,"l0YR","7","2","l0YR","4","2" "TISCH","C3",66,71,"l0YR","7","3","l0YR","4","3" "TISCH","C4",71,140,"l0YR","5","2","l0YR","2","2" "TISCH","C5",140,165,NA,NA,NA,"l0YR","2",NA -"TISCH","Cl",NA,NA,"l0YR","6","2","l0YR","3","2" -"TISCH","C2",NA,66,"l0YR","7","2","l0YR","4","2" "TORCHLIGHT","Clca",10,20,"2.5Y","5","2","2.5Y","4","2" "TORSIDO","Clg",56,76,"10YR","6","2","10YR","5","2" -"TRADEDOLLAR","E",0,8,"l0YR","6",NA,"l0YR","4",NA +"TRADEDOLLAR","E",0,3,"l0YR","6",NA,"l0YR","4",NA +"TRADEDOLLAR","Bhs",3,10,"l0YR","6","3","l0YR","2","2" +"TRADEDOLLAR","Oe",8,0,NA,NA,NA,NA,NA,NA "TRADEDOLLAR","2Eb",132,140,"l0YR","6",NA,"l0YR","4","2" "TRADEDOLLAR","2Bwb",140,152,"l0YR","6",NA,"l0YR","4","2" -"TRADEDOLLAR","Bhs",NA,10,"l0YR","6","3","l0YR","2","2" -"TRADEDOLLAR","Bs3",NA,56,"5YR","5","6","5YR","4","6" -"TREEN","0i",0,5,NA,NA,NA,NA,NA,NA +"TRAPPER","O",1,11,"lOYR","3","1",NA,NA,NA "TREON","A",0,18,"10YR","5","3","l0YR","3","3" "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 -"TRUEFISSURE","0a",3,8,NA,NA,NA,NA,NA,NA -"TUCKERVILLE","0i",0,8,NA,NA,NA,NA,NA,NA +"TRITON","O2",1,0,NA,NA,NA,"5YR","2","2" +"TRITON","O1",4,1,NA,NA,NA,NA,NA,NA "TUKEY","Bwl",13,28,"10YR","6","2","10YR","4","3" "TUKWILA","Oal",0,25,"10YR","4","1","10YR","2","1" -"TURNERVILLE","0i",0,3,NA,NA,NA,NA,NA,NA -"TURNERVILLE","0e",3,8,NA,NA,NA,NA,NA,NA +"TUSIP","O",3,0,NA,NA,NA,NA,NA,NA +"TWINSI","Oa",5,0,NA,NA,NA,NA,NA,NA "TWINSI","Oi",20,5,NA,NA,NA,NA,NA,NA -"ULRICHER","0i",0,3,NA,NA,NA,NA,NA,NA -"UMATILLA","0i",0,5,NA,NA,NA,NA,NA,NA "UNSON","Clca",38,61,"10YR","7","2","10YR","5","2" -"UPSATA","0i",0,5,NA,NA,NA,NA,NA,NA -"VABUS","0i",10,20,NA,NA,NA,NA,NA,NA +"UPTMOR","Oe",1,0,NA,NA,NA,NA,NA,NA +"VABUS","Oi",10,0,NA,NA,NA,NA,NA,NA "VAILTON","Al",0,23,"l0YR","5","3","l0YR","3","3" -"VAILTON","A2",23,71,"l0YR","5","3","l0YR","3","3" +"VAILTON","Oe",3,1,NA,NA,NA,NA,NA,NA +"VAILTON","A2",23,46,"l0YR","5","3","l0YR","3","3" +"VAILTON","Bwl",46,71,"l0YR","6","4","l0YR","4","4" "VAILTON","Bw2",71,102,"l0YR","6","4","l0YR","4","4" "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,"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 +"VANEPPS","Oe",1,0,NA,NA,NA,NA,NA,NA +"VANZANDT","Oi",3,0,NA,NA,NA,NA,NA,NA +"VARELUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"VERLOT","O1",4,0,NA,NA,NA,NA,NA,NA +"VERNONIA","O",3,0,NA,NA,NA,NA,NA,NA "VILLA GROVE","Clca",86,112,"10YR","6","3","10YR","4","3" "VIOLA","Oi",5,0,NA,NA,NA,NA,NA,NA -"VOIGHT","0a",18,25,NA,NA,NA,NA,NA,NA -"VOIGHT","0i",25,18,NA,NA,NA,NA,NA,NA -"VOLPERIE","0i",3,18,NA,NA,NA,NA,NA,NA -"WADELL","01",3,5,NA,NA,NA,NA,NA,NA -"WADELL","02",3,28,NA,NA,NA,NA,NA,NA -"WAGONTOWN","0i",0,3,NA,NA,NA,NA,NA,NA +"VOIGHT","Oa",18,0,NA,NA,NA,NA,NA,NA +"VOIGHT","Oi",25,18,NA,NA,NA,NA,NA,NA +"VOLPERIE","Oi",3,0,NA,NA,NA,NA,NA,NA +"WADELL","O2",3,0,NA,NA,NA,NA,NA,NA "WAKAMO","Oi",3,0,NA,NA,NA,NA,NA,NA -"WALDBILLIG","0i",0,5,NA,NA,NA,NA,NA,NA "WALDEN","Clca",56,89,"5Y","8","2","5Y","7","2" -"WALVILLE","All",0,5,"7.5YR","5","4","7.5YR","3","2" -"WALVILLE","0l and 02",5,114,NA,NA,NA,NA,NA,NA -"WALVILLE","Al2",NA,NA,"7.5YR","5","4","7.5YR","3","4" -"WALVILLE","B2",NA,114,"7.5YR","6","4","7.5YR","4","4" -"WAPAL","0i",0,4,NA,NA,NA,NA,NA,NA +"WALVILLE","All",0,30,"7.5YR","5","4","7.5YR","3","2" +"WALVILLE","O1 and O2",5,0,NA,NA,NA,NA,NA,NA +"WALVILLE","Al2",30,43,"7.5YR","5","4","7.5YR","3","4" "WAPATO","Bgl",41,56,"10YR","5","2","10YR","4","2" -"WAPSHILLA","0i",0,1,NA,NA,NA,NA,NA,NA -"WARRENTON","0",8,28,NA,NA,NA,"N","2",NA +"WARRENTON","O",8,0,NA,NA,NA,"N","2",NA +"WASHOUGAL","O1",3,0,NA,NA,NA,NA,NA,NA "WEDGEMONT","Bsl",5,51,"10YR","7","3","10YR","5","3" "WELCOME","E",0,5,NA,NA,NA,"l0YR","4","3" -"WELCOME","Oa",5,5,NA,NA,NA,NA,NA,NA +"WELCOME","Oa",5,0,NA,NA,NA,NA,NA,NA "WELCOME","Bs1",5,15,NA,NA,NA,"l0YR","3","4" "WELCOME","Oi",8,5,NA,NA,NA,NA,NA,NA -"WELCOME","Bs2",15,69,NA,NA,NA,"l0YR","3","6" -"WELCOME","2Cr",127,NA,NA,NA,NA,NA,NA,NA -"WELCOME","C1",NA,69,NA,NA,NA,"2.5Y","5","6" +"WELCOME","Bs2",15,48,NA,NA,NA,"l0YR","3","6" "WELLSBENCH","Btl",15,36,"10YR","4","2","10YR","3","3" -"WEMINUCHE","0i",0,5,NA,NA,NA,NA,NA,NA -"WESSEL","01 and 02",5,0,NA,NA,NA,NA,NA,NA +"WESSEL","O1 and O2",5,0,NA,NA,NA,NA,NA,NA +"WHETSTONE","O2",5,0,NA,NA,NA,NA,NA,NA +"WHETSTONE","O1",10,5,NA,NA,NA,NA,NA,NA +"WHITEHORSE","Oi",3,0,NA,NA,NA,NA,NA,NA "WHITESON","2Cgl",38,61,"10YR","6","1","10YR","5","1" -"WHITESTONE","0i",0,3,NA,NA,NA,NA,NA,NA "WILKESON","Al",0,10,"l0YR","5","2","l0YR","3","2" -"WILKESON","A2",10,69,"l0YR","5","3","l0YR","3","3" +"WILKESON","A2",10,25,"l0YR","5","3","l0YR","3","3" +"WILKESON","BA",25,46,"l0YR","5","3","l0YR","4","3" +"WILKESON","Bt1",46,69,"l0YR","6","3","l0YR","4","4" "WILKESON","Bt2",69,91,"l0YR","6","4","l0YR","5","4" "WILKESON","Bt3",91,124,"l0YR","6","3","l0YR","4","4" "WILKESON","Bt4",124,163,"l0YR","6","6","l0YR","5","4" -"WILKESON","BA",NA,NA,"l0YR","5","3","l0YR","4","3" -"WILKESON","Bt1",NA,69,"l0YR","6","3","l0YR","4","4" -"WISHARD","0i",0,1,NA,NA,NA,NA,NA,NA -"WISHBONE","0i",0,3,NA,NA,NA,NA,NA,NA -"WISHBONE","0e",3,5,NA,NA,NA,NA,NA,NA -"WISHKAH","01",13,15,NA,NA,NA,NA,NA,NA -"WOODROCK","0i",0,5,NA,NA,NA,NA,NA,NA -"WOODROCK","0e",5,8,NA,NA,NA,NA,NA,NA +"WILLABY","O2",1,0,NA,NA,NA,NA,NA,NA +"WINOPEE","O2",4,0,NA,NA,NA,NA,NA,NA +"WINOPEE","O1",5,4,NA,NA,NA,NA,NA,NA +"WISHKAH","O1",13,0,NA,NA,NA,NA,NA,NA +"WOLLARD","Oi",10,0,NA,NA,NA,NA,NA,NA "WOODSIDE","Ao",3,0,NA,NA,NA,"10YR","3","1" "WORMSER","Clca",48,61,"10YR","7","3","10YR","6","3" "WYANT","Oe",5,0,NA,NA,NA,NA,NA,NA +"XANA","Oe",8,0,NA,NA,NA,NA,NA,NA +"XANADU","Oi",8,0,NA,NA,NA,NA,NA,NA "YAHNE","A",0,20,"l0YR","6","3","l0YR","3","2" -"YAHNE","2AE",20,84,"l0YR","6","3","l0YR","4","3" +"YAHNE","Oi",1,0,NA,NA,NA,NA,NA,NA +"YAHNE","2AE",20,41,"l0YR","6","3","l0YR","4","3" +"YAHNE","2Bt1",41,84,"l0YR","5","4","l0YR","3","3" "YAHNE","2Bt2",84,152,"l0YR","5","4","l0YR","3","3" -"YAHNE","2Bt1",NA,84,"l0YR","5","4","l0YR","3","3" "YANKEE","Al",0,10,"10YR","4","2","10YR","3","2" -"YOREL","0i",5,8,NA,NA,NA,NA,NA,NA +"YAWKOLA","Oi",3,0,NA,NA,NA,NA,NA,NA +"YOREL","Oi",5,0,NA,NA,NA,NA,NA,NA "ZEEKA","Bwl",30,51,"10YR","6","3","10YR","4","3" +"ZYMER","Oi",8,0,NA,NA,NA,NA,NA,NA +"ZYNBAR","Oi",5,0,NA,NA,NA,NA,NA,NA "ZYNBAR","Bwl",33,114,"10YR","7","4","10YR","4","4" -"ZYZYL","01",5,18,NA,NA,NA,NA,NA,NA +"ZYZYL","O1",5,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/RO/bozeman-sections.csv b/inst/extdata/OSD-error-reporting/RO/bozeman-sections.csv index bcb1ebce27..b5cbdafb02 100644 --- a/inst/extdata/OSD-error-reporting/RO/bozeman-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/bozeman-sections.csv @@ -10,7 +10,6 @@ "ALLENTINE","DUPLICATION OF HEADERS","[SAR: 2 to 10]","bozeman, mt" "ALONA","DUPLICATION OF HEADERS","[SAR: 2 to 10]","bozeman, mt" "ALZADA","DUPLICATION OF HEADERS","[SAR: 0 to 13]","bozeman, mt" -"AMPAD","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "AMSTERDAM","DUPLICATION OF HEADERS","[NOTE: This horizon contains volcanic ash material or is influenced by volcanic ash.]","bozeman, mt" "ANAMAC","DUPLICATION OF HEADERS","[SAR: 13 to 40]","bozeman, mt" "ANSARI","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" @@ -23,14 +22,14 @@ "AWITAVA","DUPLICATION OF HEADERS","[SAR: 0 to 2]","bozeman, mt" "BALAAM","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "BALDRIDGE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"BANDID","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" +"BANDID","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "BARLOW","DUPLICATION OF HEADERS","[RANGE IN CHARACTERISTICS: The mean annual soil temperature ranges from 40 degrees to 47 degrees F. The average summer soil temperature is less than 47 degrees F. with an 0 horizon. The soils have an udic moisture regime. The driest period is in the summer but the soils are dry for less than 45 consecutive days. Depth to bedrock is 60 inches or more. Depth to stony glacial till ranges from 15 to 30 inches. Thickness of the solum ranges from 15 to 24 inches. The 10- to 40-inch control section has less than an average of 10 percent clay and has 20 to 30 percent sand coarser than very fine sand.,TYPE LOCATION: Clackamas County, Oregon; 200 feet west of the Timberline Highway; NE1/4 NE1/4 section 18, T.3S., R.9E. W.M.]","bozeman, mt" "BARLOW","DUPLICATE STANDARD SECTIONS","[RANGE IN CHARACTERISTICS,TYPE LOCATION]","bozeman, mt" -"BARLOW","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "BECKTON","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "BENDERLY","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "BICKERDYKE","DUPLICATION OF HEADERS","[SAR: 15 to 30]","bozeman, mt" "BICKETT","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" +"BLACKSPAR","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "BLACKSPOT","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "BLUERIM","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "BOLES","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" @@ -49,21 +48,20 @@ "CARDWELL","DUPLICATION OF HEADERS","[SAR: 0 to 8 (saline phase)]","bozeman, mt" "CAREY LAKE","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "CATHEEN","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" -"CAYUSE","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" +"CAYUSE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "CHAMBEAM","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "CHICANE","SECTION HEADINGS",NA,"bozeman, mt" -"CHRISTOFF","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" +"CHRISTOFF","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "CHRISTY","SECTION HEADINGS",NA,"bozeman, mt" +"CHRISTY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "CHUCKANUT","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "CLEMS","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "CLOVERCREEK","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "CLOWERS","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "CRACKERCREEK","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "DAMORE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"DAWNY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "DERRINGER","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" -"DICK","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"DOMINGUEZ","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" +"DOMINGUEZ","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "DORS","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "DOUGHSPON","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "DRYFORK","DUPLICATION OF HEADERS","[SAR: 13 to 40]","bozeman, mt" @@ -75,16 +73,12 @@ "ELLOAM","DUPLICATION OF HEADERS","[SAR: 13 to 25]","bozeman, mt" "ELMO","DUPLICATION OF HEADERS","[SAR: 45 to 100]","bozeman, mt" "EMPEDRADO","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"FARDRAW","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "FARROT","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "FIELD","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "FISHTRAP","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"FIVES","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"FLANNERY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "FLATCREEK","DUPLICATION OF HEADERS","[SAR: 4 to 13]","bozeman, mt" "FORNOR","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "FOSS","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"FREELS","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "FRIEDMAN","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "FURSHUR","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "GALBRETH","DUPLICATION OF HEADERS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE: Denver, Colorado]","bozeman, mt" @@ -102,7 +96,6 @@ "GOODINGTON","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "GOODRICH","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "GRANDMESA","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"GRASSVALLEY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "GREENSCOMBE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "GREYBULL","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "GROVE","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" @@ -115,7 +108,6 @@ "HARLEM","DUPLICATION OF HEADERS","[SAR: 0 to 30; saline phase is 13 to 30]","bozeman, mt" "HARSTON","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "HAVRE","DUPLICATION OF HEADERS","[SAR: 0 to 13]","bozeman, mt" -"HEFLIN","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "HELMER","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "HETZ","DUPLICATION OF HEADERS","[SAR: 0 to 5]","bozeman, mt" "HOOGDAL","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" @@ -141,17 +133,14 @@ "KOBASE","DUPLICATION OF HEADERS","[SAR: 0 to 10,SAR: 0 to 4]","bozeman, mt" "KOMONDOR","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "KOONICH","SECTION HEADINGS",NA,"bozeman, mt" -"KOOTENAI","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "KUCU","DUPLICATION OF HEADERS","[SAR: 0 to 5]","bozeman, mt" -"KUNATON","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" +"KUNATON","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "LA GRANDE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"LABUCK","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "LADD","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" -"LAGITOS","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" +"LAGITOS","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "LAHRITY","SECTION HEADINGS",NA,"bozeman, mt" "LASAUSES","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "LAURENTZEN","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"LEMONEX","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "LITTLE HORN","SECTION HEADINGS",NA,"bozeman, mt" "LOLITE","DUPLICATION OF HEADERS","[REMARKS:]","bozeman, mt" "LOLITE","DUPLICATE STANDARD SECTIONS","[REMARKS]","bozeman, mt" @@ -163,11 +152,8 @@ "MARACK","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "MARCOTT","DUPLICATION OF HEADERS","[SAR: 0 to 20]","bozeman, mt" "MARIAS","DUPLICATION OF HEADERS","[SAR: 1 to 4]","bozeman, mt" -"MARTELLA","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "MARVAN","DUPLICATION OF HEADERS","[SAR: 13 to 38]","bozeman, mt" "MAUDE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"MCCREE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"MESA","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "MOSROC","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "MOWICH","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "MOZEN","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" @@ -176,15 +162,13 @@ "NELDORE","DUPLICATION OF HEADERS","[SAR: 15 to 25]","bozeman, mt" "NIBBS","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "NORTE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" +"NORWAY FLAT","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "OBADIA","DUPLICATION OF HEADERS","[SAR: 15 to 20]","bozeman, mt" "OBURN","DUPLICATION OF HEADERS","[SAR: 13 to 30]","bozeman, mt" -"OJIBWAY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "OLAND","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "ORINOCO","DUPLICATION OF HEADERS","[SAR: 15 to 30]","bozeman, mt" -"ORWIG","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "OVMESA","DUPLICATION OF HEADERS","[SAR: 1 to 10]","bozeman, mt" "PHILLIPS","DUPLICATION OF HEADERS","[SAR: 0 to 13]","bozeman, mt" -"PINOTY","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "PODEN","SECTION HEADINGS",NA,"bozeman, mt" "POKEMAN","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "PORTNEUF","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" @@ -197,7 +181,6 @@ "RHONE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "RIDLEY","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "ROANHIDE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" -"ROARING","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "ROBINETTE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "ROCKYBAR","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "RONAN","DUPLICATION OF HEADERS","[SAR: 2 to 8]","bozeman, mt" @@ -205,40 +188,37 @@ "ROUND BUTTE","DUPLICATION OF HEADERS","[SAR: 13 to 60]","bozeman, mt" "SAGECREEK","DUPLICATION OF HEADERS","[ESP: 0 to 15]","bozeman, mt" "SAPEHA","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"SASKA","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SAWATCH","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SAYPO","DUPLICATION OF HEADERS","[SAR: 0 to 13]","bozeman, mt" "SCHOOLHOUSE","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" -"SCRABBLERS","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SEBREE","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "SELOW","DUPLICATION OF HEADERS","[SAR: 13 to 40]","bozeman, mt" "SHANGLAND","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" -"SHINEBERGER","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SIMCOE","SECTION HEADINGS",NA,"bozeman, mt" "SINKER","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" -"SKALAN","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"SKYKOMISH","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SLIGTING","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "SMELTER","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "SNAKE","SECTION HEADINGS",NA,"bozeman, mt" +"SNAKE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SNAKER","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "SNELLBY","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" -"SODACREEK","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SPHINX","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "STAKE","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "STANFLOW","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "STANROD","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "STAPLETON","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" -"STOVEPIPE","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" +"STOVEPIPE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "STREVELL","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "SUBWELL","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "SUMPLEY","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" "SWEETWEED","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "TATERPA","MULTILINE TYPICAL PEDON","[number of multilines=6]","bozeman, mt" "TENEX","SECTION HEADINGS",NA,"bozeman, mt" +"TENEX","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "TENMILE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "TENORIO","SECTION HEADINGS",NA,"bozeman, mt" "TEW","SECTION HEADINGS",NA,"bozeman, mt" +"TEW","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "TEX","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "TINE","DUPLICATE STANDARD SECTIONS","[USE AND VEGETATION]","bozeman, mt" "TINE","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" @@ -246,14 +226,12 @@ "TOUTLE","MULTILINE TYPICAL PEDON","[number of multilines=2]","bozeman, mt" "TRACYLEE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "TRAPPER","SECTION HEADINGS",NA,"bozeman, mt" -"TROUT CREEK","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "TRUESDALE","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" "TUGGLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "TUSCOR","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "VABEM","DUPLICATION OF HEADERS","[ESP: 0 to 15 percent]","bozeman, mt" "VANDA","DUPLICATION OF HEADERS","[SAR: 13 to 30]","bozeman, mt" "VANDERHOFF","MULTILINE TYPICAL PEDON","[number of multilines=3]","bozeman, mt" -"VANZANDT","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "VASQUEZ","DUPLICATION OF HEADERS","[DRAINAGE AND PERMEABILITY: Poorly drained; very slow runoff or ponded; moderate permeability. These soils have a fluctuating high water table.]","bozeman, mt" "VASQUEZ","DUPLICATE STANDARD SECTIONS","[DRAINAGE AND PERMEABILITY,USE AND VEGETATION]","bozeman, mt" "VASQUEZ","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" @@ -267,6 +245,7 @@ "WEINGART","DUPLICATION OF HEADERS","[SAR: 13 to 30]","bozeman, mt" "WELCOME","MULTILINE TYPICAL PEDON","[number of multilines=7]","bozeman, mt" "WHITEARTH","DUPLICATION OF HEADERS","[SAR: 20 to 60]","bozeman, mt" +"WILLAKENZIE","MULTILINE TYPICAL PEDON","[number of multilines=1]","bozeman, mt" "WILLOW CREEK","SECTION HEADINGS",NA,"bozeman, mt" "WINGDALE","MULTILINE TYPICAL PEDON","[number of multilines=5]","bozeman, mt" "WINRIDGE","MULTILINE TYPICAL PEDON","[number of multilines=4]","bozeman, mt" diff --git a/inst/extdata/OSD-error-reporting/RO/bozeman-series.csv b/inst/extdata/OSD-error-reporting/RO/bozeman-series.csv index bd66b87f46..7b449cec36 100644 --- a/inst/extdata/OSD-error-reporting/RO/bozeman-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/bozeman-series.csv @@ -1,258 +1,204 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "MITCHELL",458508,TRUE,2007,FALSE,TRUE -"ANGOSTURA",289383,TRUE,1999,FALSE,TRUE -"NEVINE",284950,FALSE,2005,TRUE,TRUE -"NEWBELL",253538,FALSE,2009,FALSE,TRUE -"SKALAN",243062,FALSE,2005,TRUE,FALSE -"AITS",240390,TRUE,2004,FALSE,TRUE -"PHILLCHER",237831,FALSE,2008,FALSE,TRUE -"WALDBILLIG",209642,FALSE,2008,FALSE,TRUE -"CATAMOUNT",175693,FALSE,2010,FALSE,TRUE -"CINEBAR",172365,TRUE,2004,TRUE,TRUE -"JERU",166545,FALSE,2005,FALSE,TRUE -"LEGAULT",164002,FALSE,2010,FALSE,TRUE -"KLUTCH",144478,FALSE,2022,FALSE,TRUE +"CINEBAR",172365,TRUE,2004,TRUE,FALSE "BUCKPEAK",128741,FALSE,2002,TRUE,FALSE "SHERLOCK",126647,FALSE,2005,FALSE,TRUE "BROADAX",123234,FALSE,1997,FALSE,TRUE "RATON",121996,FALSE,2007,FALSE,TRUE -"PEND OREILLE",118030,FALSE,2005,FALSE,TRUE "HUCKLE",117201,FALSE,2013,FALSE,TRUE "TREON",113774,FALSE,1998,FALSE,TRUE -"MESA",112210,TRUE,2017,TRUE,FALSE "HESPER",112053,FALSE,1998,FALSE,TRUE +"STRINGAM",110650,FALSE,2005,TRUE,FALSE "GERMANY",105249,FALSE,1998,FALSE,TRUE -"HEMCROSS",99571,FALSE,1997,FALSE,TRUE -"PETTY",99463,FALSE,2008,FALSE,TRUE -"RINEARSON",99362,FALSE,2011,TRUE,TRUE -"VASSAR",97604,TRUE,2012,FALSE,TRUE -"WAPAL",96178,FALSE,2005,FALSE,TRUE -"LAGALL",81616,FALSE,2005,FALSE,TRUE -"LEADVILLE",80960,FALSE,1999,FALSE,TRUE -"GRENADIER",78512,FALSE,1999,FALSE,TRUE +"RINEARSON",99362,FALSE,2011,TRUE,FALSE "LAMEDEER",77017,FALSE,1998,TRUE,FALSE "HAZELDELL",74306,FALSE,1998,TRUE,FALSE -"SHELTON",73399,FALSE,2004,TRUE,TRUE +"SHELTON",73399,FALSE,2004,TRUE,FALSE "GROVE",72422,FALSE,1988,TRUE,FALSE -"TROUTVILLE",71189,FALSE,1999,FALSE,TRUE -"DRYADINE",70786,FALSE,2008,FALSE,TRUE -"PRATHER",70462,FALSE,2002,TRUE,FALSE -"BEESKOVE",66770,FALSE,2004,FALSE,TRUE -"KATULA",66072,FALSE,1999,TRUE,TRUE -"MOHAGGIN",62654,FALSE,2005,FALSE,TRUE +"KATULA",66072,FALSE,1999,TRUE,FALSE "NELSON",62602,FALSE,1998,FALSE,TRUE "ELWELL",62083,FALSE,1999,TRUE,TRUE "SAN ARCACIO",61689,FALSE,2003,FALSE,TRUE -"SHARROTT",60922,FALSE,2008,FALSE,TRUE "BAUMGARD",60823,FALSE,2002,TRUE,FALSE "WASHOUGAL",56846,FALSE,1998,TRUE,FALSE -"OAKES",56506,FALSE,2004,TRUE,TRUE -"ELKNER",55265,FALSE,2008,FALSE,TRUE +"OAKES",56506,FALSE,2004,TRUE,FALSE +"OLYIC",56170,FALSE,1998,TRUE,FALSE "CATTCREEK",53654,FALSE,1998,TRUE,FALSE "CAMBARGE",53601,FALSE,1999,FALSE,TRUE "BACONA",52506,FALSE,1998,TRUE,FALSE +"LE BAR",51747,FALSE,2000,TRUE,FALSE "WAPATO",51561,FALSE,1998,FALSE,TRUE "ZYNBAR",51255,TRUE,1998,TRUE,TRUE -"BATEMAN",50535,FALSE,2002,TRUE,TRUE +"BATEMAN",50535,FALSE,2002,TRUE,FALSE "HOODSPORT",48613,FALSE,2004,TRUE,FALSE -"KOOTENAI",48097,FALSE,2002,TRUE,FALSE "KITSAP",47920,TRUE,2018,FALSE,TRUE -"MACMEAL",46940,FALSE,1997,TRUE,TRUE -"HUN",46882,FALSE,2005,FALSE,TRUE -"CLOQUATO",45936,FALSE,2000,TRUE,TRUE -"UPSATA",45466,FALSE,2008,FALSE,TRUE +"MACMEAL",46940,FALSE,1997,TRUE,FALSE +"VANZANDT",46159,FALSE,2004,TRUE,FALSE +"CLOQUATO",45936,FALSE,2000,FALSE,TRUE "REHFIELD",44625,FALSE,2002,FALSE,TRUE "KALEETAN",43462,FALSE,2002,TRUE,FALSE -"WOODROCK",43062,FALSE,2005,FALSE,TRUE -"VABUS",42442,FALSE,2001,TRUE,TRUE +"VABUS",42442,FALSE,2001,TRUE,FALSE "EMBLEM",42294,TRUE,1999,FALSE,TRUE "GRANATH",42192,FALSE,1999,FALSE,TRUE "NORTHSTAR",42149,FALSE,2005,FALSE,TRUE -"PUGET",41255,TRUE,2000,TRUE,TRUE +"PUGET",41255,TRUE,2000,FALSE,TRUE "HOWASH",40881,FALSE,1998,TRUE,FALSE "LITTLESALMON",39568,FALSE,2006,FALSE,TRUE "PLATORO",38487,FALSE,1999,FALSE,TRUE -"SCRABBLERS",37521,FALSE,2011,TRUE,TRUE "BADWATER",37314,FALSE,2004,FALSE,TRUE "PANIOGUE",37184,FALSE,2001,FALSE,TRUE -"JUMPSTART",36998,FALSE,2005,FALSE,TRUE -"UMATILLA",35910,FALSE,2005,FALSE,TRUE "BOISTFORT",35632,TRUE,1999,FALSE,TRUE "NEWAUKUM",35284,FALSE,2004,TRUE,TRUE "SWIFT",34988,FALSE,1998,TRUE,FALSE -"PINHEAD",34928,FALSE,1998,FALSE,TRUE -"TELCHER",34565,FALSE,2005,FALSE,TRUE +"RIDGE",34858,FALSE,1998,TRUE,FALSE "BLETHEN",33761,FALSE,2004,TRUE,TRUE -"CARIBOURIDGE",33639,FALSE,2004,FALSE,TRUE -"TURNERVILLE",33619,FALSE,2005,FALSE,TRUE "BORDEAUX",32625,FALSE,2004,FALSE,TRUE -"TREEN",32525,FALSE,2004,FALSE,TRUE -"TECOLOTE",31805,FALSE,2007,FALSE,TRUE -"WILKESON",31147,FALSE,1998,TRUE,TRUE -"MARTELLA",30519,FALSE,2005,TRUE,FALSE +"KINDY",31297,FALSE,2001,TRUE,FALSE +"LAVENTANA",31178,FALSE,1999,TRUE,FALSE +"WILKESON",31147,FALSE,1998,FALSE,TRUE "RAUGHT",30371,FALSE,1998,TRUE,TRUE -"SCAR",30338,FALSE,2005,TRUE,TRUE +"SCAR",30338,FALSE,2005,FALSE,TRUE "EGYPTCREEK",30267,FALSE,2013,TRUE,FALSE "PARLIN",30042,FALSE,1999,TRUE,TRUE +"NAGROM",29955,FALSE,2001,TRUE,FALSE "PUYALLUP",29820,TRUE,2012,FALSE,TRUE -"NANAMKIN",29112,FALSE,2005,FALSE,TRUE -"TROUT CREEK",29091,FALSE,2009,TRUE,FALSE "HEHE",28532,FALSE,1998,TRUE,FALSE -"ASHCROFT",28291,FALSE,2022,FALSE,TRUE "CISPUS",28066,FALSE,2004,TRUE,TRUE -"RALEIGH",28000,FALSE,2010,FALSE,TRUE -"TEX",27495,FALSE,1999,TRUE,TRUE -"RINKER",27399,FALSE,2004,TRUE,TRUE +"SINCLAIR",27996,FALSE,2004,TRUE,FALSE +"TEX",27495,FALSE,1999,TRUE,FALSE +"RINKER",27399,FALSE,2004,TRUE,FALSE "SIMNASHO",27364,FALSE,2004,TRUE,FALSE "LASSEL",27261,FALSE,1999,FALSE,TRUE +"SASKA",26973,FALSE,2001,TRUE,FALSE "CRACKERCREEK",26957,FALSE,2004,FALSE,TRUE -"FLATSTONE",26920,FALSE,2004,FALSE,TRUE -"MONTBORNE",26830,FALSE,2003,TRUE,TRUE +"MONTBORNE",26830,FALSE,2003,TRUE,FALSE "HALL RANCH",26588,FALSE,2004,TRUE,FALSE -"QUIETUS",26430,FALSE,2005,FALSE,TRUE -"SULOAF",26229,FALSE,2005,FALSE,TRUE "MELHORN",26190,FALSE,2013,TRUE,FALSE "WORMSER",25802,FALSE,1997,FALSE,TRUE -"JIMLAKE",25740,FALSE,2008,FALSE,TRUE "BROADUS",25561,FALSE,1998,TRUE,FALSE "SKYKOMISH",25475,FALSE,1994,TRUE,FALSE +"GAMBLER",25259,FALSE,1999,TRUE,FALSE "MACKATIE",25204,FALSE,1998,TRUE,FALSE "YANKEE",24933,FALSE,1999,FALSE,TRUE -"RISWOLD",24658,FALSE,2005,FALSE,TRUE "DOMELL",24610,FALSE,2002,TRUE,TRUE "VAN DUSEN",24546,FALSE,1999,FALSE,TRUE "SARATON",24276,FALSE,1999,TRUE,TRUE -"SWEM",24219,FALSE,2012,FALSE,TRUE -"OLEO",24146,FALSE,2005,FALSE,TRUE "PIPP",23914,FALSE,1998,TRUE,FALSE "SKAGIT",23491,FALSE,2005,FALSE,TRUE -"MACFARLANE",23177,FALSE,2005,FALSE,TRUE "FELTNER",23011,FALSE,1999,FALSE,TRUE -"VERNONIA",22320,FALSE,2002,TRUE,TRUE +"VERNONIA",22320,FALSE,2002,TRUE,FALSE "TORCHLIGHT",22319,FALSE,1997,FALSE,TRUE "BELLICUM",22307,FALSE,1998,TRUE,TRUE "JACKNIFE",22256,FALSE,1997,FALSE,TRUE -"SLY",22092,FALSE,2005,FALSE,TRUE "HOFFSTADT",21980,FALSE,2003,TRUE,FALSE -"COEROCK",21863,FALSE,2004,FALSE,TRUE -"KEGEL",21186,FALSE,2005,FALSE,TRUE "HIGHCAMP",21011,FALSE,2000,TRUE,FALSE -"LACY",20922,FALSE,2009,FALSE,TRUE -"PALMICH",20891,FALSE,2001,TRUE,TRUE +"PALMICH",20891,FALSE,2001,FALSE,TRUE "REDCLOUD",20637,FALSE,1999,TRUE,TRUE "ALSTONY",20401,FALSE,2001,TRUE,FALSE "BULL RUN",20276,FALSE,1998,TRUE,FALSE "OLEQUA",19994,FALSE,2002,TRUE,FALSE -"SHINEBERGER",19730,FALSE,2012,TRUE,FALSE -"SKOOKUMHOUSE",19644,FALSE,1998,TRUE,TRUE +"SKOOKUMHOUSE",19644,FALSE,1998,TRUE,FALSE "CINNAMON",19519,FALSE,1998,TRUE,FALSE +"CLE ELUM",19515,FALSE,2002,TRUE,FALSE "RANDMAN",19474,FALSE,2003,TRUE,TRUE -"FERNHAVEN",19238,FALSE,2002,TRUE,TRUE -"LOLOPEAK",19087,FALSE,2008,FALSE,TRUE +"NARGAR",19378,FALSE,1994,TRUE,FALSE +"FERNHAVEN",19238,FALSE,2002,TRUE,FALSE "BEIGLE",19040,FALSE,2002,TRUE,FALSE "SQUALICUM",18692,FALSE,2002,TRUE,TRUE -"SWIFTON",18552,FALSE,2005,FALSE,TRUE +"OGARTY",18625,FALSE,2004,TRUE,FALSE "VILLA GROVE",18542,FALSE,1999,FALSE,TRUE "NISQUALLY",18478,FALSE,2012,FALSE,TRUE -"STIEN",18422,FALSE,2005,FALSE,TRUE -"SEMIAHMOO",18345,TRUE,1999,FALSE,TRUE -"KIEHL",18267,FALSE,2005,FALSE,TRUE +"ORWIG",18248,FALSE,2005,TRUE,FALSE "VAILTON",18199,FALSE,2002,TRUE,TRUE "TORSIDO",18149,FALSE,2003,TRUE,TRUE "XANADU",17983,FALSE,1997,TRUE,FALSE "FLYCREEK",17974,FALSE,2004,FALSE,TRUE -"BOBTAIL",17832,FALSE,2010,TRUE,TRUE -"ZYZYL",17826,FALSE,1999,TRUE,TRUE +"BOBTAIL",17832,FALSE,2010,TRUE,FALSE +"ZYZYL",17826,FALSE,1999,TRUE,FALSE "CLOVERLAND",17673,FALSE,2013,TRUE,FALSE -"NORDICOL",17668,FALSE,2002,FALSE,TRUE -"MCCREE",17336,FALSE,2005,TRUE,FALSE -"ROXER",17252,FALSE,2003,FALSE,TRUE +"TRAPPER",17652,FALSE,2005,FALSE,TRUE +"WOLLARD",17107,FALSE,2004,TRUE,FALSE "SAUVOLA",16975,FALSE,2002,TRUE,TRUE "KUTCHER",16834,FALSE,2004,TRUE,FALSE "PIERIAN",16769,FALSE,1999,TRUE,TRUE -"PIKADEN",16464,FALSE,2008,FALSE,TRUE -"GUEMES",16428,FALSE,1997,TRUE,TRUE -"PERFA",16314,FALSE,2008,FALSE,TRUE +"SORENSEN",16600,FALSE,2002,TRUE,FALSE +"GUEMES",16428,FALSE,1997,TRUE,FALSE "NIMS",16078,FALSE,2002,FALSE,TRUE -"TEEWEE",15989,FALSE,2002,FALSE,TRUE -"SCOTTIES",15899,FALSE,2001,TRUE,TRUE -"HAZELCAMP",15833,FALSE,1998,TRUE,TRUE -"MOBATE",15790,FALSE,2005,FALSE,TRUE -"SMACKOUT",15761,FALSE,2005,FALSE,TRUE +"OLOMOUNT",16043,FALSE,2004,TRUE,FALSE +"SCOTTIES",15899,FALSE,2001,FALSE,TRUE +"HAZELCAMP",15833,FALSE,1998,TRUE,FALSE "FOXTON",15546,FALSE,2004,FALSE,TRUE -"KEBLER",15395,FALSE,1999,TRUE,TRUE +"KEBLER",15395,FALSE,1999,TRUE,FALSE "DUFUR",15304,FALSE,2002,TRUE,FALSE -"WISHKAH",15065,FALSE,1999,TRUE,TRUE +"WISHKAH",15065,FALSE,1999,TRUE,FALSE "MURNEN",15053,FALSE,1999,TRUE,FALSE "PINEBREAKS",14828,FALSE,1999,TRUE,FALSE "MASHEL",14575,FALSE,1988,TRUE,FALSE -"ST. MARTIN",14223,FALSE,1997,TRUE,TRUE -"SAAR",14212,FALSE,2004,TRUE,TRUE +"MOWBRAY",14549,FALSE,1998,TRUE,FALSE +"ALMAC",14546,FALSE,2001,TRUE,FALSE +"ST. MARTIN",14223,FALSE,1997,TRUE,FALSE +"SAAR",14212,FALSE,2004,TRUE,FALSE "SPRINGSTEEN",14086,FALSE,2002,TRUE,FALSE -"BALDHILL",13958,FALSE,2010,TRUE,TRUE -"JOJO",13878,FALSE,1998,TRUE,TRUE +"BALDHILL",13958,FALSE,2010,FALSE,TRUE +"JOJO",13878,FALSE,1998,TRUE,FALSE "BIRDSVIEW",13840,FALSE,1988,TRUE,TRUE -"SIFTON",13684,FALSE,1994,TRUE,TRUE +"SIFTON",13684,FALSE,1994,FALSE,TRUE "GOODLOW",13466,FALSE,2007,TRUE,FALSE -"AMPAD",13415,FALSE,2001,TRUE,TRUE -"ROBER",13410,FALSE,2002,TRUE,TRUE +"ROBER",13410,FALSE,2002,TRUE,FALSE "NATI",13337,FALSE,2010,TRUE,FALSE -"BLAG",13033,FALSE,1999,TRUE,TRUE -"MCINTYRE",12951,FALSE,1999,TRUE,TRUE +"ABSAQUIL",13334,FALSE,2003,TRUE,FALSE +"BLAG",13033,FALSE,1999,FALSE,TRUE +"REDFERN",12966,FALSE,2005,TRUE,FALSE +"MCINTYRE",12951,FALSE,1999,TRUE,FALSE "SINGERTON",12939,FALSE,2001,FALSE,TRUE -"LEMONEX",12796,FALSE,2013,TRUE,FALSE -"HAUGAN",12725,FALSE,2004,FALSE,TRUE "SQUIRES",12720,FALSE,2002,TRUE,FALSE "MUTTON",12626,FALSE,1998,TRUE,FALSE "TENERIFFE",12572,TRUE,1988,TRUE,FALSE "TEALSON",12466,FALSE,1999,TRUE,FALSE "CRUISER",12415,FALSE,2000,TRUE,FALSE "MARA",12255,FALSE,1999,FALSE,TRUE -"DIOBSUD",12169,FALSE,1994,TRUE,TRUE +"DIOBSUD",12169,FALSE,1994,TRUE,FALSE +"ASHBRAY",12130,FALSE,2004,TRUE,FALSE "FRAILEY",11752,FALSE,1999,TRUE,FALSE +"WILLABY",11618,FALSE,1999,TRUE,FALSE +"BALD",11429,FALSE,2002,TRUE,FALSE "LONESTAR",11357,FALSE,1998,TRUE,FALSE "SEAQUEST",11311,FALSE,1998,FALSE,TRUE -"NANITA",11274,FALSE,1999,FALSE,TRUE -"SERPENTANO",11140,FALSE,1999,TRUE,TRUE +"SERPENTANO",11140,FALSE,1999,TRUE,FALSE "CUNDIYO",11140,FALSE,1999,TRUE,TRUE -"APEX",10895,FALSE,2004,FALSE,TRUE +"SEHOME",10968,FALSE,2004,TRUE,FALSE "WHETSTONE",10825,FALSE,2002,TRUE,FALSE "SNOHOMISH",10751,FALSE,2002,FALSE,TRUE -"CRINKER",10737,FALSE,1994,TRUE,TRUE -"ORAID",10513,FALSE,2014,FALSE,TRUE +"CRINKER",10737,FALSE,1994,TRUE,FALSE +"DOMINGUEZ",10367,FALSE,1999,TRUE,FALSE "LYNNWOOD",10324,FALSE,1988,TRUE,FALSE -"TENAS",10252,FALSE,2005,FALSE,TRUE "COLTER",10208,TRUE,1998,TRUE,FALSE "TRADEDOLLAR",10191,FALSE,1998,TRUE,TRUE -"NATKIM",10008,FALSE,2001,FALSE,TRUE -"COLDCREEK",9816,FALSE,2004,FALSE,TRUE -"THETIS",9815,FALSE,2001,TRUE,TRUE +"HEISLER",10002,FALSE,2004,TRUE,FALSE +"PHILIPPA",9966,FALSE,2001,TRUE,FALSE +"THETIS",9815,FALSE,2001,TRUE,FALSE "TILLICUM",9749,FALSE,2002,TRUE,TRUE "ARDENMONT",9685,FALSE,1999,TRUE,FALSE "ROSLYN",9672,FALSE,2003,TRUE,FALSE -"WEMINUCHE",9645,FALSE,2002,FALSE,TRUE -"BOOTEN",9643,FALSE,1998,TRUE,TRUE -"KIPER",9548,FALSE,2001,FALSE,TRUE +"BOOTEN",9643,FALSE,1998,TRUE,FALSE +"GAP",9449,FALSE,1997,TRUE,FALSE "PACKERJOHN",9425,FALSE,2011,FALSE,TRUE +"UPTMOR",9423,FALSE,2013,TRUE,FALSE "MELAKWA",9422,FALSE,2002,TRUE,FALSE "MARBLEMOUNT",9324,FALSE,1994,TRUE,FALSE -"NAREL",9267,FALSE,1999,TRUE,TRUE +"NAREL",9267,FALSE,1999,TRUE,FALSE "BLACKLOCK",9256,TRUE,2004,TRUE,FALSE "CRABTREE",9240,FALSE,1999,TRUE,FALSE "CATLA",9204,FALSE,2004,FALSE,TRUE -"ANGLEN",9184,FALSE,2001,FALSE,TRUE +"SINNICE",9135,FALSE,1998,TRUE,FALSE "COTTERAL",8871,FALSE,1998,TRUE,FALSE "DELPHI",8834,FALSE,2004,TRUE,TRUE -"TUCKERVILLE",8832,FALSE,2002,FALSE,TRUE -"AUGGIE",8804,FALSE,1999,FALSE,TRUE "SUNSHINE",8745,FALSE,1999,TRUE,TRUE -"WAGONTOWN",8633,FALSE,2005,FALSE,TRUE -"CLENDENEN",8597,FALSE,1994,TRUE,TRUE -"ILLABOT",8536,FALSE,2004,TRUE,TRUE +"CLENDENEN",8597,FALSE,1994,TRUE,FALSE +"ILLABOT",8536,FALSE,2004,TRUE,FALSE "SWEITING",8525,FALSE,2013,TRUE,FALSE -"HEFLIN",8519,FALSE,2004,TRUE,FALSE -"KELLERBUTTE",8488,FALSE,2005,FALSE,TRUE "POTCHUB",8441,FALSE,2004,TRUE,TRUE +"LEMPIRA",8346,FALSE,2004,TRUE,FALSE "KOERLING",8325,FALSE,2005,FALSE,TRUE "BROMO",8315,FALSE,2004,TRUE,TRUE "PERVINA",8313,FALSE,1998,TRUE,TRUE @@ -260,245 +206,231 @@ "ANUNDE",7988,FALSE,2004,TRUE,FALSE "VARELUM",7864,FALSE,2002,TRUE,FALSE "YAHNE",7861,FALSE,2001,TRUE,TRUE -"RYORP",7832,FALSE,2008,FALSE,TRUE -"CUPPLES",7830,FALSE,2004,TRUE,TRUE +"CUPPLES",7830,FALSE,2004,TRUE,FALSE "OSO",7774,FALSE,2004,TRUE,FALSE "WALVILLE",7690,FALSE,2004,TRUE,TRUE -"ULRICHER",7569,FALSE,2005,FALSE,TRUE -"LANTERN",7553,FALSE,2005,FALSE,TRUE "DOBBS",7485,FALSE,2004,FALSE,TRUE -"SELWAY",7474,FALSE,2005,FALSE,TRUE +"AHREN",7466,FALSE,2004,TRUE,FALSE "SAG",7447,FALSE,1997,TRUE,FALSE "KANASKAT",7400,FALSE,2002,TRUE,FALSE "CHICANE",7329,FALSE,1997,TRUE,TRUE "WALDEN",7251,FALSE,2003,FALSE,TRUE -"WAPSHILLA",7174,FALSE,2005,FALSE,TRUE -"ESMERALDA",7066,FALSE,2001,TRUE,TRUE -"GROTTO",6993,FALSE,1988,TRUE,TRUE +"ESMERALDA",7066,FALSE,2001,TRUE,FALSE +"GROTTO",6993,FALSE,1988,TRUE,FALSE "SEELOVERS",6862,FALSE,2005,TRUE,TRUE "EDSON",6838,FALSE,1998,TRUE,FALSE "BELLTOWER",6802,FALSE,1998,TRUE,FALSE "HARTNIT",6764,FALSE,2004,TRUE,FALSE "ST. ELMO",6736,FALSE,1999,TRUE,TRUE "CUNNIFF",6686,FALSE,1998,TRUE,FALSE -"SHOOFLIN",6655,FALSE,2002,FALSE,TRUE -"WHITESTONE",6649,FALSE,2005,FALSE,TRUE "DEMPSEY",6605,FALSE,2017,TRUE,FALSE "GILES",6580,FALSE,2004,TRUE,FALSE "WEDGEMONT",6399,FALSE,2003,FALSE,TRUE "HOOSKANADEN",6386,FALSE,1997,TRUE,FALSE -"HIERRO",6368,FALSE,1999,FALSE,TRUE "SQUALLY",6299,FALSE,1999,TRUE,TRUE "SPANA",6235,FALSE,2012,FALSE,TRUE -"WISHBONE",6211,FALSE,2005,FALSE,TRUE -"TISCH",6210,FALSE,2004,TRUE,TRUE +"TISCH",6210,FALSE,2004,FALSE,TRUE "ARISTINE",6202,FALSE,2006,FALSE,TRUE -"KACHESS",5996,FALSE,2001,FALSE,TRUE +"PELEE",6146,FALSE,1998,TRUE,FALSE +"BANNEL",6116,FALSE,1998,TRUE,FALSE +"TRITON",6097,FALSE,2004,TRUE,FALSE "SADDLEPEAK",5938,FALSE,1999,TRUE,FALSE -"LASTANCE",5909,TRUE,2002,TRUE,TRUE -"VOLPERIE",5907,FALSE,2001,TRUE,TRUE +"HOPBURN",5912,FALSE,2005,TRUE,FALSE +"LASTANCE",5909,TRUE,2002,TRUE,FALSE +"VOLPERIE",5907,FALSE,2001,TRUE,FALSE "NATURITA",5865,FALSE,1999,TRUE,FALSE "BISPING",5858,FALSE,2001,TRUE,FALSE -"STIMSON",5825,FALSE,2002,TRUE,TRUE +"STIMSON",5825,FALSE,2002,TRUE,FALSE "ZEEKA",5796,FALSE,2010,FALSE,TRUE -"BULLGULCH",5748,FALSE,2000,FALSE,TRUE "BENSLEY",5741,FALSE,1999,FALSE,TRUE "NATIONAL",5722,FALSE,2003,TRUE,TRUE +"MULHOLLAND",5704,FALSE,1997,TRUE,FALSE "EASTPINE",5704,FALSE,2013,TRUE,FALSE -"VOIGHT",5702,FALSE,2001,TRUE,TRUE +"VOIGHT",5702,FALSE,2001,TRUE,FALSE "LOPER",5689,FALSE,2002,TRUE,FALSE "BLEWETT",5654,FALSE,1999,TRUE,TRUE -"CHICKAMAN",5648,FALSE,2004,FALSE,TRUE "SHUKSAN",5593,FALSE,2001,TRUE,FALSE -"SPOKEL",5538,FALSE,2005,FALSE,TRUE -"AZWELL",5497,FALSE,2000,FALSE,TRUE +"AZWELL",5497,FALSE,2000,TRUE,TRUE "PIUMPSHA",5351,FALSE,1998,TRUE,FALSE +"CHAPOT",5340,FALSE,2001,TRUE,FALSE "MAL",5338,FALSE,2002,TRUE,FALSE -"MCCAFFERY",5328,FALSE,2001,FALSE,TRUE "BENHAM",5242,FALSE,1998,TRUE,TRUE "JUG",5241,FALSE,1994,TRUE,FALSE "HARANA",5240,FALSE,2002,TRUE,FALSE "POLEPATCH",5202,FALSE,1993,TRUE,FALSE "REVEL",5195,FALSE,2010,TRUE,TRUE -"YOREL",5191,FALSE,1999,TRUE,TRUE -"THREETREES",5139,FALSE,1999,TRUE,TRUE +"YOREL",5191,FALSE,1999,TRUE,FALSE +"THREETREES",5139,FALSE,1999,TRUE,FALSE "CARGILL",5105,FALSE,1998,TRUE,FALSE "POOSE",5023,FALSE,2008,TRUE,FALSE "QUAILRIDGE",4955,FALSE,2012,FALSE,TRUE "JUNTURA",4810,FALSE,2001,FALSE,TRUE -"JENKINS",4808,FALSE,1999,TRUE,TRUE +"JENKINS",4808,FALSE,1999,TRUE,FALSE "RONSEL",4806,FALSE,2001,TRUE,TRUE -"STANDUP",4744,FALSE,1999,TRUE,TRUE +"STANDUP",4744,FALSE,1999,FALSE,TRUE "TRIPOD",4741,FALSE,2011,FALSE,TRUE -"RUGLES",4708,FALSE,2001,TRUE,TRUE +"RUGLES",4708,FALSE,2001,TRUE,FALSE "RAINIER",4639,FALSE,2002,TRUE,FALSE "BANDID",4588,FALSE,1998,TRUE,FALSE "LEDOW",4510,FALSE,1987,TRUE,FALSE "KUSU",4446,FALSE,1998,TRUE,FALSE -"INDART",4385,FALSE,2005,FALSE,TRUE -"SWINOMISH",4337,FALSE,2002,TRUE,TRUE +"SWINOMISH",4337,FALSE,2002,TRUE,FALSE +"CRATER LAKE",4262,FALSE,1998,TRUE,FALSE "TUSIP",4244,FALSE,2003,TRUE,FALSE "GLAZE",4235,FALSE,1997,TRUE,FALSE "KULSHAN",4177,FALSE,2010,TRUE,FALSE -"JACKMAN",4129,FALSE,2004,TRUE,TRUE -"LABUCK",4101,FALSE,2023,TRUE,FALSE -"RANSECT",4087,FALSE,2003,TRUE,TRUE +"JACKMAN",4129,FALSE,2004,TRUE,FALSE +"RANSECT",4087,FALSE,2003,FALSE,TRUE "EDGEWICK",4067,FALSE,2011,FALSE,TRUE -"TALLS",4040,FALSE,2005,FALSE,TRUE -"RACKER",3979,FALSE,2003,FALSE,TRUE -"SAUK",3973,FALSE,2004,TRUE,TRUE -"COWEEMAN",3966,FALSE,2002,TRUE,TRUE -"ROARING",3933,FALSE,2006,TRUE,FALSE +"SAUK",3973,FALSE,2004,TRUE,FALSE +"COWEEMAN",3966,FALSE,2002,FALSE,TRUE "REDFLAT",3913,FALSE,1999,TRUE,FALSE -"DICK",3890,FALSE,2000,TRUE,FALSE -"RARICK",3850,FALSE,2010,TRUE,TRUE -"STICES",3823,FALSE,2005,FALSE,TRUE +"RARICK",3850,FALSE,2010,TRUE,FALSE "LEMOLO",3790,FALSE,2002,TRUE,FALSE -"QUILLAYUTE",3784,FALSE,1999,TRUE,TRUE +"QUILLAYUTE",3784,FALSE,1999,TRUE,FALSE +"CAYUSE",3762,FALSE,2001,TRUE,FALSE "LACONNER",3758,FALSE,2005,FALSE,TRUE "WELCOME",3649,FALSE,2010,TRUE,TRUE "SPIEDEN",3641,FALSE,2007,FALSE,TRUE +"SKIYOU",3603,FALSE,2002,TRUE,FALSE "DELAMETER",3597,FALSE,1998,FALSE,TRUE "SKOOKER",3536,FALSE,1998,TRUE,FALSE "STUMPP",3472,FALSE,1999,FALSE,TRUE "BLALOCK",3448,FALSE,2002,FALSE,TRUE -"FREELS",3439,FALSE,1998,TRUE,FALSE "RAWAH",3414,FALSE,1999,FALSE,TRUE "ETACH",3394,FALSE,1994,TRUE,FALSE -"BOSSBURG",3384,FALSE,2004,FALSE,TRUE -"KLAWATTI",3368,FALSE,2004,TRUE,TRUE +"KLAWATTI",3368,FALSE,2004,TRUE,FALSE "PRIMEN",3345,FALSE,1997,TRUE,TRUE "LABISH",3315,FALSE,1997,TRUE,FALSE -"GRENET",3302,FALSE,1998,TRUE,TRUE +"GRENET",3302,FALSE,1998,TRUE,FALSE "LITTLEFAWN",3257,FALSE,1997,TRUE,FALSE "BURNTHILL",3255,FALSE,1997,TRUE,FALSE -"FARDRAW",3212,FALSE,2005,TRUE,FALSE -"MOOSED",3202,FALSE,1999,TRUE,TRUE +"MOOSED",3202,FALSE,1999,FALSE,TRUE "NETRAC",3190,FALSE,1994,TRUE,TRUE -"MYSTEN",3116,FALSE,1990,TRUE,TRUE +"MYSTEN",3116,FALSE,1990,TRUE,FALSE "HUDSPETH",3116,FALSE,1997,TRUE,FALSE -"FORSYTH",3079,FALSE,1993,TRUE,TRUE +"FORSYTH",3079,FALSE,1993,TRUE,FALSE "SAXON",3059,FALSE,2002,TRUE,FALSE -"HUMSKEL",3058,FALSE,2004,TRUE,TRUE +"HUMSKEL",3058,FALSE,2004,TRUE,FALSE "CULVING",3043,FALSE,2000,FALSE,TRUE -"FERTEG",2999,FALSE,2002,TRUE,TRUE +"FERTEG",2999,FALSE,2002,TRUE,FALSE "FERGUSON",2981,FALSE,2013,TRUE,FALSE "ST. HELENS",2970,FALSE,1998,TRUE,FALSE "TUKEY",2969,FALSE,2000,FALSE,TRUE "ZYMER",2937,FALSE,1998,TRUE,FALSE +"ALKIRIDGE",2913,FALSE,2001,TRUE,FALSE "HAVERLY",2863,FALSE,2008,TRUE,FALSE "SKAMANIA",2846,FALSE,2011,TRUE,FALSE "MOWICH",2794,FALSE,2002,TRUE,FALSE -"HIGHHORN",2703,FALSE,2005,FALSE,TRUE "TUKWILA",2673,FALSE,1999,FALSE,TRUE -"CRIMS",2672,FALSE,1999,FALSE,TRUE "RUSTYBUTTE",2669,FALSE,1997,TRUE,FALSE -"CRUTCH",2619,FALSE,1987,FALSE,TRUE -"LEMAH",2615,FALSE,2001,FALSE,TRUE +"NATAPOC",2646,FALSE,2001,TRUE,FALSE "BARNHARDT",2565,FALSE,2002,TRUE,FALSE -"ODO",2550,FALSE,2001,FALSE,TRUE "THRASH",2549,FALSE,2010,TRUE,TRUE -"PTARMIGAN",2526,FALSE,2010,TRUE,TRUE +"PTARMIGAN",2526,FALSE,2010,TRUE,FALSE "HENRYSLAKE",2522,FALSE,2005,FALSE,TRUE +"VANEPPS",2495,FALSE,1999,TRUE,FALSE "WYANT",2412,FALSE,1997,TRUE,FALSE "AHL",2399,FALSE,2004,TRUE,FALSE +"TIPTOP",2382,FALSE,1999,TRUE,FALSE "WHITESON",2363,FALSE,2001,FALSE,TRUE +"THISTLEBURN",2360,FALSE,1998,TRUE,FALSE "OLIAGA",2304,FALSE,2001,FALSE,TRUE "COMAR",2298,FALSE,2002,TRUE,FALSE -"SHAMEL",2289,FALSE,2004,TRUE,TRUE -"SCALEROCK",2214,FALSE,1999,TRUE,TRUE +"SHAMEL",2289,FALSE,2004,TRUE,FALSE +"PERSIS",2288,FALSE,2001,TRUE,FALSE +"SANDUN",2260,FALSE,1997,TRUE,FALSE +"SCALEROCK",2214,FALSE,1999,TRUE,FALSE "MINNIEPEAK",2208,FALSE,1998,TRUE,TRUE "YAWKOLA",2185,FALSE,1997,TRUE,FALSE "PIERKING",2163,FALSE,2001,TRUE,FALSE -"REPPART",2116,FALSE,2008,FALSE,TRUE +"VERLOT",2100,FALSE,2004,TRUE,FALSE "BOARDFLOWER",2039,FALSE,1997,TRUE,FALSE "EDFRO",2035,FALSE,2010,FALSE,TRUE -"TARKIO",1877,FALSE,2002,FALSE,TRUE "JOENEY",1865,FALSE,2004,TRUE,FALSE "MOWAKO",1849,FALSE,1998,TRUE,FALSE "MADRAK",1789,FALSE,1999,FALSE,TRUE "PANAMAKER",1770,FALSE,1994,FALSE,TRUE -"CROQUIB",1760,FALSE,1999,TRUE,TRUE -"FRANKPORT",1754,FALSE,2000,FALSE,TRUE +"CROQUIB",1760,FALSE,1999,TRUE,FALSE "SPILYAY",1737,FALSE,1997,TRUE,FALSE "BICKETT",1729,FALSE,2002,FALSE,TRUE -"HAGSTADT",1688,FALSE,2002,FALSE,TRUE +"WAHKEENA",1704,FALSE,2010,TRUE,FALSE "SKATE",1687,FALSE,2004,TRUE,TRUE "FORDCREEK",1678,FALSE,2004,TRUE,TRUE -"OJIBWAY",1666,FALSE,2005,FALSE,TRUE +"OJIBWAY",1666,FALSE,2005,TRUE,FALSE "GOLD CREEK",1659,FALSE,1999,TRUE,FALSE +"DEKAPEN",1604,FALSE,2002,TRUE,FALSE "TWINSI",1596,FALSE,2010,TRUE,FALSE -"HUNTROCK",1579,FALSE,2005,FALSE,TRUE "EVICK",1519,FALSE,1993,TRUE,FALSE "DESONS",1491,FALSE,1998,TRUE,FALSE "WAKAMO",1477,FALSE,1997,TRUE,FALSE "KINGMONT",1445,FALSE,1997,TRUE,TRUE "STELLA",1442,FALSE,2002,TRUE,FALSE "SOLO",1353,FALSE,2003,TRUE,FALSE -"BENTILLA",1340,FALSE,1998,TRUE,TRUE +"BENTILLA",1340,FALSE,1998,TRUE,FALSE "DEMING",1296,FALSE,2001,TRUE,FALSE -"PEAHKE",1278,FALSE,2001,TRUE,TRUE +"PEAHKE",1278,FALSE,2001,TRUE,FALSE "FORTRAN",1277,FALSE,1998,TRUE,TRUE "MILLERFLAT",1268,FALSE,2001,TRUE,FALSE "CORA",1249,FALSE,2004,TRUE,TRUE "GARZA",1224,FALSE,1999,TRUE,FALSE "NARDMONT",1201,FALSE,2002,TRUE,FALSE -"WADELL",1177,FALSE,2004,TRUE,TRUE +"WADELL",1177,FALSE,2004,TRUE,FALSE "WELLSBENCH",1162,FALSE,2005,FALSE,TRUE "SACH",1156,FALSE,2002,TRUE,FALSE -"BERGSVIK",1143,FALSE,1999,TRUE,TRUE "KIESEL",1142,FALSE,1997,TRUE,FALSE +"CORDY",1121,FALSE,1997,TRUE,FALSE "SODACREEK",1076,FALSE,1995,TRUE,FALSE -"DUGUALLA",1076,FALSE,2007,FALSE,TRUE -"TAMELY",1064,FALSE,2008,FALSE,TRUE +"MULTORPOR",1044,FALSE,1987,TRUE,FALSE "HOZOMEEN",1041,FALSE,2001,TRUE,FALSE -"BARNELLCREEK",1041,FALSE,2004,FALSE,TRUE "SAWATCH",1016,FALSE,1999,TRUE,TRUE -"THORNTON",966,FALSE,1997,TRUE,TRUE -"WARRENTON",880,FALSE,2001,TRUE,TRUE +"THORNTON",966,FALSE,1997,TRUE,FALSE +"WARRENTON",880,FALSE,2001,TRUE,FALSE "JORGENSEN",841,FALSE,2001,TRUE,FALSE "CASHNER",805,FALSE,1997,TRUE,FALSE +"TABERNASH",803,FALSE,1999,TRUE,FALSE "ALMONT",735,FALSE,1999,FALSE,TRUE -"WISHARD",725,FALSE,2005,FALSE,TRUE "XANA",701,FALSE,2004,TRUE,FALSE "MCDOUG",639,FALSE,1998,TRUE,FALSE "TELEMON",635,FALSE,1998,TRUE,FALSE "CASTELLO",617,FALSE,1999,FALSE,TRUE "PILLERY",610,FALSE,1998,TRUE,FALSE "PINOTY",564,FALSE,1998,TRUE,FALSE -"FERN CLIFF",550,FALSE,1999,TRUE,TRUE +"FERN CLIFF",550,FALSE,1999,TRUE,FALSE "CULVOP",544,FALSE,2004,TRUE,FALSE "HOVDE",444,FALSE,2001,TRUE,TRUE -"KUCKUP",356,FALSE,1998,TRUE,TRUE +"ANGLE",420,FALSE,2001,TRUE,FALSE +"KUCKUP",356,FALSE,1998,TRUE,FALSE +"FEAGINRANCH",341,FALSE,2004,TRUE,FALSE "HANNEGAN",324,FALSE,2001,TRUE,FALSE -"DREXEL",273,FALSE,2004,FALSE,TRUE +"FLARM",266,FALSE,2002,TRUE,FALSE "NARDINE",194,FALSE,2002,TRUE,FALSE "UNSON",67,FALSE,2000,FALSE,TRUE "WOODSIDE",NA,FALSE,2013,TRUE,FALSE +"WINOPEE",NA,FALSE,2004,TRUE,FALSE "WHITEHORSE",NA,FALSE,2000,TRUE,FALSE -"WESSEL",NA,FALSE,2002,TRUE,TRUE +"WESSEL",NA,FALSE,2002,TRUE,FALSE "VIOLA",NA,FALSE,2003,TRUE,FALSE -"TRUEFISSURE",NA,FALSE,2005,FALSE,TRUE -"RULE",NA,FALSE,1999,TRUE,TRUE +"TIMBERLY",NA,FALSE,2002,TRUE,FALSE +"RULE",NA,FALSE,1999,TRUE,FALSE "ROLO",NA,FALSE,2002,TRUE,FALSE "PSUGA",NA,FALSE,2004,TRUE,FALSE -"PRONG",NA,FALSE,2006,FALSE,TRUE -"PARA",NA,FALSE,2002,TRUE,TRUE +"PARA",NA,FALSE,2002,TRUE,FALSE "OVIATT",NA,FALSE,2002,TRUE,FALSE -"ODIN",NA,FALSE,2004,TRUE,TRUE +"ODIN",NA,FALSE,2004,TRUE,FALSE +"MOOLACK",NA,FALSE,2004,TRUE,FALSE "MILLPOT",NA,FALSE,1999,FALSE,TRUE "MAUDE",NA,FALSE,2017,TRUE,FALSE "LUCE",NA,FALSE,2002,TRUE,FALSE -"LOWERCREEK",NA,FALSE,2002,TRUE,TRUE +"LOWERCREEK",NA,FALSE,2002,TRUE,FALSE "LANTIS",NA,FALSE,2006,TRUE,FALSE "LAGITOS",NA,FALSE,2001,TRUE,FALSE -"HOOTER",NA,FALSE,1997,TRUE,TRUE -"FOURLOG",NA,FALSE,2003,TRUE,TRUE +"HOOTER",NA,FALSE,1997,TRUE,FALSE +"FOURLOG",NA,FALSE,2003,TRUE,FALSE "FLANNERY",NA,FALSE,2002,TRUE,FALSE -"FIVES",NA,FALSE,2002,TRUE,TRUE -"DELETE MEII",NA,FALSE,2022,FALSE,TRUE -"DEATMAN",NA,FALSE,2002,TRUE,TRUE -"DARLING",NA,FALSE,1999,TRUE,TRUE +"FIVES",NA,FALSE,2002,TRUE,FALSE +"DINZER",NA,FALSE,2002,TRUE,FALSE +"DEATMAN",NA,FALSE,2002,TRUE,FALSE +"DARLING",NA,FALSE,1999,TRUE,FALSE "BUTTECREEK",NA,FALSE,2002,TRUE,FALSE -"BUCKHOUSE",NA,FALSE,2004,FALSE,TRUE "BARLOW",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/RO/davis-hz.csv b/inst/extdata/OSD-error-reporting/RO/davis-hz.csv index 9e377b1012..c1e8c57cac 100644 --- a/inst/extdata/OSD-error-reporting/RO/davis-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/davis-hz.csv @@ -1,171 +1,244 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"ABEGG","O",4,0,NA,NA,NA,NA,NA,NA +"ACKER","Oi",10,0,NA,NA,NA,NA,NA,NA "AGUSTIN","Al",0,3,"7.5YR","5","4","7.5YR","4","4" "AGUSTIN","Bkl",20,48,"7.5YR","5","4","7.5YR","4","4" -"AHART","01",5,0,NA,NA,NA,NA,NA,NA -"ALAMBIQUE","0",8,0,NA,NA,NA,NA,NA,NA -"ALTHOUSE","0i",3,8,NA,NA,NA,NA,NA,NA +"AHART","O1",5,0,NA,NA,NA,NA,NA,NA +"AIKEN","O",1,0,NA,NA,NA,NA,NA,NA +"ALAMBIQUE","O",8,0,NA,NA,NA,NA,NA,NA +"ALCOT","Oi",5,0,NA,NA,NA,NA,NA,NA +"ALTHOUSE","Oi",3,0,NA,NA,NA,NA,NA,NA "ALVISO","Clg",13,36,"5Y","6","1","5Y","4","1" "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,"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 +"ARNOLD","O1",1,0,NA,NA,NA,NA,NA,NA +"ASABEAN","O",5,0,NA,NA,NA,NA,NA,NA "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 +"ASPARAS","B2lt",18,33,"l0YR","4","3","10YR","3","3" +"ASTA","O1",3,0,NA,NA,NA,NA,NA,NA +"ASTA","O2",5,3,NA,NA,NA,NA,NA,NA +"ATRING","Oi",5,0,NA,NA,NA,NA,NA,NA +"AVIS","O2",8,0,NA,NA,NA,NA,NA,NA +"BALDY","O1",3,0,NA,NA,NA,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 +"BANADERU","Oi",3,0,NA,NA,NA,NA,NA,NA +"BANCAS","O1",1,0,NA,NA,NA,NA,NA,NA +"BARHISKEY","O",3,0,NA,NA,NA,NA,NA,NA "BARPEAK","Oi",5,0,NA,NA,NA,NA,NA,NA +"BEAL","Oi",1,0,NA,NA,NA,NA,NA,NA "BEARGULCH","Oi",3,0,NA,NA,NA,NA,NA,NA -"BIGELOW","01",3,13,NA,NA,NA,NA,NA,NA -"BIGHILL","0",3,0,NA,NA,NA,NA,NA,NA +"BEAUGHTON","O1",1,0,NA,NA,NA,NA,NA,NA +"BEHANIN","O1",1,0,NA,NA,NA,NA,NA,NA +"BEHEMOTOSH","O",1,0,NA,NA,NA,NA,NA,NA +"BIGELOW","O1",3,0,NA,NA,NA,NA,NA,NA +"BIGHILL","O",3,0,NA,NA,NA,NA,NA,NA "BLACKMOUNT","Clcasa",25,107,"10YR","6","3","10YR","5","3" "BLANKOUT","Oi",3,0,NA,NA,NA,NA,NA,NA "BODECKER","Apl",0,3,"7.5YR","5","3","7.5YR","4","3" -"BOOMTOWN","01",0,3,NA,NA,NA,NA,NA,NA -"BOOMTOWN","02",3,10,NA,NA,NA,NA,NA,NA +"BOGUS","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"BOHNA","O1",5,0,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,"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,"l0YR","7","3","l0YR","6","4" +"BROBETT","Bqkl",20,43,"l0YR","7","4","l0YR","5","4" +"BROBETT","Bqk2",43,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 +"BUCKSHOT","Oi",1,0,NA,NA,NA,NA,NA,NA "BUNDORA","Oi",3,0,NA,NA,NA,NA,NA,NA +"BURIBURI","O",5,0,NA,NA,NA,NA,NA,NA "BURNEY","Oi",3,0,NA,NA,NA,NA,NA,NA "BURNSWICK","Bwl",8,28,"5YR","5","3","5YR","4","3" "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 +"BUTANO","AO",5,0,NA,NA,NA,NA,NA,NA +"BYBEE","O",1,0,NA,NA,NA,NA,NA,NA +"CALLINGS","Oi",1,0,NA,NA,NA,NA,NA,NA "CALPAC","Al",0,8,"10YR","4","3","10YR","3","2" -"CAMBERN","0i",0,3,NA,NA,NA,NA,NA,NA +"CAMPFOUR","O",3,0,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 "CARBERRY","Oi",8,0,NA,NA,NA,NA,NA,NA "CARGENT","Oi",3,0,NA,NA,NA,NA,NA,NA -"CATELLI","0",8,18,NA,NA,NA,NA,NA,NA +"CARIS","Oi",3,0,NA,NA,NA,NA,NA,NA +"CARLAIN","Oi",3,0,NA,NA,NA,NA,NA,NA +"CASPAR","Oi",3,0,NA,NA,NA,NA,NA,NA +"CATELLI","O",8,0,NA,NA,NA,NA,NA,NA "CAX","Bkql",46,56,"10YR","7","3","10YR","6","4" "CAX","A",NA,10,"10YR","7","3","10YR","5","4" "CEBOLLETA","Oi",3,0,NA,NA,NA,NA,NA,NA +"CEDARGROVE","Oi",3,0,NA,NA,NA,NA,NA,NA "CENTENNIAL","2Bkml",56,74,"2.5Y","7","2","10YR","8","1" +"CENTISSIMA","O",5,0,NA,NA,NA,NA,NA,NA +"CHAIX","O1",3,0,NA,NA,NA,NA,NA,NA "CHAMBERINO","Al",0,3,"10YR","6","3","10YR","4","3" -"CHILSON","0i",0,3,NA,NA,NA,NA,NA,NA +"CHIMNEYROCK","Oi",3,0,NA,NA,NA,NA,NA,NA "CHINEN","Oi",1,0,NA,NA,NA,NA,NA,NA "CHUMMY","O1",5,0,NA,NA,NA,NA,NA,NA "COBOC","O1",3,0,NA,NA,NA,NA,NA,NA +"COMPTCHE","Oi",3,0,NA,NA,NA,NA,NA,NA "CONE","O1",5,0,NA,NA,NA,NA,NA,NA -"CRAFTON","01 and 02",NA,1554,NA,NA,NA,NA,NA,NA -"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 +"CONTRA COSTA","O1",1,0,NA,NA,NA,NA,NA,NA +"CORNUTT","O1",1,0,NA,NA,NA,NA,NA,NA +"COYATA","O2",3,0,NA,NA,NA,NA,NA,NA +"COYATA","O1",4,3,NA,NA,NA,NA,NA,NA +"CRAFTON","O1 and O2",1,0,NA,NA,NA,NA,NA,NA +"CRANBAY","Oi",1,0,NA,NA,NA,NA,NA,NA +"CROZIER","O",1,0,NA,NA,NA,NA,NA,NA +"CUMMISKEY","O",3,0,NA,NA,NA,NA,NA,NA "DAHAR","Bw",15,30,"l0YR","6","2","l0YR","5","3" -"DAHAR","Bqk",30,69,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqk",30,53,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqkm",53,69,"l0YR","8","2","l0YR","7","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 +"DARBY","Oi",3,0,NA,NA,NA,NA,NA,NA +"DEADFALL","O1",1,0,NA,NA,NA,NA,NA,NA +"DECY","O1",3,0,NA,NA,NA,NA,NA,NA "DECY","Bwl",20,38,"10YR","5","3","10YR","3","3" "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 +"DEHAVEN","Oi",5,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 +"DELLEKER","O2",8,0,NA,NA,NA,NA,NA,NA "DEMOGUL","Oi",5,0,NA,NA,NA,NA,NA,NA -"DEMOX","0",3,0,NA,NA,NA,NA,NA,NA +"DEMOX","O",3,0,NA,NA,NA,NA,NA,NA "DEPNER","Oi",5,0,NA,NA,NA,NA,NA,NA -"DIPSEA","02",23,30,NA,NA,NA,NA,NA,NA -"DOME","0",5,0,NA,NA,NA,NA,NA,NA +"DICECREEK","Oi",1,0,NA,NA,NA,NA,NA,NA +"DIPSEA","O2",23,0,NA,NA,NA,NA,NA,NA +"DOME","O",5,0,NA,NA,NA,NA,NA,NA +"DOMPIER","Oi",5,0,NA,NA,NA,NA,NA,NA "DOUGCITY","Oi",3,0,NA,NA,NA,NA,NA,NA +"DUBAKELLA","Oi",5,0,NA,NA,NA,NA,NA,NA +"DUMONT","Oi2",3,0,NA,NA,NA,NA,NA,NA +"DUMONT","Oi1",5,3,NA,NA,NA,NA,NA,NA +"DUNSMUIR","O",1,0,NA,NA,NA,NA,NA,NA "ELAM","Oe",5,0,NA,NA,NA,NA,NA,NA -"ELLEDGE","0i",0,3,NA,NA,NA,NA,NA,NA -"ESS","0i",0,3,NA,NA,NA,NA,NA,NA -"EUER","01",5,0,NA,NA,NA,NA,NA,NA +"EUER","O1",5,0,NA,NA,NA,NA,NA,NA "FANCHER","All",0,5,NA,NA,NA,"5YR","5","4" "FANCHER","O1",1,0,NA,NA,NA,NA,NA,NA +"FANTZ","Oi",3,0,NA,NA,NA,NA,NA,NA +"FARVA","O",1,0,NA,NA,NA,NA,NA,NA "FELTA","B21t",13,36,"10YR","5","2","l0YR","3","2" "FELTA","B22t",36,61,"l0YR","5","2","10YR","3","2" "FELTA","Al",NA,13,"10YR","5","2","10YR","2","2" -"FELTON","0i",3,5,NA,NA,NA,NA,NA,NA -"FISHROCK","0i",3,5,NA,NA,NA,NA,NA,NA +"FELTON","Oi",3,0,NA,NA,NA,NA,NA,NA +"FERNCREEK","Oi",5,0,NA,NA,NA,NA,NA,NA +"FISHROCK","Oi",3,0,NA,NA,NA,NA,NA,NA "FLEENER","Oi",3,0,NA,NA,NA,NA,NA,NA +"FONS","O",5,0,NA,NA,NA,NA,NA,NA +"FORBES","O",5,0,NA,NA,NA,NA,NA,NA +"FORBES","A",NA,23,"2.5YR","3","6","2.5YR","2","4" "FORREST","2Bkl",74,89,"5YR","6","6","5YR","5","6" -"FREEZEOUT","0i",3,0,NA,NA,NA,NA,NA,NA -"GANSNER","0",5,18,NA,NA,NA,NA,NA,NA +"FREEZENER","O",3,0,NA,NA,NA,"10YR","3","1" +"FREEZEOUT","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAMBOA","Oi",5,0,NA,NA,NA,NA,NA,NA +"GANSNER","O",5,0,NA,NA,NA,NA,NA,NA "GAPPMAYER","O1",5,0,NA,NA,NA,NA,NA,NA "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 -"GIBWELL","0i",5,8,NA,NA,NA,NA,NA,NA +"GAPPMAYER","A21",NA,48,"10YR","6","3","10YR","5","3" +"GARCIA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAVEL","O",4,0,NA,NA,NA,NA,NA,NA +"GEERTSEN","O1",5,0,NA,NA,NA,NA,NA,NA +"GEERTSEN","R",114,NA,NA,NA,NA,NA,NA,NA +"GEERTSEN","A11",NA,8,"10YR","3","3","10YR","2","2" +"GEPPERT","O",1,0,NA,NA,NA,NA,NA,NA +"GIBNEY","Oi",8,0,NA,NA,NA,NA,NA,NA +"GIBSONVILLE","O",8,0,NA,NA,NA,NA,NA,NA +"GIBWELL","Oi",5,0,NA,NA,NA,NA,NA,NA "GLEASON","Oi",3,0,NA,NA,NA,NA,NA,NA -"GORDO","0i",0,3,NA,NA,NA,NA,NA,NA +"GLENBLAIR","Oi",5,0,NA,NA,NA,NA,NA,NA +"GOODWIN","O2",3,0,NA,NA,NA,"10YR","2","1" +"GOODWIN","O1",8,3,NA,NA,NA,NA,NA,NA +"GOOLAWAY","O",5,0,NA,NA,NA,NA,NA,NA "GORING","All",0,8,"10YR","4","3","10YR","3","3" "GORING","Bl",18,33,"7.5YR","4","3","7.5YR","3","3" "GOSCH","Oi",3,0,NA,NA,NA,NA,NA,NA "GOULDER","Oi",3,0,NA,NA,NA,NA,NA,NA -"GOZEM","0",1,0,NA,NA,NA,NA,NA,NA +"GOZEM","O",1,0,NA,NA,NA,NA,NA,NA +"GRAVECREEK","Oi",3,0,NA,NA,NA,NA,NA,NA "GREEN CANYON","Cl",41,58,"10YR","5","3","10YR","4","2" "GREEN CANYON","All",NA,23,"10YR","4","2","10YR","3","2" +"GREENGULCH","Oi",4,0,NA,NA,NA,NA,NA,NA "GUBE","Oi",1,0,NA,NA,NA,NA,NA,NA -"GUDGREY","0",NA,0,NA,NA,NA,NA,NA,NA -"GUILDER","01",3,13,NA,NA,NA,NA,NA,NA +"GUDGREY","O",4,0,NA,NA,NA,NA,NA,NA +"GUERIN","Oi",3,0,NA,NA,NA,NA,NA,NA +"GUILDER","O1",3,0,NA,NA,NA,NA,NA,NA "GUILDER","B2lt",30,56,"2.5YR","4","6","2.5YR","3","6" "GUILDER","Al",NA,13,NA,NA,NA,"5YR","3","3" -"HALLIHAN","0i",5,5,NA,NA,NA,NA,NA,NA +"HAFUL","Oi",1,0,NA,NA,NA,NA,NA,NA +"HALLIHAN","Oi",5,0,NA,NA,NA,NA,NA,NA "HAMBONE","Oi",5,0,NA,NA,NA,NA,NA,NA +"HAMMERSLEY","Oi",8,0,NA,NA,NA,NA,NA,NA "HANGTOWN","Oi",1,0,NA,NA,NA,NA,NA,NA +"HARECREEK","Oi",5,0,NA,NA,NA,NA,NA,NA "HARKERS","Al",0,36,"10YR","3","2","10YR","2","2" "HARKERS","Bl",36,48,"10YR","5","2","10YR","3","2" "HARKERS","Clca",147,203,"10YR","6","4","7.5YR","5","4" +"HARTLESS","O",3,0,NA,NA,NA,NA,NA,NA +"HATCH","O1",1,0,NA,NA,NA,NA,NA,NA +"HAVENSNECK","Oi",5,0,NA,NA,NA,NA,NA,NA +"HENCRATT","O",4,0,NA,NA,NA,NA,NA,NA "HERMIT","Oi",5,0,NA,NA,NA,NA,NA,NA "HILDRETH","Clca",66,117,"10YR","5","1","10YR","4","1" +"HILTABIDEL","Oi",1,0,NA,NA,NA,NA,NA,NA "HIVAL","Al",0,13,"7.5YR","4","4","7.5YR","3","4" -"HONEYDEW","01",3,13,NA,NA,NA,NA,NA,NA -"HONOMANU","01",8,8,NA,NA,NA,"10YR","3","2" +"HOBIT","Oi",3,0,NA,NA,NA,NA,NA,NA +"HODA","Oi2",1,0,NA,NA,NA,NA,NA,NA +"HODA","Oi1",8,1,NA,NA,NA,NA,NA,NA +"HOHMANN","O1",6,0,NA,NA,NA,NA,NA,NA +"HONEYDEW","O1",3,0,NA,NA,NA,NA,NA,NA +"HONOMANU","O1",8,0,NA,NA,NA,"10YR","3","2" "HOOSIMBIM","Oi",5,0,NA,NA,NA,NA,NA,NA -"HORSESHOE","0",8,0,NA,NA,NA,NA,NA,NA +"HORSESHOE","O",8,0,NA,NA,NA,NA,NA,NA "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 +"HOTEL","O",5,0,NA,NA,NA,NA,NA,NA +"HOUSEFIELD","Oi",8,0,NA,NA,NA,NA,NA,NA +"HUKILL","O",1,0,NA,NA,NA,NA,NA,NA +"HULUA","O1",3,0,NA,NA,NA,NA,NA,NA "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 -"ISHI PISHI","01",3,0,NA,NA,NA,NA,NA,NA +"HUSE","O1",3,0,NA,NA,NA,NA,NA,NA +"HUYSINK","O1",3,0,NA,NA,NA,NA,NA,NA +"ILLER","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"INDLETON","Oi",3,0,NA,NA,NA,NA,NA,NA +"IPISH","O1",1,0,NA,NA,NA,NA,NA,NA +"ISHI PISHI","O1",3,0,NA,NA,NA,NA,NA,NA +"IVERSEN","Oi",3,0,NA,NA,NA,NA,NA,NA +"JAFA","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "JANEFALLS","Oi",5,0,NA,NA,NA,NA,NA,NA "JANILE","Oi",5,0,NA,NA,NA,NA,NA,NA -"JIMMERSON","0i",3,0,NA,NA,NA,NA,NA,NA -"JUNIPERO","01",5,13,NA,NA,NA,NA,NA,NA +"JAYAR","Oi",3,0,NA,NA,NA,NA,NA,NA +"JIMMERSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"JUMPOFF","O1",3,0,NA,NA,NA,NA,NA,NA +"JUNIPERO","O1",5,0,NA,NA,NA,NA,NA,NA "KAHANUI","Oi",1,0,NA,NA,NA,NA,NA,NA -"KALO","0",5,0,NA,NA,NA,NA,NA,NA +"KALO","O",5,0,NA,NA,NA,NA,NA,NA "KAMATO","Btknzl",28,66,"5YR","5","4","5YR","4","4" "KAMATO","An",NA,15,"10YR","6","4","10YR","4","4" "KANG","O",5,0,NA,NA,NA,NA,NA,NA -"KEKAWAKA","01 and 02",5,5,NA,NA,NA,NA,NA,NA +"KANID","Oi",3,0,NA,NA,NA,NA,NA,NA +"KEDDIE","Oi",2,0,NA,NA,NA,NA,NA,NA +"KEKAWAKA","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "KEPHART","Oi",8,0,NA,NA,NA,NA,NA,NA "KETTLEBELLY","Oi",3,0,NA,NA,NA,NA,NA,NA -"KILAUEA","C10",142,190,"10YR","5","1","N","2","0" +"KIBESILLAH","Oi",1,0,NA,NA,NA,NA,NA,NA "KILFOIL","All",NA,3,"10YR","5","3","10YR","3","3" +"KILLET","O",5,0,NA,NA,NA,NA,NA,NA +"KINDIG","Oi",5,0,NA,NA,NA,NA,NA,NA "KINESAVA","All",0,13,"10YR","4","2","10YR","3","2" "KINESAVA","Blt",79,99,"7.5YR","4","3","7.5YR","3","3" +"KINKEL","O1 and O2",3,0,NA,NA,NA,NA,NA,NA "KISTIRN","O",8,0,NA,NA,NA,NA,NA,NA -"KITTLESON","0i",8,41,NA,NA,NA,NA,NA,NA +"KITTLESON","Oi",8,0,NA,NA,NA,NA,NA,NA "KJAR","Cl",20,36,"10YR","8","2","10YR","7","2" -"KNAPKE","0i",3,10,NA,NA,NA,NA,NA,NA +"KNAPKE","Oi",3,0,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" -"KOOLAU","01",5,18,NA,NA,NA,NA,NA,NA +"KOOLAU","O1",5,0,NA,NA,NA,NA,NA,NA "KULA","lIB3b",107,137,"5YR","4","4","5YR","3","2" "KYBURZ","O1",5,0,NA,NA,NA,NA,NA,NA "LAKE JANEE","Al",NA,5,"10YR","4","2","10YR","2","2" @@ -173,42 +246,43 @@ "LANGELLAIN","O",1,0,NA,NA,NA,NA,NA,NA "LAS VEGAS","Al",0,3,"10YR","7","3","10YR","5","4" "LASCO","Oi",5,0,NA,NA,NA,NA,NA,NA -"LEDFORD","01",3,10,NA,NA,NA,NA,NA,NA +"LEDFORD","O1",3,0,NA,NA,NA,NA,NA,NA "LEDGEFORK","Al",0,18,"10YR","3","1","10YR","2","1" +"LETTIA","Oi",1,0,NA,NA,NA,NA,NA,NA "LEWISTON","Ckl",33,56,"10YR","7","2","10YR","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 +"LITTLERED","Oi",1,0,NA,NA,NA,NA,NA,NA +"LOBITOS","O1",1,0,NA,NA,NA,NA,NA,NA "LONGBELL","Oi",5,0,NA,NA,NA,NA,NA,NA -"LORACK","01",5,8,NA,NA,NA,NA,NA,NA +"LORACK","O1",5,0,NA,NA,NA,NA,NA,NA "LOSEE","Cl",43,81,NA,NA,NA,"5YR","6","4" "LOVENESS","Oi",3,0,NA,NA,NA,NA,NA,NA "LUALUALEI","Cly",76,124,NA,NA,NA,"10YR","3","2" -"LUMBERLY","0",3,0,NA,NA,NA,NA,NA,NA -"LUNA","0i",0,1,NA,NA,NA,NA,NA,NA +"LUMBERLY","O",3,0,NA,NA,NA,NA,NA,NA "LUTA","Oi",1,0,NA,NA,NA,NA,NA,NA -"LYONSVILLE","02",3,0,NA,NA,NA,NA,NA,NA -"LYONSVILLE","01",8,3,NA,NA,NA,NA,NA,NA -"MADDEN","01",3,0,NA,NA,NA,NA,NA,NA -"MANTON","A0",5,0,NA,NA,NA,NA,NA,NA +"LYONSVILLE","O2",3,0,NA,NA,NA,NA,NA,NA +"LYONSVILLE","O1",8,3,NA,NA,NA,NA,NA,NA +"MADDEN","O1",3,0,NA,NA,NA,NA,NA,NA +"MANTON","AO",5,0,NA,NA,NA,NA,NA,NA "MARTEE","Oi",1,0,NA,NA,NA,NA,NA,NA +"MASTERSON","O2",1,0,NA,NA,NA,NA,NA,NA +"MASTERSON","O1",5,1,NA,NA,NA,NA,NA,NA "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 -"MCGINNIS","0",NA,0,NA,NA,NA,NA,NA,NA -"MCNULL","0",3,5,NA,NA,NA,NA,NA,NA +"MCGARVEY","Oe",8,0,NA,NA,NA,NA,NA,NA +"MCGARVEY","Oi",10,8,NA,NA,NA,NA,NA,NA +"MCGINNIS","O",1,0,NA,NA,NA,NA,NA,NA +"MCNAB","Oi",1,0,NA,NA,NA,NA,NA,NA +"MCNULL","O",3,0,NA,NA,NA,NA,NA,NA "MCPHIE","Al",0,18,"10YR","3","2","10YR","2","2" "MCVEGAS","Al",0,5,"10YR","6","2","10YR","4","2" "MEDICI","Oi",5,0,NA,NA,NA,NA,NA,NA -"MEDLAKE","0i",3,0,NA,NA,NA,NA,NA,NA -"MEEKS","01",0,5,NA,NA,NA,NA,NA,NA +"MEDLAKE","Oi",3,0,NA,NA,NA,NA,NA,NA "MERCED","Clca",64,109,NA,NA,NA,"2.5Y","4","4" -"MIERUF","0",3,0,NA,NA,NA,NA,NA,NA +"MIERUF","O",3,0,NA,NA,NA,NA,NA,NA "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 +"MOJO","O",5,0,NA,NA,NA,NA,NA,NA "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" @@ -220,15 +294,16 @@ "MUD SPRINGS","All",0,15,"10YR","4","2","10YR","2","2" "MUNK","Al",0,20,"10YR","5","2","10YR","3","2" "MUNK","Clca",58,91,"10YR","8","2","10YR","6","2" +"MUSSERHILL","Oi",1,0,NA,NA,NA,NA,NA,NA +"MUSTY","O",3,0,NA,NA,NA,NA,NA,NA "NAHA","Al",0,5,"10YR","6","4","10YR","5","4" "NAHA","2Cl",69,147,"10YR","6","3","10YR","3","4" -"NAHA","Bw1",NA,NA,"10YR","5","4","10YR","4","4" -"NAHA","Bw",NA,69,"10YR","6","4","10YR","5","4" -"NASHMEAD","0",3,28,NA,NA,NA,NA,NA,NA +"NASHMEAD","O",3,0,NA,NA,NA,NA,NA,NA "NEER","Oi",5,0,NA,NA,NA,NA,NA,NA +"NEKKEN","O1",3,0,NA,NA,NA,NA,NA,NA "NIKAL","Oi",3,0,NA,NA,NA,NA,NA,NA -"NISENE","0",5,25,NA,NA,NA,NA,NA,NA -"NORCAN","01",3,10,NA,NA,NA,NA,NA,NA +"NISENE","O",5,0,NA,NA,NA,NA,NA,NA +"NORCAN","O1",3,0,NA,NA,NA,NA,NA,NA "NORCAN","All",NA,10,"5YR","4","3","5YR","3","3" "NORDIC","A12",15,38,"lOYR","4","2","lOYR","3","2" "NORDIC","A21",38,61,"lOYR","6","4","lOYR","4","4" @@ -237,48 +312,56 @@ "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" -"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 +"NORLING","Oi",5,0,NA,NA,NA,NA,NA,NA +"NOTNED","O1",8,0,NA,NA,NA,NA,NA,NA +"NOYO","O1",5,0,NA,NA,NA,NA,NA,NA +"OBIE","O2",3,0,NA,NA,NA,NA,NA,NA "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" +"OBRAY","C2ca",132,152,"lOYR","7","3","lOYR","6","4" +"OFFENBACHER","O",3,0,NA,NA,NA,NA,NA,NA "OKRIST","A2",8,20,"10YR","6","4","l0YR","4","3" -"OLOKUI","01",10,10,NA,NA,NA,"5YR","3","2" +"OLANCHA","O1",1,0,NA,NA,NA,NA,NA,NA +"OLOKUI","O1",10,0,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 +"OOSEN","O1",1,0,NA,NA,NA,NA,NA,NA +"ORDNANCE","O2",3,0,NA,NA,NA,NA,NA,NA +"ORNBAUN","Oi",1,0,NA,NA,NA,NA,NA,NA +"ORSET","Oi",1,0,NA,NA,NA,NA,NA,NA "OSORIDGE","Btl",5,15,"2.5YR","4","4","2.5YR","3","4" "OSOTE","Al",0,8,"10YR","5","3","7.5YR","3","2" +"OUTLAND","Oi",8,0,NA,NA,NA,NA,NA,NA "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" -"PACIFICO","Cr",43,NA,NA,NA,NA,NA,NA,NA -"PACIFICO","0",NA,0,NA,NA,NA,NA,NA,NA +"PACIFICO","O",1,0,NA,NA,NA,NA,NA,NA +"PAHREAH","Oe",3,0,NA,NA,NA,NA,NA,NA "PAICE","All",0,5,"10YR","4","2","10YR","2","2" "PAICE","Clca",61,79,"10YR","8","3","10YR","6","3" +"PALOMARIN","O1",5,0,NA,NA,NA,NA,NA,NA +"PAPEEK","Oi",3,0,NA,NA,NA,NA,NA,NA "PARADISE","Al",0,15,"10YR","2","2",NA,NA,NA -"PARADISE","Bg",NA,97,"10YR","6","2",NA,NA,NA -"PARKS","01",5,13,NA,NA,NA,NA,NA,NA -"PELELIU","R",30,NA,NA,NA,NA,"10YR","8","1" -"PELELIU","01",NA,3,NA,NA,NA,NA,NA,NA -"PENDOLA","0",3,0,NA,NA,NA,NA,NA,NA -"PERDIN","0i",5,18,NA,NA,NA,NA,NA,NA +"PARAGON","O",3,0,NA,NA,NA,NA,NA,NA +"PARKS","O1",5,0,NA,NA,NA,NA,NA,NA +"PELELIU","O1",1,0,NA,NA,NA,NA,NA,NA +"PENDOLA","O",3,0,NA,NA,NA,NA,NA,NA +"PERDIN","Oi",5,0,NA,NA,NA,NA,NA,NA "PERINOS","C1",117,132,"10YR","5","2","lOYR","4","2" "PETEETNEET","Oal",0,18,NA,NA,NA,"10YR","2","2" -"PHIPPS","02",NA,5,NA,NA,NA,NA,NA,NA +"PHIPPS","O2",1,0,NA,NA,NA,NA,NA,NA "PICAYUNE","Al",0,15,"10YR","4","2","10YR","3","2" "PICAYUNE","Clca",74,135,"10YR","7","2","10YR","6","2" +"PILLIKEN","O1",4,0,NA,NA,NA,NA,NA,NA +"PINEHURST","Oi",3,0,NA,NA,NA,NA,NA,NA "PINNACLES","All",0,20,"10YR","6","2","10YR","3","2" +"PINOLE","Oi",1,0,NA,NA,NA,NA,NA,NA "PIRODEL","Al",0,5,"7.5YR","6","4","7.5YR","4","4" -"PIRODEL","Bkl",23,74,"7.5YR","5","4","7.5YR","4","4" -"PIRODEL","Bk2",NA,74,"7.5YR","5","4","7.5YR","4","4" +"PIRODEL","Bkl",23,46,"7.5YR","5","4","7.5YR","4","4" "PITTMAN","Cl",5,15,"7.5YR","6","4","7.5YR","4","4" +"PITTMAN","Ckl",48,58,"7.5YR","6","4","7.5YR","4","4" "PITTMAN","Ckml",58,81,"7.5YR","8","2","7.5YR","5","4" -"PITTMAN","Ck3",127,NA,"7.5YR","6","4","7.5YR","4","4" -"PITTMAN","Ckl",NA,58,"7.5YR","6","4","7.5YR","4","4" -"PLASKETT","01",3,0,NA,NA,NA,NA,NA,NA +"PLASKETT","O1",3,0,NA,NA,NA,NA,NA,NA "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" @@ -287,43 +370,45 @@ "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 +"POLLARD","Oi",5,0,NA,NA,NA,NA,NA,NA +"PONTO","Oi",3,0,NA,NA,NA,NA,NA,NA +"PORTOLA","O1",5,0,NA,NA,NA,NA,NA,NA "PRESTON","Cl",38,66,"10YR","5","4","10YR","4","4" "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" -"PUAULU","10Bw6",135,152,NA,NA,NA,"7.5YR","3","3" "PUICE","Al",0,5,"7.5YR","5","4","7.5YR","3","4" -"PUICE","Bkl",15,58,"10YR","8","2","l0YR","7","3" +"PUICE","Bkl",15,33,"10YR","8","2","l0YR","7","3" +"PUICE","Bk2",33,58,"l0YR","7","2","l0YR","6","3" "PUICE","Bk3",58,71,"l0YR","7","3","l0YR","5","3" -"PUICE","R",71,NA,NA,NA,NA,NA,NA,NA -"PUICE","Bk2",NA,58,"l0YR","7","2","l0YR","6","3" -"PUTT","01",5,15,NA,NA,NA,NA,NA,NA +"PULANTAT","Oi",3,0,NA,NA,NA,NA,NA,NA "QUAKING","Oi",3,0,NA,NA,NA,NA,NA,NA +"QUINLIVEN","Oi",13,0,NA,NA,NA,NA,NA,NA "RACE","O1",4,0,NA,NA,NA,NA,NA,NA "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 -"RAYOHILL","By2",NA,64,"7.5YR","8","4","7.5YR","6","4" +"RAYOHILL","Byl",3,33,"N","8","0","7.5YR","7","4" "RED HILL","O1",5,0,NA,NA,NA,NA,NA,NA "REDCAN","Al",0,5,"2.5YR","5","6","2.5YR","3","6" "REDCAP","O1",1,0,NA,NA,NA,NA,NA,NA -"REDRIVER","0",3,0,NA,NA,NA,NA,NA,NA +"REDRIVER","O",3,0,NA,NA,NA,NA,NA,NA "REDUN","Bnzl",30,61,"7.5YR","5","6","7.5YR","4","4" +"REINECKE","Oi",5,0,NA,NA,NA,NA,NA,NA +"REVIT","Oi",5,0,NA,NA,NA,NA,NA,NA "RICH","Al",0,5,"10YR","5","3","10YR","4","3" +"RICHENS","O",1,0,NA,NA,NA,NA,NA,NA "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" "RIVALIER","Oi",8,0,NA,NA,NA,NA,NA,NA "RODAD","Bt1",20,18,"10YR","6","3","10YR","4","3" -"RUSSIAN","0",20,20,"10YR","5","2","10YR","3","2" +"ROGGER","Oi",5,0,NA,NA,NA,NA,NA,NA +"ROOP","O",5,0,NA,NA,NA,NA,NA,NA +"RUCH","Oi",2,0,NA,NA,NA,NA,NA,NA +"RUSTLERPEAK","O",3,0,NA,NA,NA,NA,NA,NA "SAL","Btzl",5,18,"5YR","5","6","5YR","4","6" -"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 +"SALT LAKE","Oi",5,0,NA,NA,NA,NA,NA,NA +"SAN SIMEON","O2",5,0,NA,NA,NA,NA,NA,NA +"SAN TIMOTEO","Oi",1,0,NA,NA,NA,NA,NA,NA "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" @@ -337,60 +422,75 @@ "SCARFACE","Oi",5,0,NA,NA,NA,NA,NA,NA "SCARIBOU","Oi",5,0,NA,NA,NA,NA,NA,NA "SCHMUTZ","Al",0,10,"7.5YR","5","4","5YR","3","4" -"SCOUT","0i",0,5,NA,NA,NA,NA,NA,NA +"SEASIDE","Oi",1,0,NA,NA,NA,NA,NA,NA "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" +"SHADELEAF","O",1,0,NA,NA,NA,NA,NA,NA +"SHARPSHOOTER","Oi",3,0,NA,NA,NA,NA,NA,NA "SHASTA","Oi2",3,0,NA,NA,NA,NA,NA,NA "SHASTA","Oi1",10,3,NA,NA,NA,NA,NA,NA -"SHASTINA","0",10,0,NA,NA,NA,NA,NA,NA +"SHASTACOSTA","Oi",1,0,NA,NA,NA,NA,NA,NA +"SHASTINA","O",10,0,NA,NA,NA,NA,NA,NA "SHEAR","Cl",8,51,"10YR","6","2","2.5Y","5","2" "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" +"SHERVAL","Oi",3,0,NA,NA,NA,NA,NA,NA +"SHINGLEMILL","Oi",5,0,NA,NA,NA,NA,NA,NA "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 +"SITKUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"SIZER","Oi",3,0,NA,NA,NA,NA,NA,NA "SKYHAVEN","Bkyl",20,71,"7.5YR","8","2","7.5YR","8","4" -"SKYMOR","0i",3,13,NA,NA,NA,NA,NA,NA +"SKYMOR","Oi",3,0,NA,NA,NA,NA,NA,NA "SLACREEK","O",1,0,NA,NA,NA,NA,NA,NA -"SMOKEY","01",3,0,NA,NA,NA,NA,NA,NA +"SMOKEY","O1",3,0,NA,NA,NA,NA,NA,NA +"SNOWBRIER","O",3,0,NA,NA,NA,NA,NA,NA "SNOWVILLE","Al",0,8,"10YR","5","2","10YR","3","2" "SOUTHPAC","Oi",5,0,NA,NA,NA,NA,NA,NA +"SPEAKER","O",2,0,NA,NA,NA,NA,NA,NA "SPLAWN","Oi",3,0,NA,NA,NA,NA,NA,NA -"SPONIKER","0i",0,3,NA,NA,NA,NA,NA,NA "SPUDROCK","Oi",3,0,NA,NA,NA,NA,NA,NA "ST. MARYS","All",0,23,"7.5YR","4","3","7.5YR","3","2" "STACHER","Oi",8,0,NA,NA,NA,NA,NA,NA +"STEINMETZ","Oi",3,0,NA,NA,NA,NA,NA,NA "STODA","Clca",48,74,"7.5YR","7","4","7.5YR","5","4" "STONEWELL","Oi",3,0,NA,NA,NA,NA,NA,NA +"STRAIGHT","O2",3,0,NA,NA,NA,NA,NA,NA "STRAIGHT","O1",5,3,NA,NA,NA,NA,NA,NA +"SUEY","O",3,0,NA,NA,NA,NA,NA,NA "SUNRISE","All",0,5,"10YR","6","3","10YR","5","4" "SUNRISE","Clca",28,53,"10YR","7","3","10YR","6","3" -"SUPERVISOR","0i",0,5,NA,NA,NA,NA,NA,NA -"SUR","01",5,18,NA,NA,NA,NA,NA,NA +"SUR","O1",5,0,NA,NA,NA,NA,NA,NA "SURNUF","Oi",3,0,NA,NA,NA,NA,NA,NA "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 +"SWEETBRIAR","Oi",1,0,NA,NA,NA,NA,NA,NA +"TABLEROCK","O",4,0,NA,NA,NA,NA,NA,NA "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,3,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 -"TANGLE","01",5,3,NA,NA,NA,NA,NA,NA +"TAHAND","Oi",3,0,NA,NA,NA,NA,NA,NA +"TALLOWBOX","O",3,0,NA,NA,NA,NA,NA,NA +"TAMFLAT","O",3,0,NA,NA,NA,NA,NA,NA +"TANGLE","O2",3,0,NA,NA,NA,NA,NA,NA +"TANGLE","O1",5,3,NA,NA,NA,NA,NA,NA "TANGLE","Btl",41,71,"10YR","5","4","10YR","4","3" -"THURLONI","02",3,5,NA,NA,NA,NA,NA,NA +"TATOUCHE","O",5,0,NA,NA,NA,NA,NA,NA +"TERRABELLA","O",3,0,NA,NA,NA,NA,NA,NA +"TETHRICK","Oi",1,0,NA,NA,NA,NA,NA,NA +"THREECHOP","Oi",3,0,NA,NA,NA,NA,NA,NA +"THREEFORKS","Oi",3,0,NA,NA,NA,NA,NA,NA +"THURLONI","O2",3,0,NA,NA,NA,NA,NA,NA "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" "TIONESTA","Oi",8,0,NA,NA,NA,NA,NA,NA -"TISHAR","0i",3,15,NA,NA,NA,NA,NA,NA +"TISHAR","Oi",3,0,NA,NA,NA,NA,NA,NA "TOADLAKE","O1",3,0,NA,NA,NA,NA,NA,NA "TOBISH","Al",0,3,"7.5YR","5","4","7.5YR","4","3" "TOBISH","Blt",3,13,"7.5YR","4","4","7.5YR","4","4" @@ -398,53 +498,66 @@ "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 +"TOURNQUIST","O1",5,0,NA,NA,NA,NA,NA,NA "TOZE","Al",0,3,"10YR","3","2","10YR","2","2" +"TRAMWAY","Oi",5,0,NA,NA,NA,NA,NA,NA "TREGONING","Oi",5,0,NA,NA,NA,NA,NA,NA "TRETTEN","O1",1,0,NA,NA,NA,NA,NA,NA +"TULERT","Al2",3,8,"7.5YR","6","6","7.5YR","4","4" "TULERT","Bll",8,20,"7.5YR","6","6",NA,NA,NA -"TULERT","Bl2",20,51,"7.5YR","5","4","7.5YR","4","4" +"TULERT","Bl2",20,38,"7.5YR","5","4","7.5YR","4","4" +"TULERT","IIB2ltcab",38,51,"7.5YR","5","6","7.5YR","4","4" "TULERT","IIClsicamb",97,107,"l0YR","8","2","l0YR","7","2" "TULERT","IIIC2b",107,140,"l0YR","6","2","l0YR","5","3" -"TULERT","Al2",NA,8,"7.5YR","6","6","7.5YR","4","4" -"TULERT","IIB2ltcab",NA,51,"7.5YR","5","6","7.5YR","4","4" -"TULERT","IIB3cab",NA,97,"7.5YR","7","2","7.5YR","5","4" "TWINBUTTES","Al",0,8,"10YR","5","4","10YR","3","3" "TWINBUTTES","Oi",3,0,NA,NA,NA,NA,NA,NA -"UPDEGRAFF","0i",3,18,NA,NA,NA,NA,NA,NA +"TYSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"ULHALF","Oi",5,0,NA,NA,NA,NA,NA,NA +"UPDEGRAFF","Oi",3,0,NA,NA,NA,NA,NA,NA "VALCREEK","Oi",8,0,NA,NA,NA,NA,NA,NA -"VALENCIA","2Btkbl",71,99,"5YR","6","4","5YR","4","4" +"VALENCIA","2Btkbl",71,79,"5YR","6","4","5YR","4","4" "VALENCIA","2Bkbl",99,117,"5YR","6","4","5YR","5","4" -"VALENCIA","Bk",NA,71,"7.5YR","6","4","7.5YR","5","4" -"VALENCIA","2Btkb2",NA,99,"5YR","5","4","5YR","4","4" -"VANDAMME","0i",3,5,NA,NA,NA,NA,NA,NA +"VANDAMME","Oi",3,0,NA,NA,NA,NA,NA,NA +"VANNOY","O",2,0,NA,NA,NA,NA,NA,NA "VANVOR","Oi",3,0,NA,NA,NA,NA,NA,NA "VITZTHUM","Oi",3,0,NA,NA,NA,NA,NA,NA -"VOORHIES","0",3,8,NA,NA,NA,NA,NA,NA +"VOORHIES","O",3,0,NA,NA,NA,NA,NA,NA "WAAS","Al",0,8,"5YR","4","3","5YR","3","2" -"WAIALEALE","02",8,10,"5YR","2","2","5YR","2","2" +"WAFLA","Oi",3,0,NA,NA,NA,NA,NA,NA +"WAIALEALE","O2",8,0,"5YR","2","2","5YR","2","2" "WEAVERVILLE","Oi",3,0,NA,NA,NA,NA,NA,NA -"WHISPERING","01",3,13,NA,NA,NA,NA,NA,NA +"WELOY","O1",3,0,NA,NA,NA,NA,NA,NA +"WESTE","Oi",6,0,NA,NA,NA,NA,NA,NA +"WHISPERING","O1",3,0,NA,NA,NA,NA,NA,NA "WHITINGER","Oi",4,0,NA,NA,NA,NA,NA,NA +"WHORLED","Oi",8,0,NA,NA,NA,NA,NA,NA "WHY","Bwl",5,23,"10YR","6","4","10YR","4","4" -"WILDCAT","0i",0,3,NA,NA,NA,NA,NA,NA "WINDMILL","Al",0,10,"10YR","4","2","10YR","3","2" "WINDMILL","Cl",43,58,"10YR","6","3","10YR","4","3" +"WINDY","O",2,0,NA,NA,NA,NA,NA,NA "WINNIBULLI","Oi",5,0,NA,NA,NA,NA,NA,NA "WITCHER","Oi",5,0,NA,NA,NA,NA,NA,NA -"WOODCHOPPER","0i",8,10,NA,NA,NA,NA,NA,NA +"WITTENBERG","O1",10,0,NA,NA,NA,NA,NA,NA +"WOLFPEAK","Oi",1,0,NA,NA,NA,NA,NA,NA +"WOODCHOPPER","Oi",8,0,NA,NA,NA,NA,NA,NA +"WOODLEAF","Oi",1,0,NA,NA,NA,NA,NA,NA "WOODPASS","All",0,10,"7.5YR","5","4","10YR","3","4" "WOODS CROSS","A",15,94,"l0YR","4","1","10YR","2","1" +"WOODSEYE","Oi",3,0,NA,NA,NA,NA,NA,NA "WOOLSTALF","Oi",3,0,NA,NA,NA,NA,NA,NA -"YAINAX","01",3,13,NA,NA,NA,NA,NA,NA +"YAINAX","O1",3,0,NA,NA,NA,NA,NA,NA +"YAP","O2",3,0,NA,NA,NA,"5YR","2.5","1" "YAP","O1",5,3,NA,NA,NA,NA,NA,NA "YARDLEY","All",0,25,"10YR","4","2","10YR","2","2" "YELJACK","All",0,15,"5YR","4","4","5YR","3","3" -"ZAKME","01",3,8,NA,NA,NA,NA,NA,NA +"YELLOWHOUND","Oi",3,0,NA,NA,NA,NA,NA,NA +"YOLLABOLLY","O",1,0,NA,NA,NA,NA,NA,NA +"ZAKME","O1",3,0,NA,NA,NA,NA,NA,NA "ZANE","Bl",3,8,NA,NA,NA,"5YR","5","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" +"ZENI","Oi",3,0,NA,NA,NA,NA,NA,NA "ZEUGIRDOR","Oi",5,0,NA,NA,NA,NA,NA,NA "ZEUGIRDOR","3Btbl",66,119,"7.5YR","6","6","7.5YR","4","4" +"ZING","Oi",4,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/RO/davis-sections.csv b/inst/extdata/OSD-error-reporting/RO/davis-sections.csv index b77cce82fb..cf5a52a972 100644 --- a/inst/extdata/OSD-error-reporting/RO/davis-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/davis-sections.csv @@ -1,7 +1,6 @@ "soilseriesname","errorkind","context","mlraoffice" "AGATE","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "ARAND","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"ARVA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "ASPARAS","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "ASPENLAKE","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "AZABACHE","DUPLICATION OF HEADERS","[SAR: 20 to 30]","davis, ca" @@ -10,15 +9,11 @@ "BIGTOM","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "BOBKNOLL","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" "BOOTH","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"BORAVALL","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"BOTTLEHILL","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "BRAMWELL","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" "BRIMHALL","DUPLICATION OF HEADERS","[SAR: 5 to 35]","davis, ca" "BUNKIN","DUPLICATION OF HEADERS","[SAR: 0 to 4]","davis, ca" -"CABLAB","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "CALGRO","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "CALLA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"CAMPTANK","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "CASMOS","DUPLICATION OF HEADERS","[SAR: 0 to 10]","davis, ca" "CHIMROCK","DUPLICATION OF HEADERS","[SAR: 0 to 30]","davis, ca" "COLEMAN","MULTILINE TYPICAL PEDON","[number of multilines=5]","davis, ca" @@ -26,13 +21,13 @@ "CROY","DUPLICATION OF HEADERS","[SAR: 0 to 13]","davis, ca" "DAROW","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "DECOROCK","DUPLICATION OF HEADERS","[SAR: 0 to 1]","davis, ca" -"DENTDRAW","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "ECON","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "FLATTOP","SECTION HEADINGS",NA,"davis, ca" "FOY","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" "GABALDON","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "GAPPMAYER","SECTION HEADINGS",NA,"davis, ca" "GAPPMAYER","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" +"GEPPERT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "GILSTON","DUPLICATION OF HEADERS","[SAR: 5 to 13]","davis, ca" "GOOLAWAY","MULTILINE TYPICAL PEDON","[number of multilines=5]","davis, ca" "GRASSYTRAIL","DUPLICATION OF HEADERS","[SAR: 0 to 1,SAR: 0 to 2]","davis, ca" @@ -40,16 +35,13 @@ "GRUNNELL","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" "GUBEN","MULTILINE TYPICAL PEDON","[number of multilines=5]","davis, ca" "HARDTRIGGER","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"HARKERS","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "HELPER","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" "HEPPSIE","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "HIGHTOWER","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "HIIBNER","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" "HOMKO","DUPLICATION OF HEADERS","[SAR: 13 to 30]","davis, ca" "HOPE","DUPLICATION OF HEADERS","[SAR: 0 to 3]","davis, ca" -"HOSKIN","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"HUICHICA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"HUKILL","MULTILINE TYPICAL PEDON","[number of multilines=6]","davis, ca" +"HUKILL","MULTILINE TYPICAL PEDON","[number of multilines=7]","davis, ca" "HUMBUG","DUPLICATION OF HEADERS","[SAR: 0 to 2,SAR: 0 to 4]","davis, ca" "HUNTSMAN","DUPLICATION OF HEADERS","[SAR: 0 to 8]","davis, ca" "IOKA","DUPLICATION OF HEADERS","[SAR: 0 to 13]","davis, ca" @@ -59,8 +51,6 @@ "KERBY","MULTILINE TYPICAL PEDON","[number of multilines=6]","davis, ca" "KILBURN","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "KILLET","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" -"KINESAVA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"KITCHEN CREEK","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "KITIPES","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" "KLONDIKE","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "LAMBSEN","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" @@ -70,32 +60,24 @@ "LEEKO","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "LEQUIEU","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "LILAPOINT","DUPLICATION OF HEADERS","[SAR: 0 to 1]","davis, ca" -"LILAPOINT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "LORNA","DUPLICATION OF HEADERS","[SAR: 0 to 4]","davis, ca" "LOSEE","SECTION HEADINGS",NA,"davis, ca" -"LOSTPOINT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"LUAP","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "MAUGHAN","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" -"MAYWOOD","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "MCCARTY","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" "MEDBURN","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "MEDCO","MULTILINE TYPICAL PEDON","[number of multilines=5]","davis, ca" -"MITCH","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "MOLEN","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" "MOTTO","DUPLICATION OF HEADERS","[SAR: 10 to 25 percent]","davis, ca" "MULLIGAN","DUPLICATION OF HEADERS","[SAR: 0 to 4]","davis, ca" "MUSTY","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "NATANK","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"NITPAC","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"NODUR","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" +"NORDIC","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "NOROB","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "NYE","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "OAGAMATI","DUPLICATION OF HEADERS","[SAR: 13 to 40]","davis, ca" "OBRAY","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "OFFENBACHER","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "PACON","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" -"PAHRANAGAT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"PAHREAH","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "PASTOLLA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "PATOS","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" "PICAYUNE","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" @@ -106,18 +88,13 @@ "PULANTAT","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "RANDCORE","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "RANGECREEK","DUPLICATION OF HEADERS","[SAR: 0 to 8]","davis, ca" -"REALLIS","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "REBA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "REDOLA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "REVENTON","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" -"REWARD","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "REXMONT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "RICHVILLE","SECTION HEADINGS",NA,"davis, ca" "RITOAZUL","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" -"SANPITCH","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "SASEEP","DUPLICATION OF HEADERS","[SAR: 2 to 12,SAR: 2 to 12]","davis, ca" -"SHANTOWN","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"SHIMA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "SHIPPA","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "SHOAT","MULTILINE TYPICAL PEDON","[number of multilines=3]","davis, ca" "SHOWER","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" @@ -128,7 +105,6 @@ "SNOWBRIER","MULTILINE TYPICAL PEDON","[number of multilines=5]","davis, ca" "STENT","DUPLICATION OF HEADERS","[SAR: 0 to 13,SAR: 0 to 5]","davis, ca" "STINEWAY","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"STOPATOE","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "STRAIGHT","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" "STYGEE","DUPLICATION OF HEADERS","[SAR: 5 to 13]","davis, ca" "TABLEROCK","MULTILINE TYPICAL PEDON","[number of multilines=8]","davis, ca" @@ -145,18 +121,14 @@ "TUSHER","DUPLICATION OF HEADERS","[SAR: 0 to 8]","davis, ca" "TYENDE","DUPLICATION OF HEADERS","[SAR: 30 to 60]","davis, ca" "UDEL","SECTION HEADINGS",NA,"davis, ca" -"UNGENE","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "VAN WAGONER","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "VERANO","SECTION HEADINGS",NA,"davis, ca" "VICKEL","DUPLICATION OF HEADERS","[SAR: 0 to 5]","davis, ca" "WADESPRINGS","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" "WATERMAN","MULTILINE TYPICAL PEDON","[number of multilines=2]","davis, ca" "WAUCOBA","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" -"WEBILE","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" -"WILDCAT","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "WIMMER","DUPLICATION OF HEADERS","[SAR: 0 to 2]","davis, ca" "WINLO","MULTILINE TYPICAL PEDON","[number of multilines=4]","davis, ca" -"WINNEMUCCA","MULTILINE TYPICAL PEDON","[number of multilines=1]","davis, ca" "WOODPASS","SECTION HEADINGS",NA,"davis, ca" "WYASKET","DUPLICATION OF HEADERS","[SAR: 5 to 13]","davis, ca" "YOGOVUCI","DUPLICATION OF HEADERS","[SAR: 1 to 13]","davis, ca" diff --git a/inst/extdata/OSD-error-reporting/RO/davis-series.csv b/inst/extdata/OSD-error-reporting/RO/davis-series.csv index ede0d226b8..5b3365b2df 100644 --- a/inst/extdata/OSD-error-reporting/RO/davis-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/davis-series.csv @@ -1,77 +1,83 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"SCOUT",385661,FALSE,2008,FALSE,TRUE +"CHAIX",370769,TRUE,2004,TRUE,FALSE "TOLLHOUSE",306765,FALSE,2004,FALSE,TRUE "BROLLIAR",219224,TRUE,2005,FALSE,TRUE -"TOSCA",166822,FALSE,1998,FALSE,TRUE +"SPEAKER",178565,FALSE,1997,TRUE,FALSE "WOODSEYE",164206,FALSE,2004,TRUE,FALSE "FORREST",164143,FALSE,1997,FALSE,TRUE -"ESS",162958,FALSE,2000,FALSE,TRUE -"BUSHVALLEY",154143,FALSE,2000,FALSE,TRUE "MEDBURN",153214,TRUE,2003,TRUE,FALSE "BOOTH",150065,FALSE,1997,TRUE,FALSE +"AIKEN",149349,TRUE,2004,TRUE,FALSE +"WINDY",142322,FALSE,2006,TRUE,FALSE "JAYAR",130798,FALSE,2001,TRUE,FALSE -"GORDO",123405,TRUE,2000,FALSE,TRUE +"DUBAKELLA",124915,TRUE,2004,TRUE,FALSE "ATRING",118704,FALSE,1999,TRUE,FALSE -"SUR",113597,FALSE,2003,TRUE,TRUE +"ORNBAUN",117117,FALSE,2003,TRUE,FALSE +"SUR",113597,FALSE,2003,TRUE,FALSE "AGUSTIN",109292,FALSE,2002,FALSE,TRUE +"VANNOY",105059,FALSE,2003,TRUE,FALSE +"ARNOLD",96779,FALSE,1987,TRUE,FALSE "ZENI",95269,FALSE,2003,TRUE,FALSE "OVERGAARD",92330,FALSE,2007,FALSE,TRUE "BURNSWICK",83777,FALSE,2008,FALSE,TRUE -"MIRABAL",82472,FALSE,2012,FALSE,TRUE -"MCNULL",79953,FALSE,1997,TRUE,TRUE -"SUPERVISOR",79838,FALSE,2007,FALSE,TRUE +"MCNULL",79953,FALSE,1997,TRUE,FALSE "YELLOWHOUND",79825,FALSE,2003,TRUE,FALSE -"VALENCIA",77823,FALSE,1997,TRUE,TRUE -"ASPARAS",73872,FALSE,2006,TRUE,TRUE -"REALLIS",73361,FALSE,1999,TRUE,FALSE +"VALENCIA",77823,FALSE,1997,FALSE,TRUE +"ASPARAS",73872,FALSE,2006,FALSE,TRUE "CHAMBERINO",72998,FALSE,2000,FALSE,TRUE "SATTLEY",72840,FALSE,2008,TRUE,FALSE "KINKEL",68859,FALSE,2004,TRUE,FALSE +"CONTRA COSTA",68174,FALSE,1997,TRUE,FALSE "DEER CREEK",67663,FALSE,1997,FALSE,TRUE +"BEHANIN",67468,FALSE,1999,TRUE,FALSE "PINEHURST",65837,FALSE,2004,TRUE,FALSE "FREEZENER",65371,FALSE,2003,TRUE,FALSE "NEER",64731,FALSE,2004,TRUE,FALSE -"PACIFICO",64162,FALSE,1987,TRUE,TRUE -"ELLEDGE",63549,FALSE,2003,FALSE,TRUE +"PACIFICO",64162,FALSE,1987,TRUE,FALSE "KANID",62830,FALSE,1999,TRUE,FALSE +"FARVA",59288,FALSE,2001,TRUE,FALSE "ST. MARYS",59070,FALSE,2003,FALSE,TRUE "CARIS",58762,FALSE,2001,TRUE,FALSE "KISTIRN",58687,FALSE,2003,TRUE,FALSE "WHY",58481,FALSE,1997,FALSE,TRUE -"TAMPICO",58481,FALSE,1999,FALSE,TRUE "KYBURZ",57763,FALSE,2004,TRUE,FALSE -"JUNIPERO",57115,FALSE,2003,TRUE,TRUE +"JUNIPERO",57115,FALSE,2003,TRUE,FALSE "KINDIG",56767,FALSE,1998,TRUE,FALSE "PLEGOMIR",55542,FALSE,2003,FALSE,TRUE +"KIBESILLAH",54577,FALSE,2003,TRUE,FALSE "ACKER",54456,FALSE,2000,TRUE,FALSE "LEDGEFORK",52897,FALSE,1999,FALSE,TRUE "TIERRA",52735,FALSE,1997,TRUE,FALSE -"WINNEMUCCA",52432,FALSE,1999,TRUE,FALSE -"DOME",51359,FALSE,2004,TRUE,TRUE -"FELTON",48157,FALSE,2003,TRUE,TRUE -"KEKAWAKA",47303,FALSE,1987,TRUE,TRUE +"DOME",51359,FALSE,2004,TRUE,FALSE +"FELTON",48157,FALSE,2003,TRUE,FALSE +"GEERTSEN",48049,FALSE,1999,TRUE,FALSE +"KEKAWAKA",47303,FALSE,1987,TRUE,FALSE "CANNELL",46723,FALSE,2004,TRUE,FALSE -"SMOKEY",45817,FALSE,2004,TRUE,TRUE -"JIMMERSON",45740,FALSE,2004,TRUE,TRUE +"SMOKEY",45817,FALSE,2004,TRUE,FALSE +"JIMMERSON",45740,FALSE,2004,TRUE,FALSE +"SAN TIMOTEO",45226,FALSE,1998,TRUE,FALSE "DUMONT",45035,FALSE,1997,TRUE,FALSE +"CROZIER",44476,FALSE,2004,TRUE,FALSE "BODECKER",43629,FALSE,2012,FALSE,TRUE -"DAHAR",43269,FALSE,2001,TRUE,TRUE +"DAHAR",43269,FALSE,2001,FALSE,TRUE "POLLARD",42759,FALSE,1997,TRUE,FALSE +"YOLLABOLLY",42498,FALSE,1997,TRUE,FALSE "TOADLAKE",42463,FALSE,1997,TRUE,FALSE "BALDY",42356,FALSE,2003,TRUE,FALSE "HOSKIN",42086,FALSE,2003,TRUE,TRUE "AVIS",41776,FALSE,2006,TRUE,FALSE -"PIRODEL",40501,FALSE,2006,TRUE,TRUE -"BANCAS",40343,FALSE,2003,TRUE,TRUE -"SPONIKER",40131,FALSE,2007,FALSE,TRUE +"PIRODEL",40501,FALSE,2006,FALSE,TRUE +"BANCAS",40343,FALSE,2003,TRUE,FALSE "RODAD",39928,FALSE,2003,TRUE,FALSE "MOKIAK",39741,FALSE,2006,FALSE,TRUE "SCARFACE",39515,FALSE,2004,TRUE,FALSE "PRESTON",38798,FALSE,1995,FALSE,TRUE -"SELEVIN",38312,FALSE,2000,TRUE,TRUE +"SELEVIN",38312,FALSE,2000,FALSE,TRUE "TYSON",38292,FALSE,1998,TRUE,FALSE "TODDLER",36561,FALSE,2003,FALSE,TRUE -"LYONSVILLE",35427,FALSE,2004,TRUE,TRUE +"LYONSVILLE",35427,FALSE,2004,TRUE,FALSE +"CALLINGS",34811,FALSE,1999,TRUE,FALSE +"LETTIA",34739,FALSE,2003,TRUE,FALSE "NORLING",33533,FALSE,2000,TRUE,FALSE "LAS VEGAS",33473,FALSE,2008,FALSE,TRUE "DEHAVEN",32965,FALSE,2003,TRUE,FALSE @@ -79,104 +85,113 @@ "MERCED",32376,FALSE,1997,FALSE,TRUE "PONTO",32071,FALSE,2004,TRUE,FALSE "LANDLOW",31634,FALSE,1997,FALSE,TRUE -"ISHI PISHI",31348,FALSE,1997,TRUE,TRUE +"ISHI PISHI",31348,FALSE,1997,TRUE,FALSE "TRAMWAY",30435,FALSE,2003,TRUE,FALSE "HUPP",30415,FALSE,1999,FALSE,TRUE "LOVENESS",30180,FALSE,2004,TRUE,FALSE "CALPAC",29939,FALSE,2004,FALSE,TRUE -"HOTEL",29298,FALSE,2003,TRUE,TRUE +"HOTEL",29298,FALSE,2003,TRUE,FALSE "REVIT",28828,FALSE,2007,TRUE,FALSE "SHASTA",28773,FALSE,2004,TRUE,FALSE "GAPPMAYER",28406,FALSE,1999,TRUE,TRUE -"VANDAMME",28257,FALSE,2003,TRUE,TRUE -"SANCHEZ",27977,FALSE,2012,FALSE,TRUE -"VOORHIES",27693,FALSE,2003,TRUE,TRUE +"VANDAMME",28257,FALSE,2003,TRUE,FALSE +"VOORHIES",27693,FALSE,2003,TRUE,FALSE +"RUCH",27582,FALSE,2000,TRUE,FALSE "YELJACK",26715,FALSE,1999,FALSE,TRUE "CEBOLLETA",26654,FALSE,2000,TRUE,FALSE -"SKYMOR",26201,FALSE,2001,TRUE,TRUE +"KEDDIE",26627,FALSE,2008,TRUE,FALSE +"SKYMOR",26201,FALSE,2001,TRUE,FALSE +"ZING",26132,FALSE,2003,TRUE,FALSE "SAPELLO",26067,FALSE,2022,FALSE,TRUE "SANDBENCH",25949,FALSE,2000,TRUE,TRUE -"PUICE",25947,FALSE,2006,TRUE,TRUE +"PUICE",25947,FALSE,2006,FALSE,TRUE "KAMATO",25940,FALSE,2003,TRUE,TRUE -"CRAFTON",25736,FALSE,2003,TRUE,TRUE +"CRAFTON",25736,FALSE,2003,TRUE,FALSE "SURNUF",25249,FALSE,2004,TRUE,FALSE "WOODPASS",25245,FALSE,1999,FALSE,TRUE "MONSERATE",25101,FALSE,2003,FALSE,TRUE -"ALTHOUSE",24943,FALSE,2000,TRUE,TRUE -"HARKERS",24828,TRUE,1997,TRUE,TRUE +"ALTHOUSE",24943,FALSE,2000,TRUE,FALSE +"HARKERS",24828,TRUE,1997,FALSE,TRUE "OUTLAND",24109,FALSE,2008,TRUE,FALSE -"LUNA",24010,FALSE,2006,FALSE,TRUE -"OOSEN",23466,FALSE,2007,TRUE,TRUE +"GEPPERT",23962,FALSE,1999,TRUE,FALSE +"DUNSMUIR",23659,FALSE,2000,TRUE,FALSE +"OOSEN",23466,FALSE,2007,TRUE,FALSE "REDUN",22717,FALSE,2000,FALSE,TRUE "COBOC",22702,FALSE,1993,TRUE,FALSE -"LEDFORD",22483,FALSE,2004,TRUE,TRUE +"LEDFORD",22483,FALSE,2004,TRUE,FALSE "CHINEN",22301,FALSE,2006,TRUE,FALSE "ROSSI",21823,FALSE,1997,TRUE,FALSE -"PERDIN",21719,FALSE,1997,TRUE,TRUE -"CHILSON",21020,FALSE,2000,FALSE,TRUE +"PERDIN",21719,FALSE,1997,TRUE,FALSE +"PILLIKEN",21515,FALSE,2004,TRUE,FALSE "OFFENBACHER",20956,FALSE,2001,TRUE,FALSE -"ILLER",20275,FALSE,2022,TRUE,TRUE +"BEAUGHTON",20813,FALSE,1997,TRUE,FALSE +"ILLER",20275,FALSE,2022,TRUE,FALSE "LEWISTON",20183,FALSE,2005,FALSE,TRUE "STRAIGHT",20066,FALSE,1999,TRUE,FALSE -"OBIE",20040,FALSE,2007,TRUE,TRUE +"OBIE",20040,FALSE,2007,TRUE,FALSE "GAREY",19696,FALSE,2004,TRUE,FALSE +"CORNUTT",19644,FALSE,2000,TRUE,FALSE +"ABEGG",19383,FALSE,2000,TRUE,FALSE "TATOUCHE",19341,FALSE,1997,TRUE,FALSE -"UPDEGRAFF",19294,FALSE,2003,TRUE,TRUE -"NITPAC",19236,FALSE,2007,TRUE,FALSE -"GIBSONVILLE",19207,FALSE,2006,TRUE,TRUE -"WOODCHOPPER",19025,FALSE,2001,TRUE,TRUE +"UPDEGRAFF",19294,FALSE,2003,TRUE,FALSE +"GIBSONVILLE",19207,FALSE,2006,TRUE,FALSE +"WOODCHOPPER",19025,FALSE,2001,TRUE,FALSE +"HOHMANN",18939,FALSE,1998,TRUE,FALSE "GOULDER",18870,FALSE,2006,TRUE,FALSE -"PORTOLA",18763,FALSE,2004,TRUE,TRUE +"PORTOLA",18763,FALSE,2004,TRUE,FALSE "CARBERRY",18689,FALSE,2006,TRUE,FALSE "MOUNTAINVILLE",18611,FALSE,2003,FALSE,TRUE +"FORBES",18322,FALSE,2004,TRUE,FALSE "SWAINOW",18224,FALSE,2008,TRUE,FALSE -"PLASKETT",18192,FALSE,2003,TRUE,TRUE +"PLASKETT",18192,FALSE,2003,TRUE,FALSE "WHITINGER",17910,FALSE,2004,TRUE,FALSE "FLEENER",17698,FALSE,2004,TRUE,FALSE "STANISLAUS",17684,FALSE,1997,TRUE,FALSE -"BROBETT",17675,FALSE,2001,TRUE,TRUE +"BROBETT",17675,FALSE,2001,FALSE,TRUE "TOBLER",17674,FALSE,2007,FALSE,TRUE -"HUICHICA",17670,FALSE,2003,TRUE,FALSE "STONEWELL",17637,FALSE,2006,TRUE,FALSE "SPUDROCK",17532,FALSE,2007,TRUE,FALSE -"LOBITOS",17184,FALSE,2003,TRUE,TRUE +"WESTE",17528,FALSE,2008,TRUE,FALSE +"LOBITOS",17184,FALSE,2003,TRUE,FALSE "LAKE JANEE",17085,TRUE,1999,TRUE,TRUE "TOZE",16949,FALSE,1999,FALSE,TRUE "ROGGER",16829,FALSE,2003,TRUE,FALSE +"MASTERSON",16658,FALSE,1998,TRUE,FALSE "GORING",16585,TRUE,1997,FALSE,TRUE "WOOLSTALF",16363,FALSE,2004,TRUE,FALSE "ALCOT",16316,FALSE,1998,TRUE,FALSE -"GIANELLA",16074,FALSE,2006,FALSE,TRUE +"RICHENS",16308,FALSE,1999,TRUE,FALSE "RIVALIER",16041,FALSE,2004,TRUE,FALSE "COYATA",15992,FALSE,2001,TRUE,FALSE "BOHNA",15903,FALSE,2004,TRUE,FALSE -"REDRIVER",15790,FALSE,2008,TRUE,TRUE +"REDRIVER",15790,FALSE,2008,TRUE,FALSE "LITTLE POLE",15665,FALSE,2003,FALSE,TRUE "DEETZ",15567,FALSE,2006,TRUE,FALSE "PICAYUNE",15253,FALSE,2003,FALSE,TRUE -"MAYWOOD",15233,FALSE,1997,TRUE,FALSE "SHARPSHOOTER",15077,FALSE,2005,TRUE,FALSE +"HODA",14971,FALSE,2004,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 +"PINOLE",14339,FALSE,2003,TRUE,FALSE "GOSCH",14334,FALSE,2004,TRUE,FALSE +"BYBEE",14193,FALSE,1997,TRUE,FALSE "ANDERGEORGE",14119,FALSE,2006,FALSE,TRUE -"SIZER",13909,FALSE,2000,TRUE,TRUE -"CUMMISKEY",13878,FALSE,2004,TRUE,TRUE -"CATELLI",13798,FALSE,2003,TRUE,TRUE -"NISENE",13760,FALSE,2003,TRUE,TRUE +"SIZER",13909,FALSE,2000,TRUE,FALSE +"WOLFPEAK",13903,FALSE,2003,TRUE,FALSE +"CUMMISKEY",13878,FALSE,2004,TRUE,FALSE +"CATELLI",13798,FALSE,2003,TRUE,FALSE +"NISENE",13760,FALSE,2003,TRUE,FALSE "WITCHER",13526,FALSE,2009,TRUE,FALSE "HOOSIMBIM",13472,FALSE,2003,TRUE,FALSE "SPLAWN",13420,FALSE,2005,TRUE,FALSE "HAMBONE",13400,FALSE,2004,TRUE,FALSE "BOGUS",13272,FALSE,2004,TRUE,FALSE "HOUSEFIELD",13172,FALSE,1999,TRUE,FALSE -"MEEKS",13085,FALSE,2004,FALSE,TRUE -"AHART",13038,FALSE,2004,TRUE,TRUE -"DANDREA",12952,FALSE,2006,FALSE,TRUE -"KITCHEN CREEK",12891,FALSE,1997,TRUE,FALSE -"PHIPPS",12655,FALSE,2003,TRUE,TRUE +"AHART",13038,FALSE,2004,TRUE,FALSE +"PULANTAT",12941,FALSE,2006,TRUE,FALSE +"PHIPPS",12655,FALSE,2003,TRUE,FALSE "LUALUALEI",12604,TRUE,2000,FALSE,TRUE "FELTA",12487,FALSE,2003,TRUE,TRUE "LUTA",12460,FALSE,2007,TRUE,FALSE @@ -184,25 +199,23 @@ "PULEHU",12123,FALSE,2001,TRUE,FALSE "RICHVILLE",12032,FALSE,1999,TRUE,TRUE "PLEASANT GROVE",11973,FALSE,2003,FALSE,TRUE -"MITCH",11866,FALSE,1999,TRUE,FALSE -"GAVEL",11770,FALSE,2004,TRUE,TRUE +"GAVEL",11770,FALSE,2004,TRUE,FALSE +"TETHRICK",11746,FALSE,2000,TRUE,FALSE "KNUTSEN",11742,FALSE,2003,FALSE,TRUE -"PUTT",11670,FALSE,2004,TRUE,TRUE +"PUTT",11670,FALSE,2004,TRUE,FALSE "AMOS",11669,FALSE,2003,TRUE,TRUE +"BRABBLE",11459,FALSE,1999,TRUE,FALSE "LASCO",11423,FALSE,2008,TRUE,FALSE -"UNGENE",11411,FALSE,2004,TRUE,FALSE -"OBRAY",11308,TRUE,1999,TRUE,TRUE +"OBRAY",11308,TRUE,1999,FALSE,TRUE "WINDMILL",11299,FALSE,2001,FALSE,TRUE -"KALO",11238,FALSE,2004,TRUE,TRUE +"KALO",11238,FALSE,2004,TRUE,FALSE "FANCHER",11187,FALSE,2003,TRUE,TRUE -"WILDCAT",11093,FALSE,2007,TRUE,TRUE "LOSEE",11068,FALSE,1999,FALSE,TRUE -"BOOMTOWN",11039,FALSE,2004,FALSE,TRUE -"ASABEAN",10932,FALSE,2003,TRUE,TRUE -"CREST",10913,FALSE,2006,FALSE,TRUE -"BUTANO",10892,FALSE,2006,TRUE,TRUE -"PUAULU",10807,FALSE,2008,FALSE,TRUE -"KINESAVA",10798,FALSE,1999,TRUE,TRUE +"PAHREAH",10959,FALSE,1999,TRUE,FALSE +"ASABEAN",10932,FALSE,2003,TRUE,FALSE +"BUTANO",10892,FALSE,2006,TRUE,FALSE +"KINESAVA",10798,FALSE,1999,FALSE,TRUE +"OLANCHA",10776,FALSE,2004,TRUE,FALSE "SAL",10594,FALSE,1997,FALSE,TRUE "MINERAL MOUNTAIN",10514,FALSE,1997,TRUE,FALSE "FERNCREEK",10455,FALSE,2003,TRUE,FALSE @@ -210,50 +223,48 @@ "KANG",10338,FALSE,1997,TRUE,FALSE "SCHMUTZ",10324,FALSE,1992,FALSE,TRUE "ANDYS",10255,FALSE,1999,FALSE,TRUE -"LUAP",10174,FALSE,2003,TRUE,FALSE -"BIGELOW",10087,FALSE,2006,TRUE,TRUE -"FREEZEOUT",10062,FALSE,1998,TRUE,TRUE +"BIGELOW",10087,FALSE,2006,TRUE,FALSE +"FREEZEOUT",10062,FALSE,1998,TRUE,FALSE "BROWNSCREEK",9922,FALSE,1997,TRUE,FALSE -"HONOMANU",9901,FALSE,2000,TRUE,TRUE +"HONOMANU",9901,FALSE,2000,TRUE,FALSE "BORAVALL",9881,FALSE,2003,TRUE,FALSE "MORTENSON",9787,FALSE,1999,TRUE,FALSE "OSOTE",9758,FALSE,1999,FALSE,TRUE -"HORSESHOE",9737,FALSE,2004,TRUE,TRUE -"GOZEM",9727,FALSE,2006,TRUE,TRUE +"HORSESHOE",9737,FALSE,2004,TRUE,FALSE +"GOZEM",9727,FALSE,2006,TRUE,FALSE "HARTLESS",9723,FALSE,2004,TRUE,FALSE "STEINMETZ",9696,FALSE,2000,TRUE,FALSE -"NAHA",9689,FALSE,1997,TRUE,TRUE -"RAYOHILL",9521,FALSE,2000,TRUE,TRUE +"NAHA",9689,FALSE,1997,FALSE,TRUE +"RAYOHILL",9521,FALSE,2000,FALSE,TRUE "WINNIBULLI",9481,FALSE,2004,TRUE,FALSE "KILFOIL",9428,FALSE,2003,TRUE,TRUE -"NOTNED",9286,FALSE,2004,TRUE,TRUE +"BEAL",9339,FALSE,2005,TRUE,FALSE +"NOTNED",9286,FALSE,2004,TRUE,FALSE "GARCIA",9205,FALSE,2003,TRUE,FALSE "MARTEE",9196,FALSE,2007,TRUE,FALSE "MCVEGAS",9187,FALSE,2001,FALSE,TRUE -"SHANTOWN",9086,FALSE,2006,TRUE,FALSE -"SANPITCH",8993,FALSE,2003,TRUE,TRUE -"YAINAX",8906,FALSE,2003,TRUE,TRUE -"SAN SIMEON",8785,FALSE,1997,TRUE,TRUE +"DEADFALL",9185,FALSE,1997,TRUE,FALSE +"SANPITCH",8993,FALSE,2003,FALSE,TRUE +"YAINAX",8906,FALSE,2003,TRUE,FALSE +"SAN SIMEON",8785,FALSE,1997,TRUE,FALSE "STACHER",8747,FALSE,2007,TRUE,FALSE "LANGELLAIN",8662,FALSE,2005,TRUE,FALSE "GOOLAWAY",8652,FALSE,2001,TRUE,FALSE "LISADE",8478,FALSE,2009,FALSE,TRUE "DOUGCITY",8425,FALSE,1997,TRUE,FALSE -"GUDGREY",8421,FALSE,1998,TRUE,TRUE +"GUDGREY",8421,FALSE,1998,TRUE,FALSE "SUNRISE",8417,FALSE,1997,FALSE,TRUE "JAFA",8410,FALSE,2003,TRUE,FALSE "DECY",8323,FALSE,1999,TRUE,TRUE -"REWARD",8282,FALSE,1999,TRUE,FALSE "CANYONCREEK",8281,FALSE,2004,TRUE,FALSE -"HUSE",8277,FALSE,1998,TRUE,TRUE -"PARKS",8152,FALSE,1998,TRUE,TRUE +"HUSE",8277,FALSE,1998,TRUE,FALSE +"PARKS",8152,FALSE,1998,TRUE,FALSE "BURNEY",7962,FALSE,2006,TRUE,FALSE -"DELLEKER",7909,FALSE,2004,TRUE,TRUE +"DELLEKER",7909,FALSE,2004,TRUE,FALSE "THREECHOP",7896,FALSE,2003,TRUE,FALSE "TACAN",7880,FALSE,2001,FALSE,TRUE "ULHALF",7831,FALSE,2008,TRUE,FALSE "KULA",7779,FALSE,2000,FALSE,TRUE -"PAHRANAGAT",7769,FALSE,2008,TRUE,FALSE "WINLO",7765,FALSE,1997,TRUE,FALSE "HANGTOWN",7763,FALSE,2004,TRUE,FALSE "SCARIBOU",7728,FALSE,2008,TRUE,FALSE @@ -262,24 +273,23 @@ "KETTLEBELLY",7674,FALSE,2006,TRUE,FALSE "MINERSVILLE",7655,FALSE,2001,TRUE,FALSE "HERMIT",7638,FALSE,2004,TRUE,FALSE -"PELELIU",7629,TRUE,2007,TRUE,TRUE +"PELELIU",7629,TRUE,2007,TRUE,FALSE "CASPAR",7576,FALSE,2003,TRUE,FALSE "FANTZ",7543,FALSE,2000,TRUE,FALSE "RED HILL",7542,FALSE,1997,TRUE,FALSE -"NASHMEAD",7495,FALSE,2003,TRUE,TRUE +"NASHMEAD",7495,FALSE,2003,TRUE,FALSE "WHORLED",7489,FALSE,2008,TRUE,FALSE +"HUKILL",7486,FALSE,1997,TRUE,FALSE "BUNDORA",7469,FALSE,2006,TRUE,FALSE "TANGLE",7369,FALSE,1997,TRUE,TRUE -"DIPSEA",7366,FALSE,2003,TRUE,TRUE -"RUSSIAN",7348,FALSE,1998,TRUE,TRUE +"DIPSEA",7366,FALSE,2003,TRUE,FALSE "REDCAP",7274,FALSE,2006,TRUE,FALSE "QUINLIVEN",7247,FALSE,2003,TRUE,FALSE "GUBE",7177,FALSE,2003,TRUE,FALSE -"ARVA",7126,FALSE,1997,TRUE,FALSE "ZEESIX",6986,FALSE,1999,FALSE,TRUE -"ALAMBIQUE",6937,FALSE,1998,TRUE,TRUE +"ALAMBIQUE",6937,FALSE,1998,TRUE,FALSE "OMSTOTT",6720,FALSE,2009,TRUE,FALSE -"ZAKME",6681,FALSE,1997,TRUE,TRUE +"ZAKME",6681,FALSE,1997,TRUE,FALSE "ZEGRO",6590,FALSE,2003,FALSE,TRUE "TAHAND",6583,FALSE,2008,TRUE,FALSE "GOODWIN",6461,FALSE,2000,TRUE,FALSE @@ -287,6 +297,7 @@ "NORCAN",6310,FALSE,1997,TRUE,TRUE "RUSTLERPEAK",6307,FALSE,2007,TRUE,FALSE "LONGBELL",6238,FALSE,2004,TRUE,FALSE +"SWEETBRIAR",6206,FALSE,2005,TRUE,FALSE "SEDWELL",6117,FALSE,1992,FALSE,TRUE "PALOMARIN",5942,FALSE,2001,TRUE,FALSE "SHUMWAY",5934,FALSE,1999,FALSE,TRUE @@ -294,19 +305,20 @@ "RAPHO",5793,FALSE,2009,FALSE,TRUE "CHIMNEYROCK",5780,FALSE,2005,TRUE,FALSE "TINGEY",5776,FALSE,2002,FALSE,TRUE -"HULUA",5769,FALSE,2001,TRUE,TRUE -"SALT LAKE",5732,FALSE,1999,TRUE,TRUE +"MUSSERHILL",5773,FALSE,2004,TRUE,FALSE +"HULUA",5769,FALSE,2001,TRUE,FALSE +"SALT LAKE",5732,FALSE,1999,TRUE,FALSE "GAMBOA",5668,FALSE,2003,TRUE,FALSE "REEFRIDGE",5560,FALSE,1997,TRUE,FALSE -"LORACK",5462,FALSE,2004,TRUE,TRUE +"BEHEMOTOSH",5549,FALSE,2006,TRUE,FALSE +"LORACK",5462,FALSE,2004,TRUE,FALSE "JUMPOFF",5433,FALSE,2004,TRUE,FALSE "ALVISO",5423,FALSE,2001,FALSE,TRUE "PATBURN",5407,FALSE,2008,TRUE,FALSE -"BOTTLEHILL",5388,FALSE,2007,TRUE,FALSE "DEPNER",5296,FALSE,2006,TRUE,FALSE -"MADDEN",5268,FALSE,1997,TRUE,TRUE +"MADDEN",5268,FALSE,1997,TRUE,FALSE "YARDLEY",5265,FALSE,2003,FALSE,TRUE -"EUER",5245,FALSE,2004,TRUE,TRUE +"EUER",5245,FALSE,2004,TRUE,FALSE "FONS",5192,FALSE,2006,TRUE,FALSE "HILDRETH",5180,FALSE,1997,FALSE,TRUE "NORDIC",5140,FALSE,1999,TRUE,TRUE @@ -315,76 +327,78 @@ "NIKAL",4899,FALSE,2004,TRUE,FALSE "SKYHAVEN",4834,FALSE,1997,FALSE,TRUE "SOUTHPAC",4808,FALSE,2008,TRUE,FALSE -"SHIMA",4787,FALSE,2016,TRUE,FALSE +"INDLETON",4774,FALSE,1998,TRUE,FALSE "CONE",4706,FALSE,2007,TRUE,FALSE "TERRABELLA",4693,FALSE,1997,TRUE,FALSE -"MCGARVEY",4692,FALSE,2001,TRUE,TRUE +"MCGARVEY",4692,FALSE,2001,TRUE,FALSE "SHERVAL",4690,FALSE,2003,TRUE,FALSE "HATISU",4631,FALSE,2002,TRUE,FALSE "WITTENBERG",4574,FALSE,1998,TRUE,FALSE "RICH",4554,FALSE,1999,FALSE,TRUE "SHINGLEMILL",4515,FALSE,2003,TRUE,FALSE -"WHISPERING",4413,FALSE,2003,TRUE,TRUE +"WHISPERING",4413,FALSE,2003,TRUE,FALSE +"IPISH",4370,FALSE,1997,TRUE,FALSE "TRETTEN",4315,FALSE,2003,TRUE,FALSE "WEAVERVILLE",4309,FALSE,1997,TRUE,FALSE "CAMPFOUR",4309,FALSE,2003,TRUE,FALSE "WAAS",4295,FALSE,1999,FALSE,TRUE "GUILDER",4295,FALSE,2003,TRUE,TRUE "RACE",4251,FALSE,2001,TRUE,FALSE -"MOJO",4241,FALSE,2006,TRUE,TRUE +"MOJO",4241,FALSE,2006,TRUE,FALSE "MONDEY",4240,FALSE,1997,TRUE,TRUE "WOODS CROSS",4222,FALSE,1997,FALSE,TRUE -"KNAPKE",4201,FALSE,2000,TRUE,TRUE +"KNAPKE",4201,FALSE,2000,TRUE,FALSE "MUNK",4178,FALSE,2003,FALSE,TRUE -"TAMFLAT",4143,FALSE,1997,TRUE,TRUE +"TAMFLAT",4143,FALSE,1997,TRUE,FALSE "SUEY",4120,FALSE,2006,TRUE,FALSE -"LUMBERLY",4052,FALSE,2007,TRUE,TRUE +"LUMBERLY",4052,FALSE,2007,TRUE,FALSE "DANHUNT",4035,FALSE,2006,TRUE,FALSE "MAUGHAN",3995,FALSE,1999,FALSE,TRUE -"MCGINNIS",3915,FALSE,2009,TRUE,TRUE +"GREENGULCH",3977,FALSE,2004,TRUE,FALSE +"MCGINNIS",3915,FALSE,2009,TRUE,FALSE +"HATCH",3894,FALSE,1999,TRUE,FALSE "PAICE",3870,FALSE,2003,FALSE,TRUE "PETEETNEET",3854,FALSE,2001,FALSE,TRUE "HIVAL",3819,FALSE,1999,FALSE,TRUE -"ASTA",3769,FALSE,2004,TRUE,TRUE +"ASTA",3769,FALSE,2004,TRUE,FALSE "SITKUM",3754,FALSE,2000,TRUE,FALSE -"APILAM",3729,TRUE,2007,TRUE,FALSE "MILLVILLE",3711,FALSE,1999,TRUE,FALSE -"WAIALEALE",3699,FALSE,2001,TRUE,TRUE +"WAIALEALE",3699,FALSE,2001,TRUE,FALSE "TOBISH",3684,FALSE,2001,FALSE,TRUE "SIERRAVILLE",3667,FALSE,2004,TRUE,FALSE -"HALLIHAN",3638,FALSE,2000,TRUE,TRUE +"HALLIHAN",3638,FALSE,2000,TRUE,FALSE "ROOP",3616,FALSE,2008,TRUE,FALSE "TIONESTA",3601,FALSE,2004,TRUE,FALSE "CHUMMY",3538,FALSE,2004,TRUE,FALSE "CEDARGROVE",3535,FALSE,2005,TRUE,FALSE -"CAMBERN",3489,FALSE,2000,FALSE,TRUE -"DEMOX",3458,FALSE,2003,TRUE,TRUE +"DEMOX",3458,FALSE,2003,TRUE,FALSE "VALCREEK",3426,FALSE,1997,TRUE,FALSE "WELOY",3422,FALSE,2006,TRUE,FALSE "WAFLA",3412,FALSE,2008,TRUE,FALSE "JANILE",3391,FALSE,2004,TRUE,FALSE "PABLO",3382,FALSE,2004,TRUE,TRUE -"HUYSINK",3262,FALSE,2006,TRUE,TRUE +"BUCKSHOT",3375,FALSE,2005,TRUE,FALSE +"HUYSINK",3262,FALSE,2006,TRUE,FALSE +"MCNAB",3233,FALSE,2005,TRUE,FALSE "SHEAR",3198,FALSE,2001,FALSE,TRUE "YAP",3158,FALSE,2006,TRUE,FALSE "GIBNEY",3123,FALSE,2006,TRUE,FALSE -"LILAPOINT",3122,FALSE,2011,TRUE,FALSE "VITZTHUM",3080,FALSE,2003,TRUE,FALSE "ZEUGIRDOR",3059,FALSE,2009,TRUE,TRUE "GLEASON",3000,FALSE,2004,TRUE,FALSE -"GANSNER",3000,FALSE,2001,TRUE,TRUE +"GANSNER",3000,FALSE,2001,TRUE,FALSE "PARAGON",2981,FALSE,2009,TRUE,FALSE "MEDICI",2941,FALSE,2004,TRUE,FALSE "BLANKOUT",2936,FALSE,2004,TRUE,FALSE "OSORIDGE",2906,FALSE,2007,FALSE,TRUE "VLECK",2880,FALSE,1997,TRUE,FALSE -"MIERUF",2836,FALSE,2004,TRUE,TRUE +"MIERUF",2836,FALSE,2004,TRUE,FALSE "KJAR",2835,FALSE,2000,FALSE,TRUE "STODA",2804,FALSE,2003,FALSE,TRUE "HAVENSNECK",2721,FALSE,2006,TRUE,FALSE "MUSTY",2710,FALSE,2001,TRUE,FALSE "SNOWVILLE",2649,FALSE,2003,FALSE,TRUE -"ASHLEY",2644,FALSE,1998,TRUE,TRUE +"ASHLEY",2644,FALSE,1998,FALSE,TRUE "PROVIG",2632,FALSE,1997,TRUE,FALSE "MORGALA",2630,FALSE,1997,FALSE,TRUE "REDCAN",2580,FALSE,2003,FALSE,TRUE @@ -392,78 +406,81 @@ "BARHISKEY",2494,FALSE,2001,TRUE,FALSE "GUERIN",2453,FALSE,2013,TRUE,FALSE "CARLAIN",2394,FALSE,2003,TRUE,FALSE +"ORSET",2353,FALSE,2004,TRUE,FALSE "KEPHART",2345,FALSE,2006,TRUE,FALSE -"WEBILE",2283,FALSE,2016,TRUE,FALSE "KAHANUI",2254,FALSE,2000,TRUE,FALSE -"MEDLAKE",2242,FALSE,2007,TRUE,TRUE +"MEDLAKE",2242,FALSE,2007,TRUE,FALSE "MUD SPRINGS",2239,FALSE,2003,FALSE,TRUE "LAOLAO",2212,FALSE,2006,TRUE,FALSE "ELAM",2205,FALSE,2004,TRUE,FALSE "MCPHIE",2201,FALSE,2001,FALSE,TRUE "TREGONING",2175,FALSE,1998,TRUE,FALSE -"NODUR",2143,FALSE,1997,TRUE,FALSE -"KILAUEA",2050,FALSE,2008,FALSE,TRUE +"HILTABIDEL",2136,FALSE,2004,TRUE,FALSE +"SHASTACOSTA",2022,FALSE,1997,TRUE,FALSE "TWINBUTTES",2016,FALSE,2007,TRUE,TRUE "GREEN CANYON",2001,FALSE,1992,TRUE,TRUE +"SHADELEAF",1995,FALSE,1997,TRUE,FALSE "BEARGULCH",1970,FALSE,1998,TRUE,FALSE "BELLAVISTA",1966,FALSE,2003,TRUE,FALSE "PAPEEK",1904,FALSE,2008,TRUE,FALSE -"PITTMAN",1897,FALSE,1997,TRUE,TRUE +"PITTMAN",1897,FALSE,1997,FALSE,TRUE "OQUIN",1890,FALSE,1998,TRUE,FALSE "IVERSEN",1853,FALSE,2003,TRUE,FALSE "DARBY",1840,FALSE,2005,TRUE,FALSE "REINECKE",1813,FALSE,1998,TRUE,FALSE -"KOOLAU",1696,TRUE,2000,TRUE,TRUE +"DICECREEK",1775,FALSE,2001,TRUE,FALSE +"KOOLAU",1696,TRUE,2000,TRUE,FALSE "HARECREEK",1643,FALSE,2003,TRUE,FALSE "VANVOR",1633,FALSE,2003,TRUE,FALSE -"KITTLESON",1602,FALSE,2000,TRUE,TRUE +"KITTLESON",1602,FALSE,2000,TRUE,FALSE "TABECHEDING",1587,FALSE,2006,TRUE,FALSE -"BIGHILL",1575,FALSE,2004,TRUE,TRUE -"MANTON",1524,FALSE,2007,TRUE,TRUE +"BIGHILL",1575,FALSE,2004,TRUE,FALSE +"CRANBAY",1551,FALSE,1998,TRUE,FALSE +"MANTON",1524,FALSE,2007,TRUE,FALSE +"TABLEROCK",1506,FALSE,1997,TRUE,FALSE "COMPTCHE",1456,FALSE,2004,TRUE,FALSE -"TISHAR",1442,FALSE,2003,TRUE,TRUE +"TISHAR",1442,FALSE,2003,TRUE,FALSE "QUAKING",1438,FALSE,2007,TRUE,FALSE -"NOYO",1402,FALSE,2006,TRUE,TRUE +"NOYO",1402,FALSE,2006,TRUE,FALSE "SNOWBRIER",1368,FALSE,2001,TRUE,FALSE "SLACREEK",1341,FALSE,2004,TRUE,FALSE -"PARADISE",1321,FALSE,1997,TRUE,TRUE -"OLOKUI",1299,FALSE,2001,TRUE,TRUE +"PARADISE",1321,FALSE,1997,FALSE,TRUE +"OLOKUI",1299,FALSE,2001,TRUE,FALSE "KEAAU",1289,FALSE,2000,TRUE,FALSE "DEMOGUL",1270,FALSE,2004,TRUE,FALSE "BURIBURI",1234,FALSE,2003,TRUE,FALSE "CARGENT",1198,FALSE,1998,TRUE,FALSE "KILLET",1158,FALSE,2001,TRUE,FALSE +"WOODLEAF",1142,FALSE,2004,TRUE,FALSE "MAYFIELD",1137,FALSE,2009,FALSE,TRUE -"BORIANA",1108,FALSE,2003,FALSE,TRUE -"PENDOLA",1095,FALSE,2004,TRUE,TRUE +"PENDOLA",1095,FALSE,2004,TRUE,FALSE "NEKKEN",1088,FALSE,2006,TRUE,FALSE "DEKKAS",1055,FALSE,2006,TRUE,FALSE -"LOSTPOINT",951,FALSE,2025,TRUE,FALSE "GLENBLAIR",927,FALSE,2004,TRUE,FALSE -"FISHROCK",909,FALSE,2003,TRUE,TRUE +"FISHROCK",909,FALSE,2003,TRUE,FALSE "THREEFORKS",893,FALSE,1999,TRUE,FALSE -"SHASTINA",827,FALSE,2004,TRUE,TRUE -"GIBWELL",814,FALSE,2006,TRUE,TRUE +"LITTLERED",870,FALSE,1997,TRUE,FALSE +"SHASTINA",827,FALSE,2004,TRUE,FALSE +"GIBWELL",814,FALSE,2006,TRUE,FALSE "PERINOS",780,FALSE,1999,FALSE,TRUE "HAMMERSLEY",777,FALSE,2001,TRUE,FALSE -"CABLAB",766,FALSE,2017,TRUE,FALSE "BANADERU",759,FALSE,2006,TRUE,TRUE "POLICH",725,FALSE,2007,FALSE,TRUE -"DENTDRAW",662,FALSE,1999,TRUE,FALSE "DOMPIER",505,FALSE,2005,TRUE,FALSE -"CAMPTANK",237,FALSE,2007,TRUE,FALSE +"SEASIDE",343,FALSE,2006,TRUE,FALSE "ZANE",NA,FALSE,2001,TRUE,TRUE "TULERT",NA,FALSE,2006,TRUE,TRUE -"TOURNQUIST",NA,FALSE,2003,TRUE,TRUE -"THURLONI",NA,FALSE,2007,TRUE,TRUE +"TOURNQUIST",NA,FALSE,2003,TRUE,FALSE +"THURLONI",NA,FALSE,2007,TRUE,FALSE "SURVYA",NA,FALSE,2007,TRUE,TRUE -"STOPATOE",NA,FALSE,2001,TRUE,FALSE "SAWABE",NA,FALSE,1997,TRUE,FALSE "RATONWEST",NA,FALSE,2012,TRUE,FALSE -"ORDNANCE",NA,FALSE,2007,TRUE,TRUE +"ORDNANCE",NA,FALSE,2007,TRUE,FALSE "JANEFALLS",NA,FALSE,2005,TRUE,FALSE "HUME",NA,FALSE,2003,TRUE,FALSE -"HONEYDEW",NA,FALSE,2003,TRUE,TRUE +"HONEYDEW",NA,FALSE,2003,TRUE,FALSE +"HENCRATT",NA,FALSE,1997,TRUE,FALSE +"HAFUL",NA,FALSE,2007,TRUE,FALSE "CIMA",NA,FALSE,2006,TRUE,FALSE "CAX",NA,FALSE,2015,TRUE,TRUE "BLACKMOUNT",NA,FALSE,1993,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/RO/morgantown-hz.csv b/inst/extdata/OSD-error-reporting/RO/morgantown-hz.csv index 0b4c503fee..b7fe259cb1 100644 --- a/inst/extdata/OSD-error-reporting/RO/morgantown-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/morgantown-hz.csv @@ -2,9 +2,6 @@ "ALTON","2Cl",104,160,NA,NA,NA,"7.5YR","4","2" "AMWELL","Btxl",53,66,NA,NA,NA,"7.5YR","5","4" "AYR","Btl",66,84,NA,NA,NA,"10YR","5","4" -"BAILEGAP","0i",0,1,NA,NA,NA,NA,NA,NA -"BERGEN","0p",0,25,NA,NA,NA,"10YR","2","1" -"BERGEN","0a",25,36,NA,NA,NA,"10YR","3","2" "BOURBON","Ap",0,23,"10YR","5","2","l0YR","2","2" "BOURBON","Bl",23,30,"10YR","7","3","l0YR","5","3" "BOURBON","B21t",30,64,NA,NA,NA,"l0YR","5","3" @@ -27,18 +24,13 @@ "CALVERTON","E",5,25,NA,NA,NA,"l0YR","7","4" "CALVERTON","Bt",25,48,NA,NA,NA,"l0YR","6","6" "CALVERTON","Bx",48,74,NA,NA,NA,"l0YR","6","6" -"CARDIGAN","0e",0,2,NA,NA,NA,NA,NA,NA -"CATLETT","0i",0,3,NA,NA,NA,NA,NA,NA "CEDARCREEK","Cl",8,38,NA,NA,NA,NA,NA,NA "CHEEKTOWAGA","2Cl",66,84,NA,NA,NA,"7.5YR","4","2" "CHENAULT","Ap",0,28,NA,NA,NA,"1OYR","4","3" "CHENAULT","2Bt3",104,124,NA,NA,NA,"1OYR","4","4" -"CHOCORUA","0e1",0,20,NA,NA,NA,"5YR","2","2" -"CHOCORUA","0e2",20,41,NA,NA,NA,"5YR","2","2" -"CHOCORUA","0e3",41,86,NA,NA,NA,"5YR","2","2" -"CLOVERLICK","0i",0,5,NA,NA,NA,NA,NA,NA "COESSE","2Bgbl",86,104,NA,NA,NA,"2.5Y","4","2" -"DORVAL","0a2",43,58,NA,NA,NA,"5YR","3","1" +"CRANSTON","Oe",1,0,NA,NA,NA,NA,NA,NA +"CRANSTON","Oi",3,1,NA,NA,NA,NA,NA,NA "DRAYKE","Btl",20,36,NA,NA,NA,"10R","3","6" "DRYPOND","Oi",10,0,NA,NA,NA,NA,NA,NA "DUMMERSTON","Bwl",13,28,NA,NA,NA,"10YR","4","4" @@ -48,20 +40,13 @@ "FIVEBLOCK","Cl",15,64,NA,NA,NA,"10YR","4","3" "GATTON","2Btx1",56,91,NA,NA,NA,"1OYR","5","4" "GATTON","Ap",NA,15,NA,NA,NA,"1OYR","4","4" -"GLENNIE","0e",0,5,NA,NA,NA,NA,NA,NA -"GOLDVEIN","0i",0,3,NA,NA,NA,NA,NA,NA -"GOLDVEIN","0e",3,5,NA,NA,NA,"10YR","3","1" "HAIGHTS","Bwl",15,43,NA,NA,NA,"7.5YR","4","4" "HEMPSTEAD","Bwl",38,64,NA,NA,NA,"10YR","5","6" -"HITCHCOCK","0i",0,5,NA,NA,NA,NA,NA,NA "HOOSIC","Bwl",15,28,NA,NA,NA,"10YR","5","6" "LAGROSS","Bwl",20,36,NA,NA,NA,"7.5YR","4","4" -"LEW","0i",0,5,NA,NA,NA,NA,NA,NA "LODI","Btl",18,28,NA,NA,NA,"7.5YR","5","6" "MACHIAS","AO",5,0,NA,NA,NA,NA,NA,NA "MANASSAS","Btl",41,61,NA,NA,NA,"5YR","3","4" -"MARTISCO","0a1",0,18,NA,NA,NA,"5YR","2","1" -"MARTISCO","0a2",18,33,NA,NA,NA,"5YR","2","1" "MERRIMAC","Bwl",25,38,NA,NA,NA,"7.5YR","4","4" "MIKADO","Oe",5,0,NA,NA,NA,NA,NA,NA "MOOSABEC","Oil",0,30,NA,NA,NA,"10YR","8","2" @@ -69,37 +54,21 @@ "MT. ZION","Btl",30,48,NA,NA,NA,"10YR","5","6" "MUNSON","2Bgl",38,48,NA,NA,NA,"2.5Y","5","2" "ORISKANY","Oi",3,0,NA,NA,NA,NA,NA,NA -"OSSIPEE","0e1",0,30,NA,NA,NA,"5YR","2","2" -"OSSIPEE","0e2",30,46,NA,NA,NA,"5YR","2","2" -"OSSIPEE","0e3",46,64,NA,NA,NA,"7.5YR","3","2" "PATE","Btl",15,36,NA,NA,NA,"10YR","4","3" -"PAVILION","0p",0,23,NA,NA,NA,"10YR","2","1" -"PAVILION","0a1",23,33,NA,NA,NA,"10YR","3","2" "PINEVILLE","Btl",28,61,NA,NA,NA,"10YR","6","6" "POCONO","Oa",3,0,NA,NA,NA,"N","2","0" "PROCHASKA","B2lg",30,46,NA,NA,NA,"10YR","4","1" "RAVENROCK","Btl",18,41,NA,NA,NA,"5YR","4","6" -"ROCKCASTLE","02",3,0,NA,NA,NA,"10YR","2","1" -"ROCKCASTLE","01",8,3,NA,NA,NA,NA,NA,NA +"ROCKCASTLE","O2",3,0,NA,NA,NA,"10YR","2","1" +"ROCKCASTLE","O1",8,3,NA,NA,NA,NA,NA,NA "ROCKCASTLE","A1",NA,3,NA,NA,NA,"10YR","3","1" -"ROCKMILL","0a1",46,58,NA,NA,NA,"10YR","2","1" -"ROCKMILL","0a2",58,102,NA,NA,NA,"10YR","2","1" -"ROCKMILL","0a3",102,203,NA,NA,NA,"10YR","2","2" -"SHAKER","0e",0,5,NA,NA,NA,"10YR","2","1" "SIDELING","Btl",30,74,NA,NA,NA,"7.5YR","5","6" "SIMONIN","Btl",66,86,NA,NA,NA,"10YR","5","4" -"SQUAMSCOTT","0e",0,5,NA,NA,NA,"5YR","3","3" -"SQUAMSCOTT","0a",5,8,NA,NA,NA,"5YR","2","1" "STOKLY","Bw",20,48,NA,NA,NA,"1OYR","5","3" "STOKLY","Ap",NA,20,NA,NA,NA,"1OYR","4","2" -"SUCCESS","0i",0,10,NA,NA,NA,NA,NA,NA -"SUCCESS","0a",10,23,NA,NA,NA,"5YR","2","1" "SWIMLEY","Btl",23,36,NA,NA,NA,"5YR","4","4" -"THURMONT","0i",0,5,NA,NA,NA,NA,NA,NA -"THURMONT","0e",5,10,NA,NA,NA,NA,NA,NA "TORONTO","Btl",30,41,NA,NA,NA,"10YR","5","3" "TREVLAC","Btl",33,51,NA,NA,NA,"10YR","5","6" -"WAUMBEK","0e",0,3,NA,NA,NA,NA,NA,NA "WEIDER","2Cl",64,97,NA,NA,NA,"2.5Y","4","4" "WURNO","Ap",0,20,NA,NA,NA,"1OYR","5","4" "WURNO","Bw",20,36,NA,NA,NA,"1OYR","6","6" diff --git a/inst/extdata/OSD-error-reporting/RO/morgantown-sections.csv b/inst/extdata/OSD-error-reporting/RO/morgantown-sections.csv index 7f9911de5c..f997ac430c 100644 --- a/inst/extdata/OSD-error-reporting/RO/morgantown-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/morgantown-sections.csv @@ -7,13 +7,12 @@ "ASHVILLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "ATSION","DUPLICATION OF HEADERS","[TAXONOMIC CLASS: Sandy, siliceous, mesic Aeric Alaquods]","morgantown, wv" "ATSION","DUPLICATE STANDARD SECTIONS","[TAXONOMIC CLASS]","morgantown, wv" -"BALTIMORE","MULTILINE TYPICAL PEDON","[number of multilines=4]","morgantown, wv" +"BALTIMORE","MULTILINE TYPICAL PEDON","[number of multilines=3]","morgantown, wv" "BELTSVILLE","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "BERKS","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "BRANDYWINE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "BURKETOWN","MULTILINE TYPICAL PEDON","[number of multilines=2]","morgantown, wv" "CALVERT","SECTION HEADINGS",NA,"morgantown, wv" -"CARDOVA","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "CHICONE","DUPLICATE STANDARD SECTIONS","[TAXONOMIC CLASS]","morgantown, wv" "CHILI","DUPLICATE STANDARD SECTIONS","[REMARKS]","morgantown, wv" "CHILLUM","DUPLICATION OF HEADERS","[TAXONOMIC CLASS: Fine-silty, mixed, semiactive, mesic Typic Hapludults]","morgantown, wv" @@ -27,13 +26,13 @@ "COLTS NECK","DUPLICATE STANDARD SECTIONS","[TAXONOMIC CLASS]","morgantown, wv" "COLYER","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "COOLVILLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" +"CRANSTON","MULTILINE TYPICAL PEDON","[number of multilines=2]","morgantown, wv" "CUMBERSTONE","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "DEALE","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "DONLONTON","MULTILINE TYPICAL PEDON","[number of multilines=5]","morgantown, wv" "ELKTON","DUPLICATION OF HEADERS","[TAXONOMIC CLASS: Fine-silty, mixed, active, mesic Typic Endoaquults]","morgantown, wv" "ELKTON","DUPLICATE STANDARD SECTIONS","[TAXONOMIC CLASS]","morgantown, wv" "ELLINGTON","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" -"ENOSBURG","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "EVENDALE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "FAIRFAX","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "FENWICK","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" @@ -45,7 +44,6 @@ "GRIST MILL","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "GROSSTOWN","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "GUNSTON","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" -"HARBOR","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "HENLOPEN","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "HOGHOLE","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" "HOLLYWOOD","MULTILINE TYPICAL PEDON","[number of multilines=5]","morgantown, wv" @@ -71,8 +69,8 @@ "MOSHANNON","MULTILINE TYPICAL PEDON","[number of multilines=5]","morgantown, wv" "MOSHUP","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "MUIRKIRK","MULTILINE TYPICAL PEDON","[number of multilines=5]","morgantown, wv" -"OMULGA","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "OSSIPEE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" +"PAWCATUCK","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "PIANKESHAW","MULTILINE TYPICAL PEDON","[number of multilines=4]","morgantown, wv" "PINEGROVE","MULTILINE TYPICAL PEDON","[number of multilines=4]","morgantown, wv" "POMFRET","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" @@ -97,5 +95,4 @@ "WOODSTOWN","DUPLICATION OF HEADERS","[TAXONOMIC CLASS: Fine-loamy, mixed, active, mesic Aquic Hapludults]","morgantown, wv" "WOODSTOWN","DUPLICATE STANDARD SECTIONS","[TAXONOMIC CLASS]","morgantown, wv" "WOOLPER","MULTILINE TYPICAL PEDON","[number of multilines=4]","morgantown, wv" -"WRIGHTSVILLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","morgantown, wv" "ZEKIAH","DUPLICATE STANDARD SECTIONS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE]","morgantown, wv" diff --git a/inst/extdata/OSD-error-reporting/RO/morgantown-series.csv b/inst/extdata/OSD-error-reporting/RO/morgantown-series.csv index 8e0d39ead9..d790b7f436 100644 --- a/inst/extdata/OSD-error-reporting/RO/morgantown-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/morgantown-series.csv @@ -1,36 +1,27 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"WRIGHTSVILLE",414007,TRUE,2006,TRUE,FALSE "PINEVILLE",401952,FALSE,2003,FALSE,TRUE "MERRIMAC",291368,TRUE,2010,FALSE,TRUE "ORISKANY",248113,FALSE,2008,TRUE,FALSE -"CLOVERLICK",228175,FALSE,2011,FALSE,TRUE "CEDARCREEK",169132,FALSE,2000,FALSE,TRUE +"BELTSVILLE",146009,FALSE,2005,TRUE,FALSE "HOOSIC",141898,TRUE,2000,FALSE,TRUE -"OMULGA",129801,FALSE,2009,TRUE,FALSE "DUTCHESS",128660,FALSE,2000,TRUE,FALSE "ALTON",117483,FALSE,2011,FALSE,TRUE "DUMMERSTON",100838,FALSE,2001,FALSE,TRUE -"CARDIGAN",91951,FALSE,2012,FALSE,TRUE "FIVEBLOCK",88866,FALSE,2000,FALSE,TRUE "SIDELING",77864,FALSE,2001,FALSE,TRUE -"THURMONT",74572,FALSE,2008,FALSE,TRUE +"CRANSTON",76525,FALSE,2005,TRUE,FALSE "ELKA",69925,FALSE,1999,FALSE,TRUE "LODI",66649,TRUE,2010,FALSE,TRUE -"CHOCORUA",51926,FALSE,2000,FALSE,TRUE "TORONTO",39592,FALSE,2022,FALSE,TRUE "PATE",32332,FALSE,2006,FALSE,TRUE -"BAILEGAP",31867,FALSE,2002,FALSE,TRUE "TREVLAC",30796,FALSE,2003,FALSE,TRUE -"WAUMBEK",30768,TRUE,1998,FALSE,TRUE "BOURBON",29332,FALSE,2021,FALSE,TRUE -"DORVAL",28874,FALSE,2004,FALSE,TRUE "MACHIAS",28062,FALSE,2006,TRUE,FALSE "STOKLY",26508,FALSE,2005,TRUE,TRUE -"LEW",26441,FALSE,1997,FALSE,TRUE "ELBERT",23220,FALSE,1997,FALSE,TRUE -"MARTISCO",21932,FALSE,2021,FALSE,TRUE "POCONO",20498,FALSE,1987,TRUE,FALSE -"ROCKCASTLE",18947,FALSE,2001,TRUE,TRUE +"ROCKCASTLE",18947,FALSE,2001,TRUE,FALSE "DRAYKE",18447,FALSE,2022,FALSE,TRUE "WURNO",18390,TRUE,1998,FALSE,TRUE "WILPOINT",18386,FALSE,1988,TRUE,FALSE @@ -39,16 +30,11 @@ "MUNSON",15251,FALSE,1997,FALSE,TRUE "AMWELL",15244,FALSE,2005,FALSE,TRUE "MT. ZION",15236,FALSE,2002,FALSE,TRUE -"SQUAMSCOTT",15193,FALSE,1997,FALSE,TRUE -"GLENNIE",15146,FALSE,2001,FALSE,TRUE "RAVENROCK",15090,FALSE,2002,FALSE,TRUE -"SHAKER",14898,FALSE,1999,FALSE,TRUE "GATTON",14523,FALSE,2003,TRUE,TRUE -"OSSIPEE",13774,FALSE,2000,FALSE,TRUE +"MAPLECREST",13659,FALSE,1998,TRUE,FALSE "MANASSAS",12133,FALSE,2004,FALSE,TRUE "MOOSABEC",11922,FALSE,2007,FALSE,TRUE -"HITCHCOCK",9707,FALSE,1998,FALSE,TRUE -"ENOSBURG",9275,FALSE,1998,TRUE,FALSE "CHEEKTOWAGA",9044,FALSE,2011,FALSE,TRUE "BRENTSVILLE",8755,FALSE,1997,FALSE,TRUE "AYR",8234,FALSE,2022,FALSE,TRUE @@ -58,18 +44,12 @@ "BURKITTSVILLE",6348,FALSE,2009,FALSE,TRUE "HEMPSTEAD",6195,FALSE,2000,FALSE,TRUE "COESSE",5362,FALSE,2007,FALSE,TRUE -"HARBOR",5265,FALSE,2008,TRUE,FALSE -"CATLETT",5178,FALSE,2004,FALSE,TRUE "BUCKTON",4271,FALSE,2005,FALSE,TRUE -"GOLDVEIN",3993,FALSE,2003,FALSE,TRUE -"BERGEN",3992,FALSE,2004,FALSE,TRUE "LAGROSS",3896,FALSE,2000,FALSE,TRUE "SIMONIN",3609,FALSE,2004,FALSE,TRUE +"RIGA",3588,FALSE,1988,TRUE,FALSE "BUCKEYSTOWN",3060,FALSE,2004,FALSE,TRUE "CALVERTON",2588,FALSE,2005,FALSE,TRUE -"SUCCESS",2516,FALSE,2001,FALSE,TRUE -"CARDOVA",1285,FALSE,2016,TRUE,FALSE -"ROCKMILL",1093,FALSE,2021,FALSE,TRUE "WEIDER",1079,FALSE,2000,FALSE,TRUE -"PAVILION",867,FALSE,2004,FALSE,TRUE +"PAVILION",867,FALSE,2004,TRUE,FALSE "MIKADO",NA,FALSE,NA,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/RO/salina-hz.csv b/inst/extdata/OSD-error-reporting/RO/salina-hz.csv index a420fec8d2..f4722445d7 100644 --- a/inst/extdata/OSD-error-reporting/RO/salina-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/salina-hz.csv @@ -1,33 +1,15 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"ARIKARA","0i",0,3,NA,NA,NA,NA,NA,NA -"AU TRAIN","0a",0,5,NA,NA,NA,"5YR","2.5","1" "BAYTOWN","A3",41,48,"l0YR","5","2","10YR","3","2" -"BEECHWOOD","Oa",5,5,NA,NA,NA,"10YR","3","4" +"BEECHWOOD","Oa",5,0,NA,NA,NA,"10YR","3","4" "BEECHWOOD","Oi",10,5,NA,NA,NA,NA,NA,NA -"BOOTS","0a1",0,10,NA,NA,NA,"5YR","2","1" -"BOTTINEAU","0i",0,5,NA,NA,NA,NA,NA,NA -"BOWSTRING","0a2",46,97,NA,NA,NA,"N","2","0" -"BOWSTRING","0'a1",119,203,NA,NA,NA,"N","2","0" +"BERGKELLER","Oi",3,0,NA,NA,NA,NA,NA,NA +"BODEN","Oi",1,0,NA,NA,NA,NA,NA,NA "BRENNYVILLE","Btl",28,53,NA,NA,NA,"10YR","4","3" "BRICKTON","Cgl",64,104,NA,NA,NA,"2.5Y","6","2" -"BURT","0a",0,3,NA,NA,NA,"10YR","2","1" "CAPTINA","2Btxl",64,99,NA,NA,NA,"10YR","5","4" -"CARBONDALE","0e",99,152,NA,NA,NA,"7.5YR","3","2" -"CATHRO","0a1",0,15,NA,NA,NA,"5YR","2","1" -"CATHRO","0a2",15,28,NA,NA,NA,"5YR","2","1" -"CATHRO","0a3",28,58,NA,NA,NA,"5YR","2","1" "CHANNING","Oi",5,0,NA,NA,NA,NA,NA,NA -"CHIPPENY","0a1",0,8,NA,NA,NA,"5YR","2.5","1" -"CHIPPENY","0a2",8,15,NA,NA,NA,"5YR","2.5","1" -"CHIPPENY","0a3",15,51,NA,NA,NA,"5YR","3","1" -"CITADEL","0i",0,4,NA,NA,NA,NA,NA,NA -"CLARKSVILLE","0i",0,3,NA,NA,NA,NA,NA,NA -"CONIC","0a",0,3,NA,NA,NA,"5YR","2","1" -"DALBO","0e",0,3,NA,NA,NA,NA,NA,NA -"DEERTON","0a",0,3,NA,NA,NA,"5YR","2.5","1" "DELASSUS","2Btxl",79,114,NA,NA,NA,"10YR","6","2" "DELMONT","Ap",0,15,"10YR","4","1","l0YR","2","1" -"ELBAVILLE","0e",0,3,NA,NA,NA,NA,NA,NA "FELDTMANN","Oe",5,0,NA,NA,NA,"5YR","3","1" "FINLAND","Oe",3,0,NA,NA,NA,NA,NA,NA "FISHBERRY","A",0,13,"l0YR","5","2","10YR","4","2" @@ -40,44 +22,45 @@ "FREDA","Oe",3,0,NA,NA,NA,"5YR","2","1" "GRANDGULF","Btl",33,56,NA,NA,NA,"10YR","3","4" "GRIGSTON","Clca",61,122,"10YR","6","2","10YR","4","2" -"GRIZZLY","0i",0,2.5,NA,NA,NA,NA,NA,NA "GUARDLAKE","Oi",3,0,NA,NA,NA,NA,NA,NA "HIWOOD","Oe",5,0,NA,NA,NA,NA,NA,NA "HOUDEK","Ap",0,15,"10YR","4","2","l0YR","2","2" +"INDUS","Oa",1,0,NA,NA,NA,"5YR","2","1" "INDUS","Oe",4,1,NA,NA,NA,"5YR","2","2" -"INDUS","0a",NA,1554,NA,NA,NA,"5YR","2","1" -"INSULA","0a",3,0,NA,NA,NA,"10YR","2","1" +"INSULA","Oa",3,0,NA,NA,NA,"10YR","2","1" +"INSULA","Oi",4,3,NA,NA,NA,NA,NA,NA "JAY","Btxl",64,142,NA,NA,NA,"10YR","5","8" "JAY","Ap",NA,23,"10YR","5","3","10YR","3","3" "JERAULD","E",0,8,"l0YR","5","1","l0YR","3","1" "KALLIO","Oi",3,0,NA,NA,NA,NA,NA,NA "KAWBAWGAM","Oa",5,0,NA,NA,NA,"5YR","2","2" +"KELVIN","Oi",5,0,NA,NA,NA,"10YR","2","1" "KINGSLEY","A1",0,8,"l0YR","3",NA,"10YR","2","1" "KINGSLEY","A2",8,18,"l0YR","5","2","10YR","3","2" "KNOBBY","Al",0,8,"10YR","5","2","10YR","3","1" "KNOKE","Al",20,33,"10YR","5","1","5Y","3","1" -"LAKOA","0i",0,2,NA,NA,NA,NA,NA,NA "LAONA","Bsl",8,18,NA,NA,NA,"7.5YR","3","4" -"LIMINGA","0a",0,2,NA,NA,NA,"N","2.5","0" "LOBO","Oil",0,8,NA,NA,NA,"10YR","6","4" -"MCDAVITT","0e",0,5,"10YR","4","1","10YR","2","1" -"MERRILLAN","0e",0,3,NA,NA,NA,"10YR","3","2" -"METIGOSHE","0i",5,13,NA,NA,NA,"10YR","2","1" +"METIGOSHE","Oi",5,0,NA,NA,NA,"10YR","2","1" "METONGA","Bsl",10,18,NA,NA,NA,"7.5YR","3","4" -"MINOCQUA","0a",0,3,NA,NA,NA,"10YR","2","1" "MONDAMIN","Ap",0,15,"10YR","4","2","l0YR","2","2" "NADEAU","Oe",5,0,NA,NA,NA,"10YR","2","1" +"NEMADJI","O",1,0,NA,NA,NA,NA,NA,NA "NET","Oi",5,0,NA,NA,NA,NA,NA,NA +"NEWFOUND","O2",4,0,NA,NA,NA,"5YR","2","1" +"NEWFOUND","O1",6,4,NA,NA,NA,NA,NA,NA "NUNICA","Oi",5,0,NA,NA,NA,NA,NA,NA "OLDMAN","Oa",3,0,NA,NA,NA,"10YR","2","1" "OLGA","Oi",3,0,NA,NA,NA,NA,NA,NA "PARTRIDGE","Oe",3,0,NA,NA,NA,NA,NA,NA +"PEMENE","Oe",5,0,NA,NA,NA,"10YR","2","1" +"PESHEKEE","Oe",3,0,NA,NA,NA,"10YR","2","1" "PETTICOAT","Oe",3,0,NA,NA,NA,"10YR","2","2" "POSEN","Oe",3,0,NA,NA,NA,"N","2","0" "PULLUP","Oi",5,0,NA,NA,NA,NA,NA,NA +"RENNER","Oi",1,0,"10YR","3","2",NA,NA,NA "ROCKCUT","Oe",8,0,NA,NA,NA,"10YR","2","2" -"ROLETTE","0e",5,0,NA,NA,NA,"10YR","2","2" -"ROLLA","0i",0,5,NA,NA,NA,"10YR","2","1" +"ROLETTE","Oe",5,0,NA,NA,NA,"10YR","2","2" "ROSY","Oi",5,0,NA,NA,NA,NA,NA,NA "SATAGO","Oi",5,0,NA,NA,NA,NA,NA,NA "SECESH","Btl",28,48,NA,NA,NA,"7.5YR","5","6" @@ -87,16 +70,13 @@ "SUTLEY","Ap",0,15,"l0YR","4","3","l0YR","3","2" "SWISS","2Btl",23,41,NA,NA,NA,"5YR","5","6" "TACOOSH","Cgl",102,107,NA,NA,NA,"2.5Y","5","2" -"THISTLEDEW","0a",0,3,NA,NA,NA,"5YR","2","1" "THURMAN","Cl",36,81,"10YR","6","4","10YR","5","3" "TINTSON","Bwl",20,36,NA,NA,NA,"10YR","4","4" "TONTI","Btl",20,36,NA,NA,NA,"10YR","5","4" "TONTI","2Btl",86,124,NA,NA,NA,"2.5YR","4","6" -"TROUT BAY","0a1",0,18,NA,NA,NA,"10YR","2","1" -"TROUT BAY","0a2",18,48,NA,NA,NA,"10YR","2","1" -"VANOCKER","0e",0,2.5,NA,NA,NA,NA,NA,NA "VANZILE","Bsl",10,23,NA,NA,NA,"7.5YR","3","4" "VELVET","Oa",5,0,NA,NA,NA,"10YR","2","1" +"WAMDUSKA","Oe",5,0,NA,NA,NA,"10YR","2","1" "WASKISH","Oil",0,8,NA,NA,NA,NA,NA,NA "WATTON","Oi",3,0,NA,NA,NA,NA,NA,NA "WOODLY","A1",0,23,"l0YR","3","1","10YR","2","1" diff --git a/inst/extdata/OSD-error-reporting/RO/salina-sections.csv b/inst/extdata/OSD-error-reporting/RO/salina-sections.csv index 6cedcb1115..2d089242a7 100644 --- a/inst/extdata/OSD-error-reporting/RO/salina-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/salina-sections.csv @@ -2,7 +2,6 @@ "ALLIVAR","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "AVISTON","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "BADUS","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" -"BAILEYVILLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "BONNEFEMME","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "BROCKET","MULTILINE TYPICAL PEDON","[number of multilines=4]","salina, ks" "BUFFALO PARK","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" @@ -30,7 +29,6 @@ "SATAGO","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "SCHWEITZER","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "STRAHAN","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" -"SUGARDEE","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "TIMEWELL","MULTILINE TYPICAL PEDON","[number of multilines=1]","salina, ks" "ULSTER","MULTILINE TYPICAL PEDON","[number of multilines=6]","salina, ks" "VARNA","SECTION HEADINGS",NA,"salina, ks" diff --git a/inst/extdata/OSD-error-reporting/RO/salina-series.csv b/inst/extdata/OSD-error-reporting/RO/salina-series.csv index 7bd43e4228..0056ea20c7 100644 --- a/inst/extdata/OSD-error-reporting/RO/salina-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/salina-series.csv @@ -1,42 +1,28 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"CLARKSVILLE",2799208,TRUE,2022,FALSE,TRUE -"CATHRO",1918852,FALSE,2022,FALSE,TRUE "HOUDEK",739355,TRUE,2009,FALSE,TRUE "CAPTINA",503278,TRUE,2006,FALSE,TRUE -"CARBONDALE",483997,TRUE,2022,FALSE,TRUE "THURMAN",464809,TRUE,2010,FALSE,TRUE "TONTI",462870,TRUE,2006,FALSE,TRUE "TACOOSH",371511,FALSE,1998,FALSE,TRUE -"BOWSTRING",354491,FALSE,2006,FALSE,TRUE -"CONIC",324902,FALSE,2005,FALSE,TRUE "SECESH",214681,FALSE,1997,FALSE,TRUE -"ELBAVILLE",213442,FALSE,2000,FALSE,TRUE -"INSULA",194207,FALSE,2005,TRUE,TRUE -"MINOCQUA",192903,FALSE,1998,FALSE,TRUE -"VANOCKER",184486,FALSE,1999,FALSE,TRUE -"ARIKARA",156122,FALSE,1998,FALSE,TRUE +"INSULA",194207,FALSE,2005,TRUE,FALSE +"BODEN",172594,FALSE,2003,TRUE,FALSE "BRENNYVILLE",127811,FALSE,2003,FALSE,TRUE "LOBO",127543,FALSE,2022,FALSE,TRUE "FORMDALE",110181,FALSE,2020,FALSE,TRUE "DELMONT",109343,FALSE,2009,FALSE,TRUE "KELVIN",108316,FALSE,2005,TRUE,FALSE "WOODLY",104161,FALSE,2006,FALSE,TRUE -"LAKOA",103866,FALSE,2010,FALSE,TRUE -"CITADEL",102170,TRUE,2010,FALSE,TRUE "JERAULD",102091,FALSE,1997,FALSE,TRUE -"INDUS",89495,TRUE,1997,TRUE,TRUE -"MERRILLAN",81480,FALSE,2001,FALSE,TRUE +"PEMENE",100064,FALSE,2022,TRUE,FALSE +"INDUS",89495,TRUE,1997,TRUE,FALSE "NADEAU",71208,FALSE,2022,TRUE,FALSE "HIWOOD",68384,FALSE,1992,TRUE,FALSE -"BOTTINEAU",66115,FALSE,1999,FALSE,TRUE -"LIMINGA",56662,FALSE,2006,FALSE,TRUE "WASKISH",55992,FALSE,2001,FALSE,TRUE "SWISS",54161,FALSE,2022,FALSE,TRUE "KINGSLEY",53941,FALSE,1997,FALSE,TRUE "NET",53162,FALSE,1998,TRUE,FALSE -"BAILEYVILLE",51959,FALSE,2003,TRUE,FALSE "VANZILE",47345,FALSE,1997,FALSE,TRUE -"GRIZZLY",46129,FALSE,2010,FALSE,TRUE "DELASSUS",40356,FALSE,1998,FALSE,TRUE "KNOBBY",34640,FALSE,1997,FALSE,TRUE "FISHBERRY",32750,FALSE,2009,FALSE,TRUE @@ -44,10 +30,9 @@ "MONDAMIN",28586,FALSE,1998,FALSE,TRUE "KNOKE",28268,FALSE,2003,FALSE,TRUE "JAY",27669,FALSE,2000,TRUE,TRUE -"ROLLA",27467,FALSE,1998,FALSE,TRUE "GRIGSTON",25094,FALSE,2008,FALSE,TRUE "POSEN",24880,FALSE,1999,TRUE,FALSE -"DALBO",23737,FALSE,2006,FALSE,TRUE +"NEOPIT",23696,FALSE,2001,TRUE,FALSE "ROSY",23690,FALSE,1999,TRUE,FALSE "SCHWEITZER",23144,FALSE,2006,TRUE,FALSE "PETTICOAT",23085,FALSE,2003,TRUE,FALSE @@ -59,22 +44,19 @@ "OLGA",21279,FALSE,1998,TRUE,FALSE "BRICKTON",21214,FALSE,2006,FALSE,TRUE "GUARDLAKE",21100,FALSE,1994,TRUE,FALSE -"CHIPPENY",21027,FALSE,2021,FALSE,TRUE "SUTLEY",17251,FALSE,1998,FALSE,TRUE +"NEMADJI",17116,FALSE,1995,TRUE,FALSE "WAMDUSKA",16223,FALSE,1997,TRUE,FALSE "FONNER",15334,FALSE,1988,FALSE,TRUE -"THISTLEDEW",13219,FALSE,1999,FALSE,TRUE -"BOOTS",12502,FALSE,2022,FALSE,TRUE -"DEERTON",12352,FALSE,1994,FALSE,TRUE "BADUS",10828,FALSE,1999,TRUE,FALSE "NUNICA",10023,FALSE,2022,TRUE,FALSE "KALLIO",9936,FALSE,2003,TRUE,FALSE -"ROLETTE",9644,FALSE,1998,TRUE,TRUE +"ROLETTE",9644,FALSE,1998,TRUE,FALSE "NERESON",9242,FALSE,1998,TRUE,FALSE "BERGKELLER",8621,FALSE,1999,TRUE,FALSE "BEECHWOOD",8262,FALSE,1999,TRUE,FALSE "SIECHE",8111,FALSE,2009,TRUE,FALSE -"METIGOSHE",6787,FALSE,1998,TRUE,TRUE +"METIGOSHE",6787,FALSE,1998,TRUE,FALSE "SEDGEVILLE",6604,FALSE,2000,FALSE,TRUE "PARTRIDGE",6430,FALSE,1989,TRUE,FALSE "TINTSON",6245,FALSE,1995,FALSE,TRUE @@ -82,16 +64,13 @@ "LAONA",5150,FALSE,1997,FALSE,TRUE "GRANDGULF",5142,FALSE,2006,FALSE,TRUE "PULLUP",5124,FALSE,1994,TRUE,FALSE -"BURT",4528,FALSE,1987,FALSE,TRUE -"TROUT BAY",4334,FALSE,2009,FALSE,TRUE "BAYTOWN",3376,FALSE,2003,FALSE,TRUE "VELVET",3361,FALSE,2022,TRUE,FALSE -"MCDAVITT",3247,FALSE,2009,FALSE,TRUE "ZEANDALE",2962,FALSE,2009,FALSE,TRUE -"WESTPLAIN",2357,FALSE,2021,TRUE,FALSE -"AU TRAIN",1581,FALSE,2009,FALSE,TRUE +"RENNER",1180,FALSE,2006,TRUE,FALSE "FREDA",703,FALSE,2003,TRUE,FALSE "ROCKCUT",564,FALSE,2003,TRUE,FALSE "FELDTMANN",148,FALSE,1990,TRUE,FALSE +"NEWFOUND",NA,FALSE,1999,TRUE,FALSE "KAWBAWGAM",NA,FALSE,1999,TRUE,FALSE "FINLAND",NA,FALSE,2000,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/RO/temple-hz.csv b/inst/extdata/OSD-error-reporting/RO/temple-hz.csv index a7d5399631..cbd7c30eb1 100644 --- a/inst/extdata/OSD-error-reporting/RO/temple-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/temple-hz.csv @@ -4,8 +4,6 @@ "ADDIELOU","Bt",71,122,NA,NA,NA,"1OYR","5","6" "ADDIELOU","Bt/E1",122,152,NA,NA,NA,"1OYR","5","6" "ADDIELOU","Bt/E2",152,229,NA,NA,NA,"1OYR","6","1" -"ANGELINA","01",0,3,NA,NA,NA,NA,NA,NA -"ANGELINA","02",3,8,NA,NA,NA,NA,NA,NA "ARNETT","Btl",18,28,"2.5YR","4","4","2.5YR","3","4" "BIGFORK","Oi",1,0,NA,NA,NA,"10YR","2","2" "BOCOX","Btl",84,132,"7.5YR","6","6","7.5YR","5","6" @@ -20,12 +18,8 @@ "GRAYROCK","Ap",0,18,"l0YR","5","2","l0YR","4","2" "GRITER","Btl",18,41,"2.5YR","4","4","2.5YR","3","4" "GRITER","BCtl",94,130,"5YR","6","6","5YR","5","6" -"GURDON","0",3,0,NA,NA,NA,NA,NA,NA +"GURDON","O",3,0,NA,NA,NA,NA,NA,NA "HEARNE","C2",94,183,"l0YR","6","8",NA,NA,NA -"HEARNE","Bt1",NA,NA,"2.5YR","4","6","2.5YR","3","6" -"HEARNE","Bt2",NA,64,"2.5YR","5","6",NA,NA,NA -"HEARNE","C1",NA,94,"5YR","5","6",NA,NA,NA -"HIGHBANK","to",157,157,"5YR","4","3","5YR","3","3" "KRADE","A",0,18,"1OYR","5","3","1OYR","4","3" "MIDLAND","Btkssgl",81,107,NA,NA,NA,"10YR","5","1" "MOLLVILLE","Oe",5,0,NA,NA,NA,"10YR","7","1" @@ -40,13 +34,13 @@ "ROSANKY","Ap",NA,13,"lOYR","5","3","lOYR","4","3" "RUPLE","Bsm/Btl",71,107,NA,NA,NA,"2.5YR","3","6" "TASAJAL","2Btnl",30,48,"10YR","4","3","10YR","3","3" -"TOMAST","0",NA,0,NA,NA,NA,NA,NA,NA "TURCOTTE","A1",0,13,"10YR","4","2","1OYR","3","2" "TURCOTTE","A2",13,25,"1OYR","4","2","1OYR","3","2" "TURCOTTE","Bk1",25,64,"1OYR","6","2","1OYR","5","2" "TURCOTTE","Bk2",64,97,"1OYR","6","3","1OYR","5","3" "TURCOTTE","BCk",97,203,"10YR","7","3","1OYR","6","3" +"WARDA","BC1",163,163,"10YR","4","2","10YR","3","2" "WESTILL","Btl",13,38,"5YR","4","2","5YR","3","2" "WESTILL","Btkssl",61,102,"5YR","4","4","5YR","3","4" -"YORKTOWN","0i",5,0,NA,NA,NA,"7.5YR","3","2" +"YORKTOWN","Oi",5,0,NA,NA,NA,"7.5YR","3","2" "ZENORIA","Al",0,5,NA,NA,NA,"10YR","4","2" diff --git a/inst/extdata/OSD-error-reporting/RO/temple-sections.csv b/inst/extdata/OSD-error-reporting/RO/temple-sections.csv index a94875a061..40ac9a2380 100644 --- a/inst/extdata/OSD-error-reporting/RO/temple-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/temple-sections.csv @@ -1,5 +1,4 @@ "soilseriesname","errorkind","context","mlraoffice" -"ABILENE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "ACUNA","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "ADDIELOU","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "AGUILARES","DUPLICATION OF HEADERS","[SAR: 10 to 40]","temple, tx" @@ -28,7 +27,6 @@ "CALLISBURG","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "CAMERON","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "CAPPS","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" -"CASTROVILLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "CHACON","DUPLICATION OF HEADERS","[SAR: 0 to 2]","temple, tx" "CHARGO","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "CHATT","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" @@ -46,7 +44,6 @@ "DEPCOR","MULTILINE TYPICAL PEDON","[number of multilines=5]","temple, tx" "DEPORT","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "DOOLIN","DUPLICATION OF HEADERS","[ESP: 15 to 20 percent,SAR: 1 to 20]","temple, tx" -"DOOLIN","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "DOSRIOS","DUPLICATION OF HEADERS","[SAR: 14 to 25]","temple, tx" "DOUCETTE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "DOUDLE","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" @@ -58,10 +55,8 @@ "FELIPE","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "FETT","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "FORBING","MULTILINE TYPICAL PEDON","[number of multilines=6]","temple, tx" -"FRANCITAS","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "FRIZZELL","MULTILINE TYPICAL PEDON","[number of multilines=5]","temple, tx" "GALILEE","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" -"GANADO","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "GARCENO","DUPLICATION OF HEADERS","[SAR: 5 to 30]","temple, tx" "GARCITAS","MULTILINE TYPICAL PEDON","[number of multilines=6]","temple, tx" "GAUSE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" @@ -96,10 +91,7 @@ "LANDMAN","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "LANEVILLE","DUPLICATION OF HEADERS","[SAR: 0 to 2,SAR: 0 to 4]","temple, tx" "LASSITER","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" -"LATINA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "LAWTON","DUPLICATION OF HEADERS","[SAR: 0 to 6]","temple, tx" -"LEERAY","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" -"LELA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "LINDALE","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "LINDY","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "LOCO","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" @@ -110,20 +102,16 @@ "MALAQUITE","DUPLICATION OF HEADERS","[SAR: 25 to 70]","temple, tx" "MATILO","DUPLICATION OF HEADERS","[MLRA SOIL SURVEY REGIONAL OFFICE (MO) RESPONSIBLE: Temple, Texas]","temple, tx" "MAVERICK","DUPLICATION OF HEADERS","[SAR: 13 to 20]","temple, tx" -"MCCASKILL","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "MCKNIGHT","DUPLICATION OF HEADERS","[SAR: 0 to 4]","temple, tx" "MEDANITO","DUPLICATION OF HEADERS","[SAR: 9 to 20]","temple, tx" -"MESSER","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "MOLLICY","MULTILINE TYPICAL PEDON","[number of multilines=7]","temple, tx" "MONTEALTO","DUPLICATION OF HEADERS","[SAR: 0 to 8]","temple, tx" "NARU","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "NAVASOTA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "NOCKEN","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "NOVILLO","DUPLICATION OF HEADERS","[SAR: 0 to 8,SAR: 2 to 10]","temple, tx" -"NUVALDE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "OCTAVIA","MULTILINE TYPICAL PEDON","[number of multilines=5]","temple, tx" "OLMEDO","DUPLICATION OF HEADERS","[SAR: 0 to 1]","temple, tx" -"OTANYA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "OZARK","DUPLICATION OF HEADERS","[SAR: 0 to 12]","temple, tx" "PADRE","DUPLICATION OF HEADERS","[SAR: 0 to 4]","temple, tx" "PALAFOX","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" @@ -135,10 +123,8 @@ "PORTERSPRINGS","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "POTRERO","DUPLICATION OF HEADERS","[SAR: 0 to 4,SAR: 0 to 6]","temple, tx" "PREMONT","DUPLICATION OF HEADERS","[SAR: 0 to 4,SAR: 0 to 6]","temple, tx" -"QUEMADO","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "QUITERIA","DUPLICATION OF HEADERS","[SAR: 20 to 36]","temple, tx" "RACOMBES","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" -"RADER","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "RAMITA","DUPLICATION OF HEADERS","[SAR: 3 to 10]","temple, tx" "RAYLAKE","DUPLICATION OF HEADERS","[SAR: 0 to 4]","temple, tx" "REALITOS","DUPLICATION OF HEADERS","[SAR: 2 to 10]","temple, tx" @@ -158,36 +144,26 @@ "SOMERVELL","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "SOSTIEN","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "SPADRA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" -"STELLTOWN","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "STONEBURG","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "SUMMERFIELD","MULTILINE TYPICAL PEDON","[number of multilines=8]","temple, tx" -"TABOR","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "TAMAHA","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" -"TAMFORD","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" -"TEXLA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" +"TAMFORD","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "THERMO","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "TIMHILL","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "TOMAST","MULTILINE TYPICAL PEDON","[number of multilines=6]","temple, tx" -"TOPIA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "TOPO","DUPLICATION OF HEADERS","[SAR: 10 to 40]","temple, tx" -"TORNERO","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "TREADWAY","DUPLICATION OF HEADERS","[SAR: 0 to 8,SAR: 1 to 30]","temple, tx" "TUSSY","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" -"UVALDE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "VASHTI","MULTILINE TYPICAL PEDON","[number of multilines=4]","temple, tx" "VELENO","DUPLICATION OF HEADERS","[SAR: 25 to 50]","temple, tx" "VESEY","MULTILINE TYPICAL PEDON","[number of multilines=5]","temple, tx" -"VIBORAS","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "VICK","MULTILINE TYPICAL PEDON","[number of multilines=7]","temple, tx" "VINGO","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "VINSON","DUPLICATION OF HEADERS","[SAR: 0 to 4]","temple, tx" -"VOCA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "VOLENTE","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" -"WARDA","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "WASKOM","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "WHAKANA","MULTILINE TYPICAL PEDON","[number of multilines=2]","temple, tx" "WILLACY","MULTILINE TYPICAL PEDON","[number of multilines=6]","temple, tx" -"WINEDALE","MULTILINE TYPICAL PEDON","[number of multilines=1]","temple, tx" "WISTER","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" "YELLOWLAKE","DUPLICATION OF HEADERS","[SAR: 13 to 75]","temple, tx" "ZORRA","MULTILINE TYPICAL PEDON","[number of multilines=3]","temple, tx" diff --git a/inst/extdata/OSD-error-reporting/RO/temple-series.csv b/inst/extdata/OSD-error-reporting/RO/temple-series.csv index abc438016d..6039e090bf 100644 --- a/inst/extdata/OSD-error-reporting/RO/temple-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/temple-series.csv @@ -1,58 +1,33 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "CROWLEY",529622,TRUE,2004,FALSE,TRUE -"LEERAY",462487,TRUE,2017,TRUE,FALSE -"UVALDE",431820,TRUE,2016,TRUE,FALSE -"NUVALDE",341892,FALSE,2017,TRUE,FALSE -"RADER",305857,TRUE,2006,TRUE,FALSE -"TABOR",274180,FALSE,1997,TRUE,FALSE -"ABILENE",245509,TRUE,2015,TRUE,FALSE "MOWATA",235493,FALSE,2014,FALSE,TRUE "PALOBIA",173052,TRUE,2007,FALSE,TRUE -"OTANYA",159345,TRUE,2006,TRUE,FALSE -"MESSER",149595,FALSE,2013,TRUE,FALSE "MIDLAND",145333,FALSE,2004,FALSE,TRUE "GAGEBY",102476,FALSE,2017,FALSE,TRUE -"GURDON",100726,FALSE,1999,TRUE,TRUE +"GURDON",100726,FALSE,1999,TRUE,FALSE "WESTILL",96388,FALSE,2000,FALSE,TRUE "ROSANKY",93065,FALSE,1997,TRUE,TRUE "DALLARDSVILLE",91608,FALSE,2000,FALSE,TRUE -"VOCA",85295,FALSE,2010,TRUE,FALSE "BIGFORK",81882,FALSE,2001,TRUE,FALSE -"VIBORAS",73305,FALSE,2009,TRUE,FALSE "MOLLVILLE",72300,FALSE,2002,TRUE,FALSE "DERBY",66809,FALSE,2000,FALSE,TRUE "CRANELL",65415,FALSE,2007,TRUE,FALSE -"HEARNE",61540,FALSE,2003,TRUE,TRUE -"QUEMADO",60905,FALSE,2009,TRUE,FALSE -"YORKTOWN",57259,FALSE,1999,TRUE,TRUE -"TEXLA",55408,FALSE,1997,TRUE,FALSE +"HEARNE",61540,FALSE,2003,FALSE,TRUE +"YORKTOWN",57259,FALSE,1999,TRUE,FALSE "ROARK",53255,FALSE,2000,FALSE,TRUE -"FRANCITAS",44894,FALSE,2015,TRUE,FALSE -"LELA",37303,FALSE,2016,TRUE,FALSE "CAYO",36335,FALSE,2007,FALSE,TRUE -"TOPIA",26708,FALSE,2016,TRUE,FALSE -"GANADO",23644,FALSE,2019,TRUE,FALSE -"MCCASKILL",23478,FALSE,2010,TRUE,FALSE "NALDO",18514,FALSE,2003,FALSE,TRUE -"HIGHBANK",18273,FALSE,2001,TRUE,FALSE "ADDIELOU",15478,FALSE,2005,FALSE,TRUE -"TAMFORD",15291,FALSE,1997,TRUE,FALSE "ARNETT",14700,FALSE,2000,FALSE,TRUE -"ANGELINA",14362,FALSE,1998,FALSE,TRUE -"LATINA",12060,FALSE,2015,TRUE,FALSE "RUPLEY",11956,FALSE,1993,TRUE,FALSE "GRITER",11048,FALSE,2002,FALSE,TRUE -"WINEDALE",10350,FALSE,1997,TRUE,FALSE -"TOMAST",9345,FALSE,2003,TRUE,TRUE +"TOMAST",9345,FALSE,2003,TRUE,FALSE "DECOBB",5874,FALSE,2000,FALSE,TRUE "BOCOX",5613,FALSE,2000,FALSE,TRUE "RUPLE",5445,FALSE,2000,FALSE,TRUE -"TORNERO",5035,FALSE,2016,TRUE,FALSE -"DOOLIN",4995,FALSE,1997,TRUE,FALSE "KRADE",4733,FALSE,2003,FALSE,TRUE "GRAYROCK",4135,FALSE,2000,FALSE,TRUE "TURCOTTE",3741,FALSE,2003,FALSE,TRUE -"STELLTOWN",2898,FALSE,2010,TRUE,FALSE "WARDA",2763,FALSE,1998,TRUE,FALSE "ZENORIA",2386,FALSE,2000,FALSE,TRUE "TASAJAL",1199,FALSE,2003,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv b/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv index 05a61aad23..6713e41f26 100644 --- a/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv +++ b/inst/extdata/OSD-error-reporting/RO/wasilla-hz.csv @@ -3,159 +3,259 @@ "AHRNKLIN","Oi",10,8,NA,NA,NA,NA,NA,NA "ANAN","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "ANAN","Oi",10,8,NA,NA,NA,NA,NA,NA +"ANCHORAGE","Oi",5,0,NA,NA,NA,"5YR","2","2" "ANIAK","Oe",3,0,NA,NA,NA,"5YR","2","2" "BARANOF","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "BARANOF","Oi",10,8,NA,NA,NA,"5YR","2.5","2" +"BATZA","Oa",3,0,NA,NA,NA,"5YR","2","1" "BATZA","Oi",8,3,NA,NA,NA,"5YR","2","2" +"BERNICE","Oi",3,0,NA,NA,NA,NA,NA,NA "BLAQUIRRE","Oi",3,0,NA,NA,NA,"7.5YR","3","2" "BLASHKE","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "BLASHKE","Oe",10,8,NA,NA,NA,"5YR","3","2" -"BOULDER POINT","Oe",8,8,NA,NA,NA,"5YR","2","2" +"BODENBURG","Oe",5,0,NA,NA,NA,NA,NA,NA +"BOULDER POINT","Oe",8,0,NA,NA,NA,"5YR","2","2" "BOULDER POINT","Oi",10,8,NA,NA,NA,NA,NA,NA "CALAMITY","Oe",5,0,NA,NA,NA,"5YR","3","2" +"CHEDATNA","Oe",5,0,NA,NA,NA,NA,NA,NA +"CHELINA","Oe",3,0,NA,NA,NA,NA,NA,NA +"CHETASLINA","Oe",10,0,NA,NA,NA,NA,NA,NA "CHICHAGOF","Oa",30,0,NA,NA,NA,"5YR","2.5","2" "CHICHAGOF","Oi",33,30,NA,NA,NA,"5YR","2.5","2" -"CHILKAT","01",5,0,NA,NA,NA,NA,NA,NA +"CHILKAT","O1",5,0,NA,NA,NA,NA,NA,NA "CHILKAT","B3",28,36,NA,NA,NA,"lOYR","4","4" +"CHILKOOT","Oi",8,0,NA,NA,NA,NA,NA,NA +"CHILLIGAN","Oi",5,0,NA,NA,NA,"5YR","2.5","2" +"CHISTNA","Oi",3,0,NA,NA,NA,"5YR","3","3" +"CHISTOCHINA","Oi",8,0,NA,NA,NA,"5YR","3","3" +"CHITINA","Oi",5,0,NA,NA,NA,NA,NA,NA "CHUCKRIVER","Oa",20,0,NA,NA,NA,"N","2",NA +"CHUIT","Oi",8,0,NA,NA,NA,NA,NA,NA +"CLARENA","Oi",10,0,NA,NA,NA,"5YR","3","3" +"COAL CREEK","Oe",5,0,NA,NA,NA,"5YR","2","2" "COAL CREEK","Oi",15,5,NA,NA,NA,NA,NA,NA +"COBBLANK","Oi",3,0,NA,NA,NA,"5YR","3","3" +"COPPER RIVER","Oe",13,0,NA,NA,NA,"10YR","2","1" "COPPER RIVER","Oi",23,13,NA,NA,NA,"7.5YR","3","4" +"COVILLE","Oi",8,0,NA,NA,NA,NA,NA,NA +"DADINA","Oe",10,0,NA,NA,NA,"7.5YR","3","2" "DADINA","Oi",25,10,NA,NA,NA,"7.5YR","3","4" -"DELYNDIA","Oi",8,8,NA,NA,NA,"7.5YR","3","4" -"DISAPPOINT","Oi",10,10,NA,NA,NA,"5YR","3","3" +"DELYNDIA","Oi",8,0,NA,NA,NA,"7.5YR","3","4" +"DINGLISHNA","Oi",15,0,NA,NA,NA,"10YR","2","1" +"DISAPPOINT","Oe",8,0,NA,NA,NA,"5YR","2.5","2" +"DISAPPOINT","Oi",10,8,NA,NA,NA,"5YR","3","3" +"DOTLAKE","Oi",8,0,NA,NA,NA,NA,NA,NA "EASLEY","O12",5,0,NA,NA,NA,"5YR","2","1" "EASLEY","O11",13,5,NA,NA,NA,NA,NA,NA -"ESHAMY","021",25,18,NA,NA,NA,NA,NA,NA -"EYAK","01",3,0,NA,NA,NA,NA,NA,NA +"ESHAMY","O22",17,0,NA,NA,NA,NA,NA,NA +"ESHAMY","C1",18,17,NA,NA,NA,"7.5YR","5","4" +"ESHAMY","O21",25,18,NA,NA,NA,NA,NA,NA +"ESHAMY","O1",32,25,NA,NA,NA,NA,NA,NA +"ESKA","Oi",8,0,NA,NA,NA,"10YR","2","2" +"EWAN","Oi",3,0,NA,NA,NA,"10YR","3","4" +"EYAK","O1",3,0,NA,NA,NA,NA,NA,NA +"FAIRLESS","Oe",3,0,NA,NA,NA,"5YR","2","2" "FAIRLESS","Oi",8,3,NA,NA,NA,NA,NA,NA "FANSHAW","Oa",18,0,NA,NA,NA,"5YR","2.5","2" "FANSHAW","Oe",23,18,NA,NA,NA,"5YR","2.5","2" "FEREBEE","Al",0,8,NA,NA,NA,"10YR","2","1" +"FEREBEE","Oi",5,0,NA,NA,NA,NA,NA,NA +"FLAT HORN","Oe",8,0,NA,NA,NA,"5YR","2","2" "FORDSTERROR","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "FORDSTERROR","Oi",10,8,NA,NA,NA,NA,NA,NA -"FUNTER","0i1",0,46,NA,NA,NA,"10YR","5","3" -"FUNTER","0i2",46,61,NA,NA,NA,"10YR","6","4" +"GADONA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAKONA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GOLDCORD","Oe",3,0,NA,NA,NA,"7.5YR","3","2" "GOLDEN","Oa",13,0,NA,NA,NA,"5YR","2.5","2" -"GOODHOPE","02",3,0,NA,NA,NA,"10YR","3","1" -"GOODHOPE","01",8,3,NA,NA,NA,"5YR","2","2" +"GOODHOPE","O2",3,0,NA,NA,NA,"10YR","3","1" +"GOODHOPE","O1",8,3,NA,NA,NA,"5YR","2","2" +"GOODPASTER","Oi2",10,0,NA,NA,NA,"5YR","2","1" "GOODPASTER","Oi1",23,10,NA,NA,NA,"7.5YR","4","4" +"GOODVIEW","Oi",13,0,NA,NA,NA,"2.5YR","2.5","2" +"GREWINGK","Oe",8,0,NA,NA,NA,"5YR","2","2" "GREWINGK","Oi",23,8,NA,NA,NA,NA,NA,NA +"GULKANA","Oi",8,0,NA,NA,NA,"10YR","2","2" "GUNNUK","Oa",15,0,NA,NA,NA,"10YR","3","2" +"HANAGITA","Oi",8,0,NA,NA,NA,"7.5YR","3","3" "HELM","Oa",20,0,NA,NA,NA,"2.5YR","2.5","2" -"HISNA","Oe",8,8,NA,NA,NA,"10YR","3","6" +"HILINE","Oi",5,0,NA,NA,NA,"10YR","2","2" +"HISNA","Oe",8,0,NA,NA,NA,"10YR","3","6" "HISNA","Oi",30,8,NA,NA,NA,"10YR","2","1" "HOFSTAD","Oe",15,0,NA,NA,NA,"N","2",NA "HOFSTAD","Oi",28,15,NA,NA,NA,"2.5Y","4","2" -"HOLLOW","Oi",3,3,NA,NA,NA,NA,NA,NA +"HOGAN","Oi",8,0,NA,NA,NA,"10YR","4","3" +"HOLLOW","Oi",3,0,NA,NA,NA,NA,NA,NA "HOLLOW","Cl",3,41,NA,NA,NA,"10YR","4","2" +"HOMESTEAD","Oe",5,0,NA,NA,NA,"10YR","2","2" "HOMESTEAD","Oi",8,5,NA,NA,NA,NA,NA,NA -"INMACHUK","0i1",0,5,NA,NA,NA,"5YR","3","2" -"INMACHUK","0i2",5,36,NA,NA,NA,"5YR","2","1" -"INMACHUK","0i3",36,41,NA,NA,NA,"5YR","3","3" -"INMACHUK","0i4f",41,51,NA,NA,NA,NA,NA,NA +"HYDABURG","Oi1",1,0,NA,NA,NA,NA,NA,NA "ISIDOR","Oe",23,0,NA,NA,NA,"5YR","2.5","1" "ISMAILOF","Oa",5,0,NA,NA,NA,"10YR","2","1" "ISMAILOF","Oi",8,5,NA,NA,NA,NA,NA,NA "JAKOLOF","Oe",5,0,NA,NA,NA,NA,NA,NA -"KANDIK","01",5,0,NA,NA,NA,"5YR","3","1" -"KARHEEN","0a2",23,38,NA,NA,NA,"N","2","0" -"KARHEEN","0a3",38,152,NA,NA,NA,"N","2","0" -"KARTA","0a",8,0,NA,NA,NA,"5YR","2.5","1" -"KARTA","0e",20,8,NA,NA,NA,"5YR","2.5","2" -"KARTA","0i",25,20,NA,NA,NA,NA,NA,NA +"JIM","Oe",3,0,NA,NA,NA,"5YR","2","2" +"KALAMBACH","Oi",5,0,NA,NA,NA,"10YR","2","2" +"KALSIN","Oi",3,0,NA,NA,NA,"10YR","3","3" +"KANDIK","O1",5,0,NA,NA,NA,"5YR","3","1" +"KARTA","Oa",8,0,NA,NA,NA,"5YR","2.5","1" +"KARTA","Oe",20,8,NA,NA,NA,"5YR","2.5","2" +"KARTA","Oi",25,20,NA,NA,NA,NA,NA,NA "KASIANA","Oa",20,0,NA,NA,NA,"10YR","2","1" +"KEBA","Oi",3,0,NA,NA,NA,"2.5YR","3","2" "KELSALL","Oe",13,0,NA,NA,NA,NA,NA,NA +"KENNY LAKE","Oi",8,0,NA,NA,NA,NA,NA,NA +"KIOKLUK","Oe",5,0,NA,NA,NA,NA,NA,NA "KLANELNEECHENA","Oe2",10,0,NA,NA,NA,"2.5YR","2.5","2" "KLANELNEECHENA","Oe1",23,10,NA,NA,NA,"10YR","2","1" "KLANELNEECHENA","Oi",30,23,NA,NA,NA,"10YR","2","1" -"KLAWASI","Oe",10,10,NA,NA,NA,"5YR","2.5","1" +"KLAWASI","Oe",10,0,NA,NA,NA,"5YR","2.5","1" +"KLAWASI","Oi",23,10,NA,NA,NA,"5YR","3","2" +"KLISKON","Oe",8,0,NA,NA,NA,NA,NA,NA +"KLUNA","Oi",5,0,NA,NA,NA,"7.5YR","3","4" +"KLUTINA","Oi",3,0,NA,NA,NA,"5YR","3","2" +"KNIK","Oi",5,0,NA,NA,NA,"10YR","2","2" +"KROTO","Oe",8,0,NA,NA,NA,NA,NA,NA +"KRUBATE","Oi",3,0,NA,NA,NA,NA,NA,NA +"KUNAYOSH","O12",3,0,NA,NA,NA,"5YR","2","1" +"KUNAYOSH","O11",6,3,NA,NA,NA,NA,NA,NA +"KUPREANOF","Oe",5,0,NA,NA,NA,NA,NA,NA +"KUSDRY","Oe",5,0,NA,NA,NA,"7.5YR","3","2" +"KUSDRY","Oi",8,5,NA,NA,NA,"7.5YR","3","2" +"KUSLINA","Oe",8,0,NA,NA,NA,"10YR","2","2" +"KUSLINA","Oi",25,8,NA,NA,NA,"7.5YR","4","2" +"KUSLINAD","Oe",10,0,NA,NA,NA,"5YR","2.5","2" "KUSLINAD","Oi",20,10,NA,NA,NA,"5YR","3","2" -"KVICHAK","01",3,0,NA,NA,NA,NA,NA,NA +"KVICHAK","O1",3,0,NA,NA,NA,NA,NA,NA "KWATAHEIN","Oa",8,0,NA,NA,NA,"5YR","2.5","1" "KWATAHEIN","Oe",25,8,NA,NA,NA,"5YR","2.5","1" "KWATAHEIN","Oi",30,25,NA,NA,NA,"5YR","2.5","2" "LIESNOI","Oi",3,0,NA,NA,NA,"7.5YR","3","2" -"LIVENGOOD","01",3,0,NA,NA,NA,"10YR","3","2" +"LIVENGOOD","O1",3,0,NA,NA,NA,"10YR","3","2" +"LUCILE","Oi",10,0,NA,NA,NA,"10YR","2","1" +"LUTAK","Oe",5,0,NA,NA,NA,NA,NA,NA "LUTAK","Oi",15,5,NA,NA,NA,NA,NA,NA "LUTAK","3Cl",20,36,NA,NA,NA,"7.5YR","3","2" +"MACLAREN","Oi",8,0,NA,NA,NA,"2.5YR","2.5","2" "MAGNETIC","Oa",18,0,NA,NA,NA,"7.5YR","3","2" "MAGNETIC","Oe",36,18,NA,NA,NA,"5YR","3","3" "MALMESBURY","Oa",3,0,NA,NA,NA,"5YR","3","2" "MALMESBURY","Oi",5,3,NA,NA,NA,NA,NA,NA -"MEARES","0e",8,0,NA,NA,NA,"5YR","2.5","1" -"MEARES","0i",10,8,NA,NA,NA,NA,NA,NA -"MEDFRA","01",25,0,NA,NA,NA,NA,NA,NA +"MCCALLY","O1",8,0,NA,NA,NA,"10YR","2","2" +"MEARES","Oe",8,0,NA,NA,NA,"5YR","2.5","1" +"MEARES","Oi",10,8,NA,NA,NA,NA,NA,NA +"MEDFRA","O1",25,0,NA,NA,NA,NA,NA,NA +"MENDELTNA","Oe",10,0,NA,NA,NA,"5YR","2.5","1" +"MENDELTNA","Oi",23,10,NA,NA,NA,"5YR","3","2" "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,"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" -"NABESNA","012",5,0,NA,NA,NA,"10YR","2","1" -"NABESNA","011",13,5,NA,NA,NA,"5YR","2","2" -"NAKNEK","012",23,0,NA,NA,NA,NA,NA,NA -"NAKNEK","011",41,23,NA,NA,NA,"5YR","3","3" +"NABESNA","O12",5,0,NA,NA,NA,"10YR","2","1" +"NABESNA","O11",13,5,NA,NA,NA,"5YR","2","2" +"NAKNEK","O12",23,0,NA,NA,NA,NA,NA,NA +"NAKNEK","O11",41,23,NA,NA,NA,"5YR","3","3" "NAKWASINA","Oa",20,0,NA,NA,NA,NA,NA,NA +"NANCY","Oe",3,0,NA,NA,NA,"7.5YR","3","2" "NANWALEK","Oe",5,0,NA,NA,NA,"10YR","2","2" +"NATAGA","Oi",8,0,NA,NA,NA,NA,NA,NA "NAUKATI","Oe",8,0,NA,NA,NA,"10YR","2","1" "NAUKATI","Oi",13,8,NA,NA,NA,NA,NA,NA +"NICKOLNA","Oi",5,0,NA,NA,NA,NA,NA,NA +"NIKISHKA","Oe",8,0,NA,NA,NA,"5YR","2","2" +"NIKISHKA","Oi",9,8,NA,NA,NA,NA,NA,NA +"NIZINA","Oi",3,0,NA,NA,NA,"7.5YR","3","2" "OGTNA","Oa",5,0,NA,NA,NA,"10YR","2","1" "OGTNA","Oi",15,5,NA,NA,NA,"2.5YR","3","1" "PARTOFSHIKOF","Oa",8,0,NA,NA,NA,NA,NA,NA "PARTOFSHIKOF","Oi",30,8,NA,NA,NA,NA,NA,NA -"PARTOV","02",3,0,NA,NA,NA,"10YR","2","1" +"PARTOV","O2",3,0,NA,NA,NA,"10YR","2","1" "PERIL","Oa",5,0,NA,NA,NA,NA,NA,NA "PERIL","Oi",8,5,NA,NA,NA,NA,NA,NA "PERIL","Cl",25,36,NA,NA,NA,"2.5Y","4","3" "PETREL","Oi2",8,0,NA,NA,NA,"N","2","0" "PETREL","Oi1",18,8,NA,NA,NA,NA,NA,NA "PETROF","Oe",3,0,NA,NA,NA,"10YR","2","2" -"PURCHES","02",5,0,NA,NA,NA,"10YR","2","1" -"PURCHES","01",8,5,NA,NA,NA,NA,NA,NA -"PUSTOI","01",8,0,NA,NA,NA,"5YR","2","2" -"REMEDIOS","Oe",3,3,NA,NA,NA,"10YR","2","1" +"PINCHER","Oe",5,0,NA,NA,NA,"10YR","2","2" +"PIPPIN","Oi",3,0,NA,NA,NA,"7.5YR","3","2" +"PIPPOD","Oi",5,0,NA,NA,NA,"7.5YR","3","2" +"PSUYAAH","Oi",5,0,NA,NA,NA,"7.5YR","2","0" +"PURCHES","O2",5,0,NA,NA,NA,"10YR","2","1" +"PURCHES","O1",8,5,NA,NA,NA,NA,NA,NA +"PUSTOI","O1",8,0,NA,NA,NA,"5YR","2","2" +"QENI","Oi",15,0,NA,NA,NA,"10YR","2","2" +"REMEDIOS","Oe",3,0,NA,NA,NA,"10YR","2","1" "REMEDIOS","Oi",5,3,NA,NA,NA,NA,NA,NA +"REMEDIOS","R",66,0,NA,NA,NA,NA,NA,NA +"SARKAR","Oe",11,0,NA,NA,NA,"5YR","2.5","1" +"SARKAR","Oi",13,11,NA,NA,NA,NA,NA,NA +"SCHROCK","Oi",8,0,NA,NA,NA,"5YR","2","2" "SELDOVIA","Oe",5,0,NA,NA,NA,"10YR","2","2" +"SINONA","Oi",5,0,NA,NA,NA,"5YR","3","3" "SITKA","Oa",5,0,NA,NA,NA,NA,NA,NA "SITKA","Oi",8,5,NA,NA,NA,NA,NA,NA -"SKAGWAY","Oe",5,5,NA,NA,NA,NA,NA,NA +"SKAGWAY","Oe",5,0,NA,NA,NA,NA,NA,NA "SKAGWAY","Oi",10,5,NA,NA,NA,NA,NA,NA -"SLODUC","0a",18,0,NA,NA,NA,"5YR","2.5","2" -"SLODUC","0i",25,18,NA,NA,NA,"5YR","3","2" +"SLODUC","Oa",18,0,NA,NA,NA,"5YR","2.5","2" +"SLODUC","Oi",25,18,NA,NA,NA,"5YR","3","2" "SNETTISHAM","Oa",8,0,NA,NA,NA,NA,NA,NA "SNETTISHAM","Oi",15,8,NA,NA,NA,NA,NA,NA -"SOAKPAK","02",3,0,NA,NA,NA,"5YR","2","1" +"SOAKPAK","O2",3,0,NA,NA,NA,"5YR","2","1" "SPASSKI","Oa",33,0,NA,NA,NA,NA,NA,NA "SPASSKI","Oi",36,33,NA,NA,NA,NA,NA,NA "ST. NICHOLAS","Oa",10,0,NA,NA,NA,"5R","2","1" "ST. NICHOLAS","Oi",18,10,NA,NA,NA,NA,NA,NA -"STANEY","0'i1",10,58,NA,NA,NA,NA,NA,NA +"STAINKY","Oi",5,0,NA,NA,NA,NA,NA,NA +"STAVE","O1",4,0,NA,NA,NA,"5YR","2","2" +"STRANDLINE","Oe",5,0,NA,NA,NA,NA,NA,NA "STUCK","Oi",8,0,NA,NA,NA,"5YR","3","2" "SUKOI","Oe",10,0,NA,NA,NA,"5YR","2.5","2" -"TAKOTNA","01",5,0,NA,NA,NA,"5YR","2","1" +"SUNTRANA","Oe",10,0,NA,NA,NA,"10YR","2","2" +"SWEDNA","Oi/C",3,0,NA,NA,NA,"5YR","3","3" +"TAKOTNA","O1",5,0,NA,NA,NA,"5YR","2","1" "TALUWIK","Oe",3,0,NA,NA,NA,NA,NA,NA -"TAWAH","01",8,0,NA,NA,NA,"5YR","3","3" +"TANGOE","Oe",3,0,NA,NA,NA,"10YR","2","1" +"TARAL","Oi",5,0,NA,NA,NA,"10YR","2","1" +"TAWAH","O1",8,0,NA,NA,NA,"5YR","3","3" +"TEBAY","Oi",10,0,NA,NA,NA,"5YR","3","2" +"TEKLANIKA","Oe",5,0,NA,NA,NA,"5YR","4","3" +"TELAY","Oe",5,0,NA,NA,NA,"10YR","3","4" "TOKEEN","Oe",28,0,NA,NA,NA,"10R","2.5","2" "TOKEEN","Oi",30,28,NA,NA,NA,NA,NA,NA +"TOKLAT","Oe",5,0,NA,NA,NA,"7.5YR","3","2" +"TOLSONA","Oe",10,0,NA,NA,NA,"10YR","2","2" "TOLSONA","Oi",20,10,NA,NA,NA,"5YR","2.5","2" -"TOLSTOI","0e",5,0,NA,NA,NA,"5YR","2.5","2" -"TOLSTOI","0i",10,5,NA,NA,NA,NA,NA,NA +"TOLSTOI","Oe",5,0,NA,NA,NA,"5YR","2.5","2" +"TOLSTOI","Oi",10,5,NA,NA,NA,NA,NA,NA "TONOWEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"TONSINA","Oi",5,0,NA,NA,NA,NA,NA,NA +"TORPEDO LAKE","Oe",13,0,NA,NA,NA,"5YR","2","1" "TRAITORS","Oi",15,5,NA,NA,NA,NA,NA,NA -"TULIK","02",5,0,NA,NA,NA,"5YR","2","2" -"TUPUKNUK","01",10,0,NA,NA,NA,"5YR","2","2" -"TUXEKAN","Oa",5,0,NA,NA,NA,"N","2","0" +"TSADAKA","Oe",8,0,NA,NA,NA,"2.5YR","3","4" +"TSADAKA","Oi",20,8,NA,NA,NA,"5YR","3","4" +"TSANA","Oi",5,0,NA,NA,NA,NA,NA,NA +"TSIRKU","Oi",3,0,NA,NA,NA,NA,NA,NA +"TULIK","O2",5,0,NA,NA,NA,"5YR","2","2" +"TUPUKNUK","O1",10,0,NA,NA,NA,"5YR","2","2" +"TUXEKAN","Oa",2,0,NA,NA,NA,"N","2","0" +"TUXEKAN","Oe",10,0.5,NA,NA,NA,"2.5YR","2","2" +"TUXEKAN","Oi",11,10,NA,NA,NA,NA,NA,NA +"UGAK","Oi",4,0,NA,NA,NA,"7.5YR","3","2" "ULLOA","Oe",8,0,NA,NA,NA,"2.5YR","2","2" "ULLOA","Oi",10,8,NA,NA,NA,NA,NA,NA -"UMIAT","02",8,0,NA,NA,NA,"5YR","2","1" -"UMIAT","01",20,8,NA,NA,NA,"5YR","2","2" +"UMIAT","O2",8,0,NA,NA,NA,"5YR","2","1" +"UMIAT","O1",20,8,NA,NA,NA,"5YR","2","2" "UNAKWIK","Oil",0,8,NA,NA,NA,NA,NA,NA "VERSTOVIA","Oe",10,0,NA,NA,NA,NA,NA,NA "VIXEN","Oa",3,0,NA,NA,NA,"5YR","2.5","1" "VIXEN","Oi",8,3,NA,NA,NA,NA,NA,NA "WADLEIGH","Oe",10,0,NA,NA,NA,"5YR","2.5","1" "WADLEIGH","Oi",13,10,NA,NA,NA,NA,NA,NA -"WASILLA","0e",10,25,NA,NA,NA,"10YR","2","2" +"WASILLA","Oe",10,0,NA,NA,NA,"10YR","2","2" +"WATERFALL","Oi",5,0,NA,NA,NA,NA,NA,NA "YAKOBI","Oa",13,0,NA,NA,NA,"5YR","2.5","1" "YAKOBI","Oi",18,13,NA,NA,NA,NA,NA,NA -"YUKON","01",20,0,NA,NA,NA,"5YR","2","1" +"YENSUS","Oe",3,0,NA,NA,NA,"10YR","2","2" +"YOHN","Oi",8,0,NA,NA,NA,"5YR","3","2" +"YUKON","O1",20,0,NA,NA,NA,"5YR","2","1" diff --git a/inst/extdata/OSD-error-reporting/RO/wasilla-sections.csv b/inst/extdata/OSD-error-reporting/RO/wasilla-sections.csv index 4f827f9849..5d490f44c9 100644 --- a/inst/extdata/OSD-error-reporting/RO/wasilla-sections.csv +++ b/inst/extdata/OSD-error-reporting/RO/wasilla-sections.csv @@ -1,26 +1,14 @@ "soilseriesname","errorkind","context","mlraoffice" "DELYNDIA","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"DISTIN","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "DOTLAKE","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "ESHAMY","SECTION HEADINGS",NA,"wasilla, AK" -"ESHAMY","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "FROSTCIRCLE","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"GREWINGK","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"HYDABURG","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"KALSIN","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "KONIAG","DUPLICATION OF HEADERS","[GEOGRAPHIC SETTING:]","wasilla, AK" "KONIAG","DUPLICATE STANDARD SECTIONS","[GEOGRAPHIC SETTING]","wasilla, AK" "KUSKOKWIM","SECTION HEADINGS",NA,"wasilla, AK" -"MEDFRA","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"NABESNA","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" +"KUSKOKWIM","MULTILINE TYPICAL PEDON","[number of multilines=2]","wasilla, AK" "NARROW CAPE","DUPLICATION OF HEADERS","[GEOGRAPHIC SETTING:]","wasilla, AK" "NARROW CAPE","DUPLICATE STANDARD SECTIONS","[GEOGRAPHIC SETTING]","wasilla, AK" -"PUSTOI","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "REZANOF","DUPLICATION OF HEADERS","[GEOGRAPHIC SETTING:]","wasilla, AK" "REZANOF","DUPLICATE STANDARD SECTIONS","[GEOGRAPHIC SETTING]","wasilla, AK" -"SWILLNA","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"TAKOTNA","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" "TOGHOTTHELE","DUPLICATE STANDARD SECTIONS","[ADDITIONAL DATA]","wasilla, AK" -"TOKEEN","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"TOKLAT","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" -"UNAKWIK","MULTILINE TYPICAL PEDON","[number of multilines=1]","wasilla, AK" diff --git a/inst/extdata/OSD-error-reporting/RO/wasilla-series.csv b/inst/extdata/OSD-error-reporting/RO/wasilla-series.csv index fc71eb1ae4..a92ab70fe9 100644 --- a/inst/extdata/OSD-error-reporting/RO/wasilla-series.csv +++ b/inst/extdata/OSD-error-reporting/RO/wasilla-series.csv @@ -1,15 +1,17 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"TOLSTOI",710846,FALSE,2005,TRUE,TRUE +"TOLSTOI",710846,FALSE,2005,TRUE,FALSE "KUPREANOF",523373,FALSE,2005,TRUE,FALSE "MOSMAN",375271,FALSE,2005,TRUE,FALSE "KLAWASI",355976,TRUE,2019,TRUE,FALSE "ST. NICHOLAS",321463,FALSE,2002,TRUE,FALSE +"STRANDLINE",317199,FALSE,2002,TRUE,FALSE "MITKOF",314669,FALSE,2005,TRUE,FALSE +"CHELINA",309924,TRUE,2008,TRUE,FALSE "KROTO",277539,FALSE,2002,TRUE,FALSE "WADLEIGH",209987,FALSE,2002,TRUE,FALSE "NAKWASINA",196302,FALSE,2002,TRUE,FALSE "NANCY",195437,TRUE,2005,TRUE,FALSE -"KARTA",186753,FALSE,2002,TRUE,TRUE +"KARTA",186753,FALSE,2002,TRUE,FALSE "TUXEKAN",124053,FALSE,2002,TRUE,FALSE "ULLOA",120750,FALSE,2002,TRUE,FALSE "CHUIT",117851,FALSE,2002,TRUE,FALSE @@ -19,8 +21,10 @@ "SUKOI",74834,FALSE,2005,TRUE,FALSE "YAKOBI",67801,FALSE,2002,TRUE,FALSE "COPPER RIVER",66542,TRUE,2005,TRUE,FALSE +"SARKAR",64572,FALSE,2002,TRUE,FALSE "HILINE",63434,FALSE,2002,TRUE,FALSE "MENDELTNA",61806,FALSE,2019,TRUE,FALSE +"TELAY",58617,FALSE,2008,TRUE,FALSE "VIXEN",57716,FALSE,2002,TRUE,FALSE "HELM",57661,FALSE,2002,TRUE,FALSE "TOLSONA",53595,FALSE,2002,TRUE,FALSE @@ -31,36 +35,42 @@ "KASIANA",49908,FALSE,2002,TRUE,FALSE "KLUNA",48752,FALSE,1999,TRUE,FALSE "PIPPIN",45300,FALSE,2019,TRUE,FALSE +"GAKONA",41035,FALSE,2008,TRUE,FALSE "KNIK",36925,FALSE,2008,TRUE,FALSE "SITKA",36584,FALSE,2005,TRUE,FALSE "KWATAHEIN",35674,FALSE,2002,TRUE,FALSE "NIZINA",34404,FALSE,2023,TRUE,FALSE "DOTLAKE",31383,FALSE,2002,TRUE,FALSE "VERSTOVIA",30500,FALSE,2005,TRUE,FALSE +"TONSINA",29947,FALSE,2002,TRUE,FALSE "CALAMITY",28573,FALSE,2002,TRUE,FALSE +"TARAL",26603,FALSE,2002,TRUE,FALSE "TOKEEN",26270,FALSE,2002,TRUE,FALSE "KLISKON",25981,FALSE,2004,TRUE,FALSE +"SCHROCK",23065,FALSE,2002,TRUE,FALSE "PERIL",22636,FALSE,2002,TRUE,TRUE -"SOAKPAK",22103,FALSE,2008,TRUE,TRUE +"SOAKPAK",22103,FALSE,2008,TRUE,FALSE "MACLAREN",21972,FALSE,2008,TRUE,FALSE "GADONA",21847,FALSE,2008,TRUE,FALSE "FROSTCIRCLE",20927,FALSE,2005,TRUE,FALSE "KENNY LAKE",20543,FALSE,2002,TRUE,FALSE -"KARHEEN",19834,FALSE,1993,FALSE,TRUE +"TSANA",19970,FALSE,2008,TRUE,FALSE "NATAGA",18388,FALSE,2015,TRUE,FALSE -"STANEY",17975,FALSE,1995,FALSE,TRUE +"LUCILE",17480,FALSE,2005,TRUE,FALSE "BARANOF",16031,FALSE,1995,TRUE,FALSE "DISAPPOINT",15763,FALSE,2002,TRUE,FALSE "FEREBEE",15302,FALSE,2022,TRUE,TRUE "GULKANA",15301,FALSE,2019,TRUE,FALSE -"WASILLA",14606,FALSE,2002,TRUE,TRUE +"WASILLA",14606,FALSE,2002,TRUE,FALSE "SWILLNA",14549,FALSE,1999,TRUE,FALSE -"SLODUC",14092,FALSE,2002,TRUE,TRUE +"SLODUC",14092,FALSE,2002,TRUE,FALSE "FORDSTERROR",13897,FALSE,2002,TRUE,FALSE "CHEDATNA",13464,FALSE,2008,TRUE,FALSE "CHETASLINA",13385,FALSE,2008,TRUE,FALSE "TSADAKA",12763,FALSE,2002,TRUE,FALSE "KLUTINA",12632,FALSE,2002,TRUE,FALSE +"CHITINA",12162,FALSE,2002,TRUE,FALSE +"TEBAY",11702,FALSE,2019,TRUE,FALSE "CHUCKRIVER",11596,FALSE,2002,TRUE,FALSE "CHICHAGOF",11482,FALSE,2005,TRUE,FALSE "DELYNDIA",11340,FALSE,1995,TRUE,FALSE @@ -68,9 +78,10 @@ "GOLDCORD",10540,FALSE,2002,TRUE,FALSE "KUSLINA",10399,FALSE,2019,TRUE,FALSE "YENSUS",9690,FALSE,2008,TRUE,FALSE +"HANAGITA",9396,FALSE,2002,TRUE,FALSE "COAL CREEK",9247,FALSE,2004,TRUE,FALSE "SNETTISHAM",9143,FALSE,2002,TRUE,FALSE -"FUNTER",9034,FALSE,1991,FALSE,TRUE +"SWEDNA",8974,FALSE,1999,TRUE,FALSE "CHILKOOT",8606,FALSE,1991,TRUE,FALSE "HOFSTAD",8006,FALSE,2002,TRUE,FALSE "KUSLINAD",7995,FALSE,1999,TRUE,FALSE @@ -82,82 +93,97 @@ "YOHN",6210,FALSE,2002,TRUE,FALSE "SELDOVIA",5717,FALSE,1999,TRUE,FALSE "SUNTRANA",5463,FALSE,2002,TRUE,FALSE -"MEARES",5293,FALSE,2002,TRUE,TRUE +"MEARES",5293,FALSE,2002,TRUE,FALSE "BLASHKE",5190,FALSE,1993,TRUE,FALSE "ISIDOR",5184,FALSE,2002,TRUE,FALSE "EWAN",5039,FALSE,1999,TRUE,FALSE "HOMESTEAD",4995,FALSE,2005,TRUE,FALSE +"COBBLANK",4995,FALSE,2008,TRUE,FALSE "PSUYAAH",4907,FALSE,2003,TRUE,FALSE +"TOKLAT",4525,FALSE,2002,TRUE,FALSE "MINCHUMINA",4508,FALSE,2002,TRUE,FALSE "PETREL",4302,FALSE,2002,TRUE,FALSE "BLAQUIRRE",4126,FALSE,2008,TRUE,FALSE "DADINA",4031,FALSE,2019,TRUE,FALSE "SPASSKI",3872,FALSE,2002,TRUE,FALSE +"ESKA",3610,FALSE,2008,TRUE,FALSE "FANSHAW",3021,FALSE,1993,TRUE,FALSE "WATERFALL",2949,FALSE,2002,TRUE,FALSE "LUTAK",2732,FALSE,1995,TRUE,TRUE "MAGNETIC",2598,FALSE,2002,TRUE,FALSE "CHILLIGAN",2495,FALSE,2002,TRUE,FALSE "JAKOLOF",2308,FALSE,1999,TRUE,FALSE +"TANGOE",2297,FALSE,1999,TRUE,FALSE "GOLDEN",2277,FALSE,1994,TRUE,FALSE "PIPPOD",2272,FALSE,1999,TRUE,FALSE "KLANELNEECHENA",1952,FALSE,2002,TRUE,FALSE "HOGAN",1932,FALSE,1999,TRUE,FALSE "ANAN",1932,FALSE,1995,TRUE,FALSE "GOODPASTER",1864,FALSE,2002,TRUE,FALSE +"QENI",1759,FALSE,2008,TRUE,FALSE "MALMESBURY",1735,FALSE,1995,TRUE,FALSE "KRUBATE",1718,FALSE,1995,TRUE,FALSE +"FLAT HORN",1584,FALSE,2002,TRUE,FALSE "NICKOLNA",1517,FALSE,2008,TRUE,FALSE "STUCK",1349,FALSE,2002,TRUE,FALSE +"CHISTNA",1339,FALSE,2008,TRUE,FALSE "JIM",1335,FALSE,2002,TRUE,FALSE "TALUWIK",1192,FALSE,1999,TRUE,FALSE "NAUKATI",972,FALSE,2002,TRUE,FALSE "GUNNUK",942,FALSE,2002,TRUE,FALSE "ISMAILOF",907,FALSE,1999,TRUE,FALSE "CHISTOCHINA",715,FALSE,2019,TRUE,FALSE +"TSIRKU",566,FALSE,2002,TRUE,FALSE "SINONA",564,FALSE,2008,TRUE,FALSE "PETROF",532,FALSE,1999,TRUE,FALSE "KUSDRY",398,FALSE,2008,TRUE,FALSE "ZOLOTOI",385,FALSE,2000,TRUE,FALSE "KEBA",341,FALSE,2002,TRUE,FALSE "DISTIN",262,FALSE,2005,TRUE,FALSE -"KANDIK",221,FALSE,2002,TRUE,TRUE +"KANDIK",221,FALSE,2002,TRUE,FALSE "GOODVIEW",181,FALSE,2018,TRUE,FALSE "CLARENA",140,FALSE,1999,TRUE,FALSE "OGTNA",122,FALSE,2008,TRUE,FALSE "HISNA",74,FALSE,1999,TRUE,FALSE -"LIVENGOOD",3,FALSE,2008,TRUE,TRUE -"YUKON",NA,FALSE,2002,TRUE,TRUE -"UNAKWIK",NA,FALSE,1995,TRUE,TRUE -"UMIAT",NA,FALSE,2002,TRUE,TRUE -"TUPUKNUK",NA,FALSE,2002,TRUE,TRUE -"TULIK",NA,FALSE,1995,TRUE,TRUE +"LIVENGOOD",3,FALSE,2008,TRUE,FALSE +"YUKON",NA,FALSE,2002,TRUE,FALSE +"UNAKWIK",NA,FALSE,1995,FALSE,TRUE +"UMIAT",NA,FALSE,2002,TRUE,FALSE +"UGAK",NA,FALSE,1995,TRUE,FALSE +"TUPUKNUK",NA,FALSE,2002,TRUE,FALSE +"TULIK",NA,FALSE,1995,TRUE,FALSE "TORPEDO LAKE",NA,FALSE,2002,TRUE,FALSE -"TAWAH",NA,FALSE,1995,TRUE,TRUE -"TAKOTNA",NA,FALSE,2002,TRUE,TRUE +"TAWAH",NA,FALSE,1995,TRUE,FALSE +"TAKOTNA",NA,FALSE,2002,TRUE,FALSE +"STAVE",NA,FALSE,1992,TRUE,FALSE "STAINKY",NA,FALSE,2002,TRUE,FALSE -"PUSTOI",NA,FALSE,1995,TRUE,TRUE -"PURCHES",NA,FALSE,2002,TRUE,TRUE +"PUSTOI",NA,FALSE,1995,TRUE,FALSE +"PURCHES",NA,FALSE,2002,TRUE,FALSE "PINCHER",NA,FALSE,2002,TRUE,FALSE -"PARTOV",NA,FALSE,1995,TRUE,TRUE +"PARTOV",NA,FALSE,1995,TRUE,FALSE "NIKISHKA",NA,FALSE,1995,TRUE,FALSE -"NAKNEK",NA,FALSE,2002,TRUE,TRUE -"NABESNA",NA,FALSE,2002,TRUE,TRUE -"MEDFRA",NA,FALSE,2002,TRUE,TRUE -"KVICHAK",NA,FALSE,1995,TRUE,TRUE +"NAKNEK",NA,FALSE,2002,TRUE,FALSE +"NABESNA",NA,FALSE,2002,TRUE,FALSE +"MEDFRA",NA,FALSE,2002,TRUE,FALSE +"MCCALLY",NA,FALSE,2002,TRUE,FALSE +"KVICHAK",NA,FALSE,1995,TRUE,FALSE +"KUNAYOSH",NA,FALSE,2015,TRUE,FALSE "KIOKLUK",NA,FALSE,2002,TRUE,FALSE "KELSALL",NA,FALSE,2002,TRUE,FALSE -"INMACHUK",NA,FALSE,2002,FALSE,TRUE +"KALSIN",NA,FALSE,2002,TRUE,FALSE "GREWINGK",NA,FALSE,2002,TRUE,FALSE -"GOODHOPE",NA,FALSE,2002,TRUE,TRUE +"GOODHOPE",NA,FALSE,2002,TRUE,FALSE "FAIRLESS",NA,FALSE,2008,TRUE,FALSE -"EYAK",NA,FALSE,2002,TRUE,TRUE -"ESHAMY",NA,FALSE,2002,TRUE,TRUE +"EYAK",NA,FALSE,2002,TRUE,FALSE +"ESHAMY",NA,FALSE,2002,TRUE,FALSE "EASLEY",NA,FALSE,2002,TRUE,FALSE +"DINGLISHNA",NA,FALSE,1996,TRUE,FALSE "COVILLE",NA,FALSE,2002,TRUE,FALSE "CHILKAT",NA,FALSE,2002,TRUE,TRUE "BOULDER POINT",NA,FALSE,2002,TRUE,FALSE "BOGOSLOF",NA,FALSE,2000,TRUE,FALSE +"BERNICE",NA,FALSE,1995,TRUE,FALSE "BATZA",NA,TRUE,2002,TRUE,FALSE "ANIAK",NA,FALSE,2002,TRUE,FALSE +"ANCHORAGE",NA,FALSE,2005,TRUE,FALSE "AHRNKLIN",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/log.txt b/inst/extdata/OSD-error-reporting/log.txt index 3ed279927d..150370adbf 100644 --- a/inst/extdata/OSD-error-reporting/log.txt +++ b/inst/extdata/OSD-error-reporting/log.txt @@ -1,329 +1,324 @@ ### Problems by RO ### auburn, al bozeman, mt davis, ca morgantown, wv salina, ks - 112 928 877 127 116 + 84 840 867 108 94 temple, tx wasilla, AK - 83 280 + 55 281 -------------------------------------------------------- ### Depth Logic Errors by RO ### FALSE TRUE - auburn, al 97 15 - bozeman, mt 755 173 - davis, ca 650 227 - morgantown, wv 115 12 - salina, ks 81 35 - temple, tx 57 26 - wasilla, AK 185 95 + auburn, al 70 14 + bozeman, mt 501 339 + davis, ca 483 384 + morgantown, wv 93 15 + salina, ks 49 45 + temple, tx 34 21 + wasilla, AK 100 181 -------------------------------------------------------- ### Hz Overlap / Gap Errors by RO ### FALSE TRUE - auburn, al 108 4 - bozeman, mt 671 257 - davis, ca 558 319 - morgantown, wv 114 13 - salina, ks 78 38 - temple, tx 52 31 - wasilla, AK 123 157 + auburn, al 78 6 + bozeman, mt 508 332 + davis, ca 497 370 + morgantown, wv 95 13 + salina, ks 52 42 + temple, tx 47 8 + wasilla, AK 94 187 -------------------------------------------------------- ### Depth Logic / Gap Errors by State ### FALSE TRUE - AK 189 95 - AL 3 0 - AR 9 4 - AZ 23 9 - CA 303 140 - CO 94 28 - CT 5 0 + AK 104 181 + AL 2 0 + AR 6 5 + AZ 14 5 + CA 223 233 + CO 75 29 + CT 4 1 DE 2 0 - FL 22 0 - FM 1 1 - GA 7 1 - GU 1 0 - HI 12 2 + FL 18 0 + FM 0 2 + GA 5 1 + GU 0 1 + HI 5 7 HT 1 0 IA 2 0 - ID 56 9 + ID 29 12 IL 2 1 IN 8 1 - KS 4 0 - KY 3 3 - LA 9 1 + KS 3 0 + KY 2 3 + LA 7 1 MA 9 1 - MD 8 0 + MD 8 1 ME 1 1 - MI 15 20 - MN 20 6 - MO 9 0 - MP 4 3 - MS 8 0 - MT 70 9 - NC 20 5 - ND 7 2 + MI 4 22 + MN 13 9 + MO 8 0 + MP 3 3 + MS 7 0 + MT 30 19 + NC 18 4 + ND 1 5 NE 8 1 - NH 9 0 + NH 2 0 NJ 20 0 - NM 22 16 - NV 26 13 - NY 14 0 - OH 3 0 - OK 10 6 - OR 321 23 + NM 21 8 + NV 19 11 + NY 13 1 + OK 8 3 + OR 181 170 PA 1 2 - PR 13 2 - PW 2 1 + PR 14 2 + PW 1 2 RI 1 0 SC 3 0 - SD 11 1 - TN 6 3 - TX 32 19 - UT 202 31 - VA 46 5 - VT 8 1 - WA 187 109 - WI 7 3 + SD 7 2 + TN 5 2 + TX 15 17 + UT 199 31 + VA 24 6 + VT 7 1 + WA 104 184 + WI 5 3 WV 4 0 - WY 211 5 + WY 208 5 -------------------------------------------------------- ### Hz Overlap / Gap Errors by State ### FALSE TRUE - AK 127 157 - AL 3 0 - AR 8 5 - AZ 28 4 - CA 241 202 - CO 100 22 + AK 98 187 + AL 2 0 + AR 8 3 + AZ 16 3 + CA 219 237 + CO 82 22 CT 5 0 DE 2 0 - FL 22 0 + FL 18 0 FM 0 2 - GA 8 0 - GU 1 0 - HI 8 6 + GA 6 0 + GU 0 1 + HI 4 8 HT 1 0 IA 2 0 - ID 58 7 + ID 33 8 IL 3 0 IN 8 1 - KS 3 1 - KY 6 0 - LA 8 2 + KS 3 0 + KY 4 1 + LA 7 1 MA 10 0 - MD 8 0 + MD 8 1 ME 1 1 - MI 13 22 - MN 19 7 - MO 9 0 - MP 1 6 - MS 8 0 - MT 69 10 - NC 25 0 - ND 4 5 + MI 3 23 + MN 13 9 + MO 8 0 + MP 1 5 + MS 7 0 + MT 36 13 + NC 22 0 + ND 1 5 NE 9 0 - NH 9 0 + NH 2 0 NJ 20 0 - NM 33 5 - NV 26 13 - NY 13 1 - OH 1 2 - OK 12 4 - OR 201 143 + NM 23 6 + NV 26 4 + NY 10 4 + OK 9 2 + OR 172 179 PA 2 1 - PR 15 0 - PW 1 2 + PR 15 1 + PW 0 3 RI 1 0 SC 3 0 - SD 10 2 - TN 8 1 - TX 30 21 - UT 216 17 - VA 46 5 - VT 7 2 - WA 162 134 - WI 9 1 + SD 6 3 + TN 5 2 + TX 28 4 + UT 211 19 + VA 26 4 + VT 7 1 + WA 101 187 + WI 6 2 WV 4 0 - WY 211 5 + WY 208 5 -------------------------------------------------------- ### Hz Designation OCR Errors by State ### FALSE TRUE - AK 250 34 - AL 1 2 - AR 8 5 - AZ 6 26 - CA 351 92 - CO 80 42 - CT 4 1 + AK 280 5 + AL 1 1 + AR 8 3 + AZ 5 14 + CA 437 19 + CO 87 17 + CT 5 0 DE 2 0 - FL 12 10 + FL 12 6 FM 2 0 - GA 5 3 + GA 5 1 GU 1 0 - HI 5 9 + HI 10 2 HT 1 0 IA 1 1 - ID 26 39 + ID 27 14 IL 3 0 - IN 0 9 - KS 3 1 - KY 4 2 - LA 3 7 + IN 1 8 + KS 2 1 + KY 4 1 + LA 3 5 MA 9 1 - MD 3 5 + MD 4 5 ME 1 1 - MI 25 10 - MN 12 14 - MO 3 6 - MP 6 1 - MS 1 7 - MT 43 36 - NC 19 6 - ND 4 5 + MI 25 1 + MN 16 6 + MO 3 5 + MP 5 1 + MS 1 6 + MT 48 1 + NC 18 4 + ND 6 0 NE 6 3 - NH 2 7 + NH 2 0 NJ 19 1 - NM 18 20 - NV 32 7 - NY 3 11 - OH 2 1 - OK 9 7 - OR 289 55 + NM 17 12 + NV 24 6 + NY 7 7 + OK 5 6 + OR 344 7 PA 3 0 - PR 12 3 - PW 2 1 + PR 14 2 + PW 3 0 RI 1 0 SC 2 1 - SD 8 4 - TN 3 6 - TX 44 7 - UT 162 71 - VA 22 29 - VT 6 3 - WA 168 128 - WI 3 7 + SD 9 0 + TN 2 5 + TX 26 6 + UT 162 68 + VA 20 10 + VT 5 3 + WA 233 55 + WI 4 4 WV 1 3 - WY 201 15 + WY 202 11 -------------------------------------------------------- ### Hz Dry Color OCR Errors by State ### FALSE TRUE - AK 284 0 - AL 3 0 - AR 13 0 - AZ 32 0 - CA 442 1 - CO 117 5 + AK 285 0 + AL 2 0 + AR 11 0 + AZ 19 0 + CA 455 1 + CO 99 5 CT 5 0 DE 2 0 - FL 22 0 + FL 18 0 FM 2 0 - GA 8 0 + GA 6 0 GU 1 0 - HI 14 0 + HI 12 0 HT 1 0 IA 2 0 - ID 63 2 + ID 39 2 IL 3 0 IN 9 0 - KS 3 1 - KY 6 0 - LA 10 0 + KS 2 1 + KY 5 0 + LA 8 0 MA 10 0 - MD 8 0 + MD 9 0 ME 2 0 - MI 35 0 - MN 24 2 - MO 9 0 - MP 7 0 - MS 8 0 - MT 79 0 - NC 25 0 - ND 9 0 + MI 26 0 + MN 20 2 + MO 8 0 + MP 6 0 + MS 7 0 + MT 48 1 + NC 22 0 + ND 6 0 NE 7 2 - NH 9 0 + NH 2 0 NJ 20 0 - NM 32 6 - NV 38 1 + NM 23 6 + NV 29 1 NY 14 0 - OH 3 0 - OK 16 0 - OR 343 1 + OK 11 0 + OR 350 1 PA 3 0 - PR 15 0 + PR 16 0 PW 3 0 RI 1 0 SC 3 0 - SD 9 3 - TN 9 0 - TX 46 5 - UT 222 11 - VA 51 0 - VT 9 0 - WA 257 39 - WI 10 0 + SD 6 3 + TN 7 0 + TX 27 5 + UT 219 11 + VA 30 0 + VT 8 0 + WA 249 39 + WI 8 0 WV 4 0 - WY 215 1 + WY 212 1 -------------------------------------------------------- ### Hz Moist Color OCR Errors by State ### FALSE TRUE - AK 283 1 - AL 3 0 - AR 13 0 - AZ 32 0 - CA 442 1 - CO 115 7 + AK 284 1 + AL 2 0 + AR 11 0 + AZ 19 0 + CA 455 1 + CO 97 7 CT 5 0 DE 2 0 - FL 20 2 + FL 16 2 FM 2 0 - GA 8 0 + GA 6 0 GU 1 0 - HI 14 0 + HI 12 0 HT 1 0 IA 2 0 - ID 62 3 + ID 38 3 IL 3 0 IN 8 1 - KS 4 0 - KY 3 3 - LA 10 0 + KS 3 0 + KY 2 3 + LA 8 0 MA 10 0 - MD 8 0 + MD 9 0 ME 2 0 - MI 35 0 - MN 26 0 - MO 9 0 - MP 7 0 - MS 8 0 - MT 79 0 - NC 24 1 - ND 9 0 + MI 26 0 + MN 22 0 + MO 8 0 + MP 6 0 + MS 7 0 + MT 49 0 + NC 21 1 + ND 6 0 NE 8 1 - NH 9 0 + NH 2 0 NJ 20 0 - NM 32 6 - NV 38 1 + NM 23 6 + NV 29 1 NY 14 0 - OH 3 0 - OK 15 1 - OR 343 1 + OK 10 1 + OR 350 1 PA 3 0 - PR 15 0 + PR 16 0 PW 3 0 RI 1 0 SC 3 0 - SD 7 5 - TN 8 1 - TX 46 5 - UT 225 8 - VA 42 9 - VT 9 0 - WA 259 37 - WI 10 0 + SD 4 5 + TN 6 1 + TX 27 5 + UT 222 8 + VA 21 9 + VT 8 0 + WA 251 37 + WI 8 0 WV 4 0 - WY 215 1 + WY 212 1 -------------------------------------------------------- diff --git a/inst/extdata/OSD-error-reporting/misc-errors.txt b/inst/extdata/OSD-error-reporting/misc-errors.txt index e0dcdbb0db..d4a6dd9f8b 100644 --- a/inst/extdata/OSD-error-reporting/misc-errors.txt +++ b/inst/extdata/OSD-error-reporting/misc-errors.txt @@ -6,9 +6,7 @@ DOCENA GUALALA HATU KANA`A -LICKDALE LONOKE -MAPLE MOUNTAIN NEOLA NUTALL OLANTA @@ -18,5 +16,3 @@ SABANA SIELO SNAKE SULA -TENEX -TRAPPER diff --git a/inst/extdata/OSD-error-reporting/state/AK-hz.csv b/inst/extdata/OSD-error-reporting/state/AK-hz.csv index 05a61aad23..6713e41f26 100644 --- a/inst/extdata/OSD-error-reporting/state/AK-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/AK-hz.csv @@ -3,159 +3,259 @@ "AHRNKLIN","Oi",10,8,NA,NA,NA,NA,NA,NA "ANAN","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "ANAN","Oi",10,8,NA,NA,NA,NA,NA,NA +"ANCHORAGE","Oi",5,0,NA,NA,NA,"5YR","2","2" "ANIAK","Oe",3,0,NA,NA,NA,"5YR","2","2" "BARANOF","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "BARANOF","Oi",10,8,NA,NA,NA,"5YR","2.5","2" +"BATZA","Oa",3,0,NA,NA,NA,"5YR","2","1" "BATZA","Oi",8,3,NA,NA,NA,"5YR","2","2" +"BERNICE","Oi",3,0,NA,NA,NA,NA,NA,NA "BLAQUIRRE","Oi",3,0,NA,NA,NA,"7.5YR","3","2" "BLASHKE","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "BLASHKE","Oe",10,8,NA,NA,NA,"5YR","3","2" -"BOULDER POINT","Oe",8,8,NA,NA,NA,"5YR","2","2" +"BODENBURG","Oe",5,0,NA,NA,NA,NA,NA,NA +"BOULDER POINT","Oe",8,0,NA,NA,NA,"5YR","2","2" "BOULDER POINT","Oi",10,8,NA,NA,NA,NA,NA,NA "CALAMITY","Oe",5,0,NA,NA,NA,"5YR","3","2" +"CHEDATNA","Oe",5,0,NA,NA,NA,NA,NA,NA +"CHELINA","Oe",3,0,NA,NA,NA,NA,NA,NA +"CHETASLINA","Oe",10,0,NA,NA,NA,NA,NA,NA "CHICHAGOF","Oa",30,0,NA,NA,NA,"5YR","2.5","2" "CHICHAGOF","Oi",33,30,NA,NA,NA,"5YR","2.5","2" -"CHILKAT","01",5,0,NA,NA,NA,NA,NA,NA +"CHILKAT","O1",5,0,NA,NA,NA,NA,NA,NA "CHILKAT","B3",28,36,NA,NA,NA,"lOYR","4","4" +"CHILKOOT","Oi",8,0,NA,NA,NA,NA,NA,NA +"CHILLIGAN","Oi",5,0,NA,NA,NA,"5YR","2.5","2" +"CHISTNA","Oi",3,0,NA,NA,NA,"5YR","3","3" +"CHISTOCHINA","Oi",8,0,NA,NA,NA,"5YR","3","3" +"CHITINA","Oi",5,0,NA,NA,NA,NA,NA,NA "CHUCKRIVER","Oa",20,0,NA,NA,NA,"N","2",NA +"CHUIT","Oi",8,0,NA,NA,NA,NA,NA,NA +"CLARENA","Oi",10,0,NA,NA,NA,"5YR","3","3" +"COAL CREEK","Oe",5,0,NA,NA,NA,"5YR","2","2" "COAL CREEK","Oi",15,5,NA,NA,NA,NA,NA,NA +"COBBLANK","Oi",3,0,NA,NA,NA,"5YR","3","3" +"COPPER RIVER","Oe",13,0,NA,NA,NA,"10YR","2","1" "COPPER RIVER","Oi",23,13,NA,NA,NA,"7.5YR","3","4" +"COVILLE","Oi",8,0,NA,NA,NA,NA,NA,NA +"DADINA","Oe",10,0,NA,NA,NA,"7.5YR","3","2" "DADINA","Oi",25,10,NA,NA,NA,"7.5YR","3","4" -"DELYNDIA","Oi",8,8,NA,NA,NA,"7.5YR","3","4" -"DISAPPOINT","Oi",10,10,NA,NA,NA,"5YR","3","3" +"DELYNDIA","Oi",8,0,NA,NA,NA,"7.5YR","3","4" +"DINGLISHNA","Oi",15,0,NA,NA,NA,"10YR","2","1" +"DISAPPOINT","Oe",8,0,NA,NA,NA,"5YR","2.5","2" +"DISAPPOINT","Oi",10,8,NA,NA,NA,"5YR","3","3" +"DOTLAKE","Oi",8,0,NA,NA,NA,NA,NA,NA "EASLEY","O12",5,0,NA,NA,NA,"5YR","2","1" "EASLEY","O11",13,5,NA,NA,NA,NA,NA,NA -"ESHAMY","021",25,18,NA,NA,NA,NA,NA,NA -"EYAK","01",3,0,NA,NA,NA,NA,NA,NA +"ESHAMY","O22",17,0,NA,NA,NA,NA,NA,NA +"ESHAMY","C1",18,17,NA,NA,NA,"7.5YR","5","4" +"ESHAMY","O21",25,18,NA,NA,NA,NA,NA,NA +"ESHAMY","O1",32,25,NA,NA,NA,NA,NA,NA +"ESKA","Oi",8,0,NA,NA,NA,"10YR","2","2" +"EWAN","Oi",3,0,NA,NA,NA,"10YR","3","4" +"EYAK","O1",3,0,NA,NA,NA,NA,NA,NA +"FAIRLESS","Oe",3,0,NA,NA,NA,"5YR","2","2" "FAIRLESS","Oi",8,3,NA,NA,NA,NA,NA,NA "FANSHAW","Oa",18,0,NA,NA,NA,"5YR","2.5","2" "FANSHAW","Oe",23,18,NA,NA,NA,"5YR","2.5","2" "FEREBEE","Al",0,8,NA,NA,NA,"10YR","2","1" +"FEREBEE","Oi",5,0,NA,NA,NA,NA,NA,NA +"FLAT HORN","Oe",8,0,NA,NA,NA,"5YR","2","2" "FORDSTERROR","Oa",8,0,NA,NA,NA,"5YR","2.5","2" "FORDSTERROR","Oi",10,8,NA,NA,NA,NA,NA,NA -"FUNTER","0i1",0,46,NA,NA,NA,"10YR","5","3" -"FUNTER","0i2",46,61,NA,NA,NA,"10YR","6","4" +"GADONA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAKONA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GOLDCORD","Oe",3,0,NA,NA,NA,"7.5YR","3","2" "GOLDEN","Oa",13,0,NA,NA,NA,"5YR","2.5","2" -"GOODHOPE","02",3,0,NA,NA,NA,"10YR","3","1" -"GOODHOPE","01",8,3,NA,NA,NA,"5YR","2","2" +"GOODHOPE","O2",3,0,NA,NA,NA,"10YR","3","1" +"GOODHOPE","O1",8,3,NA,NA,NA,"5YR","2","2" +"GOODPASTER","Oi2",10,0,NA,NA,NA,"5YR","2","1" "GOODPASTER","Oi1",23,10,NA,NA,NA,"7.5YR","4","4" +"GOODVIEW","Oi",13,0,NA,NA,NA,"2.5YR","2.5","2" +"GREWINGK","Oe",8,0,NA,NA,NA,"5YR","2","2" "GREWINGK","Oi",23,8,NA,NA,NA,NA,NA,NA +"GULKANA","Oi",8,0,NA,NA,NA,"10YR","2","2" "GUNNUK","Oa",15,0,NA,NA,NA,"10YR","3","2" +"HANAGITA","Oi",8,0,NA,NA,NA,"7.5YR","3","3" "HELM","Oa",20,0,NA,NA,NA,"2.5YR","2.5","2" -"HISNA","Oe",8,8,NA,NA,NA,"10YR","3","6" +"HILINE","Oi",5,0,NA,NA,NA,"10YR","2","2" +"HISNA","Oe",8,0,NA,NA,NA,"10YR","3","6" "HISNA","Oi",30,8,NA,NA,NA,"10YR","2","1" "HOFSTAD","Oe",15,0,NA,NA,NA,"N","2",NA "HOFSTAD","Oi",28,15,NA,NA,NA,"2.5Y","4","2" -"HOLLOW","Oi",3,3,NA,NA,NA,NA,NA,NA +"HOGAN","Oi",8,0,NA,NA,NA,"10YR","4","3" +"HOLLOW","Oi",3,0,NA,NA,NA,NA,NA,NA "HOLLOW","Cl",3,41,NA,NA,NA,"10YR","4","2" +"HOMESTEAD","Oe",5,0,NA,NA,NA,"10YR","2","2" "HOMESTEAD","Oi",8,5,NA,NA,NA,NA,NA,NA -"INMACHUK","0i1",0,5,NA,NA,NA,"5YR","3","2" -"INMACHUK","0i2",5,36,NA,NA,NA,"5YR","2","1" -"INMACHUK","0i3",36,41,NA,NA,NA,"5YR","3","3" -"INMACHUK","0i4f",41,51,NA,NA,NA,NA,NA,NA +"HYDABURG","Oi1",1,0,NA,NA,NA,NA,NA,NA "ISIDOR","Oe",23,0,NA,NA,NA,"5YR","2.5","1" "ISMAILOF","Oa",5,0,NA,NA,NA,"10YR","2","1" "ISMAILOF","Oi",8,5,NA,NA,NA,NA,NA,NA "JAKOLOF","Oe",5,0,NA,NA,NA,NA,NA,NA -"KANDIK","01",5,0,NA,NA,NA,"5YR","3","1" -"KARHEEN","0a2",23,38,NA,NA,NA,"N","2","0" -"KARHEEN","0a3",38,152,NA,NA,NA,"N","2","0" -"KARTA","0a",8,0,NA,NA,NA,"5YR","2.5","1" -"KARTA","0e",20,8,NA,NA,NA,"5YR","2.5","2" -"KARTA","0i",25,20,NA,NA,NA,NA,NA,NA +"JIM","Oe",3,0,NA,NA,NA,"5YR","2","2" +"KALAMBACH","Oi",5,0,NA,NA,NA,"10YR","2","2" +"KALSIN","Oi",3,0,NA,NA,NA,"10YR","3","3" +"KANDIK","O1",5,0,NA,NA,NA,"5YR","3","1" +"KARTA","Oa",8,0,NA,NA,NA,"5YR","2.5","1" +"KARTA","Oe",20,8,NA,NA,NA,"5YR","2.5","2" +"KARTA","Oi",25,20,NA,NA,NA,NA,NA,NA "KASIANA","Oa",20,0,NA,NA,NA,"10YR","2","1" +"KEBA","Oi",3,0,NA,NA,NA,"2.5YR","3","2" "KELSALL","Oe",13,0,NA,NA,NA,NA,NA,NA +"KENNY LAKE","Oi",8,0,NA,NA,NA,NA,NA,NA +"KIOKLUK","Oe",5,0,NA,NA,NA,NA,NA,NA "KLANELNEECHENA","Oe2",10,0,NA,NA,NA,"2.5YR","2.5","2" "KLANELNEECHENA","Oe1",23,10,NA,NA,NA,"10YR","2","1" "KLANELNEECHENA","Oi",30,23,NA,NA,NA,"10YR","2","1" -"KLAWASI","Oe",10,10,NA,NA,NA,"5YR","2.5","1" +"KLAWASI","Oe",10,0,NA,NA,NA,"5YR","2.5","1" +"KLAWASI","Oi",23,10,NA,NA,NA,"5YR","3","2" +"KLISKON","Oe",8,0,NA,NA,NA,NA,NA,NA +"KLUNA","Oi",5,0,NA,NA,NA,"7.5YR","3","4" +"KLUTINA","Oi",3,0,NA,NA,NA,"5YR","3","2" +"KNIK","Oi",5,0,NA,NA,NA,"10YR","2","2" +"KROTO","Oe",8,0,NA,NA,NA,NA,NA,NA +"KRUBATE","Oi",3,0,NA,NA,NA,NA,NA,NA +"KUNAYOSH","O12",3,0,NA,NA,NA,"5YR","2","1" +"KUNAYOSH","O11",6,3,NA,NA,NA,NA,NA,NA +"KUPREANOF","Oe",5,0,NA,NA,NA,NA,NA,NA +"KUSDRY","Oe",5,0,NA,NA,NA,"7.5YR","3","2" +"KUSDRY","Oi",8,5,NA,NA,NA,"7.5YR","3","2" +"KUSLINA","Oe",8,0,NA,NA,NA,"10YR","2","2" +"KUSLINA","Oi",25,8,NA,NA,NA,"7.5YR","4","2" +"KUSLINAD","Oe",10,0,NA,NA,NA,"5YR","2.5","2" "KUSLINAD","Oi",20,10,NA,NA,NA,"5YR","3","2" -"KVICHAK","01",3,0,NA,NA,NA,NA,NA,NA +"KVICHAK","O1",3,0,NA,NA,NA,NA,NA,NA "KWATAHEIN","Oa",8,0,NA,NA,NA,"5YR","2.5","1" "KWATAHEIN","Oe",25,8,NA,NA,NA,"5YR","2.5","1" "KWATAHEIN","Oi",30,25,NA,NA,NA,"5YR","2.5","2" "LIESNOI","Oi",3,0,NA,NA,NA,"7.5YR","3","2" -"LIVENGOOD","01",3,0,NA,NA,NA,"10YR","3","2" +"LIVENGOOD","O1",3,0,NA,NA,NA,"10YR","3","2" +"LUCILE","Oi",10,0,NA,NA,NA,"10YR","2","1" +"LUTAK","Oe",5,0,NA,NA,NA,NA,NA,NA "LUTAK","Oi",15,5,NA,NA,NA,NA,NA,NA "LUTAK","3Cl",20,36,NA,NA,NA,"7.5YR","3","2" +"MACLAREN","Oi",8,0,NA,NA,NA,"2.5YR","2.5","2" "MAGNETIC","Oa",18,0,NA,NA,NA,"7.5YR","3","2" "MAGNETIC","Oe",36,18,NA,NA,NA,"5YR","3","3" "MALMESBURY","Oa",3,0,NA,NA,NA,"5YR","3","2" "MALMESBURY","Oi",5,3,NA,NA,NA,NA,NA,NA -"MEARES","0e",8,0,NA,NA,NA,"5YR","2.5","1" -"MEARES","0i",10,8,NA,NA,NA,NA,NA,NA -"MEDFRA","01",25,0,NA,NA,NA,NA,NA,NA +"MCCALLY","O1",8,0,NA,NA,NA,"10YR","2","2" +"MEARES","Oe",8,0,NA,NA,NA,"5YR","2.5","1" +"MEARES","Oi",10,8,NA,NA,NA,NA,NA,NA +"MEDFRA","O1",25,0,NA,NA,NA,NA,NA,NA +"MENDELTNA","Oe",10,0,NA,NA,NA,"5YR","2.5","1" +"MENDELTNA","Oi",23,10,NA,NA,NA,"5YR","3","2" "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,"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" -"NABESNA","012",5,0,NA,NA,NA,"10YR","2","1" -"NABESNA","011",13,5,NA,NA,NA,"5YR","2","2" -"NAKNEK","012",23,0,NA,NA,NA,NA,NA,NA -"NAKNEK","011",41,23,NA,NA,NA,"5YR","3","3" +"NABESNA","O12",5,0,NA,NA,NA,"10YR","2","1" +"NABESNA","O11",13,5,NA,NA,NA,"5YR","2","2" +"NAKNEK","O12",23,0,NA,NA,NA,NA,NA,NA +"NAKNEK","O11",41,23,NA,NA,NA,"5YR","3","3" "NAKWASINA","Oa",20,0,NA,NA,NA,NA,NA,NA +"NANCY","Oe",3,0,NA,NA,NA,"7.5YR","3","2" "NANWALEK","Oe",5,0,NA,NA,NA,"10YR","2","2" +"NATAGA","Oi",8,0,NA,NA,NA,NA,NA,NA "NAUKATI","Oe",8,0,NA,NA,NA,"10YR","2","1" "NAUKATI","Oi",13,8,NA,NA,NA,NA,NA,NA +"NICKOLNA","Oi",5,0,NA,NA,NA,NA,NA,NA +"NIKISHKA","Oe",8,0,NA,NA,NA,"5YR","2","2" +"NIKISHKA","Oi",9,8,NA,NA,NA,NA,NA,NA +"NIZINA","Oi",3,0,NA,NA,NA,"7.5YR","3","2" "OGTNA","Oa",5,0,NA,NA,NA,"10YR","2","1" "OGTNA","Oi",15,5,NA,NA,NA,"2.5YR","3","1" "PARTOFSHIKOF","Oa",8,0,NA,NA,NA,NA,NA,NA "PARTOFSHIKOF","Oi",30,8,NA,NA,NA,NA,NA,NA -"PARTOV","02",3,0,NA,NA,NA,"10YR","2","1" +"PARTOV","O2",3,0,NA,NA,NA,"10YR","2","1" "PERIL","Oa",5,0,NA,NA,NA,NA,NA,NA "PERIL","Oi",8,5,NA,NA,NA,NA,NA,NA "PERIL","Cl",25,36,NA,NA,NA,"2.5Y","4","3" "PETREL","Oi2",8,0,NA,NA,NA,"N","2","0" "PETREL","Oi1",18,8,NA,NA,NA,NA,NA,NA "PETROF","Oe",3,0,NA,NA,NA,"10YR","2","2" -"PURCHES","02",5,0,NA,NA,NA,"10YR","2","1" -"PURCHES","01",8,5,NA,NA,NA,NA,NA,NA -"PUSTOI","01",8,0,NA,NA,NA,"5YR","2","2" -"REMEDIOS","Oe",3,3,NA,NA,NA,"10YR","2","1" +"PINCHER","Oe",5,0,NA,NA,NA,"10YR","2","2" +"PIPPIN","Oi",3,0,NA,NA,NA,"7.5YR","3","2" +"PIPPOD","Oi",5,0,NA,NA,NA,"7.5YR","3","2" +"PSUYAAH","Oi",5,0,NA,NA,NA,"7.5YR","2","0" +"PURCHES","O2",5,0,NA,NA,NA,"10YR","2","1" +"PURCHES","O1",8,5,NA,NA,NA,NA,NA,NA +"PUSTOI","O1",8,0,NA,NA,NA,"5YR","2","2" +"QENI","Oi",15,0,NA,NA,NA,"10YR","2","2" +"REMEDIOS","Oe",3,0,NA,NA,NA,"10YR","2","1" "REMEDIOS","Oi",5,3,NA,NA,NA,NA,NA,NA +"REMEDIOS","R",66,0,NA,NA,NA,NA,NA,NA +"SARKAR","Oe",11,0,NA,NA,NA,"5YR","2.5","1" +"SARKAR","Oi",13,11,NA,NA,NA,NA,NA,NA +"SCHROCK","Oi",8,0,NA,NA,NA,"5YR","2","2" "SELDOVIA","Oe",5,0,NA,NA,NA,"10YR","2","2" +"SINONA","Oi",5,0,NA,NA,NA,"5YR","3","3" "SITKA","Oa",5,0,NA,NA,NA,NA,NA,NA "SITKA","Oi",8,5,NA,NA,NA,NA,NA,NA -"SKAGWAY","Oe",5,5,NA,NA,NA,NA,NA,NA +"SKAGWAY","Oe",5,0,NA,NA,NA,NA,NA,NA "SKAGWAY","Oi",10,5,NA,NA,NA,NA,NA,NA -"SLODUC","0a",18,0,NA,NA,NA,"5YR","2.5","2" -"SLODUC","0i",25,18,NA,NA,NA,"5YR","3","2" +"SLODUC","Oa",18,0,NA,NA,NA,"5YR","2.5","2" +"SLODUC","Oi",25,18,NA,NA,NA,"5YR","3","2" "SNETTISHAM","Oa",8,0,NA,NA,NA,NA,NA,NA "SNETTISHAM","Oi",15,8,NA,NA,NA,NA,NA,NA -"SOAKPAK","02",3,0,NA,NA,NA,"5YR","2","1" +"SOAKPAK","O2",3,0,NA,NA,NA,"5YR","2","1" "SPASSKI","Oa",33,0,NA,NA,NA,NA,NA,NA "SPASSKI","Oi",36,33,NA,NA,NA,NA,NA,NA "ST. NICHOLAS","Oa",10,0,NA,NA,NA,"5R","2","1" "ST. NICHOLAS","Oi",18,10,NA,NA,NA,NA,NA,NA -"STANEY","0'i1",10,58,NA,NA,NA,NA,NA,NA +"STAINKY","Oi",5,0,NA,NA,NA,NA,NA,NA +"STAVE","O1",4,0,NA,NA,NA,"5YR","2","2" +"STRANDLINE","Oe",5,0,NA,NA,NA,NA,NA,NA "STUCK","Oi",8,0,NA,NA,NA,"5YR","3","2" "SUKOI","Oe",10,0,NA,NA,NA,"5YR","2.5","2" -"TAKOTNA","01",5,0,NA,NA,NA,"5YR","2","1" +"SUNTRANA","Oe",10,0,NA,NA,NA,"10YR","2","2" +"SWEDNA","Oi/C",3,0,NA,NA,NA,"5YR","3","3" +"TAKOTNA","O1",5,0,NA,NA,NA,"5YR","2","1" "TALUWIK","Oe",3,0,NA,NA,NA,NA,NA,NA -"TAWAH","01",8,0,NA,NA,NA,"5YR","3","3" +"TANGOE","Oe",3,0,NA,NA,NA,"10YR","2","1" +"TARAL","Oi",5,0,NA,NA,NA,"10YR","2","1" +"TAWAH","O1",8,0,NA,NA,NA,"5YR","3","3" +"TEBAY","Oi",10,0,NA,NA,NA,"5YR","3","2" +"TEKLANIKA","Oe",5,0,NA,NA,NA,"5YR","4","3" +"TELAY","Oe",5,0,NA,NA,NA,"10YR","3","4" "TOKEEN","Oe",28,0,NA,NA,NA,"10R","2.5","2" "TOKEEN","Oi",30,28,NA,NA,NA,NA,NA,NA +"TOKLAT","Oe",5,0,NA,NA,NA,"7.5YR","3","2" +"TOLSONA","Oe",10,0,NA,NA,NA,"10YR","2","2" "TOLSONA","Oi",20,10,NA,NA,NA,"5YR","2.5","2" -"TOLSTOI","0e",5,0,NA,NA,NA,"5YR","2.5","2" -"TOLSTOI","0i",10,5,NA,NA,NA,NA,NA,NA +"TOLSTOI","Oe",5,0,NA,NA,NA,"5YR","2.5","2" +"TOLSTOI","Oi",10,5,NA,NA,NA,NA,NA,NA "TONOWEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"TONSINA","Oi",5,0,NA,NA,NA,NA,NA,NA +"TORPEDO LAKE","Oe",13,0,NA,NA,NA,"5YR","2","1" "TRAITORS","Oi",15,5,NA,NA,NA,NA,NA,NA -"TULIK","02",5,0,NA,NA,NA,"5YR","2","2" -"TUPUKNUK","01",10,0,NA,NA,NA,"5YR","2","2" -"TUXEKAN","Oa",5,0,NA,NA,NA,"N","2","0" +"TSADAKA","Oe",8,0,NA,NA,NA,"2.5YR","3","4" +"TSADAKA","Oi",20,8,NA,NA,NA,"5YR","3","4" +"TSANA","Oi",5,0,NA,NA,NA,NA,NA,NA +"TSIRKU","Oi",3,0,NA,NA,NA,NA,NA,NA +"TULIK","O2",5,0,NA,NA,NA,"5YR","2","2" +"TUPUKNUK","O1",10,0,NA,NA,NA,"5YR","2","2" +"TUXEKAN","Oa",2,0,NA,NA,NA,"N","2","0" +"TUXEKAN","Oe",10,0.5,NA,NA,NA,"2.5YR","2","2" +"TUXEKAN","Oi",11,10,NA,NA,NA,NA,NA,NA +"UGAK","Oi",4,0,NA,NA,NA,"7.5YR","3","2" "ULLOA","Oe",8,0,NA,NA,NA,"2.5YR","2","2" "ULLOA","Oi",10,8,NA,NA,NA,NA,NA,NA -"UMIAT","02",8,0,NA,NA,NA,"5YR","2","1" -"UMIAT","01",20,8,NA,NA,NA,"5YR","2","2" +"UMIAT","O2",8,0,NA,NA,NA,"5YR","2","1" +"UMIAT","O1",20,8,NA,NA,NA,"5YR","2","2" "UNAKWIK","Oil",0,8,NA,NA,NA,NA,NA,NA "VERSTOVIA","Oe",10,0,NA,NA,NA,NA,NA,NA "VIXEN","Oa",3,0,NA,NA,NA,"5YR","2.5","1" "VIXEN","Oi",8,3,NA,NA,NA,NA,NA,NA "WADLEIGH","Oe",10,0,NA,NA,NA,"5YR","2.5","1" "WADLEIGH","Oi",13,10,NA,NA,NA,NA,NA,NA -"WASILLA","0e",10,25,NA,NA,NA,"10YR","2","2" +"WASILLA","Oe",10,0,NA,NA,NA,"10YR","2","2" +"WATERFALL","Oi",5,0,NA,NA,NA,NA,NA,NA "YAKOBI","Oa",13,0,NA,NA,NA,"5YR","2.5","1" "YAKOBI","Oi",18,13,NA,NA,NA,NA,NA,NA -"YUKON","01",20,0,NA,NA,NA,"5YR","2","1" +"YENSUS","Oe",3,0,NA,NA,NA,"10YR","2","2" +"YOHN","Oi",8,0,NA,NA,NA,"5YR","3","2" +"YUKON","O1",20,0,NA,NA,NA,"5YR","2","1" diff --git a/inst/extdata/OSD-error-reporting/state/AK-series.csv b/inst/extdata/OSD-error-reporting/state/AK-series.csv index fc71eb1ae4..a92ab70fe9 100644 --- a/inst/extdata/OSD-error-reporting/state/AK-series.csv +++ b/inst/extdata/OSD-error-reporting/state/AK-series.csv @@ -1,15 +1,17 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"TOLSTOI",710846,FALSE,2005,TRUE,TRUE +"TOLSTOI",710846,FALSE,2005,TRUE,FALSE "KUPREANOF",523373,FALSE,2005,TRUE,FALSE "MOSMAN",375271,FALSE,2005,TRUE,FALSE "KLAWASI",355976,TRUE,2019,TRUE,FALSE "ST. NICHOLAS",321463,FALSE,2002,TRUE,FALSE +"STRANDLINE",317199,FALSE,2002,TRUE,FALSE "MITKOF",314669,FALSE,2005,TRUE,FALSE +"CHELINA",309924,TRUE,2008,TRUE,FALSE "KROTO",277539,FALSE,2002,TRUE,FALSE "WADLEIGH",209987,FALSE,2002,TRUE,FALSE "NAKWASINA",196302,FALSE,2002,TRUE,FALSE "NANCY",195437,TRUE,2005,TRUE,FALSE -"KARTA",186753,FALSE,2002,TRUE,TRUE +"KARTA",186753,FALSE,2002,TRUE,FALSE "TUXEKAN",124053,FALSE,2002,TRUE,FALSE "ULLOA",120750,FALSE,2002,TRUE,FALSE "CHUIT",117851,FALSE,2002,TRUE,FALSE @@ -19,8 +21,10 @@ "SUKOI",74834,FALSE,2005,TRUE,FALSE "YAKOBI",67801,FALSE,2002,TRUE,FALSE "COPPER RIVER",66542,TRUE,2005,TRUE,FALSE +"SARKAR",64572,FALSE,2002,TRUE,FALSE "HILINE",63434,FALSE,2002,TRUE,FALSE "MENDELTNA",61806,FALSE,2019,TRUE,FALSE +"TELAY",58617,FALSE,2008,TRUE,FALSE "VIXEN",57716,FALSE,2002,TRUE,FALSE "HELM",57661,FALSE,2002,TRUE,FALSE "TOLSONA",53595,FALSE,2002,TRUE,FALSE @@ -31,36 +35,42 @@ "KASIANA",49908,FALSE,2002,TRUE,FALSE "KLUNA",48752,FALSE,1999,TRUE,FALSE "PIPPIN",45300,FALSE,2019,TRUE,FALSE +"GAKONA",41035,FALSE,2008,TRUE,FALSE "KNIK",36925,FALSE,2008,TRUE,FALSE "SITKA",36584,FALSE,2005,TRUE,FALSE "KWATAHEIN",35674,FALSE,2002,TRUE,FALSE "NIZINA",34404,FALSE,2023,TRUE,FALSE "DOTLAKE",31383,FALSE,2002,TRUE,FALSE "VERSTOVIA",30500,FALSE,2005,TRUE,FALSE +"TONSINA",29947,FALSE,2002,TRUE,FALSE "CALAMITY",28573,FALSE,2002,TRUE,FALSE +"TARAL",26603,FALSE,2002,TRUE,FALSE "TOKEEN",26270,FALSE,2002,TRUE,FALSE "KLISKON",25981,FALSE,2004,TRUE,FALSE +"SCHROCK",23065,FALSE,2002,TRUE,FALSE "PERIL",22636,FALSE,2002,TRUE,TRUE -"SOAKPAK",22103,FALSE,2008,TRUE,TRUE +"SOAKPAK",22103,FALSE,2008,TRUE,FALSE "MACLAREN",21972,FALSE,2008,TRUE,FALSE "GADONA",21847,FALSE,2008,TRUE,FALSE "FROSTCIRCLE",20927,FALSE,2005,TRUE,FALSE "KENNY LAKE",20543,FALSE,2002,TRUE,FALSE -"KARHEEN",19834,FALSE,1993,FALSE,TRUE +"TSANA",19970,FALSE,2008,TRUE,FALSE "NATAGA",18388,FALSE,2015,TRUE,FALSE -"STANEY",17975,FALSE,1995,FALSE,TRUE +"LUCILE",17480,FALSE,2005,TRUE,FALSE "BARANOF",16031,FALSE,1995,TRUE,FALSE "DISAPPOINT",15763,FALSE,2002,TRUE,FALSE "FEREBEE",15302,FALSE,2022,TRUE,TRUE "GULKANA",15301,FALSE,2019,TRUE,FALSE -"WASILLA",14606,FALSE,2002,TRUE,TRUE +"WASILLA",14606,FALSE,2002,TRUE,FALSE "SWILLNA",14549,FALSE,1999,TRUE,FALSE -"SLODUC",14092,FALSE,2002,TRUE,TRUE +"SLODUC",14092,FALSE,2002,TRUE,FALSE "FORDSTERROR",13897,FALSE,2002,TRUE,FALSE "CHEDATNA",13464,FALSE,2008,TRUE,FALSE "CHETASLINA",13385,FALSE,2008,TRUE,FALSE "TSADAKA",12763,FALSE,2002,TRUE,FALSE "KLUTINA",12632,FALSE,2002,TRUE,FALSE +"CHITINA",12162,FALSE,2002,TRUE,FALSE +"TEBAY",11702,FALSE,2019,TRUE,FALSE "CHUCKRIVER",11596,FALSE,2002,TRUE,FALSE "CHICHAGOF",11482,FALSE,2005,TRUE,FALSE "DELYNDIA",11340,FALSE,1995,TRUE,FALSE @@ -68,9 +78,10 @@ "GOLDCORD",10540,FALSE,2002,TRUE,FALSE "KUSLINA",10399,FALSE,2019,TRUE,FALSE "YENSUS",9690,FALSE,2008,TRUE,FALSE +"HANAGITA",9396,FALSE,2002,TRUE,FALSE "COAL CREEK",9247,FALSE,2004,TRUE,FALSE "SNETTISHAM",9143,FALSE,2002,TRUE,FALSE -"FUNTER",9034,FALSE,1991,FALSE,TRUE +"SWEDNA",8974,FALSE,1999,TRUE,FALSE "CHILKOOT",8606,FALSE,1991,TRUE,FALSE "HOFSTAD",8006,FALSE,2002,TRUE,FALSE "KUSLINAD",7995,FALSE,1999,TRUE,FALSE @@ -82,82 +93,97 @@ "YOHN",6210,FALSE,2002,TRUE,FALSE "SELDOVIA",5717,FALSE,1999,TRUE,FALSE "SUNTRANA",5463,FALSE,2002,TRUE,FALSE -"MEARES",5293,FALSE,2002,TRUE,TRUE +"MEARES",5293,FALSE,2002,TRUE,FALSE "BLASHKE",5190,FALSE,1993,TRUE,FALSE "ISIDOR",5184,FALSE,2002,TRUE,FALSE "EWAN",5039,FALSE,1999,TRUE,FALSE "HOMESTEAD",4995,FALSE,2005,TRUE,FALSE +"COBBLANK",4995,FALSE,2008,TRUE,FALSE "PSUYAAH",4907,FALSE,2003,TRUE,FALSE +"TOKLAT",4525,FALSE,2002,TRUE,FALSE "MINCHUMINA",4508,FALSE,2002,TRUE,FALSE "PETREL",4302,FALSE,2002,TRUE,FALSE "BLAQUIRRE",4126,FALSE,2008,TRUE,FALSE "DADINA",4031,FALSE,2019,TRUE,FALSE "SPASSKI",3872,FALSE,2002,TRUE,FALSE +"ESKA",3610,FALSE,2008,TRUE,FALSE "FANSHAW",3021,FALSE,1993,TRUE,FALSE "WATERFALL",2949,FALSE,2002,TRUE,FALSE "LUTAK",2732,FALSE,1995,TRUE,TRUE "MAGNETIC",2598,FALSE,2002,TRUE,FALSE "CHILLIGAN",2495,FALSE,2002,TRUE,FALSE "JAKOLOF",2308,FALSE,1999,TRUE,FALSE +"TANGOE",2297,FALSE,1999,TRUE,FALSE "GOLDEN",2277,FALSE,1994,TRUE,FALSE "PIPPOD",2272,FALSE,1999,TRUE,FALSE "KLANELNEECHENA",1952,FALSE,2002,TRUE,FALSE "HOGAN",1932,FALSE,1999,TRUE,FALSE "ANAN",1932,FALSE,1995,TRUE,FALSE "GOODPASTER",1864,FALSE,2002,TRUE,FALSE +"QENI",1759,FALSE,2008,TRUE,FALSE "MALMESBURY",1735,FALSE,1995,TRUE,FALSE "KRUBATE",1718,FALSE,1995,TRUE,FALSE +"FLAT HORN",1584,FALSE,2002,TRUE,FALSE "NICKOLNA",1517,FALSE,2008,TRUE,FALSE "STUCK",1349,FALSE,2002,TRUE,FALSE +"CHISTNA",1339,FALSE,2008,TRUE,FALSE "JIM",1335,FALSE,2002,TRUE,FALSE "TALUWIK",1192,FALSE,1999,TRUE,FALSE "NAUKATI",972,FALSE,2002,TRUE,FALSE "GUNNUK",942,FALSE,2002,TRUE,FALSE "ISMAILOF",907,FALSE,1999,TRUE,FALSE "CHISTOCHINA",715,FALSE,2019,TRUE,FALSE +"TSIRKU",566,FALSE,2002,TRUE,FALSE "SINONA",564,FALSE,2008,TRUE,FALSE "PETROF",532,FALSE,1999,TRUE,FALSE "KUSDRY",398,FALSE,2008,TRUE,FALSE "ZOLOTOI",385,FALSE,2000,TRUE,FALSE "KEBA",341,FALSE,2002,TRUE,FALSE "DISTIN",262,FALSE,2005,TRUE,FALSE -"KANDIK",221,FALSE,2002,TRUE,TRUE +"KANDIK",221,FALSE,2002,TRUE,FALSE "GOODVIEW",181,FALSE,2018,TRUE,FALSE "CLARENA",140,FALSE,1999,TRUE,FALSE "OGTNA",122,FALSE,2008,TRUE,FALSE "HISNA",74,FALSE,1999,TRUE,FALSE -"LIVENGOOD",3,FALSE,2008,TRUE,TRUE -"YUKON",NA,FALSE,2002,TRUE,TRUE -"UNAKWIK",NA,FALSE,1995,TRUE,TRUE -"UMIAT",NA,FALSE,2002,TRUE,TRUE -"TUPUKNUK",NA,FALSE,2002,TRUE,TRUE -"TULIK",NA,FALSE,1995,TRUE,TRUE +"LIVENGOOD",3,FALSE,2008,TRUE,FALSE +"YUKON",NA,FALSE,2002,TRUE,FALSE +"UNAKWIK",NA,FALSE,1995,FALSE,TRUE +"UMIAT",NA,FALSE,2002,TRUE,FALSE +"UGAK",NA,FALSE,1995,TRUE,FALSE +"TUPUKNUK",NA,FALSE,2002,TRUE,FALSE +"TULIK",NA,FALSE,1995,TRUE,FALSE "TORPEDO LAKE",NA,FALSE,2002,TRUE,FALSE -"TAWAH",NA,FALSE,1995,TRUE,TRUE -"TAKOTNA",NA,FALSE,2002,TRUE,TRUE +"TAWAH",NA,FALSE,1995,TRUE,FALSE +"TAKOTNA",NA,FALSE,2002,TRUE,FALSE +"STAVE",NA,FALSE,1992,TRUE,FALSE "STAINKY",NA,FALSE,2002,TRUE,FALSE -"PUSTOI",NA,FALSE,1995,TRUE,TRUE -"PURCHES",NA,FALSE,2002,TRUE,TRUE +"PUSTOI",NA,FALSE,1995,TRUE,FALSE +"PURCHES",NA,FALSE,2002,TRUE,FALSE "PINCHER",NA,FALSE,2002,TRUE,FALSE -"PARTOV",NA,FALSE,1995,TRUE,TRUE +"PARTOV",NA,FALSE,1995,TRUE,FALSE "NIKISHKA",NA,FALSE,1995,TRUE,FALSE -"NAKNEK",NA,FALSE,2002,TRUE,TRUE -"NABESNA",NA,FALSE,2002,TRUE,TRUE -"MEDFRA",NA,FALSE,2002,TRUE,TRUE -"KVICHAK",NA,FALSE,1995,TRUE,TRUE +"NAKNEK",NA,FALSE,2002,TRUE,FALSE +"NABESNA",NA,FALSE,2002,TRUE,FALSE +"MEDFRA",NA,FALSE,2002,TRUE,FALSE +"MCCALLY",NA,FALSE,2002,TRUE,FALSE +"KVICHAK",NA,FALSE,1995,TRUE,FALSE +"KUNAYOSH",NA,FALSE,2015,TRUE,FALSE "KIOKLUK",NA,FALSE,2002,TRUE,FALSE "KELSALL",NA,FALSE,2002,TRUE,FALSE -"INMACHUK",NA,FALSE,2002,FALSE,TRUE +"KALSIN",NA,FALSE,2002,TRUE,FALSE "GREWINGK",NA,FALSE,2002,TRUE,FALSE -"GOODHOPE",NA,FALSE,2002,TRUE,TRUE +"GOODHOPE",NA,FALSE,2002,TRUE,FALSE "FAIRLESS",NA,FALSE,2008,TRUE,FALSE -"EYAK",NA,FALSE,2002,TRUE,TRUE -"ESHAMY",NA,FALSE,2002,TRUE,TRUE +"EYAK",NA,FALSE,2002,TRUE,FALSE +"ESHAMY",NA,FALSE,2002,TRUE,FALSE "EASLEY",NA,FALSE,2002,TRUE,FALSE +"DINGLISHNA",NA,FALSE,1996,TRUE,FALSE "COVILLE",NA,FALSE,2002,TRUE,FALSE "CHILKAT",NA,FALSE,2002,TRUE,TRUE "BOULDER POINT",NA,FALSE,2002,TRUE,FALSE "BOGOSLOF",NA,FALSE,2000,TRUE,FALSE +"BERNICE",NA,FALSE,1995,TRUE,FALSE "BATZA",NA,TRUE,2002,TRUE,FALSE "ANIAK",NA,FALSE,2002,TRUE,FALSE +"ANCHORAGE",NA,FALSE,2005,TRUE,FALSE "AHRNKLIN",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/AL-hz.csv b/inst/extdata/OSD-error-reporting/state/AL-hz.csv index 71f88cd314..80ae1abe36 100644 --- a/inst/extdata/OSD-error-reporting/state/AL-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/AL-hz.csv @@ -1,3 +1,2 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "ALAMUCHEE","Bwl",13,33,NA,NA,NA,"10YR","4","4" -"CHEAHA","0i",0,3,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/AL-series.csv b/inst/extdata/OSD-error-reporting/state/AL-series.csv index ba76b44eaa..e814e2afa8 100644 --- a/inst/extdata/OSD-error-reporting/state/AL-series.csv +++ b/inst/extdata/OSD-error-reporting/state/AL-series.csv @@ -1,3 +1,2 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"CHEAHA",53744,FALSE,1999,FALSE,TRUE "ALAMUCHEE",744,FALSE,2000,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/AR-hz.csv b/inst/extdata/OSD-error-reporting/state/AR-hz.csv index c441024f9e..c02c1c30d1 100644 --- a/inst/extdata/OSD-error-reporting/state/AR-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/AR-hz.csv @@ -1,8 +1,9 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"BODEN","Oi",1,0,NA,NA,NA,NA,NA,NA "CAPTINA","2Btxl",64,99,NA,NA,NA,"10YR","5","4" -"GURDON","0",3,0,NA,NA,NA,NA,NA,NA +"GURDON","O",3,0,NA,NA,NA,NA,NA,NA "JAY","Btxl",64,142,NA,NA,NA,"10YR","5","8" "JAY","Ap",NA,23,"10YR","5","3","10YR","3","3" "TONTI","Btl",20,36,NA,NA,NA,"10YR","5","4" "TONTI","2Btl",86,124,NA,NA,NA,"2.5YR","4","6" -"YORKTOWN","0i",5,0,NA,NA,NA,"7.5YR","3","2" +"YORKTOWN","Oi",5,0,NA,NA,NA,"7.5YR","3","2" diff --git a/inst/extdata/OSD-error-reporting/state/AR-series.csv b/inst/extdata/OSD-error-reporting/state/AR-series.csv index 621ef4993d..bf8d7db24e 100644 --- a/inst/extdata/OSD-error-reporting/state/AR-series.csv +++ b/inst/extdata/OSD-error-reporting/state/AR-series.csv @@ -1,9 +1,7 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "CAPTINA",503278,TRUE,2006,FALSE,TRUE "TONTI",462870,TRUE,2006,FALSE,TRUE -"WRIGHTSVILLE",414007,TRUE,2006,TRUE,FALSE -"GURDON",100726,FALSE,1999,TRUE,TRUE -"YORKTOWN",57259,FALSE,1999,TRUE,TRUE +"BODEN",172594,FALSE,2003,TRUE,FALSE +"GURDON",100726,FALSE,1999,TRUE,FALSE +"YORKTOWN",57259,FALSE,1999,TRUE,FALSE "JAY",27669,FALSE,2000,TRUE,TRUE -"MCCASKILL",23478,FALSE,2010,TRUE,FALSE -"STELLTOWN",2898,FALSE,2010,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/AZ-hz.csv b/inst/extdata/OSD-error-reporting/state/AZ-hz.csv index 8b3cc0cbde..370f99f67b 100644 --- a/inst/extdata/OSD-error-reporting/state/AZ-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/AZ-hz.csv @@ -3,38 +3,22 @@ "AGUSTIN","Bkl",20,48,"7.5YR","5","4","7.5YR","4","4" "AMOS","Clr",104,127,"10YR","6","4","5YR","5","6" "AMOS","A1",NA,8,"10YR","5","3","10YR","4","3" +"BALDY","O1",3,0,NA,NA,NA,NA,NA,NA "BODECKER","Apl",0,3,"7.5YR","5","3","7.5YR","4","3" -"BORIANA","0i",0,5,"10YR","4","2","10YR","3","3" "BROLLIAR","Al",3,8,"7.5YR","4","2","7.5YR","3","2" "BURNSWICK","Bwl",8,28,"5YR","5","3","5YR","4","3" "BURNSWICK","Bknl",41,74,"5YR","5","3","5YR","4","3" -"BUSHVALLEY","0i",0,3,NA,NA,NA,NA,NA,NA -"CAMBERN","0i",0,3,NA,NA,NA,NA,NA,NA -"CHILSON","0i",0,3,NA,NA,NA,NA,NA,NA -"DANDREA","0i",0,3,NA,NA,NA,NA,NA,NA -"ELLEDGE","0i",0,3,NA,NA,NA,NA,NA,NA -"ESS","0i",0,3,NA,NA,NA,NA,NA,NA "FORREST","2Bkl",74,89,"5YR","6","6","5YR","5","6" -"GORDO","0i",0,3,NA,NA,NA,NA,NA,NA "KAMATO","Btknzl",28,66,"5YR","5","4","5YR","4","4" "KAMATO","An",NA,15,"10YR","6","4","10YR","4","4" -"LUNA","0i",0,1,NA,NA,NA,NA,NA,NA "NAHA","Al",0,5,"10YR","6","4","10YR","5","4" "NAHA","2Cl",69,147,"10YR","6","3","10YR","3","4" -"NAHA","Bw1",NA,NA,"10YR","5","4","10YR","4","4" -"NAHA","Bw",NA,69,"10YR","6","4","10YR","5","4" "OVERGAARD","Btl",28,53,"7.5YR","5","4","7.5YR","4","4" "REDUN","Bnzl",30,61,"7.5YR","5","6","7.5YR","4","4" "SAL","Btzl",5,18,"5YR","5","6","5YR","4","6" "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" -"SIZER","0i",3,0,NA,NA,NA,NA,NA,NA -"SPONIKER","0i",0,3,NA,NA,NA,NA,NA,NA +"SIZER","Oi",3,0,NA,NA,NA,NA,NA,NA "SPUDROCK","Oi",3,0,NA,NA,NA,NA,NA,NA -"VALENCIA","2Btkbl",71,99,"5YR","6","4","5YR","4","4" +"VALENCIA","2Btkbl",71,79,"5YR","6","4","5YR","4","4" "VALENCIA","2Bkbl",99,117,"5YR","6","4","5YR","5","4" -"VALENCIA","Bk",NA,71,"7.5YR","6","4","7.5YR","5","4" -"VALENCIA","2Btkb2",NA,99,"5YR","5","4","5YR","4","4" "WHY","Bwl",5,23,"10YR","6","4","10YR","4","4" -"WILDCAT","0i",0,3,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/AZ-series.csv b/inst/extdata/OSD-error-reporting/state/AZ-series.csv index c38c75546b..7e58447f53 100644 --- a/inst/extdata/OSD-error-reporting/state/AZ-series.csv +++ b/inst/extdata/OSD-error-reporting/state/AZ-series.csv @@ -1,29 +1,18 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "BROLLIAR",219224,TRUE,2005,FALSE,TRUE "FORREST",164143,FALSE,1997,FALSE,TRUE -"ESS",162958,FALSE,2000,FALSE,TRUE -"BUSHVALLEY",154143,FALSE,2000,FALSE,TRUE -"GORDO",123405,TRUE,2000,FALSE,TRUE "AGUSTIN",109292,FALSE,2002,FALSE,TRUE "OVERGAARD",92330,FALSE,2007,FALSE,TRUE "BURNSWICK",83777,FALSE,2008,FALSE,TRUE -"VALENCIA",77823,FALSE,1997,TRUE,TRUE -"ELLEDGE",63549,FALSE,2003,FALSE,TRUE +"VALENCIA",77823,FALSE,1997,FALSE,TRUE "WHY",58481,FALSE,1997,FALSE,TRUE "BODECKER",43629,FALSE,2012,FALSE,TRUE "BALDY",42356,FALSE,2003,TRUE,FALSE -"SPONIKER",40131,FALSE,2007,FALSE,TRUE -"SELEVIN",38312,FALSE,2000,TRUE,TRUE +"SELEVIN",38312,FALSE,2000,FALSE,TRUE "KAMATO",25940,FALSE,2003,TRUE,TRUE -"LUNA",24010,FALSE,2006,FALSE,TRUE "REDUN",22717,FALSE,2000,FALSE,TRUE -"CHILSON",21020,FALSE,2000,FALSE,TRUE "SPUDROCK",17532,FALSE,2007,TRUE,FALSE -"SIZER",13909,FALSE,2000,TRUE,TRUE -"DANDREA",12952,FALSE,2006,FALSE,TRUE +"SIZER",13909,FALSE,2000,TRUE,FALSE "AMOS",11669,FALSE,2003,TRUE,TRUE -"WILDCAT",11093,FALSE,2007,TRUE,TRUE "SAL",10594,FALSE,1997,FALSE,TRUE -"NAHA",9689,FALSE,1997,TRUE,TRUE -"CAMBERN",3489,FALSE,2000,FALSE,TRUE -"BORIANA",1108,FALSE,2003,FALSE,TRUE +"NAHA",9689,FALSE,1997,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/CA-hz.csv b/inst/extdata/OSD-error-reporting/state/CA-hz.csv index 63838340bd..bc169698dc 100644 --- a/inst/extdata/OSD-error-reporting/state/CA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/CA-hz.csv @@ -1,184 +1,259 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"AHART","01",5,0,NA,NA,NA,NA,NA,NA -"ALAMBIQUE","0",8,0,NA,NA,NA,NA,NA,NA +"AHART","O1",5,0,NA,NA,NA,NA,NA,NA +"AIKEN","O",1,0,NA,NA,NA,NA,NA,NA +"ALAMBIQUE","O",8,0,NA,NA,NA,NA,NA,NA "ALVISO","Clg",13,36,"5Y","6","1","5Y","4","1" "ARKRIGHT","Oi",3,0,NA,NA,NA,NA,NA,NA -"ASABEAN","0",5,23,NA,NA,NA,NA,NA,NA -"ASTA","01",3,5,NA,NA,NA,NA,NA,NA -"ASTA","02",5,3,NA,NA,NA,NA,NA,NA -"BANCAS","01",1,0,NA,NA,NA,NA,NA,NA +"ARNOLD","O1",1,0,NA,NA,NA,NA,NA,NA +"ASABEAN","O",5,0,NA,NA,NA,NA,NA,NA +"ASTA","O1",3,0,NA,NA,NA,NA,NA,NA +"ASTA","O2",5,3,NA,NA,NA,NA,NA,NA +"AVIS","O2",8,0,NA,NA,NA,NA,NA,NA +"BANCAS","O1",1,0,NA,NA,NA,NA,NA,NA "BARPEAK","Oi",5,0,NA,NA,NA,NA,NA,NA "BEARGULCH","Oi",3,0,NA,NA,NA,NA,NA,NA -"BIGHILL","0",3,0,NA,NA,NA,NA,NA,NA +"BEAUGHTON","O1",1,0,NA,NA,NA,NA,NA,NA +"BEHEMOTOSH","O",1,0,NA,NA,NA,NA,NA,NA +"BIGHILL","O",3,0,NA,NA,NA,NA,NA,NA "BLACKMOUNT","Clcasa",25,107,"10YR","6","3","10YR","5","3" "BLANKOUT","Oi",3,0,NA,NA,NA,NA,NA,NA +"BOGUS","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"BOHNA","O1",5,0,NA,NA,NA,NA,NA,NA "BROWNSCREEK","Oi",3,0,NA,NA,NA,NA,NA,NA "BUNDORA","Oi",3,0,NA,NA,NA,NA,NA,NA +"BURIBURI","O",5,0,NA,NA,NA,NA,NA,NA "BURNEY","Oi",3,0,NA,NA,NA,NA,NA,NA -"BUTANO","A0",5,0,NA,NA,NA,NA,NA,NA +"BUTANO","AO",5,0,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 "CARBERRY","Oi",8,0,NA,NA,NA,NA,NA,NA "CARGENT","Oi",3,0,NA,NA,NA,NA,NA,NA -"CATELLI","0",8,18,NA,NA,NA,NA,NA,NA +"CARLAIN","Oi",3,0,NA,NA,NA,NA,NA,NA +"CASPAR","Oi",3,0,NA,NA,NA,NA,NA,NA +"CATELLI","O",8,0,NA,NA,NA,NA,NA,NA "CAX","Bkql",46,56,"10YR","7","3","10YR","6","4" "CAX","A",NA,10,"10YR","7","3","10YR","5","4" "CENTENNIAL","2Bkml",56,74,"2.5Y","7","2","10YR","8","1" +"CENTISSIMA","O",5,0,NA,NA,NA,NA,NA,NA +"CHAIX","O1",3,0,NA,NA,NA,NA,NA,NA "CHUMMY","O1",5,0,NA,NA,NA,NA,NA,NA "COBOC","O1",3,0,NA,NA,NA,NA,NA,NA +"COMPTCHE","Oi",3,0,NA,NA,NA,NA,NA,NA "CONE","O1",5,0,NA,NA,NA,NA,NA,NA -"CRAFTON","01 and 02",NA,1554,NA,NA,NA,NA,NA,NA -"CUMMISKEY","0",3,10,NA,NA,NA,NA,NA,NA +"CONTRA COSTA","O1",1,0,NA,NA,NA,NA,NA,NA +"CRAFTON","O1 and O2",1,0,NA,NA,NA,NA,NA,NA +"CROZIER","O",1,0,NA,NA,NA,NA,NA,NA +"CUMMISKEY","O",3,0,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 +"DEADFALL","O1",1,0,NA,NA,NA,NA,NA,NA +"DECY","O1",3,0,NA,NA,NA,NA,NA,NA "DECY","Bwl",20,38,"10YR","5","3","10YR","3","3" "DEETZ","O1 and O2",1,0,NA,NA,NA,NA,NA,NA +"DEHAVEN","Oi",5,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 +"DELLEKER","O2",8,0,NA,NA,NA,NA,NA,NA "DEMOGUL","Oi",5,0,NA,NA,NA,NA,NA,NA -"DEMOX","0",3,0,NA,NA,NA,NA,NA,NA +"DEMOX","O",3,0,NA,NA,NA,NA,NA,NA "DEPNER","Oi",5,0,NA,NA,NA,NA,NA,NA -"DIPSEA","02",23,30,NA,NA,NA,NA,NA,NA -"DOME","0",5,0,NA,NA,NA,NA,NA,NA +"DIPSEA","O2",23,0,NA,NA,NA,NA,NA,NA +"DOME","O",5,0,NA,NA,NA,NA,NA,NA "DOUGCITY","Oi",3,0,NA,NA,NA,NA,NA,NA +"DUBAKELLA","Oi",5,0,NA,NA,NA,NA,NA,NA +"DUNSMUIR","O",1,0,NA,NA,NA,NA,NA,NA "ELAM","Oe",5,0,NA,NA,NA,NA,NA,NA -"EUER","01",5,0,NA,NA,NA,NA,NA,NA +"EUER","O1",5,0,NA,NA,NA,NA,NA,NA "FANCHER","All",0,5,NA,NA,NA,"5YR","5","4" "FANCHER","O1",1,0,NA,NA,NA,NA,NA,NA "FELTA","B21t",13,36,"10YR","5","2","l0YR","3","2" "FELTA","B22t",36,61,"l0YR","5","2","10YR","3","2" "FELTA","Al",NA,13,"10YR","5","2","10YR","2","2" -"FELTON","0i",3,5,NA,NA,NA,NA,NA,NA -"FISHROCK","0i",3,5,NA,NA,NA,NA,NA,NA +"FELTON","Oi",3,0,NA,NA,NA,NA,NA,NA +"FERNCREEK","Oi",5,0,NA,NA,NA,NA,NA,NA +"FISHROCK","Oi",3,0,NA,NA,NA,NA,NA,NA "FLEENER","Oi",3,0,NA,NA,NA,NA,NA,NA -"FREEZEOUT","0i",3,0,NA,NA,NA,NA,NA,NA -"GANSNER","0",5,18,NA,NA,NA,NA,NA,NA -"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 -"GIBWELL","0i",5,8,NA,NA,NA,NA,NA,NA +"FONS","O",5,0,NA,NA,NA,NA,NA,NA +"FORBES","O",5,0,NA,NA,NA,NA,NA,NA +"FORBES","A",NA,23,"2.5YR","3","6","2.5YR","2","4" +"FREEZEOUT","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAMBOA","Oi",5,0,NA,NA,NA,NA,NA,NA +"GANSNER","O",5,0,NA,NA,NA,NA,NA,NA +"GARCIA","Oi",3,0,NA,NA,NA,NA,NA,NA +"GAVEL","O",4,0,NA,NA,NA,NA,NA,NA +"GIBNEY","Oi",8,0,NA,NA,NA,NA,NA,NA +"GIBSONVILLE","O",8,0,NA,NA,NA,NA,NA,NA +"GIBWELL","Oi",5,0,NA,NA,NA,NA,NA,NA "GLEASON","Oi",3,0,NA,NA,NA,NA,NA,NA +"GLENBLAIR","Oi",5,0,NA,NA,NA,NA,NA,NA "GOSCH","Oi",3,0,NA,NA,NA,NA,NA,NA "GOULDER","Oi",3,0,NA,NA,NA,NA,NA,NA -"GOZEM","0",1,0,NA,NA,NA,NA,NA,NA +"GOZEM","O",1,0,NA,NA,NA,NA,NA,NA "GUBE","Oi",1,0,NA,NA,NA,NA,NA,NA -"GUDGREY","0",NA,0,NA,NA,NA,NA,NA,NA +"GUDGREY","O",4,0,NA,NA,NA,NA,NA,NA +"HAFUL","Oi",1,0,NA,NA,NA,NA,NA,NA "HAMBONE","Oi",5,0,NA,NA,NA,NA,NA,NA "HANGTOWN","Oi",1,0,NA,NA,NA,NA,NA,NA +"HARECREEK","Oi",5,0,NA,NA,NA,NA,NA,NA +"HARTLESS","O",3,0,NA,NA,NA,NA,NA,NA +"HAVENSNECK","Oi",5,0,NA,NA,NA,NA,NA,NA +"HENCRATT","O",4,0,NA,NA,NA,NA,NA,NA "HERMIT","Oi",5,0,NA,NA,NA,NA,NA,NA "HILDRETH","Clca",66,117,"10YR","5","1","10YR","4","1" -"HONEYDEW","01",3,13,NA,NA,NA,NA,NA,NA +"HILTABIDEL","Oi",1,0,NA,NA,NA,NA,NA,NA +"HODA","Oi2",1,0,NA,NA,NA,NA,NA,NA +"HODA","Oi1",8,1,NA,NA,NA,NA,NA,NA +"HOHMANN","O1",6,0,NA,NA,NA,NA,NA,NA +"HONEYDEW","O1",3,0,NA,NA,NA,NA,NA,NA "HOOSIMBIM","Oi",5,0,NA,NA,NA,NA,NA,NA -"HORSESHOE","0",8,0,NA,NA,NA,NA,NA,NA -"HOTEL","0",5,20,NA,NA,NA,NA,NA,NA -"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 -"ISHI PISHI","01",3,0,NA,NA,NA,NA,NA,NA +"HORSESHOE","O",8,0,NA,NA,NA,NA,NA,NA +"HOTEL","O",5,0,NA,NA,NA,NA,NA,NA +"HUSE","O1",3,0,NA,NA,NA,NA,NA,NA +"HUYSINK","O1",3,0,NA,NA,NA,NA,NA,NA +"ILLER","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"INDLETON","Oi",3,0,NA,NA,NA,NA,NA,NA +"IPISH","O1",1,0,NA,NA,NA,NA,NA,NA +"ISHI PISHI","O1",3,0,NA,NA,NA,NA,NA,NA +"IVERSEN","Oi",3,0,NA,NA,NA,NA,NA,NA +"JAFA","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "JANILE","Oi",5,0,NA,NA,NA,NA,NA,NA -"JIMMERSON","0i",3,0,NA,NA,NA,NA,NA,NA -"JUNIPERO","01",5,13,NA,NA,NA,NA,NA,NA -"KALO","0",5,0,NA,NA,NA,NA,NA,NA +"JIMMERSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"JUNIPERO","O1",5,0,NA,NA,NA,NA,NA,NA +"KALO","O",5,0,NA,NA,NA,NA,NA,NA "KANG","O",5,0,NA,NA,NA,NA,NA,NA -"KEKAWAKA","01 and 02",5,5,NA,NA,NA,NA,NA,NA +"KEDDIE","Oi",2,0,NA,NA,NA,NA,NA,NA +"KEKAWAKA","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "KEPHART","Oi",8,0,NA,NA,NA,NA,NA,NA "KETTLEBELLY","Oi",3,0,NA,NA,NA,NA,NA,NA +"KIBESILLAH","Oi",1,0,NA,NA,NA,NA,NA,NA +"KINDIG","Oi",5,0,NA,NA,NA,NA,NA,NA +"KINKEL","O1 and O2",3,0,NA,NA,NA,NA,NA,NA "KISTIRN","O",8,0,NA,NA,NA,NA,NA,NA "KYBURZ","O1",5,0,NA,NA,NA,NA,NA,NA "LANDLOW","Clca",117,142,"10YR","6","3","10YR","5","3" "LASCO","Oi",5,0,NA,NA,NA,NA,NA,NA -"LEDFORD","01",3,10,NA,NA,NA,NA,NA,NA -"LOBITOS","01",1,0,NA,NA,NA,NA,NA,NA +"LEDFORD","O1",3,0,NA,NA,NA,NA,NA,NA +"LITTLERED","Oi",1,0,NA,NA,NA,NA,NA,NA +"LOBITOS","O1",1,0,NA,NA,NA,NA,NA,NA "LONGBELL","Oi",5,0,NA,NA,NA,NA,NA,NA -"LORACK","01",5,8,NA,NA,NA,NA,NA,NA +"LORACK","O1",5,0,NA,NA,NA,NA,NA,NA "LOVENESS","Oi",3,0,NA,NA,NA,NA,NA,NA -"LUMBERLY","0",3,0,NA,NA,NA,NA,NA,NA -"LYONSVILLE","02",3,0,NA,NA,NA,NA,NA,NA -"LYONSVILLE","01",8,3,NA,NA,NA,NA,NA,NA -"MADDEN","01",3,0,NA,NA,NA,NA,NA,NA -"MANTON","A0",5,0,NA,NA,NA,NA,NA,NA +"LUMBERLY","O",3,0,NA,NA,NA,NA,NA,NA +"LYONSVILLE","O2",3,0,NA,NA,NA,NA,NA,NA +"LYONSVILLE","O1",8,3,NA,NA,NA,NA,NA,NA +"MADDEN","O1",3,0,NA,NA,NA,NA,NA,NA +"MANTON","AO",5,0,NA,NA,NA,NA,NA,NA "MARTEE","Oi",1,0,NA,NA,NA,NA,NA,NA -"MCGARVEY","0e",8,0,NA,NA,NA,NA,NA,NA -"MCGARVEY","0i",10,8,NA,NA,NA,NA,NA,NA +"MASTERSON","O2",1,0,NA,NA,NA,NA,NA,NA +"MASTERSON","O1",5,1,NA,NA,NA,NA,NA,NA +"MCGARVEY","Oe",8,0,NA,NA,NA,NA,NA,NA +"MCGARVEY","Oi",10,8,NA,NA,NA,NA,NA,NA "MEDICI","Oi",5,0,NA,NA,NA,NA,NA,NA -"MEDLAKE","0i",3,0,NA,NA,NA,NA,NA,NA -"MEEKS","01",0,5,NA,NA,NA,NA,NA,NA +"MEDLAKE","Oi",3,0,NA,NA,NA,NA,NA,NA "MERCED","Clca",64,109,NA,NA,NA,"2.5Y","4","4" -"MIERUF","0",3,0,NA,NA,NA,NA,NA,NA +"MIERUF","O",3,0,NA,NA,NA,NA,NA,NA "MINERSVILLE","Oi",5,0,NA,NA,NA,NA,NA,NA -"MOJO","0",5,0,NA,NA,NA,NA,NA,NA +"MOJO","O",5,0,NA,NA,NA,NA,NA,NA "MONSERATE","Clsim",71,114,"10YR","4","3","5YR","3","4" -"NASHMEAD","0",3,28,NA,NA,NA,NA,NA,NA +"MUSSERHILL","Oi",1,0,NA,NA,NA,NA,NA,NA +"NASHMEAD","O",3,0,NA,NA,NA,NA,NA,NA "NEER","Oi",5,0,NA,NA,NA,NA,NA,NA "NIKAL","Oi",3,0,NA,NA,NA,NA,NA,NA -"NISENE","0",5,25,NA,NA,NA,NA,NA,NA -"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 +"NISENE","O",5,0,NA,NA,NA,NA,NA,NA +"NOTNED","O1",8,0,NA,NA,NA,NA,NA,NA +"NOYO","O1",5,0,NA,NA,NA,NA,NA,NA +"OBIE","O2",3,0,NA,NA,NA,NA,NA,NA +"OLANCHA","O1",1,0,NA,NA,NA,NA,NA,NA "OMSTOTT","Oi",1,0,NA,NA,NA,NA,NA,NA -"OOSEN","01",NA,3,NA,NA,NA,NA,NA,NA +"OOSEN","O1",1,0,NA,NA,NA,NA,NA,NA +"ORNBAUN","Oi",1,0,NA,NA,NA,NA,NA,NA +"ORSET","Oi",1,0,NA,NA,NA,NA,NA,NA +"OUTLAND","Oi",8,0,NA,NA,NA,NA,NA,NA "PABLO","R",38,NA,NA,NA,NA,NA,NA,NA "PABLO","All",NA,8,"10YR","4","1","10YR","2","1" -"PACIFICO","Cr",43,NA,NA,NA,NA,NA,NA,NA -"PACIFICO","0",NA,0,NA,NA,NA,NA,NA,NA -"PARKS","01",5,13,NA,NA,NA,NA,NA,NA -"PENDOLA","0",3,0,NA,NA,NA,NA,NA,NA -"PHIPPS","02",NA,5,NA,NA,NA,NA,NA,NA +"PACIFICO","O",1,0,NA,NA,NA,NA,NA,NA +"PALOMARIN","O1",5,0,NA,NA,NA,NA,NA,NA +"PAPEEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"PARKS","O1",5,0,NA,NA,NA,NA,NA,NA +"PENDOLA","O",3,0,NA,NA,NA,NA,NA,NA +"PHIPPS","O2",1,0,NA,NA,NA,NA,NA,NA +"PILLIKEN","O1",4,0,NA,NA,NA,NA,NA,NA "PINNACLES","All",0,20,"10YR","6","2","10YR","3","2" -"PLASKETT","01",3,0,NA,NA,NA,NA,NA,NA -"PORTOLA","01",5,8,NA,NA,NA,NA,NA,NA -"PUTT","01",5,15,NA,NA,NA,NA,NA,NA +"PINOLE","Oi",1,0,NA,NA,NA,NA,NA,NA +"PLASKETT","O1",3,0,NA,NA,NA,NA,NA,NA +"PONTO","Oi",3,0,NA,NA,NA,NA,NA,NA +"PORTOLA","O1",5,0,NA,NA,NA,NA,NA,NA "QUAKING","Oi",3,0,NA,NA,NA,NA,NA,NA +"QUINLIVEN","Oi",13,0,NA,NA,NA,NA,NA,NA "RACE","O1",4,0,NA,NA,NA,NA,NA,NA "RED HILL","O1",5,0,NA,NA,NA,NA,NA,NA "REDCAP","O1",1,0,NA,NA,NA,NA,NA,NA -"REDRIVER","0",3,0,NA,NA,NA,NA,NA,NA +"REDRIVER","O",3,0,NA,NA,NA,NA,NA,NA +"REVIT","Oi",5,0,NA,NA,NA,NA,NA,NA "RIVALIER","Oi",8,0,NA,NA,NA,NA,NA,NA -"RUSSIAN","0",20,20,"10YR","5","2","10YR","3","2" -"SAN SIMEON","02",5,28,NA,NA,NA,NA,NA,NA +"ROOP","O",5,0,NA,NA,NA,NA,NA,NA +"SAN SIMEON","O2",5,0,NA,NA,NA,NA,NA,NA +"SAN TIMOTEO","Oi",1,0,NA,NA,NA,NA,NA,NA "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 +"SEASIDE","Oi",1,0,NA,NA,NA,NA,NA,NA +"SHADELEAF","O",1,0,NA,NA,NA,NA,NA,NA "SHASTA","Oi2",3,0,NA,NA,NA,NA,NA,NA "SHASTA","Oi1",10,3,NA,NA,NA,NA,NA,NA -"SHASTINA","0",10,0,NA,NA,NA,NA,NA,NA +"SHASTINA","O",10,0,NA,NA,NA,NA,NA,NA +"SHINGLEMILL","Oi",5,0,NA,NA,NA,NA,NA,NA "SIERRAVILLE","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "SLACREEK","O",1,0,NA,NA,NA,NA,NA,NA -"SMOKEY","01",3,0,NA,NA,NA,NA,NA,NA +"SMOKEY","O1",3,0,NA,NA,NA,NA,NA,NA "SOUTHPAC","Oi",5,0,NA,NA,NA,NA,NA,NA "SPLAWN","Oi",3,0,NA,NA,NA,NA,NA,NA "STACHER","Oi",8,0,NA,NA,NA,NA,NA,NA "STONEWELL","Oi",3,0,NA,NA,NA,NA,NA,NA +"SUEY","O",3,0,NA,NA,NA,NA,NA,NA "SUNRISE","All",0,5,"10YR","6","3","10YR","5","4" "SUNRISE","Clca",28,53,"10YR","7","3","10YR","6","3" -"SUR","01",5,18,NA,NA,NA,NA,NA,NA +"SUR","O1",5,0,NA,NA,NA,NA,NA,NA "SURNUF","Oi",3,0,NA,NA,NA,NA,NA,NA "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 -"TAMFLAT","0",3,3,NA,NA,NA,NA,NA,NA -"TANGLE","02",3,0,NA,NA,NA,NA,NA,NA -"TANGLE","01",5,3,NA,NA,NA,NA,NA,NA +"TAHAND","Oi",3,0,NA,NA,NA,NA,NA,NA +"TAMFLAT","O",3,0,NA,NA,NA,NA,NA,NA +"TANGLE","O2",3,0,NA,NA,NA,NA,NA,NA +"TANGLE","O1",5,3,NA,NA,NA,NA,NA,NA "TANGLE","Btl",41,71,"10YR","5","4","10YR","4","3" +"THREECHOP","Oi",3,0,NA,NA,NA,NA,NA,NA "TIONESTA","Oi",8,0,NA,NA,NA,NA,NA,NA "TOADLAKE","O1",3,0,NA,NA,NA,NA,NA,NA "TOLLHOUSE","All",0,28,"10YR","4","2","10YR","2","2" -"TOURNQUIST","01",5,0,NA,NA,NA,NA,NA,NA +"TOURNQUIST","O1",5,0,NA,NA,NA,NA,NA,NA +"TRAMWAY","Oi",5,0,NA,NA,NA,NA,NA,NA "TREGONING","Oi",5,0,NA,NA,NA,NA,NA,NA "TRETTEN","O1",1,0,NA,NA,NA,NA,NA,NA "TWINBUTTES","Al",0,8,"10YR","5","4","10YR","3","3" "TWINBUTTES","Oi",3,0,NA,NA,NA,NA,NA,NA -"UPDEGRAFF","0i",3,18,NA,NA,NA,NA,NA,NA +"TYSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"ULHALF","Oi",5,0,NA,NA,NA,NA,NA,NA +"UPDEGRAFF","Oi",3,0,NA,NA,NA,NA,NA,NA "VALCREEK","Oi",8,0,NA,NA,NA,NA,NA,NA -"VANDAMME","0i",3,5,NA,NA,NA,NA,NA,NA +"VANDAMME","Oi",3,0,NA,NA,NA,NA,NA,NA "VANVOR","Oi",3,0,NA,NA,NA,NA,NA,NA "VITZTHUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"WAFLA","Oi",3,0,NA,NA,NA,NA,NA,NA "WEAVERVILLE","Oi",3,0,NA,NA,NA,NA,NA,NA -"WHISPERING","01",3,13,NA,NA,NA,NA,NA,NA +"WESTE","Oi",6,0,NA,NA,NA,NA,NA,NA +"WHISPERING","O1",3,0,NA,NA,NA,NA,NA,NA "WHITINGER","Oi",4,0,NA,NA,NA,NA,NA,NA +"WHORLED","Oi",8,0,NA,NA,NA,NA,NA,NA +"WINDY","O",2,0,NA,NA,NA,NA,NA,NA "WINNIBULLI","Oi",5,0,NA,NA,NA,NA,NA,NA "WITCHER","Oi",5,0,NA,NA,NA,NA,NA,NA +"WITTENBERG","O1",10,0,NA,NA,NA,NA,NA,NA +"WOODLEAF","Oi",1,0,NA,NA,NA,NA,NA,NA +"WOODSEYE","Oi",3,0,NA,NA,NA,NA,NA,NA "WOOLSTALF","Oi",3,0,NA,NA,NA,NA,NA,NA -"ZAKME","01",3,8,NA,NA,NA,NA,NA,NA +"YELLOWHOUND","Oi",3,0,NA,NA,NA,NA,NA,NA +"YOLLABOLLY","O",1,0,NA,NA,NA,NA,NA,NA +"ZAKME","O1",3,0,NA,NA,NA,NA,NA,NA +"ZENI","Oi",3,0,NA,NA,NA,NA,NA,NA "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/state/CA-series.csv b/inst/extdata/OSD-error-reporting/state/CA-series.csv index a44de9e5fc..dbf9f07122 100644 --- a/inst/extdata/OSD-error-reporting/state/CA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/CA-series.csv @@ -1,120 +1,137 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" +"CHAIX",370769,TRUE,2004,TRUE,FALSE "TOLLHOUSE",306765,FALSE,2004,FALSE,TRUE "WOODSEYE",164206,FALSE,2004,TRUE,FALSE -"SUR",113597,FALSE,2003,TRUE,TRUE +"AIKEN",149349,TRUE,2004,TRUE,FALSE +"WINDY",142322,FALSE,2006,TRUE,FALSE +"DUBAKELLA",124915,TRUE,2004,TRUE,FALSE +"ORNBAUN",117117,FALSE,2003,TRUE,FALSE +"SUR",113597,FALSE,2003,TRUE,FALSE +"ARNOLD",96779,FALSE,1987,TRUE,FALSE "ZENI",95269,FALSE,2003,TRUE,FALSE "YELLOWHOUND",79825,FALSE,2003,TRUE,FALSE "SATTLEY",72840,FALSE,2008,TRUE,FALSE "KINKEL",68859,FALSE,2004,TRUE,FALSE +"CONTRA COSTA",68174,FALSE,1997,TRUE,FALSE "NEER",64731,FALSE,2004,TRUE,FALSE -"PACIFICO",64162,FALSE,1987,TRUE,TRUE +"PACIFICO",64162,FALSE,1987,TRUE,FALSE "KISTIRN",58687,FALSE,2003,TRUE,FALSE "KYBURZ",57763,FALSE,2004,TRUE,FALSE -"JUNIPERO",57115,FALSE,2003,TRUE,TRUE +"JUNIPERO",57115,FALSE,2003,TRUE,FALSE "KINDIG",56767,FALSE,1998,TRUE,FALSE +"KIBESILLAH",54577,FALSE,2003,TRUE,FALSE "TIERRA",52735,FALSE,1997,TRUE,FALSE -"DOME",51359,FALSE,2004,TRUE,TRUE -"FELTON",48157,FALSE,2003,TRUE,TRUE -"KEKAWAKA",47303,FALSE,1987,TRUE,TRUE +"DOME",51359,FALSE,2004,TRUE,FALSE +"FELTON",48157,FALSE,2003,TRUE,FALSE +"KEKAWAKA",47303,FALSE,1987,TRUE,FALSE "CANNELL",46723,FALSE,2004,TRUE,FALSE -"SMOKEY",45817,FALSE,2004,TRUE,TRUE -"JIMMERSON",45740,FALSE,2004,TRUE,TRUE +"SMOKEY",45817,FALSE,2004,TRUE,FALSE +"JIMMERSON",45740,FALSE,2004,TRUE,FALSE +"SAN TIMOTEO",45226,FALSE,1998,TRUE,FALSE +"CROZIER",44476,FALSE,2004,TRUE,FALSE +"YOLLABOLLY",42498,FALSE,1997,TRUE,FALSE "TOADLAKE",42463,FALSE,1997,TRUE,FALSE "AVIS",41776,FALSE,2006,TRUE,FALSE -"BANCAS",40343,FALSE,2003,TRUE,TRUE +"BANCAS",40343,FALSE,2003,TRUE,FALSE "SCARFACE",39515,FALSE,2004,TRUE,FALSE "TYSON",38292,FALSE,1998,TRUE,FALSE -"LYONSVILLE",35427,FALSE,2004,TRUE,TRUE +"LYONSVILLE",35427,FALSE,2004,TRUE,FALSE "DEHAVEN",32965,FALSE,2003,TRUE,FALSE "MERCED",32376,FALSE,1997,FALSE,TRUE "PONTO",32071,FALSE,2004,TRUE,FALSE "LANDLOW",31634,FALSE,1997,FALSE,TRUE -"ISHI PISHI",31348,FALSE,1997,TRUE,TRUE +"ISHI PISHI",31348,FALSE,1997,TRUE,FALSE "TRAMWAY",30435,FALSE,2003,TRUE,FALSE "LOVENESS",30180,FALSE,2004,TRUE,FALSE -"HOTEL",29298,FALSE,2003,TRUE,TRUE +"HOTEL",29298,FALSE,2003,TRUE,FALSE "REVIT",28828,FALSE,2007,TRUE,FALSE "SHASTA",28773,FALSE,2004,TRUE,FALSE -"VANDAMME",28257,FALSE,2003,TRUE,TRUE -"CRAFTON",25736,FALSE,2003,TRUE,TRUE +"VANDAMME",28257,FALSE,2003,TRUE,FALSE +"KEDDIE",26627,FALSE,2008,TRUE,FALSE +"CRAFTON",25736,FALSE,2003,TRUE,FALSE "SURNUF",25249,FALSE,2004,TRUE,FALSE "MONSERATE",25101,FALSE,2003,FALSE,TRUE "OUTLAND",24109,FALSE,2008,TRUE,FALSE -"OOSEN",23466,FALSE,2007,TRUE,TRUE +"DUNSMUIR",23659,FALSE,2000,TRUE,FALSE +"OOSEN",23466,FALSE,2007,TRUE,FALSE "COBOC",22702,FALSE,1993,TRUE,FALSE -"LEDFORD",22483,FALSE,2004,TRUE,TRUE +"LEDFORD",22483,FALSE,2004,TRUE,FALSE "ROSSI",21823,FALSE,1997,TRUE,FALSE -"ILLER",20275,FALSE,2022,TRUE,TRUE -"OBIE",20040,FALSE,2007,TRUE,TRUE +"PILLIKEN",21515,FALSE,2004,TRUE,FALSE +"BEAUGHTON",20813,FALSE,1997,TRUE,FALSE +"ILLER",20275,FALSE,2022,TRUE,FALSE +"OBIE",20040,FALSE,2007,TRUE,FALSE "GAREY",19696,FALSE,2004,TRUE,FALSE -"UPDEGRAFF",19294,FALSE,2003,TRUE,TRUE -"GIBSONVILLE",19207,FALSE,2006,TRUE,TRUE +"UPDEGRAFF",19294,FALSE,2003,TRUE,FALSE +"GIBSONVILLE",19207,FALSE,2006,TRUE,FALSE +"HOHMANN",18939,FALSE,1998,TRUE,FALSE "GOULDER",18870,FALSE,2006,TRUE,FALSE -"PORTOLA",18763,FALSE,2004,TRUE,TRUE +"PORTOLA",18763,FALSE,2004,TRUE,FALSE "CARBERRY",18689,FALSE,2006,TRUE,FALSE +"FORBES",18322,FALSE,2004,TRUE,FALSE "SWAINOW",18224,FALSE,2008,TRUE,FALSE -"PLASKETT",18192,FALSE,2003,TRUE,TRUE +"PLASKETT",18192,FALSE,2003,TRUE,FALSE "WHITINGER",17910,FALSE,2004,TRUE,FALSE "FLEENER",17698,FALSE,2004,TRUE,FALSE "STANISLAUS",17684,FALSE,1997,TRUE,FALSE -"HUICHICA",17670,FALSE,2003,TRUE,FALSE "STONEWELL",17637,FALSE,2006,TRUE,FALSE -"LOBITOS",17184,FALSE,2003,TRUE,TRUE +"WESTE",17528,FALSE,2008,TRUE,FALSE +"LOBITOS",17184,FALSE,2003,TRUE,FALSE +"MASTERSON",16658,FALSE,1998,TRUE,FALSE "WOOLSTALF",16363,FALSE,2004,TRUE,FALSE -"GIANELLA",16074,FALSE,2006,FALSE,TRUE "RIVALIER",16041,FALSE,2004,TRUE,FALSE "BOHNA",15903,FALSE,2004,TRUE,FALSE -"REDRIVER",15790,FALSE,2008,TRUE,TRUE +"REDRIVER",15790,FALSE,2008,TRUE,FALSE "DEETZ",15567,FALSE,2006,TRUE,FALSE -"MAYWOOD",15233,FALSE,1997,TRUE,FALSE +"HODA",14971,FALSE,2004,TRUE,FALSE "CENTENNIAL",14825,FALSE,1997,FALSE,TRUE "BONSALL",14650,FALSE,1997,TRUE,FALSE +"PINOLE",14339,FALSE,2003,TRUE,FALSE "GOSCH",14334,FALSE,2004,TRUE,FALSE -"CUMMISKEY",13878,FALSE,2004,TRUE,TRUE -"CATELLI",13798,FALSE,2003,TRUE,TRUE -"NISENE",13760,FALSE,2003,TRUE,TRUE +"CUMMISKEY",13878,FALSE,2004,TRUE,FALSE +"CATELLI",13798,FALSE,2003,TRUE,FALSE +"NISENE",13760,FALSE,2003,TRUE,FALSE "WITCHER",13526,FALSE,2009,TRUE,FALSE "HOOSIMBIM",13472,FALSE,2003,TRUE,FALSE "SPLAWN",13420,FALSE,2005,TRUE,FALSE "HAMBONE",13400,FALSE,2004,TRUE,FALSE "BOGUS",13272,FALSE,2004,TRUE,FALSE -"MEEKS",13085,FALSE,2004,FALSE,TRUE -"AHART",13038,FALSE,2004,TRUE,TRUE -"KITCHEN CREEK",12891,FALSE,1997,TRUE,FALSE -"PHIPPS",12655,FALSE,2003,TRUE,TRUE +"AHART",13038,FALSE,2004,TRUE,FALSE +"PHIPPS",12655,FALSE,2003,TRUE,FALSE "FELTA",12487,FALSE,2003,TRUE,TRUE "PINNACLES",12139,FALSE,1997,FALSE,TRUE -"GAVEL",11770,FALSE,2004,TRUE,TRUE -"PUTT",11670,FALSE,2004,TRUE,TRUE +"GAVEL",11770,FALSE,2004,TRUE,FALSE +"PUTT",11670,FALSE,2004,TRUE,FALSE "LASCO",11423,FALSE,2008,TRUE,FALSE -"KALO",11238,FALSE,2004,TRUE,TRUE +"KALO",11238,FALSE,2004,TRUE,FALSE "FANCHER",11187,FALSE,2003,TRUE,TRUE -"ASABEAN",10932,FALSE,2003,TRUE,TRUE -"BUTANO",10892,FALSE,2006,TRUE,TRUE +"ASABEAN",10932,FALSE,2003,TRUE,FALSE +"BUTANO",10892,FALSE,2006,TRUE,FALSE +"OLANCHA",10776,FALSE,2004,TRUE,FALSE "FERNCREEK",10455,FALSE,2003,TRUE,FALSE "KANG",10338,FALSE,1997,TRUE,FALSE -"FREEZEOUT",10062,FALSE,1998,TRUE,TRUE +"FREEZEOUT",10062,FALSE,1998,TRUE,FALSE "BROWNSCREEK",9922,FALSE,1997,TRUE,FALSE -"HORSESHOE",9737,FALSE,2004,TRUE,TRUE -"GOZEM",9727,FALSE,2006,TRUE,TRUE +"HORSESHOE",9737,FALSE,2004,TRUE,FALSE +"GOZEM",9727,FALSE,2006,TRUE,FALSE "HARTLESS",9723,FALSE,2004,TRUE,FALSE "WINNIBULLI",9481,FALSE,2004,TRUE,FALSE -"NOTNED",9286,FALSE,2004,TRUE,TRUE +"NOTNED",9286,FALSE,2004,TRUE,FALSE "GARCIA",9205,FALSE,2003,TRUE,FALSE "MARTEE",9196,FALSE,2007,TRUE,FALSE -"SAN SIMEON",8785,FALSE,1997,TRUE,TRUE +"DEADFALL",9185,FALSE,1997,TRUE,FALSE +"SAN SIMEON",8785,FALSE,1997,TRUE,FALSE "STACHER",8747,FALSE,2007,TRUE,FALSE "DOUGCITY",8425,FALSE,1997,TRUE,FALSE -"GUDGREY",8421,FALSE,1998,TRUE,TRUE +"GUDGREY",8421,FALSE,1998,TRUE,FALSE "SUNRISE",8417,FALSE,1997,FALSE,TRUE "JAFA",8410,FALSE,2003,TRUE,FALSE "DECY",8323,FALSE,1999,TRUE,TRUE -"REWARD",8282,FALSE,1999,TRUE,FALSE "CANYONCREEK",8281,FALSE,2004,TRUE,FALSE -"HUSE",8277,FALSE,1998,TRUE,TRUE -"PARKS",8152,FALSE,1998,TRUE,TRUE +"HUSE",8277,FALSE,1998,TRUE,FALSE +"PARKS",8152,FALSE,1998,TRUE,FALSE "BURNEY",7962,FALSE,2006,TRUE,FALSE -"DELLEKER",7909,FALSE,2004,TRUE,TRUE +"DELLEKER",7909,FALSE,2004,TRUE,FALSE "THREECHOP",7896,FALSE,2003,TRUE,FALSE "ULHALF",7831,FALSE,2008,TRUE,FALSE "HANGTOWN",7763,FALSE,2004,TRUE,FALSE @@ -126,77 +143,80 @@ "HERMIT",7638,FALSE,2004,TRUE,FALSE "CASPAR",7576,FALSE,2003,TRUE,FALSE "RED HILL",7542,FALSE,1997,TRUE,FALSE -"NASHMEAD",7495,FALSE,2003,TRUE,TRUE +"NASHMEAD",7495,FALSE,2003,TRUE,FALSE "WHORLED",7489,FALSE,2008,TRUE,FALSE "BUNDORA",7469,FALSE,2006,TRUE,FALSE "TANGLE",7369,FALSE,1997,TRUE,TRUE -"DIPSEA",7366,FALSE,2003,TRUE,TRUE -"RUSSIAN",7348,FALSE,1998,TRUE,TRUE +"DIPSEA",7366,FALSE,2003,TRUE,FALSE "REDCAP",7274,FALSE,2006,TRUE,FALSE "QUINLIVEN",7247,FALSE,2003,TRUE,FALSE "GUBE",7177,FALSE,2003,TRUE,FALSE -"ALAMBIQUE",6937,FALSE,1998,TRUE,TRUE +"ALAMBIQUE",6937,FALSE,1998,TRUE,FALSE "OMSTOTT",6720,FALSE,2009,TRUE,FALSE -"ZAKME",6681,FALSE,1997,TRUE,TRUE +"ZAKME",6681,FALSE,1997,TRUE,FALSE "TAHAND",6583,FALSE,2008,TRUE,FALSE "LONGBELL",6238,FALSE,2004,TRUE,FALSE "PALOMARIN",5942,FALSE,2001,TRUE,FALSE +"MUSSERHILL",5773,FALSE,2004,TRUE,FALSE "GAMBOA",5668,FALSE,2003,TRUE,FALSE "REEFRIDGE",5560,FALSE,1997,TRUE,FALSE -"LORACK",5462,FALSE,2004,TRUE,TRUE +"BEHEMOTOSH",5549,FALSE,2006,TRUE,FALSE +"LORACK",5462,FALSE,2004,TRUE,FALSE "ALVISO",5423,FALSE,2001,FALSE,TRUE "PATBURN",5407,FALSE,2008,TRUE,FALSE -"BOTTLEHILL",5388,FALSE,2007,TRUE,FALSE "DEPNER",5296,FALSE,2006,TRUE,FALSE -"MADDEN",5268,FALSE,1997,TRUE,TRUE -"EUER",5245,FALSE,2004,TRUE,TRUE +"MADDEN",5268,FALSE,1997,TRUE,FALSE +"EUER",5245,FALSE,2004,TRUE,FALSE "FONS",5192,FALSE,2006,TRUE,FALSE "HILDRETH",5180,FALSE,1997,FALSE,TRUE "CENTISSIMA",4979,FALSE,1998,TRUE,FALSE "NIKAL",4899,FALSE,2004,TRUE,FALSE "SOUTHPAC",4808,FALSE,2008,TRUE,FALSE -"SHIMA",4787,FALSE,2016,TRUE,FALSE +"INDLETON",4774,FALSE,1998,TRUE,FALSE "CONE",4706,FALSE,2007,TRUE,FALSE -"MCGARVEY",4692,FALSE,2001,TRUE,TRUE +"MCGARVEY",4692,FALSE,2001,TRUE,FALSE "WITTENBERG",4574,FALSE,1998,TRUE,FALSE "SHINGLEMILL",4515,FALSE,2003,TRUE,FALSE -"WHISPERING",4413,FALSE,2003,TRUE,TRUE +"WHISPERING",4413,FALSE,2003,TRUE,FALSE +"IPISH",4370,FALSE,1997,TRUE,FALSE "TRETTEN",4315,FALSE,2003,TRUE,FALSE "WEAVERVILLE",4309,FALSE,1997,TRUE,FALSE "RACE",4251,FALSE,2001,TRUE,FALSE -"MOJO",4241,FALSE,2006,TRUE,TRUE -"TAMFLAT",4143,FALSE,1997,TRUE,TRUE +"MOJO",4241,FALSE,2006,TRUE,FALSE +"TAMFLAT",4143,FALSE,1997,TRUE,FALSE "SUEY",4120,FALSE,2006,TRUE,FALSE -"LUMBERLY",4052,FALSE,2007,TRUE,TRUE +"LUMBERLY",4052,FALSE,2007,TRUE,FALSE "DANHUNT",4035,FALSE,2006,TRUE,FALSE -"ASTA",3769,FALSE,2004,TRUE,TRUE +"ASTA",3769,FALSE,2004,TRUE,FALSE "SIERRAVILLE",3667,FALSE,2004,TRUE,FALSE "ROOP",3616,FALSE,2008,TRUE,FALSE "TIONESTA",3601,FALSE,2004,TRUE,FALSE "CHUMMY",3538,FALSE,2004,TRUE,FALSE -"DEMOX",3458,FALSE,2003,TRUE,TRUE +"DEMOX",3458,FALSE,2003,TRUE,FALSE "VALCREEK",3426,FALSE,1997,TRUE,FALSE "WAFLA",3412,FALSE,2008,TRUE,FALSE "JANILE",3391,FALSE,2004,TRUE,FALSE "PABLO",3382,FALSE,2004,TRUE,TRUE -"HUYSINK",3262,FALSE,2006,TRUE,TRUE +"HUYSINK",3262,FALSE,2006,TRUE,FALSE "GIBNEY",3123,FALSE,2006,TRUE,FALSE "VITZTHUM",3080,FALSE,2003,TRUE,FALSE "ZEUGIRDOR",3059,FALSE,2009,TRUE,TRUE "GLEASON",3000,FALSE,2004,TRUE,FALSE -"GANSNER",3000,FALSE,2001,TRUE,TRUE +"GANSNER",3000,FALSE,2001,TRUE,FALSE "MEDICI",2941,FALSE,2004,TRUE,FALSE "BLANKOUT",2936,FALSE,2004,TRUE,FALSE "VLECK",2880,FALSE,1997,TRUE,FALSE -"MIERUF",2836,FALSE,2004,TRUE,TRUE +"MIERUF",2836,FALSE,2004,TRUE,FALSE "HAVENSNECK",2721,FALSE,2006,TRUE,FALSE "CARLAIN",2394,FALSE,2003,TRUE,FALSE +"ORSET",2353,FALSE,2004,TRUE,FALSE "KEPHART",2345,FALSE,2006,TRUE,FALSE -"WEBILE",2283,FALSE,2016,TRUE,FALSE -"MEDLAKE",2242,FALSE,2007,TRUE,TRUE +"MEDLAKE",2242,FALSE,2007,TRUE,FALSE "ELAM",2205,FALSE,2004,TRUE,FALSE "TREGONING",2175,FALSE,1998,TRUE,FALSE +"HILTABIDEL",2136,FALSE,2004,TRUE,FALSE "TWINBUTTES",2016,FALSE,2007,TRUE,TRUE +"SHADELEAF",1995,FALSE,1997,TRUE,FALSE "BEARGULCH",1970,FALSE,1998,TRUE,FALSE "BELLAVISTA",1966,FALSE,2003,TRUE,FALSE "PAPEEK",1904,FALSE,2008,TRUE,FALSE @@ -204,25 +224,29 @@ "IVERSEN",1853,FALSE,2003,TRUE,FALSE "HARECREEK",1643,FALSE,2003,TRUE,FALSE "VANVOR",1633,FALSE,2003,TRUE,FALSE -"BIGHILL",1575,FALSE,2004,TRUE,TRUE -"MANTON",1524,FALSE,2007,TRUE,TRUE +"BIGHILL",1575,FALSE,2004,TRUE,FALSE +"MANTON",1524,FALSE,2007,TRUE,FALSE "COMPTCHE",1456,FALSE,2004,TRUE,FALSE "QUAKING",1438,FALSE,2007,TRUE,FALSE -"NOYO",1402,FALSE,2006,TRUE,TRUE +"NOYO",1402,FALSE,2006,TRUE,FALSE "SLACREEK",1341,FALSE,2004,TRUE,FALSE "DEMOGUL",1270,FALSE,2004,TRUE,FALSE "BURIBURI",1234,FALSE,2003,TRUE,FALSE "CARGENT",1198,FALSE,1998,TRUE,FALSE -"PENDOLA",1095,FALSE,2004,TRUE,TRUE +"WOODLEAF",1142,FALSE,2004,TRUE,FALSE +"PENDOLA",1095,FALSE,2004,TRUE,FALSE "DEKKAS",1055,FALSE,2006,TRUE,FALSE -"LOSTPOINT",951,FALSE,2025,TRUE,FALSE "GLENBLAIR",927,FALSE,2004,TRUE,FALSE -"FISHROCK",909,FALSE,2003,TRUE,TRUE -"SHASTINA",827,FALSE,2004,TRUE,TRUE -"GIBWELL",814,FALSE,2006,TRUE,TRUE -"TOURNQUIST",NA,FALSE,2003,TRUE,TRUE +"FISHROCK",909,FALSE,2003,TRUE,FALSE +"LITTLERED",870,FALSE,1997,TRUE,FALSE +"SHASTINA",827,FALSE,2004,TRUE,FALSE +"GIBWELL",814,FALSE,2006,TRUE,FALSE +"SEASIDE",343,FALSE,2006,TRUE,FALSE +"TOURNQUIST",NA,FALSE,2003,TRUE,FALSE "SURVYA",NA,FALSE,2007,TRUE,TRUE -"HONEYDEW",NA,FALSE,2003,TRUE,TRUE +"HONEYDEW",NA,FALSE,2003,TRUE,FALSE +"HENCRATT",NA,FALSE,1997,TRUE,FALSE +"HAFUL",NA,FALSE,2007,TRUE,FALSE "CIMA",NA,FALSE,2006,TRUE,FALSE "CAX",NA,FALSE,2015,TRUE,TRUE "BLACKMOUNT",NA,FALSE,1993,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/CO-hz.csv b/inst/extdata/OSD-error-reporting/state/CO-hz.csv index 7cf279c2e3..8a7eb90aa1 100644 --- a/inst/extdata/OSD-error-reporting/state/CO-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/CO-hz.csv @@ -1,41 +1,25 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "ALMONT","Clg",48,66,"2.5Y","5","2","2.5Y","4","2" -"ASHCROFT","0i1",0,3,NA,NA,NA,NA,NA,NA -"ASHCROFT","0i2",3,5,NA,NA,NA,NA,NA,NA -"BOBTAIL","02",3,0,NA,NA,NA,NA,NA,NA -"BOBTAIL","01",5,3,NA,NA,NA,NA,NA,NA -"CATAMOUNT","0i",0,3,NA,NA,NA,NA,NA,NA -"DARLING","02",3,0,NA,NA,NA,NA,NA,NA -"DARLING","01",10,3,NA,NA,NA,NA,NA,NA -"FERN CLIFF","02",5,0,NA,NA,NA,NA,NA,NA +"BOBTAIL","O2",3,0,NA,NA,NA,NA,NA,NA +"BOBTAIL","O1",5,3,NA,NA,NA,NA,NA,NA +"DARLING","O2",3,0,NA,NA,NA,NA,NA,NA +"DARLING","O1",10,3,NA,NA,NA,NA,NA,NA +"FERN CLIFF","O2",5,0,NA,NA,NA,NA,NA,NA "FERN CLIFF","O1",10,5,NA,NA,NA,NA,NA,NA +"GAMBLER","Oe",1,0,NA,NA,NA,NA,NA,NA "GOLD CREEK","O1",5,0,NA,NA,NA,NA,NA,NA "GRANATH","Btkl",102,124,"5YR","4","4","5YR","4","4" -"GRENADIER","0i",0,8,NA,NA,NA,NA,NA,NA -"GRENADIER","0e",8,10,NA,NA,NA,NA,NA,NA -"HIERRO","0i1",0,3,NA,NA,NA,NA,NA,NA -"HIERRO","0e2",3,5,NA,NA,NA,NA,NA,NA -"JENKINS","02",3,0,NA,NA,NA,NA,NA,NA -"JENKINS","01",5,8,NA,NA,NA,NA,NA,NA -"KEBLER","02",3,5,NA,NA,NA,NA,NA,NA -"KEBLER","01",5,3,NA,NA,NA,NA,NA,NA -"LEADVILLE","0i",0,8,NA,NA,NA,NA,NA,NA -"LEADVILLE","0e",8,10,NA,NA,NA,NA,NA,NA -"LEGAULT","0e",0,3,NA,NA,NA,NA,NA,NA -"MACFARLANE","0i",0,8,NA,NA,NA,NA,NA,NA -"MACFARLANE","0e",8,10,NA,NA,NA,NA,NA,NA -"MCINTYRE","02",3,5,NA,NA,NA,NA,NA,NA -"MCINTYRE","01",5,3,NA,NA,NA,NA,NA,NA +"HAVERLY","Oi",3,0,NA,NA,NA,NA,NA,NA +"JENKINS","O2",3,0,NA,NA,NA,NA,NA,NA +"KEBLER","O2",3,0,NA,NA,NA,NA,NA,NA +"KEBLER","O1",5,3,NA,NA,NA,NA,NA,NA +"MCINTYRE","O2",3,0,NA,NA,NA,NA,NA,NA +"MCINTYRE","O1",5,3,NA,NA,NA,NA,NA,NA "MOOSED","Al",0,5,"7.5YR","4","2","7.5YR","3","2" -"MOOSED","Bwl",18,NA,"5YR","4","4","5YR","3","3" -"MOOSED","Bw2",NA,NA,"5YR","4","4","5YR","3","4" -"MOOSED","C",NA,NA,"5YR","5","4","5YR","4","4" -"MOOSED","R",NA,1554,"5YR","5","4",NA,NA,NA -"MYSTEN","02",3,5,NA,NA,NA,NA,NA,NA -"MYSTEN","01",5,3,NA,NA,NA,NA,NA,NA -"NANITA","0e",0,3,NA,NA,NA,NA,NA,NA +"MOOSED","Bwl",18,28,"5YR","4","4","5YR","3","3" +"MYSTEN","O2",3,0,NA,NA,NA,NA,NA,NA +"MYSTEN","O1",5,3,NA,NA,NA,NA,NA,NA "NELSON","Alp",0,23,"10YR","6","2","10YR","4","2" -"NORDICOL","0i",0,3,NA,NA,NA,NA,NA,NA "PARLIN","IICca",79,152,"1OYR","6","2","lOYR","5","2" "PARLIN","A1",NA,18,"7.5YR","5","2","7.5YR","3","2" "PIERIAN","C",20,152,"1OYR","6","3",NA,NA,NA @@ -46,41 +30,37 @@ "POOSE","Oe",5,0,NA,NA,NA,NA,NA,NA "PRIMEN","IICr",46,NA,NA,NA,NA,"2.5Y","7","2" "PRIMEN","A1",NA,10,NA,NA,NA,"1OYR","4","2" -"PTARMIGAN","02",3,5,NA,NA,NA,NA,NA,NA -"PTARMIGAN","01",5,20,NA,NA,NA,NA,NA,NA -"RALEIGH","0e",0,3,NA,NA,NA,NA,NA,NA +"PTARMIGAN","O2",3,0,NA,NA,NA,NA,NA,NA +"PTARMIGAN","O1",5,3,NA,NA,NA,NA,NA,NA "RANDMAN","Alg",0,15,"10YR","5","2","10YR","3","2" +"RANDMAN","O1",3,0,NA,NA,NA,NA,NA,NA "RANDMAN","Blg",15,25,"10YR","5","2","10YR","3","2" -"RANDMAN","01",NA,0,NA,NA,NA,NA,NA,NA -"RARICK","02",5,8,NA,NA,NA,NA,NA,NA -"RARICK","01",8,5,NA,NA,NA,NA,NA,NA +"RARICK","O2",5,0,NA,NA,NA,NA,NA,NA +"RARICK","O1",8,5,NA,NA,NA,NA,NA,NA "RAWAH","Clca",51,76,"2.5YR","6","4","2.5YR","5","4" "REDCLOUD","C1ca",56,91,"1OYR","7","3","1OYR","5","3" "REDCLOUD","A1",NA,30,"7.5YR","5","3","7.5YR","3","3" -"RULE","02",3,8,NA,NA,NA,NA,NA,NA -"RULE","01",8,3,NA,NA,NA,NA,NA,NA +"RULE","O2",3,0,NA,NA,NA,NA,NA,NA +"RULE","O1",8,3,NA,NA,NA,NA,NA,NA "SAN ARCACIO","Al",0,10,"1OYR","6","2","1OYR","4","2" "SAN ARCACIO","B2t",10,33,"1OYR","5","3","1OYR","4","3" "SAN ARCACIO","B3ca",33,41,"1OYR","5","3","1OYR","4","3" "SAN ARCACIO","C1ca",41,66,"1OYR","6","2","10YR","5","2" "SARATON","Clca",25,76,"7.5YR","8","2",NA,NA,NA "SARATON","A1",NA,13,"7.5YR","5","4","7.5YR","4","4" -"SAWATCH","01",15,20,NA,NA,NA,NA,NA,NA +"SAWATCH","O1",15,0,NA,NA,NA,NA,NA,NA "SAWATCH","Allg",NA,20,"10YR","4","2","7.5YR","5","6" "SINGERTON","Ckl",38,66,"2.5Y","7","4","2.5Y","6","6" "ST. ELMO","Clca",25,76,"10YR","7","3",NA,NA,NA "ST. ELMO","A1",NA,25,"7.5YR","5","2",NA,NA,NA "STUMPP","Clsa",66,81,"2.5Y","5","1","2.5Y","4","1" "SUNSHINE","A1",NA,28,"7.5YR","3","1","1OYR","2","1" -"TECOLOTE","0i",0,3,NA,NA,NA,NA,NA,NA -"TEX","02",3,5,NA,NA,NA,NA,NA,NA -"TEX","01",5,3,NA,NA,NA,NA,NA,NA +"TABERNASH","O2",1,0,NA,NA,NA,NA,NA,NA +"TABERNASH","O1",3,1,NA,NA,NA,NA,NA,NA +"TEX","O2",3,0,NA,NA,NA,NA,NA,NA +"TEX","O1",5,3,NA,NA,NA,NA,NA,NA "TORSIDO","Clg",56,76,"10YR","6","2","10YR","5","2" "TREON","A",0,18,"10YR","5","3","l0YR","3","3" -"TROUTVILLE","0i",0,8,NA,NA,NA,NA,NA,NA -"TROUTVILLE","0e",8,10,NA,NA,NA,NA,NA,NA -"TUCKERVILLE","0i",0,8,NA,NA,NA,NA,NA,NA "VILLA GROVE","Clca",86,112,"10YR","6","3","10YR","4","3" "WALDEN","Clca",56,89,"5Y","8","2","5Y","7","2" -"WEMINUCHE","0i",0,5,NA,NA,NA,NA,NA,NA "WORMSER","Clca",48,61,"10YR","7","3","10YR","6","3" diff --git a/inst/extdata/OSD-error-reporting/state/CO-series.csv b/inst/extdata/OSD-error-reporting/state/CO-series.csv index 50fa3f6838..7807b66199 100644 --- a/inst/extdata/OSD-error-reporting/state/CO-series.csv +++ b/inst/extdata/OSD-error-reporting/state/CO-series.csv @@ -1,59 +1,43 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"CATAMOUNT",175693,FALSE,2010,FALSE,TRUE -"LEGAULT",164002,FALSE,2010,FALSE,TRUE "TREON",113774,FALSE,1998,FALSE,TRUE -"MESA",112210,TRUE,2017,TRUE,FALSE -"LEADVILLE",80960,FALSE,1999,FALSE,TRUE -"GRENADIER",78512,FALSE,1999,FALSE,TRUE -"TROUTVILLE",71189,FALSE,1999,FALSE,TRUE "NELSON",62602,FALSE,1998,FALSE,TRUE "SAN ARCACIO",61689,FALSE,2003,FALSE,TRUE "GRANATH",42192,FALSE,1999,FALSE,TRUE "PLATORO",38487,FALSE,1999,FALSE,TRUE -"TECOLOTE",31805,FALSE,2007,FALSE,TRUE "PARLIN",30042,FALSE,1999,TRUE,TRUE -"TROUT CREEK",29091,FALSE,2009,TRUE,FALSE -"ASHCROFT",28291,FALSE,2022,FALSE,TRUE -"RALEIGH",28000,FALSE,2010,FALSE,TRUE -"TEX",27495,FALSE,1999,TRUE,TRUE +"TEX",27495,FALSE,1999,TRUE,FALSE "WORMSER",25802,FALSE,1997,FALSE,TRUE +"GAMBLER",25259,FALSE,1999,TRUE,FALSE "SARATON",24276,FALSE,1999,TRUE,TRUE -"MACFARLANE",23177,FALSE,2005,FALSE,TRUE "REDCLOUD",20637,FALSE,1999,TRUE,TRUE "RANDMAN",19474,FALSE,2003,TRUE,TRUE "VILLA GROVE",18542,FALSE,1999,FALSE,TRUE "TORSIDO",18149,FALSE,2003,TRUE,TRUE -"BOBTAIL",17832,FALSE,2010,TRUE,TRUE -"NORDICOL",17668,FALSE,2002,FALSE,TRUE +"BOBTAIL",17832,FALSE,2010,TRUE,FALSE "PIERIAN",16769,FALSE,1999,TRUE,TRUE -"KEBLER",15395,FALSE,1999,TRUE,TRUE -"MCINTYRE",12951,FALSE,1999,TRUE,TRUE +"KEBLER",15395,FALSE,1999,TRUE,FALSE +"MCINTYRE",12951,FALSE,1999,TRUE,FALSE "SINGERTON",12939,FALSE,2001,FALSE,TRUE "TEALSON",12466,FALSE,1999,TRUE,FALSE -"NANITA",11274,FALSE,1999,FALSE,TRUE -"WEMINUCHE",9645,FALSE,2002,FALSE,TRUE -"TUCKERVILLE",8832,FALSE,2002,FALSE,TRUE +"DOMINGUEZ",10367,FALSE,1999,TRUE,FALSE "SUNSHINE",8745,FALSE,1999,TRUE,TRUE -"HEFLIN",8519,FALSE,2004,TRUE,FALSE "WALDEN",7251,FALSE,2003,FALSE,TRUE "ST. ELMO",6736,FALSE,1999,TRUE,TRUE -"HIERRO",6368,FALSE,1999,FALSE,TRUE "NATURITA",5865,FALSE,1999,TRUE,FALSE "POOSE",5023,FALSE,2008,TRUE,FALSE -"JENKINS",4808,FALSE,1999,TRUE,TRUE -"RARICK",3850,FALSE,2010,TRUE,TRUE +"JENKINS",4808,FALSE,1999,TRUE,FALSE +"RARICK",3850,FALSE,2010,TRUE,FALSE "STUMPP",3472,FALSE,1999,FALSE,TRUE "RAWAH",3414,FALSE,1999,FALSE,TRUE "PRIMEN",3345,FALSE,1997,TRUE,TRUE -"FARDRAW",3212,FALSE,2005,TRUE,FALSE -"MOOSED",3202,FALSE,1999,TRUE,TRUE -"MYSTEN",3116,FALSE,1990,TRUE,TRUE +"MOOSED",3202,FALSE,1999,FALSE,TRUE +"MYSTEN",3116,FALSE,1990,TRUE,FALSE "HAVERLY",2863,FALSE,2008,TRUE,FALSE -"PTARMIGAN",2526,FALSE,2010,TRUE,TRUE -"WESTPLAIN",2357,FALSE,2021,TRUE,FALSE +"PTARMIGAN",2526,FALSE,2010,TRUE,FALSE "GOLD CREEK",1659,FALSE,1999,TRUE,FALSE "SAWATCH",1016,FALSE,1999,TRUE,TRUE +"TABERNASH",803,FALSE,1999,TRUE,FALSE "ALMONT",735,FALSE,1999,FALSE,TRUE -"FERN CLIFF",550,FALSE,1999,TRUE,TRUE -"RULE",NA,FALSE,1999,TRUE,TRUE -"DARLING",NA,FALSE,1999,TRUE,TRUE +"FERN CLIFF",550,FALSE,1999,TRUE,FALSE +"RULE",NA,FALSE,1999,TRUE,FALSE +"DARLING",NA,FALSE,1999,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/FL-hz.csv b/inst/extdata/OSD-error-reporting/state/FL-hz.csv index 9bb21f06fe..299570226c 100644 --- a/inst/extdata/OSD-error-reporting/state/FL-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/FL-hz.csv @@ -2,16 +2,12 @@ "BAHIAHONDA","Cgl",89,173,NA,NA,NA,"10YR","8","1" "BLICHTON","Btvgl",76,114,NA,NA,NA,"N","4","0" "BRIGHTON","Oap",0,30,NA,NA,NA,"l0YR","2","1" -"DEMORY","0a",0,8,NA,NA,NA,"10YR","2","1" "EATON","Btgl",76,84,NA,NA,NA,"10YR","5","1" "EUREKA","Btgl",28,51,NA,NA,NA,"N","5","0" -"LEDWITH","0a",0,23,NA,NA,NA,"10YR","3","3" -"OKEECHOBEE","0a",20,71,NA,NA,NA,"5YR","2","1" "PUNTA","A",0,10,NA,NA,NA,"l0YR","4",NA "PUNTA","E1",10,28,NA,NA,NA,"l0YR","6","2" "PUNTA","E2",28,145,NA,NA,NA,"l0YR","8",NA "VERO","Al",0,18,NA,NA,NA,"10YR","2","1" "VERO","Btgl",81,122,NA,NA,NA,"10YR","6","2" "VERO","Cg1l",157,203,NA,NA,NA,"5GY","5","1" -"YULEE","0i",0,5,NA,NA,NA,NA,NA,NA "ZUBER","Btl",38,51,NA,NA,NA,"10YR","4","4" diff --git a/inst/extdata/OSD-error-reporting/state/FL-series.csv b/inst/extdata/OSD-error-reporting/state/FL-series.csv index 5e9e98c9bb..583eb56d36 100644 --- a/inst/extdata/OSD-error-reporting/state/FL-series.csv +++ b/inst/extdata/OSD-error-reporting/state/FL-series.csv @@ -1,13 +1,9 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "BLICHTON",71250,FALSE,2002,FALSE,TRUE -"DEMORY",29488,FALSE,2000,FALSE,TRUE "EUREKA",29370,FALSE,2002,FALSE,TRUE -"OKEECHOBEE",29101,FALSE,2000,FALSE,TRUE "EATON",19201,FALSE,2002,FALSE,TRUE "BRIGHTON",17281,FALSE,2000,FALSE,TRUE -"YULEE",8230,FALSE,1998,FALSE,TRUE "ZUBER",7641,FALSE,2003,FALSE,TRUE -"LEDWITH",5574,FALSE,2003,FALSE,TRUE "PUNTA",3805,FALSE,1993,FALSE,TRUE "BAHIAHONDA",672,FALSE,2009,FALSE,TRUE "VERO",NA,FALSE,2004,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/FM-hz.csv b/inst/extdata/OSD-error-reporting/state/FM-hz.csv index d6768a27da..5bdcf43014 100644 --- a/inst/extdata/OSD-error-reporting/state/FM-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/FM-hz.csv @@ -1,2 +1,4 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"WELOY","O1",3,0,NA,NA,NA,NA,NA,NA +"YAP","O2",3,0,NA,NA,NA,"5YR","2.5","1" "YAP","O1",5,3,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/GA-hz.csv b/inst/extdata/OSD-error-reporting/state/GA-hz.csv index dbabd4a9a8..a3aa2ad9af 100644 --- a/inst/extdata/OSD-error-reporting/state/GA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/GA-hz.csv @@ -1,4 +1,2 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "ROME","Btl",23,51,NA,NA,NA,"7.5YR","5","6" -"SURRENCY","0i",0,3,NA,NA,NA,NA,NA,NA -"TALLADEGA","0i",0,5,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/GA-series.csv b/inst/extdata/OSD-error-reporting/state/GA-series.csv index 71619e7f61..5bc8636cb8 100644 --- a/inst/extdata/OSD-error-reporting/state/GA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/GA-series.csv @@ -1,4 +1,2 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"SURRENCY",773555,FALSE,2021,FALSE,TRUE -"TALLADEGA",155342,FALSE,2001,FALSE,TRUE "ROME",20963,FALSE,2003,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/GU-hz.csv b/inst/extdata/OSD-error-reporting/state/GU-hz.csv index 2cfa1ae4af..ba3550f1aa 100644 --- a/inst/extdata/OSD-error-reporting/state/GU-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/GU-hz.csv @@ -1 +1,2 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"PULANTAT","Oi",3,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/HI-hz.csv b/inst/extdata/OSD-error-reporting/state/HI-hz.csv index 5aad346f5c..48f697b454 100644 --- a/inst/extdata/OSD-error-reporting/state/HI-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/HI-hz.csv @@ -1,13 +1,9 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"HONOMANU","01",8,8,NA,NA,NA,"10YR","3","2" -"HULUA","01",3,25,NA,NA,NA,NA,NA,NA +"HONOMANU","O1",8,0,NA,NA,NA,"10YR","3","2" +"HULUA","O1",3,0,NA,NA,NA,NA,NA,NA "KAHANUI","Oi",1,0,NA,NA,NA,NA,NA,NA -"KILAUEA","C10",142,190,"10YR","5","1","N","2","0" -"KOOLAU","01",5,18,NA,NA,NA,NA,NA,NA +"KOOLAU","O1",5,0,NA,NA,NA,NA,NA,NA "KULA","lIB3b",107,137,"5YR","4","4","5YR","3","2" "LUALUALEI","Cly",76,124,NA,NA,NA,"10YR","3","2" -"OLOKUI","01",10,10,NA,NA,NA,"5YR","3","2" -"PUAULU","10Bw4",121,130,NA,NA,NA,"7.5YR","3","3" -"PUAULU","10Bw5",130,135,NA,NA,NA,"7.5YR","3","3" -"PUAULU","10Bw6",135,152,NA,NA,NA,"7.5YR","3","3" -"WAIALEALE","02",8,10,"5YR","2","2","5YR","2","2" +"OLOKUI","O1",10,0,NA,NA,NA,"5YR","3","2" +"WAIALEALE","O2",8,0,"5YR","2","2","5YR","2","2" diff --git a/inst/extdata/OSD-error-reporting/state/HI-series.csv b/inst/extdata/OSD-error-reporting/state/HI-series.csv index c2b5938d2f..1845ab2973 100644 --- a/inst/extdata/OSD-error-reporting/state/HI-series.csv +++ b/inst/extdata/OSD-error-reporting/state/HI-series.csv @@ -1,13 +1,11 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "LUALUALEI",12604,TRUE,2000,FALSE,TRUE "PULEHU",12123,FALSE,2001,TRUE,FALSE -"PUAULU",10807,FALSE,2008,FALSE,TRUE -"HONOMANU",9901,FALSE,2000,TRUE,TRUE +"HONOMANU",9901,FALSE,2000,TRUE,FALSE "KULA",7779,FALSE,2000,FALSE,TRUE -"HULUA",5769,FALSE,2001,TRUE,TRUE -"WAIALEALE",3699,FALSE,2001,TRUE,TRUE +"HULUA",5769,FALSE,2001,TRUE,FALSE +"WAIALEALE",3699,FALSE,2001,TRUE,FALSE "KAHANUI",2254,FALSE,2000,TRUE,FALSE -"KILAUEA",2050,FALSE,2008,FALSE,TRUE -"KOOLAU",1696,TRUE,2000,TRUE,TRUE -"OLOKUI",1299,FALSE,2001,TRUE,TRUE +"KOOLAU",1696,TRUE,2000,TRUE,FALSE +"OLOKUI",1299,FALSE,2001,TRUE,FALSE "KEAAU",1289,FALSE,2000,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/ID-hz.csv b/inst/extdata/OSD-error-reporting/state/ID-hz.csv index 88542452fb..0462cb2ba7 100644 --- a/inst/extdata/OSD-error-reporting/state/ID-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/ID-hz.csv @@ -1,8 +1,6 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "BICKETT","2Bkgl",28,61,NA,NA,NA,"2.5Y","6","1" "BUTTECREEK","Oe",5,0,NA,NA,NA,NA,NA,NA -"CARIBOURIDGE","0i",0,3,NA,NA,NA,NA,NA,NA -"CARIBOURIDGE","0e",3,5,NA,NA,NA,NA,NA,NA "CHICANE","A12",13,36,"lOYR","3","2","lOYR","2","1" "CHICANE","B2",36,53,"lOYR","4","2","lOYR","3","1" "CHICANE","IIA21",53,69,"lOYR","6","3","lOYR","4","2" @@ -12,59 +10,31 @@ "CHICANE","IIB23t",104,130,"lOYR","5","4","lOYR","4","4" "CHICANE","IIB24t",130,170,"lOYR","4","4","lOYR","4","4" "CHICANE","Ap",NA,13,"lOYR","3","2","lOYR","2","1" -"DELETE MEII","0i",0,3,NA,NA,NA,NA,NA,NA -"DELETE MEII","0e",3,4,NA,NA,NA,NA,NA,NA +"FLANNERY","Oe",3,0,NA,NA,NA,NA,NA,NA "FLANNERY","Oi",4,3,NA,NA,NA,NA,NA,NA -"FLATSTONE","0i",0,3,NA,NA,NA,NA,NA,NA "FORDCREEK","Btl",15,41,"10YR","6","3","10YR","3","4" "FORDCREEK","Cr",104,NA,NA,NA,NA,NA,NA,NA "FORDCREEK","Al",NA,8,"10YR","5","3","10YR","3","3" "HENRYSLAKE","Btl",8,25,"10YR","5","2","10YR","3","2" -"HOOTER","0e",5,0,NA,NA,NA,NA,NA,NA -"HOOTER","0i",8,5,NA,NA,NA,NA,NA,NA +"HOOTER","Oe",5,0,NA,NA,NA,NA,NA,NA +"HOOTER","Oi",8,5,NA,NA,NA,NA,NA,NA +"HOPBURN","Oi",1,0,NA,NA,NA,NA,NA,NA "HUCKLE","Bwl",10,20,"10YR","5","4","10YR","3","4" -"HUN","0i",0,4,NA,NA,NA,NA,NA,NA -"HUN","0e",4,5,"10YR","7","1",NA,NA,NA "JACKNIFE","Btl",48,86,"7.5YR","3","2","7.5YR","3","2" -"JERU","0i",0,1,NA,NA,NA,NA,NA,NA -"JERU","0e",1,5,"10YR","7","1",NA,NA,NA -"JUMPSTART","0i",0,3,NA,NA,NA,NA,NA,NA -"KLUTCH","0i",0,3,NA,NA,NA,NA,NA,NA -"KLUTCH","0e",3,4,NA,NA,NA,NA,NA,NA -"LACY","0i",0,3,NA,NA,NA,NA,NA,NA -"LAGALL","0i",0,3,NA,NA,NA,NA,NA,NA "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" +"OVIATT","Oi",3,0,NA,NA,NA,NA,NA,NA "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,"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","Oe",3,0,NA,NA,NA,NA,NA,NA "ROLO","Oi",5,3,NA,NA,NA,NA,NA,NA "SEELOVERS","Al",NA,15,"10YR","4","2","10YR","2","2" -"SLY","0i",0,2,NA,NA,NA,NA,NA,NA -"SLY","0e",2,4,NA,NA,NA,NA,NA,NA -"SPOKEL","0i",0,3,NA,NA,NA,NA,NA,NA -"SPOKEL","0e",3,5,NA,NA,NA,NA,NA,NA -"STIEN","0i",0,3,NA,NA,NA,NA,NA,NA -"STIEN","0e",3,5,NA,NA,NA,NA,NA,NA -"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 +"STRINGAM","Oi",1,0,NA,NA,NA,NA,NA,NA "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 +"UPTMOR","Oe",1,0,NA,NA,NA,NA,NA,NA "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 -"WAPSHILLA","0i",0,1,NA,NA,NA,NA,NA,NA "WELLSBENCH","Btl",15,36,"10YR","4","2","10YR","3","3" -"WISHBONE","0i",0,3,NA,NA,NA,NA,NA,NA -"WISHBONE","0e",3,5,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/ID-series.csv b/inst/extdata/OSD-error-reporting/state/ID-series.csv index d8b4712edc..54174c6c22 100644 --- a/inst/extdata/OSD-error-reporting/state/ID-series.csv +++ b/inst/extdata/OSD-error-reporting/state/ID-series.csv @@ -1,38 +1,16 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"SKALAN",243062,FALSE,2005,TRUE,FALSE -"JERU",166545,FALSE,2005,FALSE,TRUE -"KLUTCH",144478,FALSE,2022,FALSE,TRUE -"PEND OREILLE",118030,FALSE,2005,FALSE,TRUE "HUCKLE",117201,FALSE,2013,FALSE,TRUE -"VASSAR",97604,TRUE,2012,FALSE,TRUE -"LAGALL",81616,FALSE,2005,FALSE,TRUE -"KOOTENAI",48097,FALSE,2002,TRUE,FALSE -"HUN",46882,FALSE,2005,FALSE,TRUE +"STRINGAM",110650,FALSE,2005,TRUE,FALSE "REHFIELD",44625,FALSE,2002,FALSE,TRUE "LITTLESALMON",39568,FALSE,2006,FALSE,TRUE "PANIOGUE",37184,FALSE,2001,FALSE,TRUE -"JUMPSTART",36998,FALSE,2005,FALSE,TRUE -"TELCHER",34565,FALSE,2005,FALSE,TRUE -"CARIBOURIDGE",33639,FALSE,2004,FALSE,TRUE -"FLATSTONE",26920,FALSE,2004,FALSE,TRUE -"SULOAF",26229,FALSE,2005,FALSE,TRUE -"RISWOLD",24658,FALSE,2005,FALSE,TRUE "VAN DUSEN",24546,FALSE,1999,FALSE,TRUE -"OLEO",24146,FALSE,2005,FALSE,TRUE "JACKNIFE",22256,FALSE,1997,FALSE,TRUE -"SLY",22092,FALSE,2005,FALSE,TRUE -"LACY",20922,FALSE,2009,FALSE,TRUE -"STIEN",18422,FALSE,2005,FALSE,TRUE -"PIKADEN",16464,FALSE,2008,FALSE,TRUE -"PERFA",16314,FALSE,2008,FALSE,TRUE "PACKERJOHN",9425,FALSE,2011,FALSE,TRUE -"WAGONTOWN",8633,FALSE,2005,FALSE,TRUE -"ULRICHER",7569,FALSE,2005,FALSE,TRUE +"UPTMOR",9423,FALSE,2013,TRUE,FALSE "CHICANE",7329,FALSE,1997,TRUE,TRUE -"WAPSHILLA",7174,FALSE,2005,FALSE,TRUE "SEELOVERS",6862,FALSE,2005,TRUE,TRUE -"WISHBONE",6211,FALSE,2005,FALSE,TRUE -"SPOKEL",5538,FALSE,2005,FALSE,TRUE +"HOPBURN",5912,FALSE,2005,TRUE,FALSE "QUAILRIDGE",4955,FALSE,2012,FALSE,TRUE "TRIPOD",4741,FALSE,2011,FALSE,TRUE "HENRYSLAKE",2522,FALSE,2005,FALSE,TRUE @@ -42,7 +20,6 @@ "WELLSBENCH",1162,FALSE,2005,FALSE,TRUE "ROLO",NA,FALSE,2002,TRUE,FALSE "OVIATT",NA,FALSE,2002,TRUE,FALSE -"HOOTER",NA,FALSE,1997,TRUE,TRUE +"HOOTER",NA,FALSE,1997,TRUE,FALSE "FLANNERY",NA,FALSE,2002,TRUE,FALSE -"DELETE MEII",NA,FALSE,2022,FALSE,TRUE "BUTTECREEK",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/IN-hz.csv b/inst/extdata/OSD-error-reporting/state/IN-hz.csv index 16c1150e75..b21f7cddef 100644 --- a/inst/extdata/OSD-error-reporting/state/IN-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/IN-hz.csv @@ -11,8 +11,8 @@ "COESSE","2Bgbl",86,104,NA,NA,NA,"2.5Y","4","2" "PATE","Btl",15,36,NA,NA,NA,"10YR","4","3" "PROCHASKA","B2lg",30,46,NA,NA,NA,"10YR","4","1" -"ROCKCASTLE","02",3,0,NA,NA,NA,"10YR","2","1" -"ROCKCASTLE","01",8,3,NA,NA,NA,NA,NA,NA +"ROCKCASTLE","O2",3,0,NA,NA,NA,"10YR","2","1" +"ROCKCASTLE","O1",8,3,NA,NA,NA,NA,NA,NA "ROCKCASTLE","A1",NA,3,NA,NA,NA,"10YR","3","1" "SIMONIN","Btl",66,86,NA,NA,NA,"10YR","5","4" "TORONTO","Btl",30,41,NA,NA,NA,"10YR","5","3" diff --git a/inst/extdata/OSD-error-reporting/state/IN-series.csv b/inst/extdata/OSD-error-reporting/state/IN-series.csv index d1f0995b76..a1218f24d0 100644 --- a/inst/extdata/OSD-error-reporting/state/IN-series.csv +++ b/inst/extdata/OSD-error-reporting/state/IN-series.csv @@ -3,7 +3,7 @@ "PATE",32332,FALSE,2006,FALSE,TRUE "TREVLAC",30796,FALSE,2003,FALSE,TRUE "BOURBON",29332,FALSE,2021,FALSE,TRUE -"ROCKCASTLE",18947,FALSE,2001,TRUE,TRUE +"ROCKCASTLE",18947,FALSE,2001,TRUE,FALSE "PROCHASKA",16610,FALSE,2021,FALSE,TRUE "AYR",8234,FALSE,2022,FALSE,TRUE "COESSE",5362,FALSE,2007,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/KS-series.csv b/inst/extdata/OSD-error-reporting/state/KS-series.csv index 6b837f29d6..fdb8509ffa 100644 --- a/inst/extdata/OSD-error-reporting/state/KS-series.csv +++ b/inst/extdata/OSD-error-reporting/state/KS-series.csv @@ -1,4 +1,3 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"BAILEYVILLE",51959,FALSE,2003,TRUE,FALSE "GRIGSTON",25094,FALSE,2008,FALSE,TRUE "ZEANDALE",2962,FALSE,2009,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/KY-hz.csv b/inst/extdata/OSD-error-reporting/state/KY-hz.csv index 70a1c84db9..972dd5cd64 100644 --- a/inst/extdata/OSD-error-reporting/state/KY-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/KY-hz.csv @@ -2,7 +2,8 @@ "CHENAULT","Ap",0,28,NA,NA,NA,"1OYR","4","3" "CHENAULT","2Bt3",104,124,NA,NA,NA,"1OYR","4","4" "CHRISTIAN","Btl",15,38,NA,NA,NA,"5YR","5","8" -"CLOVERLICK","0i",0,5,NA,NA,NA,NA,NA,NA +"CRANSTON","Oe",1,0,NA,NA,NA,NA,NA,NA +"CRANSTON","Oi",3,1,NA,NA,NA,NA,NA,NA "GATTON","2Btx1",56,91,NA,NA,NA,"1OYR","5","4" "GATTON","Ap",NA,15,NA,NA,NA,"1OYR","4","4" "STOKLY","Bw",20,48,NA,NA,NA,"1OYR","5","3" diff --git a/inst/extdata/OSD-error-reporting/state/KY-series.csv b/inst/extdata/OSD-error-reporting/state/KY-series.csv index 224d495979..707825187f 100644 --- a/inst/extdata/OSD-error-reporting/state/KY-series.csv +++ b/inst/extdata/OSD-error-reporting/state/KY-series.csv @@ -1,6 +1,6 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "CHRISTIAN",297423,FALSE,2001,FALSE,TRUE -"CLOVERLICK",228175,FALSE,2011,FALSE,TRUE +"CRANSTON",76525,FALSE,2005,TRUE,FALSE "STOKLY",26508,FALSE,2005,TRUE,TRUE "GATTON",14523,FALSE,2003,TRUE,TRUE "CHENAULT",8045,FALSE,2006,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/LA-hz.csv b/inst/extdata/OSD-error-reporting/state/LA-hz.csv index f388980952..d41fa68505 100644 --- a/inst/extdata/OSD-error-reporting/state/LA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/LA-hz.csv @@ -1,9 +1,8 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"ANDRY","022",15,0,NA,NA,NA,"10YR","3","2" -"ANDRY","021",30,15,NA,NA,NA,"10YR","3","2" +"ANDRY","O22",15,0,NA,NA,NA,"10YR","3","2" +"ANDRY","O21",30,15,NA,NA,NA,"10YR","3","2" "CROWLEY","Btgl",36,64,NA,NA,NA,"10YR","5","2" "MIDLAND","Btkssgl",81,107,NA,NA,NA,"10YR","5","1" "MOWATA","Btgl",56,86,NA,NA,NA,"10YR","5","2" "RUPLE","Bsm/Btl",71,107,NA,NA,NA,"2.5YR","3","6" -"WESTWEGO","II02bg",53,91,NA,NA,NA,"N","2","0" "ZENORIA","Al",0,5,NA,NA,NA,"10YR","4","2" diff --git a/inst/extdata/OSD-error-reporting/state/LA-series.csv b/inst/extdata/OSD-error-reporting/state/LA-series.csv index 87c243a6cc..73fef31138 100644 --- a/inst/extdata/OSD-error-reporting/state/LA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/LA-series.csv @@ -1,9 +1,7 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "CROWLEY",529622,TRUE,2004,FALSE,TRUE "MOWATA",235493,FALSE,2014,FALSE,TRUE -"MESSER",149595,FALSE,2013,TRUE,FALSE "MIDLAND",145333,FALSE,2004,FALSE,TRUE -"WESTWEGO",23971,FALSE,2011,FALSE,TRUE -"ANDRY",7778,FALSE,2003,TRUE,TRUE +"ANDRY",7778,FALSE,2003,TRUE,FALSE "RUPLE",5445,FALSE,2000,FALSE,TRUE "ZENORIA",2386,FALSE,2000,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/MD-series.csv b/inst/extdata/OSD-error-reporting/state/MD-series.csv index 7179855b03..cdf64f58b1 100644 --- a/inst/extdata/OSD-error-reporting/state/MD-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MD-series.csv @@ -1,4 +1,5 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" +"BELTSVILLE",146009,FALSE,2005,TRUE,FALSE "SIDELING",77864,FALSE,2001,FALSE,TRUE "MT. ZION",15236,FALSE,2002,FALSE,TRUE "RAVENROCK",15090,FALSE,2002,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/MI-hz.csv b/inst/extdata/OSD-error-reporting/state/MI-hz.csv index 6f6580abe5..c535bb9929 100644 --- a/inst/extdata/OSD-error-reporting/state/MI-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MI-hz.csv @@ -1,29 +1,19 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"AU TRAIN","0a",0,5,NA,NA,NA,"5YR","2.5","1" -"BEECHWOOD","Oa",5,5,NA,NA,NA,"10YR","3","4" +"BEECHWOOD","Oa",5,0,NA,NA,NA,"10YR","3","4" "BEECHWOOD","Oi",10,5,NA,NA,NA,NA,NA,NA -"BURT","0a",0,3,NA,NA,NA,"10YR","2","1" -"CARBONDALE","0e",99,152,NA,NA,NA,"7.5YR","3","2" -"CATHRO","0a1",0,15,NA,NA,NA,"5YR","2","1" -"CATHRO","0a2",15,28,NA,NA,NA,"5YR","2","1" -"CATHRO","0a3",28,58,NA,NA,NA,"5YR","2","1" "CHANNING","Oi",5,0,NA,NA,NA,NA,NA,NA -"CHIPPENY","0a1",0,8,NA,NA,NA,"5YR","2.5","1" -"CHIPPENY","0a2",8,15,NA,NA,NA,"5YR","2.5","1" -"CHIPPENY","0a3",15,51,NA,NA,NA,"5YR","3","1" -"DEERTON","0a",0,3,NA,NA,NA,"5YR","2.5","1" "FELDTMANN","Oe",5,0,NA,NA,NA,"5YR","3","1" "FREDA","Oe",3,0,NA,NA,NA,"5YR","2","1" -"GLENNIE","0e",0,5,NA,NA,NA,NA,NA,NA "GUARDLAKE","Oi",3,0,NA,NA,NA,NA,NA,NA "KALLIO","Oi",3,0,NA,NA,NA,NA,NA,NA "KAWBAWGAM","Oa",5,0,NA,NA,NA,"5YR","2","2" -"LIMINGA","0a",0,2,NA,NA,NA,"N","2.5","0" "MIKADO","Oe",5,0,NA,NA,NA,NA,NA,NA "NADEAU","Oe",5,0,NA,NA,NA,"10YR","2","1" "NET","Oi",5,0,NA,NA,NA,NA,NA,NA "NUNICA","Oi",5,0,NA,NA,NA,NA,NA,NA "OLDMAN","Oa",3,0,NA,NA,NA,"10YR","2","1" +"PEMENE","Oe",5,0,NA,NA,NA,"10YR","2","1" +"PESHEKEE","Oe",3,0,NA,NA,NA,"10YR","2","1" "PETTICOAT","Oe",3,0,NA,NA,NA,"10YR","2","2" "POSEN","Oe",3,0,NA,NA,NA,"N","2","0" "PULLUP","Oi",5,0,NA,NA,NA,NA,NA,NA @@ -31,7 +21,5 @@ "SATAGO","Oi",5,0,NA,NA,NA,NA,NA,NA "SUNDELL","Oi",5,0,NA,NA,NA,NA,NA,NA "TACOOSH","Cgl",102,107,NA,NA,NA,"2.5Y","5","2" -"TROUT BAY","0a1",0,18,NA,NA,NA,"10YR","2","1" -"TROUT BAY","0a2",18,48,NA,NA,NA,"10YR","2","1" "VELVET","Oa",5,0,NA,NA,NA,"10YR","2","1" "WATTON","Oi",3,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/MI-series.csv b/inst/extdata/OSD-error-reporting/state/MI-series.csv index e6745f111d..26c01e9825 100644 --- a/inst/extdata/OSD-error-reporting/state/MI-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MI-series.csv @@ -1,9 +1,7 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"CATHRO",1918852,FALSE,2022,FALSE,TRUE -"CARBONDALE",483997,TRUE,2022,FALSE,TRUE "TACOOSH",371511,FALSE,1998,FALSE,TRUE +"PEMENE",100064,FALSE,2022,TRUE,FALSE "NADEAU",71208,FALSE,2022,TRUE,FALSE -"LIMINGA",56662,FALSE,2006,FALSE,TRUE "NET",53162,FALSE,1998,TRUE,FALSE "PESHEKEE",31859,FALSE,1998,TRUE,FALSE "POSEN",24880,FALSE,1999,TRUE,FALSE @@ -14,18 +12,12 @@ "OLDMAN",22397,FALSE,2002,TRUE,FALSE "SUNDELL",22320,FALSE,2022,TRUE,FALSE "GUARDLAKE",21100,FALSE,1994,TRUE,FALSE -"CHIPPENY",21027,FALSE,2021,FALSE,TRUE -"GLENNIE",15146,FALSE,2001,FALSE,TRUE -"DEERTON",12352,FALSE,1994,FALSE,TRUE "NUNICA",10023,FALSE,2022,TRUE,FALSE "KALLIO",9936,FALSE,2003,TRUE,FALSE "BEECHWOOD",8262,FALSE,1999,TRUE,FALSE "SATAGO",5597,FALSE,1999,TRUE,FALSE "PULLUP",5124,FALSE,1994,TRUE,FALSE -"BURT",4528,FALSE,1987,FALSE,TRUE -"TROUT BAY",4334,FALSE,2009,FALSE,TRUE "VELVET",3361,FALSE,2022,TRUE,FALSE -"AU TRAIN",1581,FALSE,2009,FALSE,TRUE "FREDA",703,FALSE,2003,TRUE,FALSE "ROCKCUT",564,FALSE,2003,TRUE,FALSE "FELDTMANN",148,FALSE,1990,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/MN-hz.csv b/inst/extdata/OSD-error-reporting/state/MN-hz.csv index b3275a9dcd..4d78b4885c 100644 --- a/inst/extdata/OSD-error-reporting/state/MN-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MN-hz.csv @@ -1,23 +1,21 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "BAYTOWN","A3",41,48,"l0YR","5","2","10YR","3","2" -"BOWSTRING","0a2",46,97,NA,NA,NA,"N","2","0" -"BOWSTRING","0'a1",119,203,NA,NA,NA,"N","2","0" +"BERGKELLER","Oi",3,0,NA,NA,NA,NA,NA,NA "BRENNYVILLE","Btl",28,53,NA,NA,NA,"10YR","4","3" "BRICKTON","Cgl",64,104,NA,NA,NA,"2.5Y","6","2" -"CONIC","0a",0,3,NA,NA,NA,"5YR","2","1" -"DALBO","0e",0,3,NA,NA,NA,NA,NA,NA -"ELBAVILLE","0e",0,3,NA,NA,NA,NA,NA,NA "FINLAND","Oe",3,0,NA,NA,NA,NA,NA,NA "FORMDALE","Bwl",19,30,"10YR","4","2","10YR","3","2" "HIWOOD","Oe",5,0,NA,NA,NA,NA,NA,NA +"INDUS","Oa",1,0,NA,NA,NA,"5YR","2","1" "INDUS","Oe",4,1,NA,NA,NA,"5YR","2","2" -"INDUS","0a",NA,1554,NA,NA,NA,"5YR","2","1" -"INSULA","0a",3,0,NA,NA,NA,"10YR","2","1" +"INSULA","Oa",3,0,NA,NA,NA,"10YR","2","1" +"INSULA","Oi",4,3,NA,NA,NA,NA,NA,NA "KINGSLEY","A1",0,8,"l0YR","3",NA,"10YR","2","1" "KINGSLEY","A2",8,18,"l0YR","5","2","10YR","3","2" "LOBO","Oil",0,8,NA,NA,NA,"10YR","6","4" -"MCDAVITT","0e",0,5,"10YR","4","1","10YR","2","1" +"NEMADJI","O",1,0,NA,NA,NA,NA,NA,NA +"NEWFOUND","O2",4,0,NA,NA,NA,"5YR","2","1" +"NEWFOUND","O1",6,4,NA,NA,NA,NA,NA,NA "ROSY","Oi",5,0,NA,NA,NA,NA,NA,NA "SEDGEVILLE","Bgl",20,43,NA,NA,NA,"2.5Y","5","2" -"THISTLEDEW","0a",0,3,NA,NA,NA,"5YR","2","1" "WASKISH","Oil",0,8,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/MN-series.csv b/inst/extdata/OSD-error-reporting/state/MN-series.csv index dae56baeaf..23b93fde81 100644 --- a/inst/extdata/OSD-error-reporting/state/MN-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MN-series.csv @@ -1,22 +1,18 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"BOWSTRING",354491,FALSE,2006,FALSE,TRUE -"CONIC",324902,FALSE,2005,FALSE,TRUE -"ELBAVILLE",213442,FALSE,2000,FALSE,TRUE -"INSULA",194207,FALSE,2005,TRUE,TRUE +"INSULA",194207,FALSE,2005,TRUE,FALSE "BRENNYVILLE",127811,FALSE,2003,FALSE,TRUE "LOBO",127543,FALSE,2022,FALSE,TRUE "FORMDALE",110181,FALSE,2020,FALSE,TRUE -"INDUS",89495,TRUE,1997,TRUE,TRUE +"INDUS",89495,TRUE,1997,TRUE,FALSE "HIWOOD",68384,FALSE,1992,TRUE,FALSE "WASKISH",55992,FALSE,2001,FALSE,TRUE "KINGSLEY",53941,FALSE,1997,FALSE,TRUE -"DALBO",23737,FALSE,2006,FALSE,TRUE "ROSY",23690,FALSE,1999,TRUE,FALSE "BRICKTON",21214,FALSE,2006,FALSE,TRUE -"THISTLEDEW",13219,FALSE,1999,FALSE,TRUE +"NEMADJI",17116,FALSE,1995,TRUE,FALSE "NERESON",9242,FALSE,1998,TRUE,FALSE "BERGKELLER",8621,FALSE,1999,TRUE,FALSE "SEDGEVILLE",6604,FALSE,2000,FALSE,TRUE "BAYTOWN",3376,FALSE,2003,FALSE,TRUE -"MCDAVITT",3247,FALSE,2009,FALSE,TRUE +"NEWFOUND",NA,FALSE,1999,TRUE,FALSE "FINLAND",NA,FALSE,2000,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/MO-hz.csv b/inst/extdata/OSD-error-reporting/state/MO-hz.csv index f877e670ab..677244a386 100644 --- a/inst/extdata/OSD-error-reporting/state/MO-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MO-hz.csv @@ -1,5 +1,4 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"CLARKSVILLE","0i",0,3,NA,NA,NA,NA,NA,NA "DELASSUS","2Btxl",79,114,NA,NA,NA,"10YR","6","2" "GRANDGULF","Btl",33,56,NA,NA,NA,"10YR","3","4" "KNOBBY","Al",0,8,"10YR","5","2","10YR","3","1" diff --git a/inst/extdata/OSD-error-reporting/state/MO-series.csv b/inst/extdata/OSD-error-reporting/state/MO-series.csv index def8101d72..8db05b9466 100644 --- a/inst/extdata/OSD-error-reporting/state/MO-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MO-series.csv @@ -1,5 +1,4 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"CLARKSVILLE",2799208,TRUE,2022,FALSE,TRUE "SECESH",214681,FALSE,1997,FALSE,TRUE "SWISS",54161,FALSE,2022,FALSE,TRUE "DELASSUS",40356,FALSE,1998,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/MP-hz.csv b/inst/extdata/OSD-error-reporting/state/MP-hz.csv index 8a2d76f982..fe552026bf 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","N","2","0" -"BANADERU","0i",3,0,NA,NA,NA,NA,NA,NA +"BANADERU","Oi",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/MP-series.csv b/inst/extdata/OSD-error-reporting/state/MP-series.csv index e299edc83e..33bdec612e 100644 --- a/inst/extdata/OSD-error-reporting/state/MP-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MP-series.csv @@ -2,6 +2,5 @@ "CHINEN",22301,FALSE,2006,TRUE,FALSE "LUTA",12460,FALSE,2007,TRUE,FALSE "HATISU",4631,FALSE,2002,TRUE,FALSE -"APILAM",3729,TRUE,2007,TRUE,FALSE "LAOLAO",2212,FALSE,2006,TRUE,FALSE "BANADERU",759,FALSE,2006,TRUE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/MS-hz.csv b/inst/extdata/OSD-error-reporting/state/MS-hz.csv index 99e46116c0..6f75adbb7b 100644 --- a/inst/extdata/OSD-error-reporting/state/MS-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MS-hz.csv @@ -2,7 +2,6 @@ "BENNDALE","Btl",13,28,NA,NA,NA,"10YR","5","6" "GRIFFITH","Al",25,56,NA,NA,NA,"5Y","3","1" "MCLAURIN","Btl",36,51,NA,NA,NA,"5YR","5","6" -"NATCHEZ","0i",0,3,NA,NA,NA,NA,NA,NA "OAKLIMETER","Bwl",28,51,NA,NA,NA,"10YR","5","4" "PETAL","Btl",20,43,NA,NA,NA,"5YR","5","8" "VICKSBURG","Cl",18,71,NA,NA,NA,"10YR","4","3" diff --git a/inst/extdata/OSD-error-reporting/state/MS-series.csv b/inst/extdata/OSD-error-reporting/state/MS-series.csv index b19a42f1b0..1ab70b4381 100644 --- a/inst/extdata/OSD-error-reporting/state/MS-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MS-series.csv @@ -2,7 +2,6 @@ "MCLAURIN",564282,FALSE,1997,FALSE,TRUE "BENNDALE",408250,FALSE,2012,FALSE,TRUE "OAKLIMETER",364788,FALSE,2005,FALSE,TRUE -"NATCHEZ",227417,FALSE,1998,FALSE,TRUE "VICKSBURG",103571,FALSE,2002,FALSE,TRUE "PETAL",74698,FALSE,2003,FALSE,TRUE "GRIFFITH",39628,FALSE,2004,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/MT-hz.csv b/inst/extdata/OSD-error-reporting/state/MT-hz.csv index 2a5871b163..cc092980af 100644 --- a/inst/extdata/OSD-error-reporting/state/MT-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/MT-hz.csv @@ -1,44 +1,16 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"AUGGIE","0i",0,5,NA,NA,NA,NA,NA,NA -"BEESKOVE","0",0,5,NA,NA,NA,NA,NA,NA -"BUCKHOUSE","0i",0,8,NA,NA,NA,NA,NA,NA +"ASHBRAY","Oi",1,0,NA,NA,NA,NA,NA,NA +"BELLTOWER","Oi",5,0,NA,NA,NA,NA,NA,NA +"BROADUS","Oi",3,0,NA,NA,NA,NA,NA,NA "CARGILL","C2ca",89,76,"2.5Y","7","4",NA,NA,NA -"CHICKAMAN","0i",0,5,NA,NA,NA,NA,NA,NA -"COEROCK","0i",0,3,NA,NA,NA,NA,NA,NA -"COLDCREEK","0i",0,3,NA,NA,NA,NA,NA,NA -"DREXEL","0i",0,3,NA,NA,NA,NA,NA,NA -"DRYADINE","0i",0,1,NA,NA,NA,NA,NA,NA -"DRYADINE","0e",1,4,NA,NA,NA,NA,NA,NA -"ELKNER","0i",0,5,NA,NA,NA,NA,NA,NA -"HAGSTADT","0i",0,3,NA,NA,NA,NA,NA,NA -"HAUGAN","0i",0,1,NA,NA,NA,NA,NA,NA "HESPER","Clca",41,51,"2.5Y","5","3","2.5Y","4","2" -"JIMLAKE","0i",0,5,NA,NA,NA,NA,NA,NA -"LANTERN","0i",0,5,NA,NA,NA,NA,NA,NA -"LOLOPEAK","0i",0,8,NA,NA,NA,NA,NA,NA -"LOWERCREEK","01 and 02",3,8,NA,NA,NA,NA,NA,NA -"MACMEAL","0i2",3,5,NA,NA,NA,NA,NA,NA -"MACMEAL","0i1",5,18,NA,NA,NA,NA,NA,NA -"MCCAFFERY","0i",0,3,NA,NA,NA,NA,NA,NA -"MOHAGGIN","0i",0,5,NA,NA,NA,NA,NA,NA -"MOHAGGIN","0e",5,13,NA,NA,NA,NA,NA,NA -"ORAID","0i",0,3,NA,NA,NA,NA,NA,NA -"PETTY","0i",0,8,NA,NA,NA,NA,NA,NA -"PHILLCHER","0i",0,5,NA,NA,NA,NA,NA,NA +"LAMEDEER","Oi",5,0,NA,NA,NA,NA,NA,NA +"LOWERCREEK","O1 and O2",3,0,NA,NA,NA,NA,NA,NA +"MACMEAL","Oi1",5,3,NA,NA,NA,NA,NA,NA +"MOWBRAY","Oi",5,0,NA,NA,NA,NA,NA,NA "PINEBREAKS","Oi",5,0,NA,NA,NA,NA,NA,NA -"QUIETUS","0e",0,5,NA,NA,NA,NA,NA,NA -"REPPART","0i",0,3,NA,NA,NA,NA,NA,NA -"RYORP","0e",0,5,NA,NA,NA,NA,NA,NA -"SELWAY","0i",3,8,NA,NA,NA,NA,NA,NA -"SHARROTT","0i",0,5,NA,NA,NA,NA,NA,NA -"SHOOFLIN","0i",0,5,NA,NA,NA,NA,NA,NA -"SWIFTON","0i",0,3,NA,NA,NA,NA,NA,NA -"TAMELY","0i",0,3,NA,NA,NA,NA,NA,NA -"TARKIO","0i",0,5,NA,NA,NA,NA,NA,NA -"TRUEFISSURE","0i",0,3,NA,NA,NA,NA,NA,NA -"TRUEFISSURE","0a",3,8,NA,NA,NA,NA,NA,NA -"UPSATA","0i",0,5,NA,NA,NA,NA,NA,NA -"WALDBILLIG","0i",0,5,NA,NA,NA,NA,NA,NA -"WESSEL","01 and 02",5,0,NA,NA,NA,NA,NA,NA -"WISHARD","0i",0,1,NA,NA,NA,NA,NA,NA +"REDFERN","Oi",1,0,NA,NA,NA,NA,NA,NA +"RIDGE","Oi",1,0,NA,NA,NA,NA,NA,NA +"TRAPPER","O",1,11,"lOYR","3","1",NA,NA,NA +"WESSEL","O1 and O2",5,0,NA,NA,NA,NA,NA,NA "WOODSIDE","Ao",3,0,NA,NA,NA,"10YR","3","1" diff --git a/inst/extdata/OSD-error-reporting/state/MT-series.csv b/inst/extdata/OSD-error-reporting/state/MT-series.csv index 918973e016..1fd6bd1e5e 100644 --- a/inst/extdata/OSD-error-reporting/state/MT-series.csv +++ b/inst/extdata/OSD-error-reporting/state/MT-series.csv @@ -1,44 +1,16 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"PHILLCHER",237831,FALSE,2008,FALSE,TRUE -"WALDBILLIG",209642,FALSE,2008,FALSE,TRUE "HESPER",112053,FALSE,1998,FALSE,TRUE -"PETTY",99463,FALSE,2008,FALSE,TRUE "LAMEDEER",77017,FALSE,1998,TRUE,FALSE -"DRYADINE",70786,FALSE,2008,FALSE,TRUE -"BEESKOVE",66770,FALSE,2004,FALSE,TRUE -"MOHAGGIN",62654,FALSE,2005,FALSE,TRUE -"SHARROTT",60922,FALSE,2008,FALSE,TRUE -"ELKNER",55265,FALSE,2008,FALSE,TRUE -"MACMEAL",46940,FALSE,1997,TRUE,TRUE -"UPSATA",45466,FALSE,2008,FALSE,TRUE -"QUIETUS",26430,FALSE,2005,FALSE,TRUE -"JIMLAKE",25740,FALSE,2008,FALSE,TRUE +"MACMEAL",46940,FALSE,1997,TRUE,FALSE +"RIDGE",34858,FALSE,1998,TRUE,FALSE "BROADUS",25561,FALSE,1998,TRUE,FALSE -"COEROCK",21863,FALSE,2004,FALSE,TRUE -"SHINEBERGER",19730,FALSE,2012,TRUE,FALSE -"LOLOPEAK",19087,FALSE,2008,FALSE,TRUE -"SWIFTON",18552,FALSE,2005,FALSE,TRUE +"TRAPPER",17652,FALSE,2005,FALSE,TRUE "PINEBREAKS",14828,FALSE,1999,TRUE,FALSE -"HAUGAN",12725,FALSE,2004,FALSE,TRUE -"ORAID",10513,FALSE,2014,FALSE,TRUE -"COLDCREEK",9816,FALSE,2004,FALSE,TRUE -"AUGGIE",8804,FALSE,1999,FALSE,TRUE -"RYORP",7832,FALSE,2008,FALSE,TRUE -"LANTERN",7553,FALSE,2005,FALSE,TRUE -"SELWAY",7474,FALSE,2005,FALSE,TRUE +"MOWBRAY",14549,FALSE,1998,TRUE,FALSE +"REDFERN",12966,FALSE,2005,TRUE,FALSE +"ASHBRAY",12130,FALSE,2004,TRUE,FALSE "BELLTOWER",6802,FALSE,1998,TRUE,FALSE -"SHOOFLIN",6655,FALSE,2002,FALSE,TRUE -"CHICKAMAN",5648,FALSE,2004,FALSE,TRUE -"MCCAFFERY",5328,FALSE,2001,FALSE,TRUE "CARGILL",5105,FALSE,1998,TRUE,FALSE -"REPPART",2116,FALSE,2008,FALSE,TRUE -"TARKIO",1877,FALSE,2002,FALSE,TRUE -"HAGSTADT",1688,FALSE,2002,FALSE,TRUE -"TAMELY",1064,FALSE,2008,FALSE,TRUE -"WISHARD",725,FALSE,2005,FALSE,TRUE -"DREXEL",273,FALSE,2004,FALSE,TRUE "WOODSIDE",NA,FALSE,2013,TRUE,FALSE -"WESSEL",NA,FALSE,2002,TRUE,TRUE -"TRUEFISSURE",NA,FALSE,2005,FALSE,TRUE -"LOWERCREEK",NA,FALSE,2002,TRUE,TRUE -"BUCKHOUSE",NA,FALSE,2004,FALSE,TRUE +"WESSEL",NA,FALSE,2002,TRUE,FALSE +"LOWERCREEK",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/NC-hz.csv b/inst/extdata/OSD-error-reporting/state/NC-hz.csv index d612af55ee..9bf85aafa5 100644 --- a/inst/extdata/OSD-error-reporting/state/NC-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/NC-hz.csv @@ -4,7 +4,5 @@ "NEWHAN","A",0,5,NA,NA,NA,"l0YR","5","2" "NEWHAN","C1",5,127,NA,NA,NA,"l0YR","7","2" "NEWHAN","C2",127,183,NA,NA,NA,"l0YR","7","2" -"SOCO","0i",0,5,NA,NA,NA,NA,NA,NA -"STECOAH","0i",0,3,NA,NA,NA,NA,NA,NA "WANDO","Cl",20,89,NA,NA,NA,"7.5YR","5","8" "WEEKSVILLE","Cgl",114,152,NA,NA,NA,"10YR","6","1" diff --git a/inst/extdata/OSD-error-reporting/state/NC-series.csv b/inst/extdata/OSD-error-reporting/state/NC-series.csv index 8584b65aba..ebedee24eb 100644 --- a/inst/extdata/OSD-error-reporting/state/NC-series.csv +++ b/inst/extdata/OSD-error-reporting/state/NC-series.csv @@ -1,8 +1,6 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "BELHAVEN",213210,FALSE,2002,FALSE,TRUE -"SOCO",189881,FALSE,2001,FALSE,TRUE "GRITNEY",129163,FALSE,1997,FALSE,TRUE -"STECOAH",95927,FALSE,2001,FALSE,TRUE "NEWHAN",51040,FALSE,2003,FALSE,TRUE "WANDO",21363,FALSE,2002,FALSE,TRUE "WEEKSVILLE",16893,FALSE,2006,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/ND-hz.csv b/inst/extdata/OSD-error-reporting/state/ND-hz.csv index 84df159e4f..702d5f5d3d 100644 --- a/inst/extdata/OSD-error-reporting/state/ND-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/ND-hz.csv @@ -1,7 +1,6 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"ARIKARA","0i",0,3,NA,NA,NA,NA,NA,NA -"BOTTINEAU","0i",0,5,NA,NA,NA,NA,NA,NA -"METIGOSHE","0i",5,13,NA,NA,NA,"10YR","2","1" +"KELVIN","Oi",5,0,NA,NA,NA,"10YR","2","1" +"METIGOSHE","Oi",5,0,NA,NA,NA,"10YR","2","1" "OLGA","Oi",3,0,NA,NA,NA,NA,NA,NA -"ROLETTE","0e",5,0,NA,NA,NA,"10YR","2","2" -"ROLLA","0i",0,5,NA,NA,NA,"10YR","2","1" +"ROLETTE","Oe",5,0,NA,NA,NA,"10YR","2","2" +"WAMDUSKA","Oe",5,0,NA,NA,NA,"10YR","2","1" diff --git a/inst/extdata/OSD-error-reporting/state/ND-series.csv b/inst/extdata/OSD-error-reporting/state/ND-series.csv index 9c46f01929..bf72bf5c19 100644 --- a/inst/extdata/OSD-error-reporting/state/ND-series.csv +++ b/inst/extdata/OSD-error-reporting/state/ND-series.csv @@ -1,9 +1,6 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"ARIKARA",156122,FALSE,1998,FALSE,TRUE "KELVIN",108316,FALSE,2005,TRUE,FALSE -"BOTTINEAU",66115,FALSE,1999,FALSE,TRUE -"ROLLA",27467,FALSE,1998,FALSE,TRUE "OLGA",21279,FALSE,1998,TRUE,FALSE "WAMDUSKA",16223,FALSE,1997,TRUE,FALSE -"ROLETTE",9644,FALSE,1998,TRUE,TRUE -"METIGOSHE",6787,FALSE,1998,TRUE,TRUE +"ROLETTE",9644,FALSE,1998,TRUE,FALSE +"METIGOSHE",6787,FALSE,1998,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/NM-hz.csv b/inst/extdata/OSD-error-reporting/state/NM-hz.csv index 9d198fae55..e89c69ec19 100644 --- a/inst/extdata/OSD-error-reporting/state/NM-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/NM-hz.csv @@ -1,53 +1,41 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "ANDERGEORGE","Bkyl",56,107,"10YR","8","2","10YR","7","3" -"ANGOSTURA","0i",0,5,NA,NA,NA,NA,NA,NA "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" +"ASPARAS","B2lt",18,33,"l0YR","4","3","10YR","3","3" "CEBOLLETA","Oi",3,0,NA,NA,NA,NA,NA,NA "CHAMBERINO","Al",0,3,"10YR","6","3","10YR","4","3" -"CREST","0i",0,3,NA,NA,NA,NA,NA,NA -"CREST","0e",3,10,NA,NA,NA,NA,NA,NA "CUNDIYO","El",0,15,"l0YR","6","3","l0YR","4","2" -"CUNDIYO","E2",15,86,"l0YR","6","3","l0YR","4","2" +"CUNDIYO","Oi",3,0,NA,NA,NA,NA,NA,NA +"CUNDIYO","E2",15,36,"l0YR","6","3","l0YR","4","2" +"CUNDIYO","Btl",36,86,"l0YR","7","3","l0YR","4","3" "CUNDIYO","Bt2",86,117,"l0YR","6","4","l0YR","5","4" "CUNDIYO","C",117,152,"l0YR","6","4","l0YR","5","4" -"CUNDIYO","Oi",NA,0,NA,NA,NA,NA,NA,NA -"CUNDIYO","Btl",NA,86,"l0YR","7","3","l0YR","4","3" +"LAVENTANA","Oi",1,0,NA,NA,NA,NA,NA,NA "MARA","Bw2",25,46,"l0YR","5","3","l0YR","4","3" "MARA","Bk1",46,76,"l0YR","6","3","l0YR","4","3" "MARA","Bk2",76,152,"l0YR","6","3","l0YR","5","3" -"MIRABAL","0e",0,3,NA,NA,NA,NA,NA,NA -"ORDNANCE","02",3,5,NA,NA,NA,NA,NA,NA +"ORDNANCE","O2",3,0,NA,NA,NA,NA,NA,NA "OSORIDGE","Btl",5,15,"2.5YR","4","4","2.5YR","3","4" "PIRODEL","Al",0,5,"7.5YR","6","4","7.5YR","4","4" -"PIRODEL","Bkl",23,74,"7.5YR","5","4","7.5YR","4","4" -"PIRODEL","Bk2",NA,74,"7.5YR","5","4","7.5YR","4","4" +"PIRODEL","Bkl",23,46,"7.5YR","5","4","7.5YR","4","4" "POLICH","Bkl",58,102,"7.5YR","4","3","7.5YR","3","3" "POLICH","2BCkl",122,147,"5YR","5","4","5YR","3","4" "PUICE","Al",0,5,"7.5YR","5","4","7.5YR","3","4" -"PUICE","Bkl",15,58,"10YR","8","2","l0YR","7","3" +"PUICE","Bkl",15,33,"10YR","8","2","l0YR","7","3" +"PUICE","Bk2",33,58,"l0YR","7","2","l0YR","6","3" "PUICE","Bk3",58,71,"l0YR","7","3","l0YR","5","3" -"PUICE","R",71,NA,NA,NA,NA,NA,NA,NA -"PUICE","Bk2",NA,58,"l0YR","7","2","l0YR","6","3" "RANSECT","A",0,8,"l0YR","6","4","l0YR","4","4" -"RANSECT","Bkl",8,61,"l0YR","5","3","l0YR","3","3" +"RANSECT","Bkl",8,41,"l0YR","5","3","l0YR","3","3" +"RANSECT","Bk2",41,61,"l0YR","5","3","l0YR","4","3" "RANSECT","Bk3",61,97,"l0YR","6","4","l0YR","5","4" -"RANSECT","2R",97,NA,NA,NA,NA,NA,NA,NA -"RANSECT","Bk2",NA,61,"l0YR","5","3","l0YR","4","3" "RATON","Al",0,13,"10YR","3","2","10YR","2","2" "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 -"RAYOHILL","By2",NA,64,"7.5YR","8","4","7.5YR","6","4" -"SANCHEZ","0i",0,5,NA,NA,NA,NA,NA,NA +"RAYOHILL","Byl",3,33,"N","8","0","7.5YR","7","4" "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" "SAPELLO","Bw2",40,93,"1OYR","5","2","1OYR","3","2" "SAPELLO","Bk",93,152,"1OYR","4","2","1OYR","2","2" -"SUPERVISOR","0i",0,5,NA,NA,NA,NA,NA,NA -"TAMPICO","0i",0,3,NA,NA,NA,NA,NA,NA -"THURLONI","02",3,5,NA,NA,NA,NA,NA,NA +"THURLONI","O2",3,0,NA,NA,NA,NA,NA,NA "YANKEE","Al",0,10,"10YR","4","2","10YR","3","2" diff --git a/inst/extdata/OSD-error-reporting/state/NM-series.csv b/inst/extdata/OSD-error-reporting/state/NM-series.csv index a8fed604af..e3892a8287 100644 --- a/inst/extdata/OSD-error-reporting/state/NM-series.csv +++ b/inst/extdata/OSD-error-reporting/state/NM-series.csv @@ -1,26 +1,20 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"ANGOSTURA",289383,TRUE,1999,FALSE,TRUE "RATON",121996,FALSE,2007,FALSE,TRUE -"MIRABAL",82472,FALSE,2012,FALSE,TRUE -"SUPERVISOR",79838,FALSE,2007,FALSE,TRUE -"ASPARAS",73872,FALSE,2006,TRUE,TRUE +"ASPARAS",73872,FALSE,2006,FALSE,TRUE "CHAMBERINO",72998,FALSE,2000,FALSE,TRUE -"TAMPICO",58481,FALSE,1999,FALSE,TRUE -"PIRODEL",40501,FALSE,2006,TRUE,TRUE -"SANCHEZ",27977,FALSE,2012,FALSE,TRUE +"PIRODEL",40501,FALSE,2006,FALSE,TRUE +"LAVENTANA",31178,FALSE,1999,TRUE,FALSE "CEBOLLETA",26654,FALSE,2000,TRUE,FALSE "SAPELLO",26067,FALSE,2022,FALSE,TRUE -"PUICE",25947,FALSE,2006,TRUE,TRUE +"PUICE",25947,FALSE,2006,FALSE,TRUE "YANKEE",24933,FALSE,1999,FALSE,TRUE "ANDERGEORGE",14119,FALSE,2006,FALSE,TRUE "MARA",12255,FALSE,1999,FALSE,TRUE "CUNDIYO",11140,FALSE,1999,TRUE,TRUE -"CREST",10913,FALSE,2006,FALSE,TRUE -"RAYOHILL",9521,FALSE,2000,TRUE,TRUE -"TORNERO",5035,FALSE,2016,TRUE,FALSE -"RANSECT",4087,FALSE,2003,TRUE,TRUE +"RAYOHILL",9521,FALSE,2000,FALSE,TRUE +"RANSECT",4087,FALSE,2003,FALSE,TRUE "OSORIDGE",2906,FALSE,2007,FALSE,TRUE "POLICH",725,FALSE,2007,FALSE,TRUE -"THURLONI",NA,FALSE,2007,TRUE,TRUE +"THURLONI",NA,FALSE,2007,TRUE,FALSE "RATONWEST",NA,FALSE,2012,TRUE,FALSE -"ORDNANCE",NA,FALSE,2007,TRUE,TRUE +"ORDNANCE",NA,FALSE,2007,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/NV-hz.csv b/inst/extdata/OSD-error-reporting/state/NV-hz.csv index 8a8788b11a..8923705bca 100644 --- a/inst/extdata/OSD-error-reporting/state/NV-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/NV-hz.csv @@ -1,21 +1,16 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"BOOMTOWN","01",0,3,NA,NA,NA,NA,NA,NA -"BOOMTOWN","02",3,10,NA,NA,NA,NA,NA,NA "JANEFALLS","Oi",5,0,NA,NA,NA,NA,NA,NA "LAS VEGAS","Al",0,3,"10YR","7","3","10YR","5","4" "MCVEGAS","Al",0,5,"10YR","6","2","10YR","4","2" "PARADISE","Al",0,15,"10YR","2","2",NA,NA,NA -"PARADISE","Bg",NA,97,"10YR","6","2",NA,NA,NA "PITTMAN","Cl",5,15,"7.5YR","6","4","7.5YR","4","4" +"PITTMAN","Ckl",48,58,"7.5YR","6","4","7.5YR","4","4" "PITTMAN","Ckml",58,81,"7.5YR","8","2","7.5YR","5","4" -"PITTMAN","Ck3",127,NA,"7.5YR","6","4","7.5YR","4","4" -"PITTMAN","Ckl",NA,58,"7.5YR","6","4","7.5YR","4","4" "RODAD","Bt1",20,18,"10YR","6","3","10YR","4","3" "SKYHAVEN","Bkyl",20,71,"7.5YR","8","2","7.5YR","8","4" +"TULERT","Al2",3,8,"7.5YR","6","6","7.5YR","4","4" "TULERT","Bll",8,20,"7.5YR","6","6",NA,NA,NA -"TULERT","Bl2",20,51,"7.5YR","5","4","7.5YR","4","4" +"TULERT","Bl2",20,38,"7.5YR","5","4","7.5YR","4","4" +"TULERT","IIB2ltcab",38,51,"7.5YR","5","6","7.5YR","4","4" "TULERT","IIClsicamb",97,107,"l0YR","8","2","l0YR","7","2" "TULERT","IIIC2b",107,140,"l0YR","6","2","l0YR","5","3" -"TULERT","Al2",NA,8,"7.5YR","6","6","7.5YR","4","4" -"TULERT","IIB2ltcab",NA,51,"7.5YR","5","6","7.5YR","4","4" -"TULERT","IIB3cab",NA,97,"7.5YR","7","2","7.5YR","5","4" diff --git a/inst/extdata/OSD-error-reporting/state/NV-series.csv b/inst/extdata/OSD-error-reporting/state/NV-series.csv index 8af1440768..85ecf302f9 100644 --- a/inst/extdata/OSD-error-reporting/state/NV-series.csv +++ b/inst/extdata/OSD-error-reporting/state/NV-series.csv @@ -1,20 +1,10 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "RODAD",39928,FALSE,2003,TRUE,FALSE "LAS VEGAS",33473,FALSE,2008,FALSE,TRUE -"NITPAC",19236,FALSE,2007,TRUE,FALSE -"UNGENE",11411,FALSE,2004,TRUE,FALSE -"BOOMTOWN",11039,FALSE,2004,FALSE,TRUE -"LUAP",10174,FALSE,2003,TRUE,FALSE "MCVEGAS",9187,FALSE,2001,FALSE,TRUE -"SHANTOWN",9086,FALSE,2006,TRUE,FALSE -"PAHRANAGAT",7769,FALSE,2008,TRUE,FALSE -"ARVA",7126,FALSE,1997,TRUE,FALSE "SKYHAVEN",4834,FALSE,1997,FALSE,TRUE -"NODUR",2143,FALSE,1997,TRUE,FALSE -"PITTMAN",1897,FALSE,1997,TRUE,TRUE -"PARADISE",1321,FALSE,1997,TRUE,TRUE -"CABLAB",766,FALSE,2017,TRUE,FALSE +"PITTMAN",1897,FALSE,1997,FALSE,TRUE +"PARADISE",1321,FALSE,1997,FALSE,TRUE "TULERT",NA,FALSE,2006,TRUE,TRUE -"STOPATOE",NA,FALSE,2001,TRUE,FALSE "SAWABE",NA,FALSE,1997,TRUE,FALSE "JANEFALLS",NA,FALSE,2005,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/NY-hz.csv b/inst/extdata/OSD-error-reporting/state/NY-hz.csv index 6bb28bda1d..1c4dc2b933 100644 --- a/inst/extdata/OSD-error-reporting/state/NY-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/NY-hz.csv @@ -1,15 +1,8 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "ALTON","2Cl",104,160,NA,NA,NA,"7.5YR","4","2" -"BERGEN","0p",0,25,NA,NA,NA,"10YR","2","1" -"BERGEN","0a",25,36,NA,NA,NA,"10YR","3","2" "CHEEKTOWAGA","2Cl",66,84,NA,NA,NA,"7.5YR","4","2" -"DORVAL","0a2",43,58,NA,NA,NA,"5YR","3","1" "ELKA","Bwl",15,53,NA,NA,NA,"5YR","5","4" "HAIGHTS","Bwl",15,43,NA,NA,NA,"7.5YR","4","4" "HEMPSTEAD","Bwl",38,64,NA,NA,NA,"10YR","5","6" "HOOSIC","Bwl",15,28,NA,NA,NA,"10YR","5","6" "LAGROSS","Bwl",20,36,NA,NA,NA,"7.5YR","4","4" -"MARTISCO","0a1",0,18,NA,NA,NA,"5YR","2","1" -"MARTISCO","0a2",18,33,NA,NA,NA,"5YR","2","1" -"PAVILION","0p",0,23,NA,NA,NA,"10YR","2","1" -"PAVILION","0a1",23,33,NA,NA,NA,"10YR","3","2" diff --git a/inst/extdata/OSD-error-reporting/state/NY-series.csv b/inst/extdata/OSD-error-reporting/state/NY-series.csv index 8b0efbe925..97b73df18b 100644 --- a/inst/extdata/OSD-error-reporting/state/NY-series.csv +++ b/inst/extdata/OSD-error-reporting/state/NY-series.csv @@ -2,12 +2,11 @@ "HOOSIC",141898,TRUE,2000,FALSE,TRUE "ALTON",117483,FALSE,2011,FALSE,TRUE "ELKA",69925,FALSE,1999,FALSE,TRUE -"DORVAL",28874,FALSE,2004,FALSE,TRUE -"MARTISCO",21932,FALSE,2021,FALSE,TRUE "WILPOINT",18386,FALSE,1988,TRUE,FALSE +"MAPLECREST",13659,FALSE,1998,TRUE,FALSE "CHEEKTOWAGA",9044,FALSE,2011,FALSE,TRUE "HAIGHTS",6565,FALSE,2000,FALSE,TRUE "HEMPSTEAD",6195,FALSE,2000,FALSE,TRUE -"BERGEN",3992,FALSE,2004,FALSE,TRUE "LAGROSS",3896,FALSE,2000,FALSE,TRUE -"PAVILION",867,FALSE,2004,FALSE,TRUE +"RIGA",3588,FALSE,1988,TRUE,FALSE +"PAVILION",867,FALSE,2004,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/OK-hz.csv b/inst/extdata/OSD-error-reporting/state/OK-hz.csv index c5c2c699bf..0bff717d07 100644 --- a/inst/extdata/OSD-error-reporting/state/OK-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/OK-hz.csv @@ -9,6 +9,5 @@ "NALDO","Bt2",102,145,NA,NA,NA,"1OYR","6","4" "NALDO","Bt3",145,183,NA,NA,NA,"1OYR","6","1" "ROARK","Btkl",61,86,"7.5YR","5","3","7.5YR","4","3" -"TOMAST","0",NA,0,NA,NA,NA,NA,NA,NA "WESTILL","Btl",13,38,"5YR","4","2","5YR","3","2" "WESTILL","Btkssl",61,102,"5YR","4","4","5YR","3","4" diff --git a/inst/extdata/OSD-error-reporting/state/OK-series.csv b/inst/extdata/OSD-error-reporting/state/OK-series.csv index 79b83b9fa9..8a2af6a9ab 100644 --- a/inst/extdata/OSD-error-reporting/state/OK-series.csv +++ b/inst/extdata/OSD-error-reporting/state/OK-series.csv @@ -3,11 +3,8 @@ "BIGFORK",81882,FALSE,2001,TRUE,FALSE "DERBY",66809,FALSE,2000,FALSE,TRUE "ROARK",53255,FALSE,2000,FALSE,TRUE -"LELA",37303,FALSE,2016,TRUE,FALSE "NALDO",18514,FALSE,2003,FALSE,TRUE -"TAMFORD",15291,FALSE,1997,TRUE,FALSE "ARNETT",14700,FALSE,2000,FALSE,TRUE -"TOMAST",9345,FALSE,2003,TRUE,TRUE +"TOMAST",9345,FALSE,2003,TRUE,FALSE "DECOBB",5874,FALSE,2000,FALSE,TRUE "BOCOX",5613,FALSE,2000,FALSE,TRUE -"DOOLIN",4995,FALSE,1997,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/OR-hz.csv b/inst/extdata/OSD-error-reporting/state/OR-hz.csv index ce3faa61d6..e444ffc492 100644 --- a/inst/extdata/OSD-error-reporting/state/OR-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/OR-hz.csv @@ -1,77 +1,192 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"ALTHOUSE","0i",3,8,NA,NA,NA,NA,NA,NA +"ABEGG","O",4,0,NA,NA,NA,NA,NA,NA +"ABSAQUIL","Oi",4,0,NA,NA,NA,NA,NA,NA +"ACKER","Oi",10,0,NA,NA,NA,NA,NA,NA +"ALCOT","Oi",5,0,NA,NA,NA,NA,NA,NA +"ALTHOUSE","Oi",3,0,NA,NA,NA,NA,NA,NA +"ANUNDE","Oi",5,0,NA,NA,NA,NA,NA,NA +"ATRING","Oi",5,0,NA,NA,NA,NA,NA,NA +"BACONA","O",5,0,NA,NA,NA,NA,NA,NA +"BALD","O1",1,0,NA,NA,NA,NA,NA,NA +"BARHISKEY","O",3,0,NA,NA,NA,NA,NA,NA +"BARLOW","O2",13,0,NA,NA,NA,"10YR","3","1" "BARLOW","O1",15,13,NA,NA,NA,NA,NA,NA -"BATEMAN","0i",3,18,NA,NA,NA,NA,NA,NA +"BATEMAN","Oi",3,0,NA,NA,NA,NA,NA,NA +"BEAL","Oi",1,0,NA,NA,NA,NA,NA,NA "BENSLEY","Al",3,15,"l0YR","5","2","l0YR","2","2" "BENSLEY","A2",15,30,"l0YR","6","2","l0YR","3","2" "BENSLEY","Bwl",30,58,"l0YR","6","2","l0YR","4","3" "BENSLEY","Bw2",58,79,"l0YR","6","2","l0YR","4","3" "BENSLEY","Bw3",79,114,"l0YR","6","2","l0YR","4","2" "BENSLEY","BC",114,160,"l0YR","6","3","l0YR","4","3" -"BENTILLA","0i",5,8,NA,NA,NA,NA,NA,NA -"BERGSVIK","0e3",43,86,NA,NA,NA,"10YR","3","2" -"BERGSVIK","2C2",114,51,"2.5Y","5","2","2.5Y","3","2" -"BIGELOW","01",3,13,NA,NA,NA,NA,NA,NA +"BENTILLA","Oi",5,0,NA,NA,NA,NA,NA,NA +"BIGELOW","O1",3,0,NA,NA,NA,NA,NA,NA +"BLACKLOCK","Oi",3,0,NA,NA,NA,NA,NA,NA "BLALOCK","IIClsicam",46,66,"10YR","8","1","10YR","6","2" -"BOOTEN","0i",3,15,NA,NA,NA,NA,NA,NA +"BOARDFLOWER","Oi",5,0,NA,NA,NA,NA,NA,NA +"BOOTEN","Oi",3,0,NA,NA,NA,NA,NA,NA "BORAVALL","Bkg",109,102,"5Y","7","1","5GY","5","1" -"BULLGULCH","0i",0,5,NA,NA,NA,NA,NA,NA -"CRIMS","20e1",23,51,"10YR","3","1","10YR","2","1" -"CRIMS","20e2",51,102,"10YR","3","1","2.5Y","3","2" -"CROQUIB","0",5,5,NA,NA,NA,NA,NA,NA -"CRUTCH","0i",0,3,NA,NA,NA,NA,NA,NA -"CRUTCH","0e",3,5,NA,NA,NA,NA,NA,NA -"DEATMAN","0",3,13,NA,NA,NA,NA,NA,NA +"BUCKSHOT","Oi",1,0,NA,NA,NA,NA,NA,NA +"BULL RUN","Oi",3,0,NA,NA,NA,NA,NA,NA +"BURNTHILL","Oi",5,0,NA,NA,NA,NA,NA,NA +"BYBEE","O",1,0,NA,NA,NA,NA,NA,NA +"CAMPFOUR","O",3,0,NA,NA,NA,NA,NA,NA +"CARIS","Oi",3,0,NA,NA,NA,NA,NA,NA +"CASHNER","Oi",3,0,NA,NA,NA,NA,NA,NA +"CEDARGROVE","Oi",3,0,NA,NA,NA,NA,NA,NA +"CHIMNEYROCK","Oi",3,0,NA,NA,NA,NA,NA,NA +"CORNUTT","O1",1,0,NA,NA,NA,NA,NA,NA +"COYATA","O2",3,0,NA,NA,NA,NA,NA,NA +"COYATA","O1",4,3,NA,NA,NA,NA,NA,NA +"CRATER LAKE","Oi",4,0,NA,NA,NA,NA,NA,NA +"CROQUIB","O",5,0,NA,NA,NA,NA,NA,NA +"CRUISER","Oi",3,0,NA,NA,NA,NA,NA,NA +"CUNNIFF","Oi",5,0,NA,NA,NA,NA,NA,NA +"DARBY","Oi",3,0,NA,NA,NA,NA,NA,NA +"DEATMAN","O",3,0,NA,NA,NA,NA,NA,NA +"DESONS","Oi",3,0,NA,NA,NA,NA,NA,NA +"DICECREEK","Oi",1,0,NA,NA,NA,NA,NA,NA +"DINZER","O2",4,0,NA,NA,NA,"10YR","2","1" +"DINZER","O1",9,4,NA,NA,NA,NA,NA,NA +"DOMPIER","Oi",5,0,NA,NA,NA,NA,NA,NA +"DUMONT","Oi2",3,0,NA,NA,NA,NA,NA,NA +"DUMONT","Oi1",5,3,NA,NA,NA,NA,NA,NA "EASTPINE","Oi",3,0,NA,NA,NA,NA,NA,NA -"FERNHAVEN","0i",10,10,NA,NA,NA,NA,NA,NA -"FIVES","01",5,10,NA,NA,NA,NA,NA,NA +"EDSON","Oi",5,0,NA,NA,NA,NA,NA,NA +"EGYPTCREEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"EVICK","Oi",3,0,NA,NA,NA,NA,NA,NA +"FANTZ","Oi",3,0,NA,NA,NA,NA,NA,NA +"FARVA","O",1,0,NA,NA,NA,NA,NA,NA +"FEAGINRANCH","Oi",14,0,NA,NA,NA,NA,NA,NA +"FERGUSON","Oi",3,0,NA,NA,NA,NA,NA,NA +"FERNHAVEN","Oi",10,0,NA,NA,NA,NA,NA,NA +"FIVES","O2",3,0,NA,NA,NA,"10YR","2","2" +"FIVES","O1",5,3,NA,NA,NA,NA,NA,NA +"FLARM","Oi",10,0,NA,NA,NA,NA,NA,NA "FLYCREEK","2Btbl",58,69,"10YR","6","3","10YR","4","3" -"FRANKPORT","0i",0,5,NA,NA,NA,NA,NA,NA -"GRENET","0i",3,10,NA,NA,NA,NA,NA,NA -"HALLIHAN","0i",5,5,NA,NA,NA,NA,NA,NA -"HAZELCAMP","0i",3,13,NA,NA,NA,NA,NA,NA -"HEMCROSS","0i",0,5,NA,NA,NA,NA,NA,NA -"HIGHHORN","0i",0,8,NA,NA,NA,NA,NA,NA -"HUNTROCK","0i",0,3,NA,NA,NA,NA,NA,NA -"JOJO","0i",5,18,NA,NA,NA,NA,NA,NA +"FRAILEY","O1",5,0,NA,NA,NA,NA,NA,NA +"FREEZENER","O",3,0,NA,NA,NA,"10YR","3","1" +"GAP","Oi",10,0,NA,NA,NA,NA,NA,NA +"GEPPERT","O",1,0,NA,NA,NA,NA,NA,NA +"GLAZE","Oi",8,0,NA,NA,NA,NA,NA,NA +"GOODLOW","Oi",3,0,NA,NA,NA,NA,NA,NA +"GOODWIN","O2",3,0,NA,NA,NA,"10YR","2","1" +"GOODWIN","O1",8,3,NA,NA,NA,NA,NA,NA +"GOOLAWAY","O",5,0,NA,NA,NA,NA,NA,NA +"GRAVECREEK","Oi",3,0,NA,NA,NA,NA,NA,NA +"GREENGULCH","Oi",4,0,NA,NA,NA,NA,NA,NA +"GRENET","Oi",3,0,NA,NA,NA,NA,NA,NA +"GUERIN","Oi",3,0,NA,NA,NA,NA,NA,NA +"HALL RANCH","Oi",3,0,NA,NA,NA,NA,NA,NA +"HALLIHAN","Oi",5,0,NA,NA,NA,NA,NA,NA +"HAMMERSLEY","Oi",8,0,NA,NA,NA,NA,NA,NA +"HAZELCAMP","Oi",3,0,NA,NA,NA,NA,NA,NA +"HEHE","Oi",3,0,NA,NA,NA,NA,NA,NA +"HIGHCAMP","Oi",5,0,NA,NA,NA,NA,NA,NA +"HOBIT","Oi",3,0,NA,NA,NA,NA,NA,NA +"HOOSKANADEN","Oi",3,0,NA,NA,NA,NA,NA,NA +"HOUSEFIELD","Oi",8,0,NA,NA,NA,NA,NA,NA +"HOWASH","Oi",5,0,NA,NA,NA,NA,NA,NA +"HUDSPETH","O",3,0,NA,NA,NA,NA,NA,NA +"HUKILL","O",1,0,NA,NA,NA,NA,NA,NA +"JAYAR","Oi",3,0,NA,NA,NA,NA,NA,NA +"JOENEY","Oi",3,0,NA,NA,NA,NA,NA,NA +"JOJO","Oi",5,0,NA,NA,NA,NA,NA,NA +"JUMPOFF","O1",3,0,NA,NA,NA,NA,NA,NA "JUNTURA","All",0,3,"10YR","5","2","10YR","2","2" -"KITTLESON","0i",8,41,NA,NA,NA,NA,NA,NA -"KNAPKE","0i",3,10,NA,NA,NA,NA,NA,NA -"KUCKUP","0i",3,15,NA,NA,NA,NA,NA,NA +"KANID","Oi",3,0,NA,NA,NA,NA,NA,NA +"KILLET","O",5,0,NA,NA,NA,NA,NA,NA +"KITTLESON","Oi",8,0,NA,NA,NA,NA,NA,NA +"KNAPKE","Oi",3,0,NA,NA,NA,NA,NA,NA +"KUCKUP","Oi",3,0,NA,NA,NA,NA,NA,NA +"KUSU","Oi",5,0,NA,NA,NA,NA,NA,NA +"KUTCHER","Oi",5,0,NA,NA,NA,NA,NA,NA "LANGELLAIN","O",1,0,NA,NA,NA,NA,NA,NA -"LASTANCE","0e",3,3,NA,NA,NA,"10YR","2","1" -"LASTANCE","0i",5,5,NA,NA,NA,NA,NA,NA -"MCGINNIS","2Crt",79,NA,NA,NA,NA,NA,NA,NA -"MCGINNIS","0",NA,0,NA,NA,NA,NA,NA,NA -"MCNULL","0",3,5,NA,NA,NA,NA,NA,NA +"LASTANCE","Oe",3,0,NA,NA,NA,"10YR","2","1" +"LASTANCE","Oi",5,3,NA,NA,NA,NA,NA,NA +"LEMPIRA","Oi",1,0,NA,NA,NA,NA,NA,NA +"LETTIA","Oi",1,0,NA,NA,NA,NA,NA,NA +"LITTLEFAWN","Oi",3,0,NA,NA,NA,NA,NA,NA +"MACKATIE","Oi",8,0,NA,NA,NA,NA,NA,NA +"MCGINNIS","O",1,0,NA,NA,NA,NA,NA,NA +"MCNAB","Oi",1,0,NA,NA,NA,NA,NA,NA +"MCNULL","O",3,0,NA,NA,NA,NA,NA,NA "MELHORN","Oi",5,0,NA,NA,NA,NA,NA,NA +"MILLERFLAT","Oi",5,0,NA,NA,NA,NA,NA,NA +"MOOLACK","O2",1,0,NA,NA,NA,NA,NA,NA +"MOOLACK","O1",3,1,NA,NA,NA,NA,NA,NA +"MOWAKO","Oi",3,0,NA,NA,NA,NA,NA,NA +"MULTORPOR","O",1,0,NA,NA,NA,NA,NA,NA +"MUSTY","O",3,0,NA,NA,NA,NA,NA,NA "MUTTON","Oi",3,0,NA,NA,NA,NA,NA,NA -"ODIN","01",3,8,NA,NA,NA,NA,NA,NA -"PEAHKE","0i",3,10,NA,NA,NA,NA,NA,NA -"PERDIN","0i",5,18,NA,NA,NA,NA,NA,NA -"PERVINA","01",3,10,NA,NA,NA,NA,NA,NA +"NORLING","Oi",5,0,NA,NA,NA,NA,NA,NA +"ODIN","O1",3,0,NA,NA,NA,NA,NA,NA +"OFFENBACHER","O",3,0,NA,NA,NA,NA,NA,NA +"OLYIC","O1",1,0,NA,NA,NA,NA,NA,NA +"PARAGON","O",3,0,NA,NA,NA,NA,NA,NA +"PEAHKE","Oi",3,0,NA,NA,NA,NA,NA,NA +"PERDIN","Oi",5,0,NA,NA,NA,NA,NA,NA +"PERVINA","O1",3,0,NA,NA,NA,NA,NA,NA "PERVINA","Cl",140,152,"7.5YR","5","8","5YR","5","8" -"PINHEAD","0i",0,5,NA,NA,NA,NA,NA,NA -"PRONG","0i",0,3,NA,NA,NA,NA,NA,NA +"PINEHURST","Oi",3,0,NA,NA,NA,NA,NA,NA +"PIPP","Oi",3,0,NA,NA,NA,NA,NA,NA +"PIUMPSHA","Oi",5,0,NA,NA,NA,NA,NA,NA +"POLLARD","Oi",5,0,NA,NA,NA,NA,NA,NA "PROVIG","O",3,0,NA,NA,NA,NA,NA,NA -"RINEARSON","0",3,8,NA,NA,NA,NA,NA,NA -"SCALEROCK","0i",3,10,NA,NA,NA,NA,NA,NA -"SERPENTANO","0i",8,13,NA,NA,NA,NA,NA,NA -"SKOOKUMHOUSE","0i",3,28,NA,NA,NA,NA,NA,NA -"SKYMOR","0i",3,13,NA,NA,NA,NA,NA,NA -"STICES","0i",0,3,NA,NA,NA,NA,NA,NA +"REDFLAT","Oi",3,0,NA,NA,NA,NA,NA,NA +"REINECKE","Oi",5,0,NA,NA,NA,NA,NA,NA +"RINEARSON","O",3,0,NA,NA,NA,NA,NA,NA +"ROGGER","Oi",5,0,NA,NA,NA,NA,NA,NA +"RUCH","Oi",2,0,NA,NA,NA,NA,NA,NA +"RUSTLERPEAK","O",3,0,NA,NA,NA,NA,NA,NA +"RUSTYBUTTE","Oi",3,0,NA,NA,NA,NA,NA,NA +"SACH","Oi",3,0,NA,NA,NA,NA,NA,NA +"SADDLEPEAK","Oi",3,0,NA,NA,NA,NA,NA,NA +"SAG","Oi",3,0,NA,NA,NA,NA,NA,NA +"SCALEROCK","Oi",3,0,NA,NA,NA,NA,NA,NA +"SERPENTANO","Oi",8,0,NA,NA,NA,NA,NA,NA +"SHARPSHOOTER","Oi",3,0,NA,NA,NA,NA,NA,NA +"SHASTACOSTA","Oi",1,0,NA,NA,NA,NA,NA,NA +"SHERVAL","Oi",3,0,NA,NA,NA,NA,NA,NA +"SIMNASHO","Oi",3,0,NA,NA,NA,NA,NA,NA +"SITKUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"SKOOKER","Oi",5,0,NA,NA,NA,NA,NA,NA +"SKOOKUMHOUSE","Oi",3,0,NA,NA,NA,NA,NA,NA +"SKYMOR","Oi",3,0,NA,NA,NA,NA,NA,NA +"SNOWBRIER","O",3,0,NA,NA,NA,NA,NA,NA +"SPEAKER","O",2,0,NA,NA,NA,NA,NA,NA +"SPILYAY","Oi",3,0,NA,NA,NA,NA,NA,NA +"STEINMETZ","Oi",3,0,NA,NA,NA,NA,NA,NA +"STRAIGHT","O2",3,0,NA,NA,NA,NA,NA,NA "STRAIGHT","O1",5,3,NA,NA,NA,NA,NA,NA -"TEEWEE","0i",0,5,NA,NA,NA,NA,NA,NA +"SWEETBRIAR","Oi",1,0,NA,NA,NA,NA,NA,NA +"TABLEROCK","O",4,0,NA,NA,NA,NA,NA,NA +"TALLOWBOX","O",3,0,NA,NA,NA,NA,NA,NA +"TATOUCHE","O",5,0,NA,NA,NA,NA,NA,NA "TELEMON","Oi",3,0,NA,NA,NA,NA,NA,NA -"THREETREES","0i",3,18,NA,NA,NA,NA,NA,NA -"TISHAR","0i",3,15,NA,NA,NA,NA,NA,NA -"UMATILLA","0i",0,5,NA,NA,NA,NA,NA,NA -"VERNONIA","0",3,10,NA,NA,NA,NA,NA,NA -"VOORHIES","0",3,8,NA,NA,NA,NA,NA,NA +"TERRABELLA","O",3,0,NA,NA,NA,NA,NA,NA +"TETHRICK","Oi",1,0,NA,NA,NA,NA,NA,NA +"THISTLEBURN","Oi",1,0,NA,NA,NA,NA,NA,NA +"THREEFORKS","Oi",3,0,NA,NA,NA,NA,NA,NA +"THREETREES","Oi",3,0,NA,NA,NA,NA,NA,NA +"TIMBERLY","O1",1,0,NA,NA,NA,NA,NA,NA +"TISHAR","Oi",3,0,NA,NA,NA,NA,NA,NA +"VANNOY","O",2,0,NA,NA,NA,NA,NA,NA +"VERNONIA","O",3,0,NA,NA,NA,NA,NA,NA +"VOORHIES","O",3,0,NA,NA,NA,NA,NA,NA "WAKAMO","Oi",3,0,NA,NA,NA,NA,NA,NA "WAPATO","Bgl",41,56,"10YR","5","2","10YR","4","2" -"WARRENTON","0",8,28,NA,NA,NA,"N","2",NA +"WARRENTON","O",8,0,NA,NA,NA,"N","2",NA +"WHETSTONE","O2",5,0,NA,NA,NA,NA,NA,NA +"WHETSTONE","O1",10,5,NA,NA,NA,NA,NA,NA +"WHITEHORSE","Oi",3,0,NA,NA,NA,NA,NA,NA "WHITESON","2Cgl",38,61,"10YR","6","1","10YR","5","1" -"WOODCHOPPER","0i",8,10,NA,NA,NA,NA,NA,NA -"YAINAX","01",3,13,NA,NA,NA,NA,NA,NA -"YOREL","0i",5,8,NA,NA,NA,NA,NA,NA +"WINOPEE","O2",4,0,NA,NA,NA,NA,NA,NA +"WINOPEE","O1",5,4,NA,NA,NA,NA,NA,NA +"WOLFPEAK","Oi",1,0,NA,NA,NA,NA,NA,NA +"WOODCHOPPER","Oi",8,0,NA,NA,NA,NA,NA,NA +"XANADU","Oi",8,0,NA,NA,NA,NA,NA,NA +"YAINAX","O1",3,0,NA,NA,NA,NA,NA,NA +"YAWKOLA","Oi",3,0,NA,NA,NA,NA,NA,NA +"YOREL","Oi",5,0,NA,NA,NA,NA,NA,NA +"ZING","Oi",4,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/OR-series.csv b/inst/extdata/OSD-error-reporting/state/OR-series.csv index 97e1f3f0ca..3622fe6264 100644 --- a/inst/extdata/OSD-error-reporting/state/OR-series.csv +++ b/inst/extdata/OSD-error-reporting/state/OR-series.csv @@ -1,168 +1,186 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" +"SPEAKER",178565,FALSE,1997,TRUE,FALSE "BOOTH",150065,FALSE,1997,TRUE,FALSE "JAYAR",130798,FALSE,2001,TRUE,FALSE "ATRING",118704,FALSE,1999,TRUE,FALSE -"HEMCROSS",99571,FALSE,1997,FALSE,TRUE -"RINEARSON",99362,FALSE,2011,TRUE,TRUE -"MCNULL",79953,FALSE,1997,TRUE,TRUE -"REALLIS",73361,FALSE,1999,TRUE,FALSE +"VANNOY",105059,FALSE,2003,TRUE,FALSE +"RINEARSON",99362,FALSE,2011,TRUE,FALSE +"MCNULL",79953,FALSE,1997,TRUE,FALSE "PINEHURST",65837,FALSE,2004,TRUE,FALSE "FREEZENER",65371,FALSE,2003,TRUE,FALSE "KANID",62830,FALSE,1999,TRUE,FALSE +"FARVA",59288,FALSE,2001,TRUE,FALSE "CARIS",58762,FALSE,2001,TRUE,FALSE +"OLYIC",56170,FALSE,1998,TRUE,FALSE "ACKER",54456,FALSE,2000,TRUE,FALSE "BACONA",52506,FALSE,1998,TRUE,FALSE "WAPATO",51561,FALSE,1998,FALSE,TRUE -"BATEMAN",50535,FALSE,2002,TRUE,TRUE +"BATEMAN",50535,FALSE,2002,TRUE,FALSE "DUMONT",45035,FALSE,1997,TRUE,FALSE "POLLARD",42759,FALSE,1997,TRUE,FALSE "HOWASH",40881,FALSE,1998,TRUE,FALSE -"UMATILLA",35910,FALSE,2005,FALSE,TRUE -"PINHEAD",34928,FALSE,1998,FALSE,TRUE +"LETTIA",34739,FALSE,2003,TRUE,FALSE "NORLING",33533,FALSE,2000,TRUE,FALSE "TALLOWBOX",32878,FALSE,2003,TRUE,FALSE "EGYPTCREEK",30267,FALSE,2013,TRUE,FALSE "HEHE",28532,FALSE,1998,TRUE,FALSE -"VOORHIES",27693,FALSE,2003,TRUE,TRUE +"VOORHIES",27693,FALSE,2003,TRUE,FALSE +"RUCH",27582,FALSE,2000,TRUE,FALSE "SIMNASHO",27364,FALSE,2004,TRUE,FALSE "HALL RANCH",26588,FALSE,2004,TRUE,FALSE -"SKYMOR",26201,FALSE,2001,TRUE,TRUE +"SKYMOR",26201,FALSE,2001,TRUE,FALSE "MELHORN",26190,FALSE,2013,TRUE,FALSE +"ZING",26132,FALSE,2003,TRUE,FALSE "MACKATIE",25204,FALSE,1998,TRUE,FALSE -"ALTHOUSE",24943,FALSE,2000,TRUE,TRUE +"ALTHOUSE",24943,FALSE,2000,TRUE,FALSE +"GEPPERT",23962,FALSE,1999,TRUE,FALSE "PIPP",23914,FALSE,1998,TRUE,FALSE -"VERNONIA",22320,FALSE,2002,TRUE,TRUE -"PERDIN",21719,FALSE,1997,TRUE,TRUE +"VERNONIA",22320,FALSE,2002,TRUE,FALSE +"PERDIN",21719,FALSE,1997,TRUE,FALSE "HIGHCAMP",21011,FALSE,2000,TRUE,FALSE "OFFENBACHER",20956,FALSE,2001,TRUE,FALSE "ALSTONY",20401,FALSE,2001,TRUE,FALSE "BULL RUN",20276,FALSE,1998,TRUE,FALSE "STRAIGHT",20066,FALSE,1999,TRUE,FALSE -"SKOOKUMHOUSE",19644,FALSE,1998,TRUE,TRUE +"SKOOKUMHOUSE",19644,FALSE,1998,TRUE,FALSE +"CORNUTT",19644,FALSE,2000,TRUE,FALSE +"ABEGG",19383,FALSE,2000,TRUE,FALSE "TATOUCHE",19341,FALSE,1997,TRUE,FALSE -"FERNHAVEN",19238,FALSE,2002,TRUE,TRUE -"WOODCHOPPER",19025,FALSE,2001,TRUE,TRUE +"FERNHAVEN",19238,FALSE,2002,TRUE,FALSE +"WOODCHOPPER",19025,FALSE,2001,TRUE,FALSE "XANADU",17983,FALSE,1997,TRUE,FALSE "FLYCREEK",17974,FALSE,2004,FALSE,TRUE "KUTCHER",16834,FALSE,2004,TRUE,FALSE "ROGGER",16829,FALSE,2003,TRUE,FALSE "ALCOT",16316,FALSE,1998,TRUE,FALSE "COYATA",15992,FALSE,2001,TRUE,FALSE -"TEEWEE",15989,FALSE,2002,FALSE,TRUE -"HAZELCAMP",15833,FALSE,1998,TRUE,TRUE +"HAZELCAMP",15833,FALSE,1998,TRUE,FALSE "DUFUR",15304,FALSE,2002,TRUE,FALSE "SHARPSHOOTER",15077,FALSE,2005,TRUE,FALSE "GRAVECREEK",14628,FALSE,2000,TRUE,FALSE -"JOJO",13878,FALSE,1998,TRUE,TRUE +"BYBEE",14193,FALSE,1997,TRUE,FALSE +"WOLFPEAK",13903,FALSE,2003,TRUE,FALSE +"JOJO",13878,FALSE,1998,TRUE,FALSE "GOODLOW",13466,FALSE,2007,TRUE,FALSE +"ABSAQUIL",13334,FALSE,2003,TRUE,FALSE "HOUSEFIELD",13172,FALSE,1999,TRUE,FALSE -"LEMONEX",12796,FALSE,2013,TRUE,FALSE "MUTTON",12626,FALSE,1998,TRUE,FALSE "CRUISER",12415,FALSE,2000,TRUE,FALSE "FRAILEY",11752,FALSE,1999,TRUE,FALSE -"SERPENTANO",11140,FALSE,1999,TRUE,TRUE +"TETHRICK",11746,FALSE,2000,TRUE,FALSE +"BRABBLE",11459,FALSE,1999,TRUE,FALSE +"BALD",11429,FALSE,2002,TRUE,FALSE +"SERPENTANO",11140,FALSE,1999,TRUE,FALSE "WHETSTONE",10825,FALSE,2002,TRUE,FALSE -"BIGELOW",10087,FALSE,2006,TRUE,TRUE +"BIGELOW",10087,FALSE,2006,TRUE,FALSE "BORAVALL",9881,FALSE,2003,TRUE,FALSE "STEINMETZ",9696,FALSE,2000,TRUE,FALSE -"BOOTEN",9643,FALSE,1998,TRUE,TRUE +"BOOTEN",9643,FALSE,1998,TRUE,FALSE +"GAP",9449,FALSE,1997,TRUE,FALSE +"BEAL",9339,FALSE,2005,TRUE,FALSE "BLACKLOCK",9256,TRUE,2004,TRUE,FALSE "CRABTREE",9240,FALSE,1999,TRUE,FALSE -"YAINAX",8906,FALSE,2003,TRUE,TRUE +"YAINAX",8906,FALSE,2003,TRUE,FALSE "LANGELLAIN",8662,FALSE,2005,TRUE,FALSE "GOOLAWAY",8652,FALSE,2001,TRUE,FALSE +"LEMPIRA",8346,FALSE,2004,TRUE,FALSE "PERVINA",8313,FALSE,1998,TRUE,TRUE "ANUNDE",7988,FALSE,2004,TRUE,FALSE "WINLO",7765,FALSE,1997,TRUE,FALSE "FANTZ",7543,FALSE,2000,TRUE,FALSE +"HUKILL",7486,FALSE,1997,TRUE,FALSE "SAG",7447,FALSE,1997,TRUE,FALSE "EDSON",6838,FALSE,1998,TRUE,FALSE "CUNNIFF",6686,FALSE,1998,TRUE,FALSE "GOODWIN",6461,FALSE,2000,TRUE,FALSE "HOOSKANADEN",6386,FALSE,1997,TRUE,FALSE "RUSTLERPEAK",6307,FALSE,2007,TRUE,FALSE +"SWEETBRIAR",6206,FALSE,2005,TRUE,FALSE "SADDLEPEAK",5938,FALSE,1999,TRUE,FALSE -"LASTANCE",5909,TRUE,2002,TRUE,TRUE +"LASTANCE",5909,TRUE,2002,TRUE,FALSE "CHIMNEYROCK",5780,FALSE,2005,TRUE,FALSE -"BULLGULCH",5748,FALSE,2000,FALSE,TRUE "BENSLEY",5741,FALSE,1999,FALSE,TRUE "EASTPINE",5704,FALSE,2013,TRUE,FALSE "JUMPOFF",5433,FALSE,2004,TRUE,FALSE "PIUMPSHA",5351,FALSE,1998,TRUE,FALSE "HARANA",5240,FALSE,2002,TRUE,FALSE -"YOREL",5191,FALSE,1999,TRUE,TRUE -"THREETREES",5139,FALSE,1999,TRUE,TRUE +"YOREL",5191,FALSE,1999,TRUE,FALSE +"THREETREES",5139,FALSE,1999,TRUE,FALSE "JUNTURA",4810,FALSE,2001,FALSE,TRUE "TERRABELLA",4693,FALSE,1997,TRUE,FALSE "SHERVAL",4690,FALSE,2003,TRUE,FALSE "KUSU",4446,FALSE,1998,TRUE,FALSE "CAMPFOUR",4309,FALSE,2003,TRUE,FALSE +"CRATER LAKE",4262,FALSE,1998,TRUE,FALSE "GLAZE",4235,FALSE,1997,TRUE,FALSE -"KNAPKE",4201,FALSE,2000,TRUE,TRUE -"LABUCK",4101,FALSE,2023,TRUE,FALSE -"MCGINNIS",3915,FALSE,2009,TRUE,TRUE +"KNAPKE",4201,FALSE,2000,TRUE,FALSE +"GREENGULCH",3977,FALSE,2004,TRUE,FALSE +"MCGINNIS",3915,FALSE,2009,TRUE,FALSE "REDFLAT",3913,FALSE,1999,TRUE,FALSE -"STICES",3823,FALSE,2005,FALSE,TRUE "SITKUM",3754,FALSE,2000,TRUE,FALSE -"HALLIHAN",3638,FALSE,2000,TRUE,TRUE +"HALLIHAN",3638,FALSE,2000,TRUE,FALSE "SKOOKER",3536,FALSE,1998,TRUE,FALSE "CEDARGROVE",3535,FALSE,2005,TRUE,FALSE "BLALOCK",3448,FALSE,2002,FALSE,TRUE -"FREELS",3439,FALSE,1998,TRUE,FALSE +"BUCKSHOT",3375,FALSE,2005,TRUE,FALSE "LABISH",3315,FALSE,1997,TRUE,FALSE -"GRENET",3302,FALSE,1998,TRUE,TRUE +"GRENET",3302,FALSE,1998,TRUE,FALSE "LITTLEFAWN",3257,FALSE,1997,TRUE,FALSE "BURNTHILL",3255,FALSE,1997,TRUE,FALSE +"MCNAB",3233,FALSE,2005,TRUE,FALSE "HUDSPETH",3116,FALSE,1997,TRUE,FALSE "PARAGON",2981,FALSE,2009,TRUE,FALSE "FERGUSON",2981,FALSE,2013,TRUE,FALSE "MUSTY",2710,FALSE,2001,TRUE,FALSE -"HIGHHORN",2703,FALSE,2005,FALSE,TRUE -"CRIMS",2672,FALSE,1999,FALSE,TRUE "RUSTYBUTTE",2669,FALSE,1997,TRUE,FALSE "PROVIG",2632,FALSE,1997,TRUE,FALSE -"CRUTCH",2619,FALSE,1987,FALSE,TRUE "HOBIT",2569,FALSE,1998,TRUE,FALSE "BARHISKEY",2494,FALSE,2001,TRUE,FALSE "GUERIN",2453,FALSE,2013,TRUE,FALSE "WHITESON",2363,FALSE,2001,FALSE,TRUE -"SCALEROCK",2214,FALSE,1999,TRUE,TRUE +"THISTLEBURN",2360,FALSE,1998,TRUE,FALSE +"SCALEROCK",2214,FALSE,1999,TRUE,FALSE "YAWKOLA",2185,FALSE,1997,TRUE,FALSE "BOARDFLOWER",2039,FALSE,1997,TRUE,FALSE +"SHASTACOSTA",2022,FALSE,1997,TRUE,FALSE "JOENEY",1865,FALSE,2004,TRUE,FALSE "MOWAKO",1849,FALSE,1998,TRUE,FALSE "DARBY",1840,FALSE,2005,TRUE,FALSE "REINECKE",1813,FALSE,1998,TRUE,FALSE -"CROQUIB",1760,FALSE,1999,TRUE,TRUE -"FRANKPORT",1754,FALSE,2000,FALSE,TRUE +"DICECREEK",1775,FALSE,2001,TRUE,FALSE +"CROQUIB",1760,FALSE,1999,TRUE,FALSE "SPILYAY",1737,FALSE,1997,TRUE,FALSE -"KITTLESON",1602,FALSE,2000,TRUE,TRUE -"HUNTROCK",1579,FALSE,2005,FALSE,TRUE +"WAHKEENA",1704,FALSE,2010,TRUE,FALSE +"KITTLESON",1602,FALSE,2000,TRUE,FALSE "EVICK",1519,FALSE,1993,TRUE,FALSE +"TABLEROCK",1506,FALSE,1997,TRUE,FALSE "DESONS",1491,FALSE,1998,TRUE,FALSE "WAKAMO",1477,FALSE,1997,TRUE,FALSE -"TISHAR",1442,FALSE,2003,TRUE,TRUE +"TISHAR",1442,FALSE,2003,TRUE,FALSE "SNOWBRIER",1368,FALSE,2001,TRUE,FALSE -"BENTILLA",1340,FALSE,1998,TRUE,TRUE -"PEAHKE",1278,FALSE,2001,TRUE,TRUE +"BENTILLA",1340,FALSE,1998,TRUE,FALSE +"PEAHKE",1278,FALSE,2001,TRUE,FALSE "MILLERFLAT",1268,FALSE,2001,TRUE,FALSE "KILLET",1158,FALSE,2001,TRUE,FALSE "SACH",1156,FALSE,2002,TRUE,FALSE -"BERGSVIK",1143,FALSE,1999,TRUE,TRUE "KIESEL",1142,FALSE,1997,TRUE,FALSE +"MULTORPOR",1044,FALSE,1987,TRUE,FALSE "THREEFORKS",893,FALSE,1999,TRUE,FALSE -"WARRENTON",880,FALSE,2001,TRUE,TRUE +"WARRENTON",880,FALSE,2001,TRUE,FALSE "CASHNER",805,FALSE,1997,TRUE,FALSE "HAMMERSLEY",777,FALSE,2001,TRUE,FALSE -"DENTDRAW",662,FALSE,1999,TRUE,FALSE "TELEMON",635,FALSE,1998,TRUE,FALSE "DOMPIER",505,FALSE,2005,TRUE,FALSE -"KUCKUP",356,FALSE,1998,TRUE,TRUE -"CAMPTANK",237,FALSE,2007,TRUE,FALSE +"KUCKUP",356,FALSE,1998,TRUE,FALSE +"FEAGINRANCH",341,FALSE,2004,TRUE,FALSE +"FLARM",266,FALSE,2002,TRUE,FALSE +"WINOPEE",NA,FALSE,2004,TRUE,FALSE "WHITEHORSE",NA,FALSE,2000,TRUE,FALSE -"PRONG",NA,FALSE,2006,FALSE,TRUE -"ODIN",NA,FALSE,2004,TRUE,TRUE +"TIMBERLY",NA,FALSE,2002,TRUE,FALSE +"ODIN",NA,FALSE,2004,TRUE,FALSE +"MOOLACK",NA,FALSE,2004,TRUE,FALSE "LUCE",NA,FALSE,2002,TRUE,FALSE -"FIVES",NA,FALSE,2002,TRUE,TRUE -"DEATMAN",NA,FALSE,2002,TRUE,TRUE +"FIVES",NA,FALSE,2002,TRUE,FALSE +"DINZER",NA,FALSE,2002,TRUE,FALSE +"DEATMAN",NA,FALSE,2002,TRUE,FALSE "BARLOW",NA,FALSE,2002,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/PR-hz.csv b/inst/extdata/OSD-error-reporting/state/PR-hz.csv index 4a398974bd..2d3305e4c5 100644 --- a/inst/extdata/OSD-error-reporting/state/PR-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/PR-hz.csv @@ -1,5 +1,4 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "FORTUNA","B2lg",13,23,NA,NA,NA,"5GY","4","1" -"REPARADA","110C",46,15,NA,NA,NA,"10YR","2","1" "TALANTE","Alg",10,25,NA,NA,NA,"10YR","5","2" "TALANTE","Blg",25,46,NA,NA,NA,"10YR","5","3" diff --git a/inst/extdata/OSD-error-reporting/state/PR-series.csv b/inst/extdata/OSD-error-reporting/state/PR-series.csv index b6b21865b4..00aa2fedd3 100644 --- a/inst/extdata/OSD-error-reporting/state/PR-series.csv +++ b/inst/extdata/OSD-error-reporting/state/PR-series.csv @@ -1,4 +1,4 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "TALANTE",5463,FALSE,2002,FALSE,TRUE "FORTUNA",3050,FALSE,2002,FALSE,TRUE -"REPARADA",351,FALSE,2002,TRUE,TRUE +"MAYO",649,FALSE,2001,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/PW-hz.csv b/inst/extdata/OSD-error-reporting/state/PW-hz.csv index 4250ef729b..1730eabfa4 100644 --- a/inst/extdata/OSD-error-reporting/state/PW-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/PW-hz.csv @@ -1,3 +1,3 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"PELELIU","R",30,NA,NA,NA,NA,"10YR","8","1" -"PELELIU","01",NA,3,NA,NA,NA,NA,NA,NA +"NEKKEN","O1",3,0,NA,NA,NA,NA,NA,NA +"PELELIU","O1",1,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/PW-series.csv b/inst/extdata/OSD-error-reporting/state/PW-series.csv index c09975a685..498225acce 100644 --- a/inst/extdata/OSD-error-reporting/state/PW-series.csv +++ b/inst/extdata/OSD-error-reporting/state/PW-series.csv @@ -1,4 +1,4 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"PELELIU",7629,TRUE,2007,TRUE,TRUE +"PELELIU",7629,TRUE,2007,TRUE,FALSE "TABECHEDING",1587,FALSE,2006,TRUE,FALSE "NEKKEN",1088,FALSE,2006,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/SD-hz.csv b/inst/extdata/OSD-error-reporting/state/SD-hz.csv index 0c61b8d2c0..a91b1833d7 100644 --- a/inst/extdata/OSD-error-reporting/state/SD-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/SD-hz.csv @@ -1,12 +1,9 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"CITADEL","0i",0,4,NA,NA,NA,NA,NA,NA "DELMONT","Ap",0,15,"10YR","4","1","l0YR","2","1" -"GRIZZLY","0i",0,2.5,NA,NA,NA,NA,NA,NA "HOUDEK","Ap",0,15,"10YR","4","2","l0YR","2","2" "JERAULD","E",0,8,"l0YR","5","1","l0YR","3","1" -"LAKOA","0i",0,2,NA,NA,NA,NA,NA,NA "MONDAMIN","Ap",0,15,"10YR","4","2","l0YR","2","2" +"RENNER","Oi",1,0,"10YR","3","2",NA,NA,NA "SIECHE","Oi",3,0,NA,NA,NA,NA,NA,NA "SUTLEY","Ap",0,15,"l0YR","4","3","l0YR","3","2" -"VANOCKER","0e",0,2.5,NA,NA,NA,NA,NA,NA "WOODLY","A1",0,23,"l0YR","3","1","10YR","2","1" diff --git a/inst/extdata/OSD-error-reporting/state/SD-series.csv b/inst/extdata/OSD-error-reporting/state/SD-series.csv index 242f17c40d..b69226a75a 100644 --- a/inst/extdata/OSD-error-reporting/state/SD-series.csv +++ b/inst/extdata/OSD-error-reporting/state/SD-series.csv @@ -1,13 +1,10 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "HOUDEK",739355,TRUE,2009,FALSE,TRUE -"VANOCKER",184486,FALSE,1999,FALSE,TRUE "DELMONT",109343,FALSE,2009,FALSE,TRUE "WOODLY",104161,FALSE,2006,FALSE,TRUE -"LAKOA",103866,FALSE,2010,FALSE,TRUE -"CITADEL",102170,TRUE,2010,FALSE,TRUE "JERAULD",102091,FALSE,1997,FALSE,TRUE -"GRIZZLY",46129,FALSE,2010,FALSE,TRUE "MONDAMIN",28586,FALSE,1998,FALSE,TRUE "SUTLEY",17251,FALSE,1998,FALSE,TRUE "BADUS",10828,FALSE,1999,TRUE,FALSE "SIECHE",8111,FALSE,2009,TRUE,FALSE +"RENNER",1180,FALSE,2006,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/TN-hz.csv b/inst/extdata/OSD-error-reporting/state/TN-hz.csv index 49836e9a8b..49e5049fcf 100644 --- a/inst/extdata/OSD-error-reporting/state/TN-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/TN-hz.csv @@ -1,5 +1,4 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"BODINE","0e",0,3,NA,NA,NA,"10YR","2","2" "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" diff --git a/inst/extdata/OSD-error-reporting/state/TN-series.csv b/inst/extdata/OSD-error-reporting/state/TN-series.csv index 65232bd1b6..dc7c61b7d3 100644 --- a/inst/extdata/OSD-error-reporting/state/TN-series.csv +++ b/inst/extdata/OSD-error-reporting/state/TN-series.csv @@ -1,7 +1,6 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"BODINE",1152290,TRUE,2009,FALSE,TRUE "PAILO",77493,FALSE,2002,FALSE,TRUE -"FREELAND",44420,FALSE,2002,FALSE,TRUE +"FREELAND",44420,FALSE,2002,TRUE,TRUE "OPENLAKE",31864,FALSE,2004,FALSE,TRUE "KEYESPOINT",24448,FALSE,2002,FALSE,TRUE "SWAFFORD",12895,FALSE,2001,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/TX-hz.csv b/inst/extdata/OSD-error-reporting/state/TX-hz.csv index 4960b8060c..6995bd2a74 100644 --- a/inst/extdata/OSD-error-reporting/state/TX-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/TX-hz.csv @@ -4,8 +4,6 @@ "ADDIELOU","Bt",71,122,NA,NA,NA,"1OYR","5","6" "ADDIELOU","Bt/E1",122,152,NA,NA,NA,"1OYR","5","6" "ADDIELOU","Bt/E2",152,229,NA,NA,NA,"1OYR","6","1" -"ANGELINA","01",0,3,NA,NA,NA,NA,NA,NA -"ANGELINA","02",3,8,NA,NA,NA,NA,NA,NA "CAYO","Bknzl",48,71,"2.5Y","7","2","2.5Y","6","2" "CRANELL","Btk",142,109,NA,NA,NA,"10YR","4","2" "DALLARDSVILLE","E/Btl",53,79,NA,NA,NA,"7.5YR","7","3" @@ -15,10 +13,6 @@ "GRITER","Btl",18,41,"2.5YR","4","4","2.5YR","3","4" "GRITER","BCtl",94,130,"5YR","6","6","5YR","5","6" "HEARNE","C2",94,183,"l0YR","6","8",NA,NA,NA -"HEARNE","Bt1",NA,NA,"2.5YR","4","6","2.5YR","3","6" -"HEARNE","Bt2",NA,64,"2.5YR","5","6",NA,NA,NA -"HEARNE","C1",NA,94,"5YR","5","6",NA,NA,NA -"HIGHBANK","to",157,157,"5YR","4","3","5YR","3","3" "KRADE","A",0,18,"1OYR","5","3","1OYR","4","3" "MOLLVILLE","Oe",5,0,NA,NA,NA,"10YR","7","1" "PALOBIA","2Btnl",23,36,"7.5YR","5","2","7.5YR","4","2" @@ -30,3 +24,4 @@ "TURCOTTE","Bk1",25,64,"1OYR","6","2","1OYR","5","2" "TURCOTTE","Bk2",64,97,"1OYR","6","3","1OYR","5","3" "TURCOTTE","BCk",97,203,"10YR","7","3","1OYR","6","3" +"WARDA","BC1",163,163,"10YR","4","2","10YR","3","2" diff --git a/inst/extdata/OSD-error-reporting/state/TX-series.csv b/inst/extdata/OSD-error-reporting/state/TX-series.csv index cace3c18cc..18d01880ea 100644 --- a/inst/extdata/OSD-error-reporting/state/TX-series.csv +++ b/inst/extdata/OSD-error-reporting/state/TX-series.csv @@ -1,33 +1,15 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"LEERAY",462487,TRUE,2017,TRUE,FALSE -"UVALDE",431820,TRUE,2016,TRUE,FALSE -"NUVALDE",341892,FALSE,2017,TRUE,FALSE -"RADER",305857,TRUE,2006,TRUE,FALSE -"TABOR",274180,FALSE,1997,TRUE,FALSE -"ABILENE",245509,TRUE,2015,TRUE,FALSE "PALOBIA",173052,TRUE,2007,FALSE,TRUE -"OTANYA",159345,TRUE,2006,TRUE,FALSE "GAGEBY",102476,FALSE,2017,FALSE,TRUE "ROSANKY",93065,FALSE,1997,TRUE,TRUE "DALLARDSVILLE",91608,FALSE,2000,FALSE,TRUE -"VOCA",85295,FALSE,2010,TRUE,FALSE -"VIBORAS",73305,FALSE,2009,TRUE,FALSE "MOLLVILLE",72300,FALSE,2002,TRUE,FALSE "CRANELL",65415,FALSE,2007,TRUE,FALSE -"HEARNE",61540,FALSE,2003,TRUE,TRUE -"QUEMADO",60905,FALSE,2009,TRUE,FALSE -"TEXLA",55408,FALSE,1997,TRUE,FALSE -"FRANCITAS",44894,FALSE,2015,TRUE,FALSE +"HEARNE",61540,FALSE,2003,FALSE,TRUE "CAYO",36335,FALSE,2007,FALSE,TRUE -"TOPIA",26708,FALSE,2016,TRUE,FALSE -"GANADO",23644,FALSE,2019,TRUE,FALSE -"HIGHBANK",18273,FALSE,2001,TRUE,FALSE "ADDIELOU",15478,FALSE,2005,FALSE,TRUE -"ANGELINA",14362,FALSE,1998,FALSE,TRUE -"LATINA",12060,FALSE,2015,TRUE,FALSE "RUPLEY",11956,FALSE,1993,TRUE,FALSE "GRITER",11048,FALSE,2002,FALSE,TRUE -"WINEDALE",10350,FALSE,1997,TRUE,FALSE "KRADE",4733,FALSE,2003,FALSE,TRUE "GRAYROCK",4135,FALSE,2000,FALSE,TRUE "TURCOTTE",3741,FALSE,2003,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/UT-hz.csv b/inst/extdata/OSD-error-reporting/state/UT-hz.csv index d8330e9ed2..f4e6121639 100644 --- a/inst/extdata/OSD-error-reporting/state/UT-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/UT-hz.csv @@ -1,32 +1,37 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" "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" +"BEHANIN","O1",1,0,NA,NA,NA,NA,NA,NA "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,"l0YR","7","3","l0YR","6","4" +"BROBETT","Bqkl",20,43,"l0YR","7","4","l0YR","5","4" +"BROBETT","Bqk2",43,76,"l0YR","7","3","l0YR","6","4" +"CALLINGS","Oi",1,0,NA,NA,NA,NA,NA,NA "CALPAC","Al",0,8,"10YR","4","3","10YR","3","2" +"CRANBAY","Oi",1,0,NA,NA,NA,NA,NA,NA "DAHAR","Bw",15,30,"l0YR","6","2","l0YR","5","3" -"DAHAR","Bqk",30,69,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqk",30,53,"l0YR","7","2","l0YR","6","3" +"DAHAR","Bqkm",53,69,"l0YR","8","2","l0YR","7","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,"10YR","6","3","10YR","4","3" -"GAPPMAYER","A21",NA,1554,"10YR","6","3","10YR","5","3" +"GAPPMAYER","A21",NA,48,"10YR","6","3","10YR","5","3" +"GEERTSEN","O1",5,0,NA,NA,NA,NA,NA,NA +"GEERTSEN","R",114,NA,NA,NA,NA,NA,NA,NA +"GEERTSEN","A11",NA,8,"10YR","3","3","10YR","2","2" "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" "GREEN CANYON","All",NA,23,"10YR","4","2","10YR","3","2" -"GUILDER","01",3,13,NA,NA,NA,NA,NA,NA +"GUILDER","O1",3,0,NA,NA,NA,NA,NA,NA "GUILDER","B2lt",30,56,"2.5YR","4","6","2.5YR","3","6" "GUILDER","Al",NA,13,NA,NA,NA,"5YR","3","3" "HARKERS","Al",0,36,"10YR","3","2","10YR","2","2" "HARKERS","Bl",36,48,"10YR","5","2","10YR","3","2" "HARKERS","Clca",147,203,"10YR","6","4","7.5YR","5","4" +"HATCH","O1",1,0,NA,NA,NA,NA,NA,NA "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,"10YR","5","2","10YR","3","2" @@ -55,7 +60,7 @@ "MUD SPRINGS","All",0,15,"10YR","4","2","10YR","2","2" "MUNK","Al",0,20,"10YR","5","2","10YR","3","2" "MUNK","Clca",58,91,"10YR","8","2","10YR","6","2" -"NORCAN","01",3,10,NA,NA,NA,NA,NA,NA +"NORCAN","O1",3,0,NA,NA,NA,NA,NA,NA "NORCAN","All",NA,10,"5YR","4","3","5YR","3","3" "NORDIC","A12",15,38,"lOYR","4","2","lOYR","3","2" "NORDIC","A21",38,61,"lOYR","6","4","lOYR","4","4" @@ -67,9 +72,10 @@ "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" +"OBRAY","C2ca",132,152,"lOYR","7","3","lOYR","6","4" "OKRIST","A2",8,20,"10YR","6","4","l0YR","4","3" "OSOTE","Al",0,8,"10YR","5","3","7.5YR","3","2" +"PAHREAH","Oe",3,0,NA,NA,NA,NA,NA,NA "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" @@ -88,16 +94,15 @@ "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" +"RICHENS","O",1,0,NA,NA,NA,NA,NA,NA "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 +"SALT LAKE","Oi",5,0,NA,NA,NA,NA,NA,NA "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,"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" @@ -121,7 +126,6 @@ "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,"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" diff --git a/inst/extdata/OSD-error-reporting/state/UT-series.csv b/inst/extdata/OSD-error-reporting/state/UT-series.csv index 3bd6f162e4..65dc38dbbc 100644 --- a/inst/extdata/OSD-error-reporting/state/UT-series.csv +++ b/inst/extdata/OSD-error-reporting/state/UT-series.csv @@ -1,42 +1,43 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"SCOUT",385661,FALSE,2008,FALSE,TRUE -"TOSCA",166822,FALSE,1998,FALSE,TRUE "MEDBURN",153214,TRUE,2003,TRUE,FALSE "DEER CREEK",67663,FALSE,1997,FALSE,TRUE +"BEHANIN",67468,FALSE,1999,TRUE,FALSE "ST. MARYS",59070,FALSE,2003,FALSE,TRUE "PLEGOMIR",55542,FALSE,2003,FALSE,TRUE "LEDGEFORK",52897,FALSE,1999,FALSE,TRUE -"WINNEMUCCA",52432,FALSE,1999,TRUE,FALSE -"DAHAR",43269,FALSE,2001,TRUE,TRUE +"GEERTSEN",48049,FALSE,1999,TRUE,FALSE +"DAHAR",43269,FALSE,2001,FALSE,TRUE "HOSKIN",42086,FALSE,2003,TRUE,TRUE "MOKIAK",39741,FALSE,2006,FALSE,TRUE "PRESTON",38798,FALSE,1995,FALSE,TRUE "TODDLER",36561,FALSE,2003,FALSE,TRUE +"CALLINGS",34811,FALSE,1999,TRUE,FALSE "HUPP",30415,FALSE,1999,FALSE,TRUE "CALPAC",29939,FALSE,2004,FALSE,TRUE "GAPPMAYER",28406,FALSE,1999,TRUE,TRUE "YELJACK",26715,FALSE,1999,FALSE,TRUE "SANDBENCH",25949,FALSE,2000,TRUE,TRUE "WOODPASS",25245,FALSE,1999,FALSE,TRUE -"HARKERS",24828,TRUE,1997,TRUE,TRUE +"HARKERS",24828,TRUE,1997,FALSE,TRUE "LEWISTON",20183,FALSE,2005,FALSE,TRUE "MOUNTAINVILLE",18611,FALSE,2003,FALSE,TRUE -"BROBETT",17675,FALSE,2001,TRUE,TRUE +"BROBETT",17675,FALSE,2001,FALSE,TRUE "TOBLER",17674,FALSE,2007,FALSE,TRUE "LAKE JANEE",17085,TRUE,1999,TRUE,TRUE "TOZE",16949,FALSE,1999,FALSE,TRUE "GORING",16585,TRUE,1997,FALSE,TRUE +"RICHENS",16308,FALSE,1999,TRUE,FALSE "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 "KNUTSEN",11742,FALSE,2003,FALSE,TRUE -"OBRAY",11308,TRUE,1999,TRUE,TRUE +"OBRAY",11308,TRUE,1999,FALSE,TRUE "WINDMILL",11299,FALSE,2001,FALSE,TRUE "LOSEE",11068,FALSE,1999,FALSE,TRUE -"KINESAVA",10798,FALSE,1999,TRUE,TRUE +"PAHREAH",10959,FALSE,1999,TRUE,FALSE +"KINESAVA",10798,FALSE,1999,FALSE,TRUE "MINERAL MOUNTAIN",10514,FALSE,1997,TRUE,FALSE "OBRAST",10418,FALSE,1997,FALSE,TRUE "SCHMUTZ",10324,FALSE,1992,FALSE,TRUE @@ -44,7 +45,7 @@ "MORTENSON",9787,FALSE,1999,TRUE,FALSE "OSOTE",9758,FALSE,1999,FALSE,TRUE "KILFOIL",9428,FALSE,2003,TRUE,TRUE -"SANPITCH",8993,FALSE,2003,TRUE,TRUE +"SANPITCH",8993,FALSE,2003,FALSE,TRUE "LISADE",8478,FALSE,2009,FALSE,TRUE "TACAN",7880,FALSE,2001,FALSE,TRUE "ZEESIX",6986,FALSE,1999,FALSE,TRUE @@ -56,7 +57,7 @@ "PLEASANT VALE",5863,FALSE,2003,FALSE,TRUE "RAPHO",5793,FALSE,2009,FALSE,TRUE "TINGEY",5776,FALSE,2002,FALSE,TRUE -"SALT LAKE",5732,FALSE,1999,TRUE,TRUE +"SALT LAKE",5732,FALSE,1999,TRUE,FALSE "YARDLEY",5265,FALSE,2003,FALSE,TRUE "NORDIC",5140,FALSE,1999,TRUE,TRUE "SHEEPCAN",4936,FALSE,2003,TRUE,TRUE @@ -67,22 +68,23 @@ "WOODS CROSS",4222,FALSE,1997,FALSE,TRUE "MUNK",4178,FALSE,2003,FALSE,TRUE "MAUGHAN",3995,FALSE,1999,FALSE,TRUE +"HATCH",3894,FALSE,1999,TRUE,FALSE "PAICE",3870,FALSE,2003,FALSE,TRUE "PETEETNEET",3854,FALSE,2001,FALSE,TRUE "HIVAL",3819,FALSE,1999,FALSE,TRUE "MILLVILLE",3711,FALSE,1999,TRUE,FALSE "TOBISH",3684,FALSE,2001,FALSE,TRUE "SHEAR",3198,FALSE,2001,FALSE,TRUE -"LILAPOINT",3122,FALSE,2011,TRUE,FALSE "KJAR",2835,FALSE,2000,FALSE,TRUE "STODA",2804,FALSE,2003,FALSE,TRUE "SNOWVILLE",2649,FALSE,2003,FALSE,TRUE -"ASHLEY",2644,FALSE,1998,TRUE,TRUE +"ASHLEY",2644,FALSE,1998,FALSE,TRUE "MORGALA",2630,FALSE,1997,FALSE,TRUE "REDCAN",2580,FALSE,2003,FALSE,TRUE "MUD SPRINGS",2239,FALSE,2003,FALSE,TRUE "MCPHIE",2201,FALSE,2001,FALSE,TRUE "GREEN CANYON",2001,FALSE,1992,TRUE,TRUE +"CRANBAY",1551,FALSE,1998,TRUE,FALSE "MAYFIELD",1137,FALSE,2009,FALSE,TRUE "PERINOS",780,FALSE,1999,FALSE,TRUE "ZANE",NA,FALSE,2001,TRUE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/VA-hz.csv b/inst/extdata/OSD-error-reporting/state/VA-hz.csv index 455d882847..8dd63f7296 100644 --- a/inst/extdata/OSD-error-reporting/state/VA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/VA-hz.csv @@ -6,13 +6,10 @@ "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 "BRENTSVILLE","C",66,86,NA,NA,NA,"lOR","3","3" "BRENTSVILLE","Cr",86,97,NA,NA,NA,"lOR","3","3" "BRENTSVILLE","R",97,107,NA,NA,NA,"lOR","3","3" -"BROCKROAD","01",0,5,NA,NA,NA,NA,NA,NA "BUCKTON","Ap",0,18,NA,NA,NA,"l0YR","4","3" "BUCKTON","Cl",18,46,NA,NA,NA,"l0YR","5","3" "BUCKTON","C2",46,74,NA,NA,NA,"l0YR","4","3" @@ -26,45 +23,19 @@ "CALVERTON","E",5,25,NA,NA,NA,"l0YR","7","4" "CALVERTON","Bt",25,48,NA,NA,NA,"l0YR","6","6" "CALVERTON","Bx",48,74,NA,NA,NA,"l0YR","6","6" -"CAROLINE","0i",0,5,NA,NA,NA,NA,NA,NA -"CATLETT","0i",0,3,NA,NA,NA,NA,NA,NA -"COLFAX","0i",3,3,NA,NA,NA,NA,NA,NA +"COLFAX","Oi",3,0,NA,NA,NA,NA,NA,NA "DRAYKE","Btl",20,36,NA,NA,NA,"10R","3","6" "DRYPOND","Oi",10,0,NA,NA,NA,NA,NA,NA "ELBERT","Btgl",30,56,NA,NA,NA,"5Y","4","1" -"FORK","0i",0,3,NA,NA,NA,NA,NA,NA -"FORK","0e",3,5,NA,NA,NA,"10YR","3","2" -"GOLDVEIN","0i",0,3,NA,NA,NA,NA,NA,NA -"GOLDVEIN","0e",3,5,NA,NA,NA,"10YR","3","1" -"LAROQUE","0i",0,3,NA,NA,NA,NA,NA,NA -"LEW","0i",0,5,NA,NA,NA,NA,NA,NA "LODI","Btl",18,28,NA,NA,NA,"7.5YR","5","6" "MANASSAS","Btl",41,61,NA,NA,NA,"5YR","3","4" -"MATTAPONI","0i",0,3,NA,NA,NA,NA,NA,NA -"MONTROSS","0i",0,5,NA,NA,NA,NA,NA,NA "NEWBERN","Ap",0,13,NA,NA,NA,"1OYR","5","4" "NEWBERN","Bw",13,33,NA,NA,NA,"1OYR","6","6" "NEWBERN","Cr",33,46,NA,NA,NA,"1OYR","6","8" -"NEWFLAT","0i",0,3,NA,NA,NA,NA,NA,NA -"ORENDA","0i",0,3,NA,NA,NA,NA,NA,NA "ORISKANY","Oi",3,0,NA,NA,NA,NA,NA,NA "PAMUNKEY","2C",117,203,NA,NA,NA,"1OYR","5","6" "PARTLOW","Btgl",38,53,NA,NA,NA,"10YR","5","1" -"POCATY","0i",0,30,NA,NA,NA,"10YR","2","2" -"POCATY","0e",30,51,NA,NA,NA,"10YR","2","2" -"POCATY","0a1",51,104,NA,NA,NA,"10YR","2","1" -"POCATY","0a2",104,122,NA,NA,NA,"10YR","2","1" -"POCATY","0a3",122,152,NA,NA,NA,"10YR","4","1" -"RAPPAHANNOCK","0a1",0,41,NA,NA,NA,"10YR","3","2" -"RAPPAHANNOCK","0a2",41,76,NA,NA,NA,"10YR","3","1" -"RAPPAHANNOCK","0a3",76,104,NA,NA,NA,"10YR","2","2" -"RAPPAHANNOCK","0'a",160,190,NA,NA,NA,"10YR","2","1" -"REMLIK","0i",0,5,NA,NA,NA,NA,NA,NA -"SEKIL","0i",0,3,NA,NA,NA,NA,NA,NA -"SEKIL","0e",3,5,NA,NA,NA,"10YR","2","1" "SWIMLEY","Btl",23,36,NA,NA,NA,"5YR","4","4" -"THURMONT","0i",0,5,NA,NA,NA,NA,NA,NA -"THURMONT","0e",5,10,NA,NA,NA,NA,NA,NA "TRENHOLM","Btl",30,51,NA,NA,NA,"10YR","5","6" "TRENHOLM","Cl",91,114,NA,NA,NA,"10YR","5","8" "TRENHOLM","A",NA,5,NA,NA,NA,"10YR","3","1" diff --git a/inst/extdata/OSD-error-reporting/state/VA-series.csv b/inst/extdata/OSD-error-reporting/state/VA-series.csv index a8ca445a80..611ce529b9 100644 --- a/inst/extdata/OSD-error-reporting/state/VA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/VA-series.csv @@ -1,43 +1,23 @@ "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 -"THURMONT",74572,FALSE,2008,FALSE,TRUE "NEWBERN",73692,FALSE,1998,FALSE,TRUE "LODI",66649,TRUE,2010,FALSE,TRUE -"COLFAX",58035,FALSE,1997,TRUE,TRUE -"BOURNE",45410,FALSE,2002,FALSE,TRUE -"BAILEGAP",31867,FALSE,2002,FALSE,TRUE -"LEW",26441,FALSE,1997,FALSE,TRUE +"COLFAX",58035,FALSE,1997,TRUE,FALSE "PARTLOW",26416,FALSE,1999,FALSE,TRUE "PAMUNKEY",23728,FALSE,2002,FALSE,TRUE "BEECH GROVE",23364,FALSE,2002,TRUE,FALSE "ELBERT",23220,FALSE,1997,FALSE,TRUE "ACKWATER",20910,FALSE,1997,FALSE,TRUE -"MONTROSS",19220,FALSE,2007,FALSE,TRUE "DRAYKE",18447,FALSE,2022,FALSE,TRUE "WURNO",18390,TRUE,1998,FALSE,TRUE -"RAPPAHANNOCK",16907,FALSE,2003,FALSE,TRUE "DRYPOND",15436,FALSE,2003,TRUE,FALSE -"ORENDA",14755,FALSE,2008,FALSE,TRUE "MANASSAS",12133,FALSE,2004,FALSE,TRUE -"NEWFLAT",12053,FALSE,1997,FALSE,TRUE "BRENTSVILLE",8755,FALSE,1997,FALSE,TRUE -"FORK",8078,FALSE,1997,FALSE,TRUE -"POCATY",7379,FALSE,2003,FALSE,TRUE "SWIMLEY",7004,FALSE,2005,FALSE,TRUE -"SEKIL",6120,FALSE,2002,FALSE,TRUE -"BROCKROAD",5373,FALSE,1999,FALSE,TRUE -"CATLETT",5178,FALSE,2004,FALSE,TRUE "BUCKTON",4271,FALSE,2005,FALSE,TRUE "TRENHOLM",4019,FALSE,2002,TRUE,TRUE -"GOLDVEIN",3993,FALSE,2003,FALSE,TRUE "TUCKAHOE",3244,FALSE,1999,FALSE,TRUE "BURROWSVILLE",3176,FALSE,1997,FALSE,TRUE "CALVERTON",2588,FALSE,2005,FALSE,TRUE -"LAROQUE",2387,FALSE,1999,FALSE,TRUE -"CARDOVA",1285,FALSE,2016,TRUE,FALSE "ALDERFLATS",529,FALSE,2006,FALSE,TRUE -"BEARKNOB",189,FALSE,2013,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/VT-series.csv b/inst/extdata/OSD-error-reporting/state/VT-series.csv index c2687ab087..af331a0828 100644 --- a/inst/extdata/OSD-error-reporting/state/VT-series.csv +++ b/inst/extdata/OSD-error-reporting/state/VT-series.csv @@ -2,5 +2,4 @@ "DUTCHESS",128660,FALSE,2000,TRUE,FALSE "DUMMERSTON",100838,FALSE,2001,FALSE,TRUE "MUNSON",15251,FALSE,1997,FALSE,TRUE -"ENOSBURG",9275,FALSE,1998,TRUE,FALSE "WEIDER",1079,FALSE,2000,FALSE,TRUE diff --git a/inst/extdata/OSD-error-reporting/state/WA-hz.csv b/inst/extdata/OSD-error-reporting/state/WA-hz.csv index 6a0cd97413..d6b6812ffd 100644 --- a/inst/extdata/OSD-error-reporting/state/WA-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/WA-hz.csv @@ -1,390 +1,453 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" +"AHL","O2",3,0,NA,NA,NA,NA,NA,NA "AHL","O1",8,3,NA,NA,NA,NA,NA,NA -"AITS","0i",0,3,NA,NA,NA,NA,NA,NA -"AMPAD","0iOi",0,3,NA,NA,NA,NA,NA,NA -"ANGLEN","0e",0,3,NA,NA,NA,"10YR","3","3" -"APEX","0i",0,3,NA,NA,NA,NA,NA,NA +"AHREN","Oe",4,0,NA,NA,NA,NA,NA,NA +"ALKIRIDGE","O",3,0,NA,NA,NA,NA,NA,NA +"ALMAC","Oi",6,0,NA,NA,NA,NA,NA,NA +"ANGLE","Oi",1,0,NA,NA,NA,NA,NA,NA "ARISTINE","Bwl",25,41,"7.5YR","5","6","7.5YR","3","3" +"AZWELL","Oi",1,0,NA,NA,NA,NA,NA,NA "AZWELL","C",38,66,"10YR","4","2","l0YR","3","4" "BALDHILL","A",0,10,"l0YR","5","3","l0YR","3","3" -"BALDHILL","BA",10,74,NA,NA,NA,"l0YR","4","4" +"BALDHILL","BA",10,30,NA,NA,NA,"l0YR","4","4" +"BALDHILL","Bwl",30,74,"l0YR","6","3","l0YR","4","3" "BALDHILL","Bw3",91,114,"l0YR","6","3","2.5Y","4","4" "BALDHILL","Bw4",114,137,"l0YR","6","3","l0YR","4","4" "BALDHILL","C",137,152,"l0YR","5","8","l0YR","4","6" -"BALDHILL","Bwl",NA,74,"l0YR","6","3","l0YR","4","3" -"BARNELLCREEK","01",0,3,NA,NA,NA,NA,NA,NA +"BANDID","Oa",1,0,NA,NA,NA,NA,NA,NA +"BANDID","Oi",5,1,NA,NA,NA,NA,NA,NA +"BANNEL","Oi",1,0,NA,NA,NA,NA,NA,NA +"BARNHARDT","Oi",3,0,NA,NA,NA,NA,NA,NA +"BAUMGARD","Oa",1,0,NA,NA,NA,NA,NA,NA "BAUMGARD","Oi",3,1,NA,NA,NA,NA,NA,NA -"BAUMGARD","2R",117,NA,NA,NA,NA,NA,NA,NA -"BAUMGARD","Oa",NA,1554,NA,NA,NA,NA,NA,NA "BEAR PRAIRIE","Al",8,25,"10YR","3","2","10YR","2","1" "BEAR PRAIRIE","Bwl",71,114,"10YR","5","4","10YR","4","4" -"BELLICUM","E",0,5,"l0YR","6","2","l0YR","4","2" -"BELLICUM","Bs2",18,84,"l0YR","7","6","5YR","5","6" +"BEIGLE","Oe",5,0,NA,NA,NA,NA,NA,NA +"BELLICUM","E",0,3,"l0YR","6","2","l0YR","4","2" +"BELLICUM","Bs1",3,18,"l0YR","6","6","7.5YR","5","6" +"BELLICUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"BELLICUM","Bs2",18,46,"l0YR","7","6","5YR","5","6" +"BELLICUM","2Bwb",46,84,"l0YR","7","4","l0YR","3","3" "BELLICUM","2BCb",84,127,"2.5Y","6","4","l0YR","4","4" -"BELLICUM","3R",127,NA,NA,NA,NA,NA,NA,NA -"BELLICUM","Bs1",NA,18,"l0YR","6","6","7.5YR","5","6" -"BELLICUM","2Bwb",NA,84,"l0YR","7","4","l0YR","3","3" +"BENHAM","Oe",11,0,NA,NA,NA,NA,NA,NA "BENHAM","3Bsb1",69,79,"l0YR","6",NA,"10YR","4","1" -"BENHAM","Oe",NA,1554,NA,NA,NA,NA,NA,NA "BIRDSVIEW","A",0,13,"l0YR","5","4","l0YR","3","3" -"BIRDSVIEW","0",10,13,NA,NA,NA,NA,NA,NA +"BIRDSVIEW","O",10,0,NA,NA,NA,NA,NA,NA "BIRDSVIEW","Bwl",13,76,NA,NA,NA,"l0YR","4","4" "BIRDSVIEW","Bw2",76,137,"l0YR","6","4","l0YR","4","4" +"BISPING","Oi",3,0,NA,NA,NA,NA,NA,NA "BLAG","A",0,15,"l0YR","6","2","l0YR","4","3" -"BLAG","Bw",15,NA,"l0YR","6","3","l0YR","4","4" -"BLAG","R",NA,1554,NA,NA,NA,NA,NA,NA +"BLAG","Bw",15,41,"l0YR","6","3","l0YR","4","4" "BLETHEN","A",0,13,"l0YR","4","3","l0YR","3","2" -"BLETHEN","0a",5,13,NA,NA,NA,NA,NA,NA -"BLETHEN","0i",13,5,NA,NA,NA,NA,NA,NA +"BLETHEN","Oa",5,0,NA,NA,NA,NA,NA,NA +"BLETHEN","Oi",13,5,NA,NA,NA,NA,NA,NA "BLETHEN","Bs1",13,33,"l0YR","5","4","l0YR","4","3" +"BLETHEN","Bs2",33,61,"l0YR","6","4",NA,NA,NA "BLETHEN","Bs3",61,107,"l0YR","6","4","l0YR","4","4" "BLETHEN","C",107,152,"l0YR","7","4","l0YR","5","4" -"BLETHEN","Bs2",NA,61,"l0YR","6","4",NA,NA,NA "BLEWETT","A",0,8,"l0YR","5","3","l0YR","3","2" -"BLEWETT","Bw",8,NA,"l0YR","5","4","l0YR","3","3" -"BLEWETT","R",NA,1554,NA,NA,NA,NA,NA,NA +"BLEWETT","Oi",1,0,NA,NA,NA,NA,NA,NA +"BLEWETT","Bw",8,25,"l0YR","5","4","l0YR","3","3" "BOISTFORT","Al",5,28,"l0YR","4","2","7.5YR","3","2" "BOISTFORT","A2",28,53,"l0YR","4","3","7.5YR","3","2" "BOISTFORT","2Bwl",53,99,"l0YR","5","6","7.5YR","4","4" "BOISTFORT","2Bw2",99,140,"l0YR","5","8","7.5YR","5","6" -"BOSSBURG","30a2",137,173,"2.5Y","6","2","2.5Y","4","2" "BROADAX","Apl",0,10,"10YR","4","2","10YR","2","2" -"BROMO","Al",0,10,"l0YR","6",NA,"l0YR","3",NA -"BROMO","0",10,10,NA,NA,NA,NA,NA,NA -"BROMO","AB",10,58,"l0YR","5","2","l0YR","3","2" +"BROMO","Al",0,3,"l0YR","6",NA,"l0YR","3",NA +"BROMO","A2",3,10,"l0YR","5","3","l0YR","3","3" +"BROMO","O",10,0,NA,NA,NA,NA,NA,NA +"BROMO","AB",10,25,"l0YR","5","2","l0YR","3","2" "BROMO","2Bsb1",58,89,"l0YR","6","4","l0YR","3","3" "BROMO","2Bsb2",89,152,"l0YR","7","4","l0YR","4","4" -"BROMO","A2",NA,10,"l0YR","5","3","l0YR","3","3" -"BROMO","Bs",NA,58,NA,NA,NA,"5YR","4","6" +"BUCKPEAK","Oe",3,0,NA,NA,NA,NA,NA,NA "CATLA","Cdl",41,94,"10YR","7","2","10YR","6","3" -"CINEBAR","0a",3,4,NA,NA,NA,NA,NA,NA -"CINEBAR","0i",4,3,NA,NA,NA,NA,NA,NA -"CINNAMON","Oa",8,8,NA,NA,NA,NA,NA,NA +"CATTCREEK","Oe",3,0,NA,NA,NA,NA,NA,NA +"CAYUSE","O",1,0,NA,NA,NA,NA,NA,NA +"CHAPOT","Oi",1,0,NA,NA,NA,NA,NA,NA +"CINEBAR","Oa",3,0,NA,NA,NA,NA,NA,NA +"CINEBAR","Oi",4,3,NA,NA,NA,NA,NA,NA +"CINNAMON","Oa",8,0,NA,NA,NA,NA,NA,NA "CINNAMON","Oi",10,8,NA,NA,NA,NA,NA,NA -"CISPUS","A",0,5,"l0YR","5","2","l0YR","3","2" +"CISPUS","A",0,25,"l0YR","5","2","l0YR","3","2" +"CISPUS","Oe",5,0,NA,NA,NA,NA,NA,NA +"CISPUS","Bw",25,38,"l0YR","8","4","l0YR","5","4" +"CISPUS","C",38,109,"l0YR","8","4","l0YR","8","8" "CISPUS","2Bwb",109,152,"l0YR","6","3","l0YR","4","4" -"CISPUS","Bw",NA,NA,"l0YR","8","4","l0YR","5","4" -"CISPUS","C",NA,109,"l0YR","8","4","l0YR","8","8" -"CLENDENEN","0a",5,10,NA,NA,NA,NA,NA,NA +"CLE ELUM","Oi",1,0,NA,NA,NA,NA,NA,NA +"CLENDENEN","Oa",5,0,NA,NA,NA,NA,NA,NA "CLENDENEN","Oi",20,5,NA,NA,NA,NA,NA,NA "CLOQUATO","2Cl",102,132,"10YR","5","2","10YR","4","2" -"CLOQUATO","A2",NA,102,"10YR","5","3","10YR","3","3" +"CLOVERLAND","Oe",5,0,NA,NA,NA,NA,NA,NA +"COLTER","Oe",5,0,NA,NA,NA,NA,NA,NA +"COMAR","Oa",10,0,NA,NA,NA,NA,NA,NA "COMAR","Oi",13,10,NA,NA,NA,NA,NA,NA +"CORDY","Oi",1,0,NA,NA,NA,NA,NA,NA +"COTTERAL","Oa",3,0,NA,NA,NA,NA,NA,NA "COTTERAL","Oe",5,3,NA,NA,NA,NA,NA,NA "COWEEMAN","A",0,18,"l0YR","6","2","l0YR","4","2" -"COWEEMAN","BAt",18,56,"l0YR","8","2","l0YR","6","2" -"COWEEMAN","Btgl",NA,56,"2.5Y","8","2","2.5Y","6","2" +"COWEEMAN","BAt",18,36,"l0YR","8","2","l0YR","6","2" +"COWEEMAN","Btgl",36,56,"2.5Y","8","2","2.5Y","6","2" "CRACKERCREEK","2Btbl",41,53,"10YR","5","4","10YR","3","3" -"CRINKER","02",3,3,NA,NA,NA,NA,NA,NA -"CRINKER","01",8,3,NA,NA,NA,NA,NA,NA +"CRINKER","O2",3,0,NA,NA,NA,NA,NA,NA +"CRINKER","O1",8,3,NA,NA,NA,NA,NA,NA "CULVING","Bwl",13,23,"10YR","6","3","10YR","4","2" "CULVOP","Oi",3,0,NA,NA,NA,NA,NA,NA -"CUPPLES","0a",10,18,NA,NA,NA,NA,NA,NA -"CUPPLES","0i",18,10,NA,NA,NA,NA,NA,NA +"CUPPLES","Oa",10,0,NA,NA,NA,NA,NA,NA +"CUPPLES","Oi",18,10,NA,NA,NA,NA,NA,NA +"DEKAPEN","O2",1,0,NA,NA,NA,NA,NA,NA +"DEKAPEN","O1",3,1,NA,NA,NA,NA,NA,NA "DELAMETER","C1",0,25,"l0YR","6","1","l0YR","4","1" "DELAMETER","C2",25,152,"l0YR","5","1","l0YR","4","1" +"DELPHI","Oa",3,0,NA,NA,NA,NA,NA,NA "DELPHI","Oi",5,3,NA,NA,NA,NA,NA,NA "DELPHI","Bwl",33,79,"10YR","6","4","10YR","4","4" +"DEMING","Oa",3,0,NA,NA,NA,NA,NA,NA "DEMING","Oi",10,3,NA,NA,NA,NA,NA,NA -"DEMING","Oa",NA,1554,NA,NA,NA,NA,NA,NA -"DIOBSUD","0a",3,5,NA,NA,NA,NA,NA,NA -"DIOBSUD","0i",23,3,NA,NA,NA,NA,NA,NA +"DIOBSUD","Oa",3,0,NA,NA,NA,NA,NA,NA +"DIOBSUD","Oi",23,3,NA,NA,NA,NA,NA,NA "DOBBS","Bwl",43,69,"l0YR","5","4","7.5YR","3","4" "DOBBS","Bw2",69,97,"l0YR","5","4","7.5YR","3","4" "DOBBS","2Cd",97,168,"l0YR","6","3","l0YR","4","3" "DOMELL","Al",0,13,"l0YR","4","3","l0YR","3","3" +"DOMELL","Oa",8,0,NA,NA,NA,NA,NA,NA "DOMELL","Oe",13,8,NA,NA,NA,NA,NA,NA -"DOMELL","A2",13,58,"l0YR","5","3","l0YR","3","3" +"DOMELL","A2",13,28,"l0YR","5","3","l0YR","3","3" +"DOMELL","Bw1",28,58,"l0YR","6","4","l0YR","3","3" "DOMELL","Bw2",58,94,"l0YR","7","4","l0YR","4","4" -"DOMELL","Bw1",NA,58,"l0YR","6","4","l0YR","3","3" -"DUGUALLA","0a1",0,28,"10YR","3","1","10YR","2","1" -"DUGUALLA","0a2",28,51,"7.5YR","4","2","7.5YR","2.5","2" -"DUGUALLA","0a3",51,66,"10YR","3","1","10YR","2","2" -"DUGUALLA","0a4",66,152,"7.5YR","4","2","7.5YR","2.5","2" -"EDFRO","0i",0,1,NA,NA,NA,NA,NA,NA -"EDFRO","0a",1,10,NA,NA,NA,NA,NA,NA "EDFRO","Bsl",18,28,NA,NA,NA,"7.5YR","4","6" "EDGEWICK","Bwl",20,25,"2.5Y","7","2","2.5Y","4","4" -"ELWELL","01",5,3,NA,NA,NA,NA,NA,NA +"ELWELL","O2",3,0,NA,NA,NA,NA,NA,NA +"ELWELL","O1",5,3,NA,NA,NA,NA,NA,NA "ELWELL","Bsl",5,20,"7.5YR","6","6","7.5YR","5","6" -"ESMERALDA","0e",3,5,NA,NA,NA,NA,NA,NA +"ESMERALDA","Oe",3,0,NA,NA,NA,NA,NA,NA +"ETACH","Oa",8,0,NA,NA,NA,NA,NA,NA "ETACH","Oi",10,8,NA,NA,NA,NA,NA,NA -"FERTEG","0",8,13,NA,NA,NA,NA,NA,NA -"FORSYTH","0a",3,3,NA,NA,NA,NA,NA,NA -"FORSYTH","0e",5,3,NA,NA,NA,NA,NA,NA +"FERTEG","O",8,0,NA,NA,NA,NA,NA,NA +"FORSYTH","Oa",3,0,NA,NA,NA,NA,NA,NA +"FORSYTH","Oe",5,3,NA,NA,NA,NA,NA,NA "FORTRAN","A",0,8,"l0YR","5","3","l0YR","3","3" +"FORTRAN","Oa",3,0,NA,NA,NA,NA,NA,NA "FORTRAN","Oi",8,3,NA,NA,NA,NA,NA,NA "FORTRAN","Bw",8,28,"l0YR","6","4","l0YR","4","4" "FORTRAN","BC",28,43,"l0YR","5","3","l0YR","4","3" -"FORTRAN","Oa",NA,1554,NA,NA,NA,NA,NA,NA "GERMANY","Al",0,5,"7.5YR","3","2","l0YR","2","2" "GERMANY","A2",5,56,"7.5YR","4","4","l0YR","3","3" "GERMANY","2BAt",56,124,"l0YR","5","4","l0YR","4","3" "GERMANY","2Bt",124,183,"l0YR","5","4","7.5YR","4","4" "GILES","Oe",3,0,NA,NA,NA,NA,NA,NA -"GROTTO","02",3,5,NA,NA,NA,NA,NA,NA -"GROTTO","01",5,3,NA,NA,NA,NA,NA,NA -"GUEMES","01",3,20,NA,NA,NA,NA,NA,NA +"GROTTO","O2",3,0,NA,NA,NA,NA,NA,NA +"GROTTO","O1",5,3,NA,NA,NA,NA,NA,NA +"GROVE","Oe",3,0,NA,NA,NA,NA,NA,NA +"GROVE","Oi",6,3,NA,NA,NA,NA,NA,NA +"GUEMES","O1",3,0,NA,NA,NA,NA,NA,NA +"HANNEGAN","O2",10,0,NA,NA,NA,NA,NA,NA "HANNEGAN","O1",13,10,NA,NA,NA,NA,NA,NA +"HARTNIT","O2",15,0,NA,NA,NA,NA,NA,NA "HARTNIT","O1",18,15,NA,NA,NA,NA,NA,NA "HAZELDELL","Oa",5,0,NA,NA,NA,NA,NA,NA -"HOVDE","A",0,9,NA,NA,NA,"l0YR","3","2" -"HOVDE","2C4",39,60,"l0YR","4","2","l0YR","3","2" -"HOVDE","0i",NA,NA,NA,NA,NA,NA,NA,NA -"HOVDE","2C2",NA,29,"l0YR","5","3","l0YR","4","3" +"HEISLER","Oa",1,0,NA,NA,NA,NA,NA,NA +"HEISLER","OI",3,1,NA,NA,NA,NA,NA,NA +"HOFFSTADT","Oe",5,0,NA,NA,NA,NA,NA,NA +"HOODSPORT","Oe",3,0,NA,NA,NA,"5YR","2","1" +"HOODSPORT","Oi",6,3,NA,NA,NA,NA,NA,NA +"HOVDE","A",0,23,NA,NA,NA,"l0YR","3","2" +"HOVDE","Oi",3,0,NA,NA,NA,NA,NA,NA +"HOVDE","2C2",33,74,"l0YR","5","3","l0YR","4","3" +"HOVDE","2C4",99,152,"l0YR","4","2","l0YR","3","2" +"HOZOMEEN","Oa",13,0,NA,NA,NA,NA,NA,NA "HOZOMEEN","Oi",15,13,NA,NA,NA,NA,NA,NA -"HUMSKEL","01",3,5,NA,NA,NA,NA,NA,NA -"ILLABOT","02",3,8,NA,NA,NA,NA,NA,NA -"ILLABOT","01",8,3,NA,NA,NA,NA,NA,NA -"JACKMAN","0i",10,10,NA,NA,NA,NA,NA,NA +"HUMSKEL","O1",3,0,NA,NA,NA,NA,NA,NA +"ILLABOT","O2",3,0,NA,NA,NA,NA,NA,NA +"ILLABOT","O1",8,3,NA,NA,NA,NA,NA,NA +"JACKMAN","Oi",10,0,NA,NA,NA,NA,NA,NA +"JORGENSEN","Oe",18,0,NA,NA,NA,NA,NA,NA "JORGENSEN","Oi",46,18,NA,NA,NA,NA,NA,NA +"JUG","Oa",3,0,NA,NA,NA,NA,NA,NA "JUG","Oi",10,3,NA,NA,NA,NA,NA,NA -"KACHESS","0i",0,5,NA,NA,NA,NA,NA,NA +"KALEETAN","O2",8,0,NA,NA,NA,"5YR","2.5","2" "KALEETAN","O1",10,8,NA,NA,NA,NA,NA,NA +"KANASKAT","Oa",3,0,NA,NA,NA,"10YR","2","1" "KANASKAT","Oi",5,3,NA,NA,NA,NA,NA,NA -"KATULA","0e",5,8,NA,NA,NA,NA,NA,NA -"KATULA","0i",18,5,NA,NA,NA,NA,NA,NA -"KEGEL","0e",0,3,NA,NA,NA,NA,NA,NA -"KELLERBUTTE","0i and 0e",0,3,NA,NA,NA,NA,NA,NA -"KIEHL","0i",0,3,NA,NA,NA,NA,NA,NA -"KINGMONT","El",0,71,"l0YR","7","3","l0YR","5","4" +"KATULA","Oe",5,0,NA,NA,NA,NA,NA,NA +"KATULA","Oi",18,5,NA,NA,NA,NA,NA,NA +"KINDY","Oa",1,0,NA,NA,NA,NA,NA,NA +"KINDY","Oi",6,1,NA,NA,NA,NA,NA,NA +"KINGMONT","El",0,36,"l0YR","7","3","l0YR","5","4" +"KINGMONT","Oi",1,0,NA,NA,NA,NA,NA,NA +"KINGMONT","E2",36,71,"l0YR","7","3","l0YR","5","4" "KINGMONT","Btl",71,91,"l0YR","6","3","l0YR","4","3" "KINGMONT","Bt2",91,152,"l0YR","6","4","l0YR","5","4" -"KINGMONT","E2",NA,71,"l0YR","7","3","l0YR","5","4" -"KIPER","0e",0,3,NA,NA,NA,NA,NA,NA "KITSAP","Bwl",15,25,"10YR","6","3","10YR","4","3" -"KLAWATTI","0i",18,13,NA,NA,NA,NA,NA,NA +"KLAWATTI","Oa",13,0,NA,NA,NA,NA,NA,NA +"KLAWATTI","Oi",18,13,NA,NA,NA,NA,NA,NA "KOERLING","Bwl",23,56,"10YR","6","3","10YR","4","3" +"KULSHAN","Oa",5,0,NA,NA,NA,NA,NA,NA "KULSHAN","Oi",18,5,NA,NA,NA,NA,NA,NA "LACONNER","Bwl",8,25,"10YR","6","3","10YR","4","3" "LACONNER","Cl",51,84,"2.5Y","5","4","2.5Y","4","2" -"LEMAH","0e",0,1,NA,NA,NA,NA,NA,NA -"LEMOLO","Oa",13,13,NA,NA,NA,"10YR","2","1" +"LAGITOS","Oi",5,0,NA,NA,NA,NA,NA,NA +"LAGITOS","C1",51,1,"5Y","8","1","5Y","6","2" +"LE BAR","Oe",1,0,NA,NA,NA,NA,NA,NA +"LE BAR","Oi",3,1,NA,NA,NA,NA,NA,NA +"LEDOW","O",5,0,NA,NA,NA,NA,NA,NA +"LEMOLO","Oa",13,0,NA,NA,NA,"10YR","2","1" "LEMOLO","Oi",15,13,NA,NA,NA,NA,NA,NA -"LONESTAR","Oa",5,5,NA,NA,NA,NA,NA,NA +"LONESTAR","Oa",5,0,NA,NA,NA,NA,NA,NA "LONESTAR","Oi",8,5,NA,NA,NA,NA,NA,NA "LOPER","Oa",5,0,NA,NA,NA,NA,NA,NA +"LYNNWOOD","Oa",5,0,NA,NA,NA,NA,NA,NA "LYNNWOOD","Oi",8,5,NA,NA,NA,NA,NA,NA "MADRAK","A",3,5,"l0YR","4","2","10YR","3","2" "MADRAK","Bwl",5,25,"7.5YR","5","4","7.5YR","3","4" +"MAL","Oa",3,0,NA,NA,NA,NA,NA,NA +"MARBLEMOUNT","Oe",8,0,NA,NA,NA,NA,NA,NA +"MASHEL","Oe",8,0,NA,NA,NA,NA,NA,NA +"MCDOUG","Oi",3,0,NA,NA,NA,NA,NA,NA +"MELAKWA","O2",3,0,NA,NA,NA,NA,NA,NA "MELAKWA","O1",8,3,NA,NA,NA,NA,NA,NA +"MINNIEPEAK","Oi",5,0,NA,NA,NA,NA,NA,NA "MINNIEPEAK","2Bwl",30,41,"10YR","8","1","10YR","7","1" -"MOBATE","0i",0,3,NA,NA,NA,NA,NA,NA -"MONTBORNE","0e",8,20,NA,NA,NA,NA,NA,NA +"MONTBORNE","Oe",8,0,NA,NA,NA,NA,NA,NA +"MOWICH","Oa",13,0,NA,NA,NA,NA,NA,NA "MOWICH","Oi",20,13,NA,NA,NA,NA,NA,NA -"NANAMKIN","0i",0,3,NA,NA,NA,NA,NA,NA +"MULHOLLAND","Oe",4,0,NA,NA,NA,NA,NA,NA +"MURNEN","Oe",3,0,NA,NA,NA,NA,NA,NA +"NAGROM","Oa",1,0,NA,NA,NA,NA,NA,NA +"NAGROM","Oi",4,1,NA,NA,NA,NA,NA,NA +"NARDINE","Oi",3,0,NA,NA,NA,NA,NA,NA "NARDMONT","Oi",5,0,NA,NA,NA,NA,NA,NA -"NAREL","01",13,41,NA,NA,NA,NA,NA,NA +"NAREL","O1",13,0,NA,NA,NA,NA,NA,NA +"NARGAR","O2",1,0,NA,NA,NA,"10YR","2","1" +"NARGAR","O1",3,1,NA,NA,NA,NA,NA,NA +"NATAPOC","Oi",1,0,NA,NA,NA,NA,NA,NA +"NATI","Oa",8,0,NA,NA,NA,NA,NA,NA +"NATI","Oi",9,8,NA,NA,NA,NA,NA,NA +"NATIONAL","Oa",5,0,NA,NA,NA,"5YR","2","1" "NATIONAL","2Cl",104,124,"10YR","6","3","10YR","4","4" -"NATKIM","0i",0,1,NA,NA,NA,NA,NA,NA -"NATKIM","0e",1,3,NA,NA,NA,NA,NA,NA -"NETRAC","Al",0,2,"l0YR","5",NA,"l0YR","3",NA -"NETRAC","Cl",2,7,"l0YR","8","3","l0YR","5",NA -"NETRAC","2Alb",7,NA,"l0YR","4","3","l0YR","3","2" -"NETRAC","0l",NA,NA,NA,NA,NA,NA,NA,NA -"NETRAC","2B2b",NA,NA,"l0YR","5","3","l0YR","3","4" -"NETRAC","2C2",NA,60,"l0YR","4","3","l0YR","3","4" -"NEVINE","0i",0,3,NA,NA,NA,NA,NA,NA -"NEVINE","A",3,3,"10YR","6","2","10YR","4","2" +"NETRAC","Al",0,5,"l0YR","5",NA,"l0YR","3",NA +"NETRAC","O1",3,3,NA,NA,NA,NA,NA,NA +"NETRAC","Cl",5,18,"l0YR","8","3","l0YR","5",NA +"NETRAC","2Alb",18,25,"l0YR","4","3","l0YR","3","2" +"NETRAC","2B2b",25,53,"l0YR","5","3","l0YR","3","4" +"NETRAC","2C2",53,152,"l0YR","4","3","l0YR","3","4" "NEWAUKUM","A",0,23,"l0YR","4","3","l0YR","2","2" -"NEWAUKUM","0e",5,23,NA,NA,NA,NA,NA,NA -"NEWAUKUM","Bwl",23,64,"l0YR","5","4","l0YR","3","3" -"NEWAUKUM","Bw3",64,NA,"l0YR","7","4","l0YR","4","4" -"NEWAUKUM","Bw2",NA,64,"l0YR","6","4","l0YR","3","4" -"NEWAUKUM","BC",NA,NA,"7.5YR","6","6","7.5YR","4","6" -"NEWAUKUM","C",NA,152,"7.5YR","7","4","7.5YR","4","4" -"NEWBELL","0e",0,3,NA,NA,NA,NA,NA,NA +"NEWAUKUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"NEWAUKUM","Bwl",23,41,"l0YR","5","4","l0YR","3","3" +"NEWAUKUM","Bw2",41,64,"l0YR","6","4","l0YR","3","4" +"NEWAUKUM","Bw3",64,104,"l0YR","7","4","l0YR","4","4" "NIMS","2Bqkl",66,74,"10YR","8","2","10YR","7","2" "NISQUALLY","2Cl",79,122,"2.5Y","5","2","2.5Y","5","4" "NORTHSTAR","Al",5,10,"10YR","5","2","10YR","3","2" -"OAKES","0i",5,0,NA,NA,NA,NA,NA,NA -"ODO","0e",0,3,NA,NA,NA,NA,NA,NA -"OJIBWAY","0e",5,13,NA,NA,NA,NA,NA,NA +"OAKES","Oi",5,0,NA,NA,NA,NA,NA,NA +"OGARTY","Oa",1,0,NA,NA,NA,NA,NA,NA +"OGARTY","Oi",4,1,NA,NA,NA,NA,NA,NA +"OJIBWAY","Oe",5,0,NA,NA,NA,NA,NA,NA +"OLEQUA","Oe",5,0,NA,NA,NA,NA,NA,NA +"OLOMOUNT","Oe",5,0,NA,NA,NA,NA,NA,NA +"OLOMOUNT","Oi",6,5,NA,NA,NA,NA,NA,NA +"ORWIG","Oe",5,0,NA,NA,NA,"10YR","3","3" +"OSO","Oi",5,0,NA,NA,NA,NA,NA,NA "PALMICH","A",5,15,"l0YR","6",NA,"l0YR","3","2" -"PALMICH","AB",15,71,"l0YR","6","2","l0YR","3","3" +"PALMICH","AB",15,43,"l0YR","6","2","l0YR","3","3" +"PALMICH","Bw1",43,71,"l0YR","6","2","l0YR","4","3" "PALMICH","Bw2",71,117,"l0YR","6","3","l0YR","4","4" "PALMICH","2Bw3",117,157,"l0YR","7","3","l0YR","4","4" -"PALMICH","Bw1",NA,71,"l0YR","6","2","l0YR","4","3" "PANAMAKER","C1",0,8,"l0YR","6",NA,"l0YR","4",NA "PANAMAKER","C2",8,152,"l0YR","6",NA,"l0YR","4",NA -"PARA","0",3,8,NA,NA,NA,NA,NA,NA +"PARA","O",3,0,NA,NA,NA,NA,NA,NA +"PELEE","Oa",1,0,NA,NA,NA,NA,NA,NA +"PELEE","Oi",3,1,NA,NA,NA,NA,NA,NA +"PERSIS","Oa",1,0,NA,NA,NA,NA,NA,NA +"PERSIS","Oi",9,1,NA,NA,NA,NA,NA,NA +"PHILIPPA","Oa",1,0,NA,NA,NA,NA,NA,NA +"PHILIPPA","Oi",5,1,NA,NA,NA,NA,NA,NA "PIERKING","Oa",5,0,NA,NA,NA,"10YR","2","2" "PIERKING","Oe",10,5,NA,NA,NA,NA,NA,NA -"POTCHUB","Oa",18,18,NA,NA,NA,NA,NA,NA +"PILLERY","Oi",3,0,NA,NA,NA,NA,NA,NA +"PINOTY","Oa",1,0,NA,NA,NA,NA,NA,NA +"PINOTY","Oi",5,1,NA,NA,NA,NA,NA,NA +"POLEPATCH","Oe",3,0,NA,NA,NA,NA,NA,NA +"POTCHUB","Oa",18,0,NA,NA,NA,NA,NA,NA "POTCHUB","Oi",23,18,NA,NA,NA,NA,NA,NA "POTCHUB","Bsl",33,43,"7.5YR","7","6","7.5YR","5","6" -"PRATHER","Bt1",NA,66,"10YR","5","8","7.5YR","4","4" "PSUGA","Oa",3,0,NA,NA,NA,NA,NA,NA -"PUGET","Al",0,18,NA,NA,NA,"2.5Y","3","2" -"PUGET","A2",NA,18,"2.5Y","7","2","2.5Y","4","2" -"PUGET","Bg2",NA,64,"5Y","6","2","2.5Y","5","2" -"PUGET","Bg4",NA,102,"5Y","7",NA,"2.5Y","5","2" +"PUGET","Al",0,3,NA,NA,NA,"2.5Y","3","2" "PUYALLUP","2Cl",46,69,"10YR","5","2","10YR","3","3" -"QUILLAYUTE","01",3,20,NA,NA,NA,NA,NA,NA -"RACKER","0a",0,3,NA,NA,NA,NA,NA,NA -"RAUGHT","Al",0,2,"5YR","4","2","5YR","3","2" -"RAUGHT","AB",7,NA,"5YR","5","3","5YR","3","3" -"RAUGHT","Oe",NA,NA,NA,NA,NA,NA,NA,NA -"RAUGHT","BA",NA,NA,"5YR","5","4","5YR","3","4" -"RAUGHT","Bt",NA,65,"5YR","5","4","2.5YR","3","6" -"REVEL","Bs",10,89,"l0YR","5","4","7.5YR","4","4" -"REVEL","2Cr",89,NA,NA,NA,NA,NA,NA,NA -"REVEL","Oi",NA,1,NA,NA,NA,NA,NA,NA -"REVEL","Oa",NA,NA,NA,NA,NA,NA,NA,NA -"REVEL","C",NA,89,"l0YR","6","4","l0YR","4","4" -"RINKER","0a",3,5,NA,NA,NA,NA,NA,NA -"RINKER","0i",13,3,NA,NA,NA,NA,NA,NA -"ROBER","0a",3,8,NA,NA,NA,NA,NA,NA +"QUILLAYUTE","O1",3,0,NA,NA,NA,NA,NA,NA +"RAINIER","O",3,0,NA,NA,NA,NA,NA,NA +"RAUGHT","Al",0,5,"5YR","4","2","5YR","3","2" +"RAUGHT","Oe",3,0,NA,NA,NA,NA,NA,NA +"REVEL","Oa",1,0,NA,NA,NA,NA,NA,NA +"REVEL","Oi",4,1,NA,NA,NA,NA,NA,NA +"REVEL","Bs",10,41,"l0YR","5","4","7.5YR","4","4" +"REVEL","C",41,89,"l0YR","6","4","l0YR","4","4" +"RINKER","Oa",3,0,NA,NA,NA,NA,NA,NA +"RINKER","Oi",13,3,NA,NA,NA,NA,NA,NA +"ROBER","Oa",3,0,NA,NA,NA,NA,NA,NA +"ROBER","Oi",6,3,NA,NA,NA,NA,NA,NA "RONSEL","E",0,8,"l0YR","6",NA,NA,NA,NA -"RONSEL","2BC",20,NA,"2.5YR","5","4","l0YR","4","4" -"RONSEL","0e",NA,0,NA,NA,NA,NA,NA,NA -"RONSEL","2C",NA,152,"2.5Y","6","6","2.5Y","4","4" +"RONSEL","Oe",3,0,NA,NA,NA,NA,NA,NA +"RONSEL","2BC",20,43,"2.5YR","5","4","l0YR","4","4" "ROSLYN","O",3,0,NA,NA,NA,NA,NA,NA -"ROXER","0e",0,3,NA,NA,NA,NA,NA,NA -"RUGLES","0e",5,0,NA,NA,NA,NA,NA,NA -"SAAR","0a",3,5,NA,NA,NA,NA,NA,NA -"SAAR","0i",10,3,NA,NA,NA,NA,NA,NA -"SAUK","0a",3,8,NA,NA,NA,NA,NA,NA -"SAUK","0i",10,3,NA,NA,NA,NA,NA,NA -"SAUVOLA","A",0,26,"l0YR","3","2",NA,NA,NA -"SAUVOLA","Bt2",26,32,"l0YR","5","3",NA,NA,NA -"SAUVOLA","Bt3",32,43,"l0YR","5","3",NA,NA,NA -"SAUVOLA","BC",43,60,"l0YR","5","3",NA,NA,NA -"SAUVOLA","Oe",NA,NA,NA,NA,NA,NA,NA,NA -"SAUVOLA","ABt",NA,NA,"l0YR","3","3",NA,NA,NA -"SAUVOLA","Bt1",NA,26,"l0YR","5","3",NA,NA,NA +"RUGLES","Oe",5,0,NA,NA,NA,NA,NA,NA +"SAAR","Oa",3,0,NA,NA,NA,NA,NA,NA +"SAAR","Oi",10,3,NA,NA,NA,NA,NA,NA +"SANDUN","Oi",8,0,NA,NA,NA,NA,NA,NA +"SASKA","Oi and Oe",5,0,NA,NA,NA,NA,NA,NA +"SAUK","Oa",3,0,NA,NA,NA,NA,NA,NA +"SAUK","Oi",10,3,NA,NA,NA,NA,NA,NA +"SAUVOLA","A",0,25,"l0YR","3","2",NA,NA,NA +"SAUVOLA","Oe",3,0,NA,NA,NA,NA,NA,NA +"SAUVOLA","ABt",25,46,"l0YR","3","3",NA,NA,NA +"SAUVOLA","Bt1",46,66,"l0YR","5","3",NA,NA,NA +"SAUVOLA","Bt2",66,81,"l0YR","5","3",NA,NA,NA +"SAUVOLA","Bt3",81,109,"l0YR","5","3",NA,NA,NA +"SAUVOLA","BC",109,152,"l0YR","5","3",NA,NA,NA +"SAXON","Oa",10,0,NA,NA,NA,NA,NA,NA "SAXON","Oi",23,10,NA,NA,NA,NA,NA,NA "SCAR","Bsl",8,23,"7.5YR","5","6","10YR","4","4" -"SCAR","Cl",NA,53,"N","7","0","5Y","5","1" -"SCOTTIES","Bwl",3,79,"l0YR","6","3","l0YR","4","3" +"SCAR","Cl",30,53,"N","7","0","5Y","5","1" +"SCOTTIES","Bwl",3,28,"l0YR","6","3","l0YR","4","3" +"SCOTTIES","2Bw2",28,48,"l0YR","6","4","l0YR","4","4" +"SCOTTIES","2Cl",48,79,"l0YR","5","6","l0YR","3","4" "SCOTTIES","2C2",79,114,"l0YR","6","4","l0YR","4","3" -"SCOTTIES","2R",114,NA,NA,NA,NA,NA,NA,NA -"SCOTTIES","2Bw2",NA,NA,"l0YR","6","4","l0YR","4","4" -"SCOTTIES","2Cl",NA,79,"l0YR","5","6","l0YR","3","4" -"SCRABBLERS","0e",0,1,NA,NA,NA,"10YR","3","2" "SEAQUEST","Bt2",61,97,"l0YR","5","4","7.5YR","4","4" -"SEMIAHMOO","30e",155,165,NA,NA,NA,"5YR","2","2" -"SHAMEL","0i",3,28,NA,NA,NA,NA,NA,NA -"SHELTON","02",3,8,NA,NA,NA,NA,NA,NA -"SHERLOCK","0a",0,3,NA,NA,NA,NA,NA,NA +"SEHOME","Oi",1,0,NA,NA,NA,NA,NA,NA +"SHAMEL","Oi",3,0,NA,NA,NA,NA,NA,NA +"SHELTON","O2",3,0,NA,NA,NA,NA,NA,NA "SHERLOCK","Bwl",4,13,"10YR","5","6","7.5YR","3","4" "SHERLOCK","2Btl",25,74,"2.5Y","7","2","2.5Y","4","4" +"SHUKSAN","Oa",18,0,NA,NA,NA,NA,NA,NA "SHUKSAN","Oi",23,18,NA,NA,NA,NA,NA,NA "SIFTON","Ap",0,13,"l0YR","4","2","l0YR","2",NA -"SIFTON","All",13,61,"l0YR","4","2","l0YR","2",NA +"SIFTON","All",13,25,"l0YR","4","2","l0YR","2",NA +"SIFTON","Al2",25,41,"l0YR","4","2","l0YR","2","2" +"SIFTON","2Cl",41,61,"l0YR","4","3","l0YR","3","3" "SIFTON","2C2",61,152,"l0YR","4","2","l0YR","3","2" -"SIFTON","Al2",NA,NA,"l0YR","4","2","l0YR","2","2" -"SIFTON","2Cl",NA,61,"l0YR","4","3","l0YR","3","3" +"SINCLAIR","O2",2,0,NA,NA,NA,"5YR","2","1" +"SINCLAIR","O1",7,2,NA,NA,NA,NA,NA,NA +"SINNICE","Oi",1,0,NA,NA,NA,NA,NA,NA "SKAGIT","Apl",0,15,"10YR","6","2","10YR","3","2" +"SKAMANIA","Oa",1,0,NA,NA,NA,NA,NA,NA "SKAMANIA","Oi",4,1,NA,NA,NA,NA,NA,NA -"SKAMANIA","Oa",NA,1554,NA,NA,NA,NA,NA,NA "SKATE","A2",0,6,"l0YR","5",NA,"l0YR","4",NA "SKATE","B2lir",6,18,"l0YR","5","4","l0YR","4","3" -"SKATE","B22ir",18,99,"l0YR","5","8","7.5YR","5","8" +"SKATE","O1 and O2",9,0,NA,NA,NA,NA,NA,NA +"SKATE","B22ir",18,38,"l0YR","5","8","7.5YR","5","8" +"SKATE","2B2irb",38,99,"l0YR","6","6","l0YR","4","6" "SKATE","3Cl",99,124,NA,NA,NA,"2.5Y","4","4" -"SKATE","0l and 02",NA,NA,NA,NA,NA,NA,NA,NA -"SKATE","2B2irb",NA,99,"l0YR","6","6","l0YR","4","6" +"SKIYOU","O1",4,0,NA,NA,NA,NA,NA,NA +"SKYKOMISH","Oa",8,0,NA,NA,NA,NA,NA,NA "SKYKOMISH","Oi",10,8,NA,NA,NA,NA,NA,NA -"SMACKOUT","0e",0,3,NA,NA,NA,NA,NA,NA "SNOHOMISH","Apl",0,18,"10YR","6","2","10YR","3","2" "SODACREEK","Oi",3,0,NA,NA,NA,NA,NA,NA "SOLO","Oe",5,0,NA,NA,NA,NA,NA,NA +"SORENSEN","Oa",3,0,NA,NA,NA,NA,NA,NA +"SORENSEN","Oi",28,3,NA,NA,NA,NA,NA,NA "SPANA","2Cl",74,91,"10YR","6","2","10YR","4","2" "SPIEDEN","Cl",91,122,"2.5Y","6","3","2.5Y","3","3" -"SPRINGSTEEN","Oa",5,5,NA,NA,NA,NA,NA,NA +"SPRINGSTEEN","Oa",5,0,NA,NA,NA,NA,NA,NA "SPRINGSTEEN","Oi",13,5,NA,NA,NA,NA,NA,NA -"SQUALICUM","A",0,3,"l0YR","5","3","l0YR","3","2" -"SQUALICUM","Bs1",3,30,"l0YR","7","6","l0YR","4","6" -"SQUALICUM","Oi",NA,NA,NA,NA,NA,NA,NA,NA -"SQUALICUM","Bs2",NA,30,"l0YR","7","6","l0YR","3","6" -"SQUALLY","Al",0,63,"7.5YR","5","4","7.5YR","3","3" -"SQUALLY","C",63,75,"l0YR","6","3","l0YR","4","3" -"SQUALLY","0l",NA,NA,NA,NA,NA,NA,NA,NA -"SQUALLY","B2",NA,63,"l0YR","6","6","5YR","3","4" -"SQUIRES","Oa",3,3,NA,NA,NA,NA,NA,NA -"ST. MARTIN","0i",5,10,NA,NA,NA,NA,NA,NA +"SQUALICUM","A",0,8,"l0YR","5","3","l0YR","3","2" +"SQUALICUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"SQUALICUM","Bs1",8,43,"l0YR","7","6","l0YR","4","6" +"SQUALICUM","Bs2",43,76,"l0YR","7","6","l0YR","3","6" +"SQUALLY","Al",0,25,"7.5YR","5","4","7.5YR","3","3" +"SQUALLY","O1",3,0,NA,NA,NA,NA,NA,NA +"SQUALLY","B2",25,160,"l0YR","6","6","5YR","3","4" +"SQUALLY","C",160,190,"l0YR","6","3","l0YR","4","3" +"SQUIRES","Oa",3,0,NA,NA,NA,NA,NA,NA +"SQUIRES","Oi",5,3,NA,NA,NA,NA,NA,NA +"ST. HELENS","Oe",3,0,NA,NA,NA,NA,NA,NA +"ST. MARTIN","Oi",5,0,NA,NA,NA,NA,NA,NA "STANDUP","A",3,13,"l0YR","6","2","l0YR","3","3" -"STANDUP","2Bw1",13,66,"l0YR","7","2","l0YR","5","3" +"STANDUP","2Bw1",13,48,"l0YR","7","2","l0YR","5","3" +"STANDUP","2Bw2",48,66,"l0YR","7","2","l0YR","6","3" "STANDUP","2C",66,155,"l0YR","7","2","l0YR","6","3" -"STANDUP","2Bw2",NA,66,"l0YR","7","2","l0YR","6","3" "STELLA","Oa",3,0,NA,NA,NA,NA,NA,NA -"STIMSON","01",5,15,NA,NA,NA,NA,NA,NA +"STIMSON","O1",5,0,NA,NA,NA,NA,NA,NA "SWEITING","Oi and Oe",5,0,NA,NA,NA,NA,NA,NA -"SWEM","0i",0,1,NA,NA,NA,NA,NA,NA -"SWEM","0e",1,4,NA,NA,NA,NA,NA,NA +"SWIFT","Oa",3,0,NA,NA,NA,NA,NA,NA "SWIFT","Oi",5,3,NA,NA,NA,NA,NA,NA -"SWINOMISH","01",3,8,NA,NA,NA,NA,NA,NA -"TALLS","0i",0,3,NA,NA,NA,NA,NA,NA -"TENAS","0e",0,3,NA,NA,NA,NA,NA,NA +"SWINOMISH","O1",3,0,NA,NA,NA,NA,NA,NA +"TENERIFFE","Oa",5,0,NA,NA,NA,NA,NA,NA "TENERIFFE","Oi",8,5,NA,NA,NA,NA,NA,NA -"THETIS","0e",5,0,NA,NA,NA,NA,NA,NA -"THORNTON","02",3,5,NA,NA,NA,NA,NA,NA -"THORNTON","01",5,3,NA,NA,NA,NA,NA,NA +"THETIS","Oe",5,0,NA,NA,NA,NA,NA,NA +"THORNTON","O2",3,0,NA,NA,NA,NA,NA,NA +"THORNTON","O1",5,3,NA,NA,NA,NA,NA,NA "THRASH","Al",0,20,"7.5YR","5","4","7.5YR","4","4" +"THRASH","O2",3,0,NA,NA,NA,"l0YR","3","2" "THRASH","B2l",20,69,"7.5YR","5","6","7.5YR","4","6" -"THRASH","02",NA,1554,NA,NA,NA,"l0YR","3","2" "TILLICUM","A",0,20,"l0YR","6","2","l0YR","4","3" -"TILLICUM","0e",5,20,NA,NA,NA,NA,NA,NA -"TILLICUM","Bw",20,61,"l0YR","6","2","l0YR","4","4" +"TILLICUM","Oe",5,0,NA,NA,NA,NA,NA,NA +"TILLICUM","Bw",20,41,"l0YR","6","2","l0YR","4","4" +"TILLICUM","BC",41,61,"l0YR","6","3","l0YR","4","3" "TILLICUM","2C",61,107,"l0YR","6","3","l0YR","4","2" -"TILLICUM","2R",107,NA,NA,NA,NA,NA,NA,NA -"TILLICUM","BC",NA,61,"l0YR","6","3","l0YR","4","3" +"TIPTOP","Oi",1,0,NA,NA,NA,NA,NA,NA "TISCH","Ap",0,18,"l0YR","5","2","l0YR","2","2" -"TISCH","A3",18,66,"l0YR","5","2","l0YR","3","2" +"TISCH","A3",18,30,"l0YR","5","2","l0YR","3","2" +"TISCH","Cl",30,43,"l0YR","6","2","l0YR","3","2" +"TISCH","C2",43,66,"l0YR","7","2","l0YR","4","2" "TISCH","C3",66,71,"l0YR","7","3","l0YR","4","3" "TISCH","C4",71,140,"l0YR","5","2","l0YR","2","2" "TISCH","C5",140,165,NA,NA,NA,"l0YR","2",NA -"TISCH","Cl",NA,NA,"l0YR","6","2","l0YR","3","2" -"TISCH","C2",NA,66,"l0YR","7","2","l0YR","4","2" -"TRADEDOLLAR","E",0,8,"l0YR","6",NA,"l0YR","4",NA +"TRADEDOLLAR","E",0,3,"l0YR","6",NA,"l0YR","4",NA +"TRADEDOLLAR","Bhs",3,10,"l0YR","6","3","l0YR","2","2" +"TRADEDOLLAR","Oe",8,0,NA,NA,NA,NA,NA,NA "TRADEDOLLAR","2Eb",132,140,"l0YR","6",NA,"l0YR","4","2" "TRADEDOLLAR","2Bwb",140,152,"l0YR","6",NA,"l0YR","4","2" -"TRADEDOLLAR","Bhs",NA,10,"l0YR","6","3","l0YR","2","2" -"TRADEDOLLAR","Bs3",NA,56,"5YR","5","6","5YR","4","6" -"TREEN","0i",0,5,NA,NA,NA,NA,NA,NA +"TRITON","O2",1,0,NA,NA,NA,"5YR","2","2" +"TRITON","O1",4,1,NA,NA,NA,NA,NA,NA "TUKEY","Bwl",13,28,"10YR","6","2","10YR","4","3" "TUKWILA","Oal",0,25,"10YR","4","1","10YR","2","1" +"TUSIP","O",3,0,NA,NA,NA,NA,NA,NA +"TWINSI","Oa",5,0,NA,NA,NA,NA,NA,NA "TWINSI","Oi",20,5,NA,NA,NA,NA,NA,NA -"VABUS","0i",10,20,NA,NA,NA,NA,NA,NA +"VABUS","Oi",10,0,NA,NA,NA,NA,NA,NA "VAILTON","Al",0,23,"l0YR","5","3","l0YR","3","3" -"VAILTON","A2",23,71,"l0YR","5","3","l0YR","3","3" +"VAILTON","Oe",3,1,NA,NA,NA,NA,NA,NA +"VAILTON","A2",23,46,"l0YR","5","3","l0YR","3","3" +"VAILTON","Bwl",46,71,"l0YR","6","4","l0YR","4","4" "VAILTON","Bw2",71,102,"l0YR","6","4","l0YR","4","4" "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" +"VANEPPS","Oe",1,0,NA,NA,NA,NA,NA,NA +"VANZANDT","Oi",3,0,NA,NA,NA,NA,NA,NA +"VARELUM","Oi",3,0,NA,NA,NA,NA,NA,NA +"VERLOT","O1",4,0,NA,NA,NA,NA,NA,NA "VIOLA","Oi",5,0,NA,NA,NA,NA,NA,NA -"VOIGHT","0a",18,25,NA,NA,NA,NA,NA,NA -"VOIGHT","0i",25,18,NA,NA,NA,NA,NA,NA -"VOLPERIE","0i",3,18,NA,NA,NA,NA,NA,NA -"WADELL","01",3,5,NA,NA,NA,NA,NA,NA -"WADELL","02",3,28,NA,NA,NA,NA,NA,NA -"WALVILLE","All",0,5,"7.5YR","5","4","7.5YR","3","2" -"WALVILLE","0l and 02",5,114,NA,NA,NA,NA,NA,NA -"WALVILLE","Al2",NA,NA,"7.5YR","5","4","7.5YR","3","4" -"WALVILLE","B2",NA,114,"7.5YR","6","4","7.5YR","4","4" -"WAPAL","0i",0,4,NA,NA,NA,NA,NA,NA +"VOIGHT","Oa",18,0,NA,NA,NA,NA,NA,NA +"VOIGHT","Oi",25,18,NA,NA,NA,NA,NA,NA +"VOLPERIE","Oi",3,0,NA,NA,NA,NA,NA,NA +"WADELL","O2",3,0,NA,NA,NA,NA,NA,NA +"WALVILLE","All",0,30,"7.5YR","5","4","7.5YR","3","2" +"WALVILLE","O1 and O2",5,0,NA,NA,NA,NA,NA,NA +"WALVILLE","Al2",30,43,"7.5YR","5","4","7.5YR","3","4" +"WASHOUGAL","O1",3,0,NA,NA,NA,NA,NA,NA "WEDGEMONT","Bsl",5,51,"10YR","7","3","10YR","5","3" "WELCOME","E",0,5,NA,NA,NA,"l0YR","4","3" -"WELCOME","Oa",5,5,NA,NA,NA,NA,NA,NA +"WELCOME","Oa",5,0,NA,NA,NA,NA,NA,NA "WELCOME","Bs1",5,15,NA,NA,NA,"l0YR","3","4" "WELCOME","Oi",8,5,NA,NA,NA,NA,NA,NA -"WELCOME","Bs2",15,69,NA,NA,NA,"l0YR","3","6" -"WELCOME","2Cr",127,NA,NA,NA,NA,NA,NA,NA -"WELCOME","C1",NA,69,NA,NA,NA,"2.5Y","5","6" -"WHITESTONE","0i",0,3,NA,NA,NA,NA,NA,NA +"WELCOME","Bs2",15,48,NA,NA,NA,"l0YR","3","6" "WILKESON","Al",0,10,"l0YR","5","2","l0YR","3","2" -"WILKESON","A2",10,69,"l0YR","5","3","l0YR","3","3" +"WILKESON","A2",10,25,"l0YR","5","3","l0YR","3","3" +"WILKESON","BA",25,46,"l0YR","5","3","l0YR","4","3" +"WILKESON","Bt1",46,69,"l0YR","6","3","l0YR","4","4" "WILKESON","Bt2",69,91,"l0YR","6","4","l0YR","5","4" "WILKESON","Bt3",91,124,"l0YR","6","3","l0YR","4","4" "WILKESON","Bt4",124,163,"l0YR","6","6","l0YR","5","4" -"WILKESON","BA",NA,NA,"l0YR","5","3","l0YR","4","3" -"WILKESON","Bt1",NA,69,"l0YR","6","3","l0YR","4","4" -"WISHKAH","01",13,15,NA,NA,NA,NA,NA,NA +"WILLABY","O2",1,0,NA,NA,NA,NA,NA,NA +"WISHKAH","O1",13,0,NA,NA,NA,NA,NA,NA +"WOLLARD","Oi",10,0,NA,NA,NA,NA,NA,NA "WYANT","Oe",5,0,NA,NA,NA,NA,NA,NA +"XANA","Oe",8,0,NA,NA,NA,NA,NA,NA "YAHNE","A",0,20,"l0YR","6","3","l0YR","3","2" -"YAHNE","2AE",20,84,"l0YR","6","3","l0YR","4","3" +"YAHNE","Oi",1,0,NA,NA,NA,NA,NA,NA +"YAHNE","2AE",20,41,"l0YR","6","3","l0YR","4","3" +"YAHNE","2Bt1",41,84,"l0YR","5","4","l0YR","3","3" "YAHNE","2Bt2",84,152,"l0YR","5","4","l0YR","3","3" -"YAHNE","2Bt1",NA,84,"l0YR","5","4","l0YR","3","3" "ZEEKA","Bwl",30,51,"10YR","6","3","10YR","4","3" +"ZYMER","Oi",8,0,NA,NA,NA,NA,NA,NA +"ZYNBAR","Oi",5,0,NA,NA,NA,NA,NA,NA "ZYNBAR","Bwl",33,114,"10YR","7","4","10YR","4","4" -"ZYZYL","01",5,18,NA,NA,NA,NA,NA,NA +"ZYZYL","O1",5,0,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/WA-series.csv b/inst/extdata/OSD-error-reporting/state/WA-series.csv index 33720c9b25..038c9647b8 100644 --- a/inst/extdata/OSD-error-reporting/state/WA-series.csv +++ b/inst/extdata/OSD-error-reporting/state/WA-series.csv @@ -1,205 +1,207 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"NEVINE",284950,FALSE,2005,TRUE,TRUE -"NEWBELL",253538,FALSE,2009,FALSE,TRUE -"AITS",240390,TRUE,2004,FALSE,TRUE -"CINEBAR",172365,TRUE,2004,TRUE,TRUE +"CINEBAR",172365,TRUE,2004,TRUE,FALSE "BUCKPEAK",128741,FALSE,2002,TRUE,FALSE "SHERLOCK",126647,FALSE,2005,FALSE,TRUE "BROADAX",123234,FALSE,1997,FALSE,TRUE "GERMANY",105249,FALSE,1998,FALSE,TRUE -"WAPAL",96178,FALSE,2005,FALSE,TRUE "HAZELDELL",74306,FALSE,1998,TRUE,FALSE -"SHELTON",73399,FALSE,2004,TRUE,TRUE +"SHELTON",73399,FALSE,2004,TRUE,FALSE "GROVE",72422,FALSE,1988,TRUE,FALSE -"PRATHER",70462,FALSE,2002,TRUE,FALSE -"KATULA",66072,FALSE,1999,TRUE,TRUE +"KATULA",66072,FALSE,1999,TRUE,FALSE "ELWELL",62083,FALSE,1999,TRUE,TRUE "BAUMGARD",60823,FALSE,2002,TRUE,FALSE "WASHOUGAL",56846,FALSE,1998,TRUE,FALSE -"OAKES",56506,FALSE,2004,TRUE,TRUE +"OAKES",56506,FALSE,2004,TRUE,FALSE "CATTCREEK",53654,FALSE,1998,TRUE,FALSE +"LE BAR",51747,FALSE,2000,TRUE,FALSE "ZYNBAR",51255,TRUE,1998,TRUE,TRUE "HOODSPORT",48613,FALSE,2004,TRUE,FALSE "KITSAP",47920,TRUE,2018,FALSE,TRUE -"CLOQUATO",45936,FALSE,2000,TRUE,TRUE +"VANZANDT",46159,FALSE,2004,TRUE,FALSE +"CLOQUATO",45936,FALSE,2000,FALSE,TRUE "KALEETAN",43462,FALSE,2002,TRUE,FALSE -"VABUS",42442,FALSE,2001,TRUE,TRUE +"VABUS",42442,FALSE,2001,TRUE,FALSE "NORTHSTAR",42149,FALSE,2005,FALSE,TRUE -"PUGET",41255,TRUE,2000,TRUE,TRUE -"SCRABBLERS",37521,FALSE,2011,TRUE,TRUE +"PUGET",41255,TRUE,2000,FALSE,TRUE "BOISTFORT",35632,TRUE,1999,FALSE,TRUE "NEWAUKUM",35284,FALSE,2004,TRUE,TRUE "SWIFT",34988,FALSE,1998,TRUE,FALSE "BLETHEN",33761,FALSE,2004,TRUE,TRUE -"TREEN",32525,FALSE,2004,FALSE,TRUE -"WILKESON",31147,FALSE,1998,TRUE,TRUE -"MARTELLA",30519,FALSE,2005,TRUE,FALSE +"KINDY",31297,FALSE,2001,TRUE,FALSE +"WILKESON",31147,FALSE,1998,FALSE,TRUE "RAUGHT",30371,FALSE,1998,TRUE,TRUE -"SCAR",30338,FALSE,2005,TRUE,TRUE +"SCAR",30338,FALSE,2005,FALSE,TRUE +"NAGROM",29955,FALSE,2001,TRUE,FALSE "PUYALLUP",29820,TRUE,2012,FALSE,TRUE -"NANAMKIN",29112,FALSE,2005,FALSE,TRUE "CISPUS",28066,FALSE,2004,TRUE,TRUE -"RINKER",27399,FALSE,2004,TRUE,TRUE +"SINCLAIR",27996,FALSE,2004,TRUE,FALSE +"RINKER",27399,FALSE,2004,TRUE,FALSE +"SASKA",26973,FALSE,2001,TRUE,FALSE "CRACKERCREEK",26957,FALSE,2004,FALSE,TRUE -"MONTBORNE",26830,FALSE,2003,TRUE,TRUE +"MONTBORNE",26830,FALSE,2003,TRUE,FALSE "SKYKOMISH",25475,FALSE,1994,TRUE,FALSE "DOMELL",24610,FALSE,2002,TRUE,TRUE -"SWEM",24219,FALSE,2012,FALSE,TRUE "SKAGIT",23491,FALSE,2005,FALSE,TRUE "BELLICUM",22307,FALSE,1998,TRUE,TRUE "HOFFSTADT",21980,FALSE,2003,TRUE,FALSE -"KEGEL",21186,FALSE,2005,FALSE,TRUE -"PALMICH",20891,FALSE,2001,TRUE,TRUE +"PALMICH",20891,FALSE,2001,FALSE,TRUE "OLEQUA",19994,FALSE,2002,TRUE,FALSE "CINNAMON",19519,FALSE,1998,TRUE,FALSE +"CLE ELUM",19515,FALSE,2002,TRUE,FALSE +"NARGAR",19378,FALSE,1994,TRUE,FALSE "BEIGLE",19040,FALSE,2002,TRUE,FALSE "SQUALICUM",18692,FALSE,2002,TRUE,TRUE +"OGARTY",18625,FALSE,2004,TRUE,FALSE "NISQUALLY",18478,FALSE,2012,FALSE,TRUE -"SEMIAHMOO",18345,TRUE,1999,FALSE,TRUE -"KIEHL",18267,FALSE,2005,FALSE,TRUE +"ORWIG",18248,FALSE,2005,TRUE,FALSE "VAILTON",18199,FALSE,2002,TRUE,TRUE -"ZYZYL",17826,FALSE,1999,TRUE,TRUE +"ZYZYL",17826,FALSE,1999,TRUE,FALSE "CLOVERLAND",17673,FALSE,2013,TRUE,FALSE -"MCCREE",17336,FALSE,2005,TRUE,FALSE -"ROXER",17252,FALSE,2003,FALSE,TRUE +"WOLLARD",17107,FALSE,2004,TRUE,FALSE "SAUVOLA",16975,FALSE,2002,TRUE,TRUE -"GUEMES",16428,FALSE,1997,TRUE,TRUE +"SORENSEN",16600,FALSE,2002,TRUE,FALSE +"GUEMES",16428,FALSE,1997,TRUE,FALSE "NIMS",16078,FALSE,2002,FALSE,TRUE -"SCOTTIES",15899,FALSE,2001,TRUE,TRUE -"MOBATE",15790,FALSE,2005,FALSE,TRUE -"SMACKOUT",15761,FALSE,2005,FALSE,TRUE -"WISHKAH",15065,FALSE,1999,TRUE,TRUE +"OLOMOUNT",16043,FALSE,2004,TRUE,FALSE +"SCOTTIES",15899,FALSE,2001,FALSE,TRUE +"WISHKAH",15065,FALSE,1999,TRUE,FALSE "MURNEN",15053,FALSE,1999,TRUE,FALSE "MASHEL",14575,FALSE,1988,TRUE,FALSE -"ST. MARTIN",14223,FALSE,1997,TRUE,TRUE -"SAAR",14212,FALSE,2004,TRUE,TRUE +"ALMAC",14546,FALSE,2001,TRUE,FALSE +"ST. MARTIN",14223,FALSE,1997,TRUE,FALSE +"SAAR",14212,FALSE,2004,TRUE,FALSE "SPRINGSTEEN",14086,FALSE,2002,TRUE,FALSE -"BALDHILL",13958,FALSE,2010,TRUE,TRUE +"BALDHILL",13958,FALSE,2010,FALSE,TRUE "BIRDSVIEW",13840,FALSE,1988,TRUE,TRUE -"SIFTON",13684,FALSE,1994,TRUE,TRUE -"AMPAD",13415,FALSE,2001,TRUE,TRUE -"ROBER",13410,FALSE,2002,TRUE,TRUE +"SIFTON",13684,FALSE,1994,FALSE,TRUE +"ROBER",13410,FALSE,2002,TRUE,FALSE "NATI",13337,FALSE,2010,TRUE,FALSE -"BLAG",13033,FALSE,1999,TRUE,TRUE +"BLAG",13033,FALSE,1999,FALSE,TRUE "SQUIRES",12720,FALSE,2002,TRUE,FALSE "TENERIFFE",12572,TRUE,1988,TRUE,FALSE -"DIOBSUD",12169,FALSE,1994,TRUE,TRUE +"DIOBSUD",12169,FALSE,1994,TRUE,FALSE +"WILLABY",11618,FALSE,1999,TRUE,FALSE "LONESTAR",11357,FALSE,1998,TRUE,FALSE "SEAQUEST",11311,FALSE,1998,FALSE,TRUE -"APEX",10895,FALSE,2004,FALSE,TRUE +"SEHOME",10968,FALSE,2004,TRUE,FALSE "SNOHOMISH",10751,FALSE,2002,FALSE,TRUE -"CRINKER",10737,FALSE,1994,TRUE,TRUE +"CRINKER",10737,FALSE,1994,TRUE,FALSE "LYNNWOOD",10324,FALSE,1988,TRUE,FALSE -"TENAS",10252,FALSE,2005,FALSE,TRUE "COLTER",10208,TRUE,1998,TRUE,FALSE "TRADEDOLLAR",10191,FALSE,1998,TRUE,TRUE -"NATKIM",10008,FALSE,2001,FALSE,TRUE -"THETIS",9815,FALSE,2001,TRUE,TRUE +"HEISLER",10002,FALSE,2004,TRUE,FALSE +"PHILIPPA",9966,FALSE,2001,TRUE,FALSE +"THETIS",9815,FALSE,2001,TRUE,FALSE "TILLICUM",9749,FALSE,2002,TRUE,TRUE "ARDENMONT",9685,FALSE,1999,TRUE,FALSE "ROSLYN",9672,FALSE,2003,TRUE,FALSE -"KIPER",9548,FALSE,2001,FALSE,TRUE "MELAKWA",9422,FALSE,2002,TRUE,FALSE "MARBLEMOUNT",9324,FALSE,1994,TRUE,FALSE -"NAREL",9267,FALSE,1999,TRUE,TRUE +"NAREL",9267,FALSE,1999,TRUE,FALSE "CATLA",9204,FALSE,2004,FALSE,TRUE -"ANGLEN",9184,FALSE,2001,FALSE,TRUE +"SINNICE",9135,FALSE,1998,TRUE,FALSE "COTTERAL",8871,FALSE,1998,TRUE,FALSE "DELPHI",8834,FALSE,2004,TRUE,TRUE -"CLENDENEN",8597,FALSE,1994,TRUE,TRUE -"ILLABOT",8536,FALSE,2004,TRUE,TRUE +"CLENDENEN",8597,FALSE,1994,TRUE,FALSE +"ILLABOT",8536,FALSE,2004,TRUE,FALSE "SWEITING",8525,FALSE,2013,TRUE,FALSE -"KELLERBUTTE",8488,FALSE,2005,FALSE,TRUE "POTCHUB",8441,FALSE,2004,TRUE,TRUE "KOERLING",8325,FALSE,2005,FALSE,TRUE "BROMO",8315,FALSE,2004,TRUE,TRUE "BEAR PRAIRIE",8263,FALSE,1999,FALSE,TRUE "VARELUM",7864,FALSE,2002,TRUE,FALSE "YAHNE",7861,FALSE,2001,TRUE,TRUE -"CUPPLES",7830,FALSE,2004,TRUE,TRUE +"CUPPLES",7830,FALSE,2004,TRUE,FALSE "OSO",7774,FALSE,2004,TRUE,FALSE "WALVILLE",7690,FALSE,2004,TRUE,TRUE "DOBBS",7485,FALSE,2004,FALSE,TRUE +"AHREN",7466,FALSE,2004,TRUE,FALSE "KANASKAT",7400,FALSE,2002,TRUE,FALSE -"ESMERALDA",7066,FALSE,2001,TRUE,TRUE -"GROTTO",6993,FALSE,1988,TRUE,TRUE +"ESMERALDA",7066,FALSE,2001,TRUE,FALSE +"GROTTO",6993,FALSE,1988,TRUE,FALSE "HARTNIT",6764,FALSE,2004,TRUE,FALSE -"WHITESTONE",6649,FALSE,2005,FALSE,TRUE "GILES",6580,FALSE,2004,TRUE,FALSE "WEDGEMONT",6399,FALSE,2003,FALSE,TRUE "SQUALLY",6299,FALSE,1999,TRUE,TRUE "SPANA",6235,FALSE,2012,FALSE,TRUE -"TISCH",6210,FALSE,2004,TRUE,TRUE +"TISCH",6210,FALSE,2004,FALSE,TRUE "ARISTINE",6202,FALSE,2006,FALSE,TRUE -"KACHESS",5996,FALSE,2001,FALSE,TRUE -"VOLPERIE",5907,FALSE,2001,TRUE,TRUE +"PELEE",6146,FALSE,1998,TRUE,FALSE +"BANNEL",6116,FALSE,1998,TRUE,FALSE +"TRITON",6097,FALSE,2004,TRUE,FALSE +"VOLPERIE",5907,FALSE,2001,TRUE,FALSE "BISPING",5858,FALSE,2001,TRUE,FALSE -"STIMSON",5825,FALSE,2002,TRUE,TRUE +"STIMSON",5825,FALSE,2002,TRUE,FALSE "ZEEKA",5796,FALSE,2010,FALSE,TRUE "NATIONAL",5722,FALSE,2003,TRUE,TRUE -"VOIGHT",5702,FALSE,2001,TRUE,TRUE +"MULHOLLAND",5704,FALSE,1997,TRUE,FALSE +"VOIGHT",5702,FALSE,2001,TRUE,FALSE "LOPER",5689,FALSE,2002,TRUE,FALSE "BLEWETT",5654,FALSE,1999,TRUE,TRUE "SHUKSAN",5593,FALSE,2001,TRUE,FALSE -"AZWELL",5497,FALSE,2000,FALSE,TRUE +"AZWELL",5497,FALSE,2000,TRUE,TRUE +"CHAPOT",5340,FALSE,2001,TRUE,FALSE "MAL",5338,FALSE,2002,TRUE,FALSE "BENHAM",5242,FALSE,1998,TRUE,TRUE "JUG",5241,FALSE,1994,TRUE,FALSE "POLEPATCH",5202,FALSE,1993,TRUE,FALSE "REVEL",5195,FALSE,2010,TRUE,TRUE "RONSEL",4806,FALSE,2001,TRUE,TRUE -"STANDUP",4744,FALSE,1999,TRUE,TRUE -"RUGLES",4708,FALSE,2001,TRUE,TRUE +"STANDUP",4744,FALSE,1999,FALSE,TRUE +"RUGLES",4708,FALSE,2001,TRUE,FALSE "RAINIER",4639,FALSE,2002,TRUE,FALSE "BANDID",4588,FALSE,1998,TRUE,FALSE "LEDOW",4510,FALSE,1987,TRUE,FALSE -"SWINOMISH",4337,FALSE,2002,TRUE,TRUE +"SWINOMISH",4337,FALSE,2002,TRUE,FALSE "TUSIP",4244,FALSE,2003,TRUE,FALSE "KULSHAN",4177,FALSE,2010,TRUE,FALSE -"JACKMAN",4129,FALSE,2004,TRUE,TRUE +"JACKMAN",4129,FALSE,2004,TRUE,FALSE "EDGEWICK",4067,FALSE,2011,FALSE,TRUE -"TALLS",4040,FALSE,2005,FALSE,TRUE -"RACKER",3979,FALSE,2003,FALSE,TRUE -"SAUK",3973,FALSE,2004,TRUE,TRUE -"COWEEMAN",3966,FALSE,2002,TRUE,TRUE -"ROARING",3933,FALSE,2006,TRUE,FALSE -"DICK",3890,FALSE,2000,TRUE,FALSE +"SAUK",3973,FALSE,2004,TRUE,FALSE +"COWEEMAN",3966,FALSE,2002,FALSE,TRUE "LEMOLO",3790,FALSE,2002,TRUE,FALSE -"QUILLAYUTE",3784,FALSE,1999,TRUE,TRUE +"QUILLAYUTE",3784,FALSE,1999,TRUE,FALSE +"CAYUSE",3762,FALSE,2001,TRUE,FALSE "LACONNER",3758,FALSE,2005,FALSE,TRUE "WELCOME",3649,FALSE,2010,TRUE,TRUE "SPIEDEN",3641,FALSE,2007,FALSE,TRUE +"SKIYOU",3603,FALSE,2002,TRUE,FALSE "DELAMETER",3597,FALSE,1998,FALSE,TRUE "ETACH",3394,FALSE,1994,TRUE,FALSE -"BOSSBURG",3384,FALSE,2004,FALSE,TRUE -"KLAWATTI",3368,FALSE,2004,TRUE,TRUE +"KLAWATTI",3368,FALSE,2004,TRUE,FALSE "NETRAC",3190,FALSE,1994,TRUE,TRUE -"FORSYTH",3079,FALSE,1993,TRUE,TRUE +"FORSYTH",3079,FALSE,1993,TRUE,FALSE "SAXON",3059,FALSE,2002,TRUE,FALSE -"HUMSKEL",3058,FALSE,2004,TRUE,TRUE +"HUMSKEL",3058,FALSE,2004,TRUE,FALSE "CULVING",3043,FALSE,2000,FALSE,TRUE -"FERTEG",2999,FALSE,2002,TRUE,TRUE +"FERTEG",2999,FALSE,2002,TRUE,FALSE "ST. HELENS",2970,FALSE,1998,TRUE,FALSE "TUKEY",2969,FALSE,2000,FALSE,TRUE "ZYMER",2937,FALSE,1998,TRUE,FALSE +"ALKIRIDGE",2913,FALSE,2001,TRUE,FALSE "SKAMANIA",2846,FALSE,2011,TRUE,FALSE "MOWICH",2794,FALSE,2002,TRUE,FALSE "TUKWILA",2673,FALSE,1999,FALSE,TRUE -"LEMAH",2615,FALSE,2001,FALSE,TRUE +"NATAPOC",2646,FALSE,2001,TRUE,FALSE "BARNHARDT",2565,FALSE,2002,TRUE,FALSE -"ODO",2550,FALSE,2001,FALSE,TRUE "THRASH",2549,FALSE,2010,TRUE,TRUE +"VANEPPS",2495,FALSE,1999,TRUE,FALSE "WYANT",2412,FALSE,1997,TRUE,FALSE "AHL",2399,FALSE,2004,TRUE,FALSE +"TIPTOP",2382,FALSE,1999,TRUE,FALSE "COMAR",2298,FALSE,2002,TRUE,FALSE -"SHAMEL",2289,FALSE,2004,TRUE,TRUE +"SHAMEL",2289,FALSE,2004,TRUE,FALSE +"PERSIS",2288,FALSE,2001,TRUE,FALSE +"SANDUN",2260,FALSE,1997,TRUE,FALSE "MINNIEPEAK",2208,FALSE,1998,TRUE,TRUE "PIERKING",2163,FALSE,2001,TRUE,FALSE +"VERLOT",2100,FALSE,2004,TRUE,FALSE "EDFRO",2035,FALSE,2010,FALSE,TRUE "MADRAK",1789,FALSE,1999,FALSE,TRUE "PANAMAKER",1770,FALSE,1994,FALSE,TRUE "SKATE",1687,FALSE,2004,TRUE,TRUE -"OJIBWAY",1666,FALSE,2005,FALSE,TRUE +"OJIBWAY",1666,FALSE,2005,TRUE,FALSE +"DEKAPEN",1604,FALSE,2002,TRUE,FALSE "TWINSI",1596,FALSE,2010,TRUE,FALSE "KINGMONT",1445,FALSE,1997,TRUE,TRUE "STELLA",1442,FALSE,2002,TRUE,FALSE @@ -207,12 +209,11 @@ "DEMING",1296,FALSE,2001,TRUE,FALSE "FORTRAN",1277,FALSE,1998,TRUE,TRUE "NARDMONT",1201,FALSE,2002,TRUE,FALSE -"WADELL",1177,FALSE,2004,TRUE,TRUE +"WADELL",1177,FALSE,2004,TRUE,FALSE +"CORDY",1121,FALSE,1997,TRUE,FALSE "SODACREEK",1076,FALSE,1995,TRUE,FALSE -"DUGUALLA",1076,FALSE,2007,FALSE,TRUE "HOZOMEEN",1041,FALSE,2001,TRUE,FALSE -"BARNELLCREEK",1041,FALSE,2004,FALSE,TRUE -"THORNTON",966,FALSE,1997,TRUE,TRUE +"THORNTON",966,FALSE,1997,TRUE,FALSE "JORGENSEN",841,FALSE,2001,TRUE,FALSE "XANA",701,FALSE,2004,TRUE,FALSE "MCDOUG",639,FALSE,1998,TRUE,FALSE @@ -220,10 +221,11 @@ "PINOTY",564,FALSE,1998,TRUE,FALSE "CULVOP",544,FALSE,2004,TRUE,FALSE "HOVDE",444,FALSE,2001,TRUE,TRUE +"ANGLE",420,FALSE,2001,TRUE,FALSE "HANNEGAN",324,FALSE,2001,TRUE,FALSE "NARDINE",194,FALSE,2002,TRUE,FALSE "VIOLA",NA,FALSE,2003,TRUE,FALSE "PSUGA",NA,FALSE,2004,TRUE,FALSE -"PARA",NA,FALSE,2002,TRUE,TRUE +"PARA",NA,FALSE,2002,TRUE,FALSE "MAUDE",NA,FALSE,2017,TRUE,FALSE "LAGITOS",NA,FALSE,2001,TRUE,FALSE diff --git a/inst/extdata/OSD-error-reporting/state/WI-hz.csv b/inst/extdata/OSD-error-reporting/state/WI-hz.csv index 9b5d5879ee..910453298f 100644 --- a/inst/extdata/OSD-error-reporting/state/WI-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/WI-hz.csv @@ -1,9 +1,6 @@ "id","name","top","bottom","dry_hue","dry_value","dry_chroma","moist_hue","moist_value","moist_chroma" -"BOOTS","0a1",0,10,NA,NA,NA,"5YR","2","1" "LAONA","Bsl",8,18,NA,NA,NA,"7.5YR","3","4" -"MERRILLAN","0e",0,3,NA,NA,NA,"10YR","3","2" "METONGA","Bsl",10,18,NA,NA,NA,"7.5YR","3","4" -"MINOCQUA","0a",0,3,NA,NA,NA,"10YR","2","1" "PARTRIDGE","Oe",3,0,NA,NA,NA,NA,NA,NA "TINTSON","Bwl",20,36,NA,NA,NA,"10YR","4","4" "VANZILE","Bsl",10,23,NA,NA,NA,"7.5YR","3","4" diff --git a/inst/extdata/OSD-error-reporting/state/WI-series.csv b/inst/extdata/OSD-error-reporting/state/WI-series.csv index 6a427ecb81..9bdff09eef 100644 --- a/inst/extdata/OSD-error-reporting/state/WI-series.csv +++ b/inst/extdata/OSD-error-reporting/state/WI-series.csv @@ -1,9 +1,7 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" -"MINOCQUA",192903,FALSE,1998,FALSE,TRUE -"MERRILLAN",81480,FALSE,2001,FALSE,TRUE "VANZILE",47345,FALSE,1997,FALSE,TRUE +"NEOPIT",23696,FALSE,2001,TRUE,FALSE "METONGA",21502,FALSE,1997,FALSE,TRUE -"BOOTS",12502,FALSE,2022,FALSE,TRUE "PARTRIDGE",6430,FALSE,1989,TRUE,FALSE "TINTSON",6245,FALSE,1995,FALSE,TRUE "LAONA",5150,FALSE,1997,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 4bc2a5d5d6..65469fd302 100644 --- a/inst/extdata/OSD-error-reporting/state/WY-hz.csv +++ b/inst/extdata/OSD-error-reporting/state/WY-hz.csv @@ -9,15 +9,8 @@ "CORA","Ae",8,0,NA,NA,NA,NA,NA,NA "EMBLEM","2Bkl",51,76,"10YR","6","3","10YR","4","4" "FELTNER","Cca",30,41,"l0YR","6","4","10YR","5","4" -"FOURLOG","01",0,3,NA,NA,NA,NA,NA,NA "FOXTON","Btl",20,41,"5YR","5","4","5YR","4","4" -"INDART","0i",0,8,NA,NA,NA,NA,NA,NA -"INDART","0e",8,10,NA,NA,NA,NA,NA,NA "LASSEL","Clca",30,46,"10YR","6","3","10YR","5","3" "MILLPOT","Clca",36,107,"7.5YR","8","2","7.5YR","6","3" "TORCHLIGHT","Clca",10,20,"2.5Y","5","2","2.5Y","4","2" -"TURNERVILLE","0i",0,3,NA,NA,NA,NA,NA,NA -"TURNERVILLE","0e",3,8,NA,NA,NA,NA,NA,NA "UNSON","Clca",38,61,"10YR","7","2","10YR","5","2" -"WOODROCK","0i",0,5,NA,NA,NA,NA,NA,NA -"WOODROCK","0e",5,8,NA,NA,NA,NA,NA,NA diff --git a/inst/extdata/OSD-error-reporting/state/WY-series.csv b/inst/extdata/OSD-error-reporting/state/WY-series.csv index e26eb2ec5f..d1bd534d61 100644 --- a/inst/extdata/OSD-error-reporting/state/WY-series.csv +++ b/inst/extdata/OSD-error-reporting/state/WY-series.csv @@ -1,20 +1,17 @@ "id","ac","benchmarksoilflag","soiltaxclasslastupdated","depthErrors","ocrErrors" "CAMBARGE",53601,FALSE,1999,FALSE,TRUE -"WOODROCK",43062,FALSE,2005,FALSE,TRUE "EMBLEM",42294,TRUE,1999,FALSE,TRUE "BADWATER",37314,FALSE,2004,FALSE,TRUE -"TURNERVILLE",33619,FALSE,2005,FALSE,TRUE "BORDEAUX",32625,FALSE,2004,FALSE,TRUE "LASSEL",27261,FALSE,1999,FALSE,TRUE "FELTNER",23011,FALSE,1999,FALSE,TRUE "TORCHLIGHT",22319,FALSE,1997,FALSE,TRUE "FOXTON",15546,FALSE,2004,FALSE,TRUE "DEMPSEY",6605,FALSE,2017,TRUE,FALSE -"INDART",4385,FALSE,2005,FALSE,TRUE "CORA",1249,FALSE,2004,TRUE,TRUE "GARZA",1224,FALSE,1999,TRUE,FALSE "CASTELLO",617,FALSE,1999,FALSE,TRUE "UNSON",67,FALSE,2000,FALSE,TRUE "MILLPOT",NA,FALSE,1999,FALSE,TRUE "LANTIS",NA,FALSE,2006,TRUE,FALSE -"FOURLOG",NA,FALSE,2003,TRUE,TRUE +"FOURLOG",NA,FALSE,2003,TRUE,FALSE diff --git a/inst/extdata/OSD/A/ABEGG.json b/inst/extdata/OSD/A/ABEGG.json index 6b00efe76c..21757a0b88 100644 --- a/inst/extdata/OSD/A/ABEGG.json +++ b/inst/extdata/OSD/A/ABEGG.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1 1/2 inches to 0; loose layer of needles, leaves and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/A/ABILENE.json b/inst/extdata/OSD/A/ABILENE.json index b82cd9f440..c3299ffba1 100644 --- a/inst/extdata/OSD/A/ABILENE.json +++ b/inst/extdata/OSD/A/ABILENE.json @@ -163,6 +163,29 @@ "topography": "smooth", "narrative": "Btk--71 to 97 cm (28 to 38 in); dark grayish brown (10YR 4/2) clay, dark brown (10YR 3/3) moist; moderate medium angular blocky structure; very hard, firm; common concretions up to 1/4 inch in diameter and films and threads of calcium carbonate; violently effervescent; moderately alkaline; gradual smooth boundary. Thickness is 20 to 61 cm (8 to 24 in)" }, + { + "name": "BCk1", + "top": 97, + "bottom": 127, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "weak coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "diffuse", + "topography": "wavy", + "narrative": "BCk1--97 to 127 (38 to 50 in); pink (7.5YR 8/4) clay, light yellowish brown (10YR 6/4) moist; weak coarse subangular blocky structure; hard, friable; mixture of segregated calcium carbonate and light brown clay containing many calcium carbonate masses and concretions; moderately alkaline; violently effervescent; diffuse wavy boundary." + }, { "name": "BCk2", "top": 127, diff --git a/inst/extdata/OSD/A/ABSAQUIL.json b/inst/extdata/OSD/A/ABSAQUIL.json index cdfe3d7199..a38d0bbf47 100644 --- a/inst/extdata/OSD/A/ABSAQUIL.json +++ b/inst/extdata/OSD/A/ABSAQUIL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1 1/2 inches to 0 ; duff layer of partially decomposed leaves, twigs and needles." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/A/ACKER.json b/inst/extdata/OSD/A/ACKER.json index 1c12ccb62d..d5e416aa4f 100644 --- a/inst/extdata/OSD/A/ACKER.json +++ b/inst/extdata/OSD/A/ACKER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/AHART.json b/inst/extdata/OSD/A/AHART.json index a0e3885415..64e8792f5b 100644 --- a/inst/extdata/OSD/A/AHART.json +++ b/inst/extdata/OSD/A/AHART.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/AHL.json b/inst/extdata/OSD/A/AHL.json index 2c6a6b2e10..017da2dcc1 100644 --- a/inst/extdata/OSD/A/AHL.json +++ b/inst/extdata/OSD/A/AHL.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/AHREN.json b/inst/extdata/OSD/A/AHREN.json index 4d60dc30af..e5da9ea166 100644 --- a/inst/extdata/OSD/A/AHREN.json +++ b/inst/extdata/OSD/A/AHREN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe--1 1/2 inches to 0; partially decomposed needles, leaves, twigs, bark, and cones; abrupt smooth boundary. (1 to 3 inches thick)" + }, { "name": "Bw1", "top": 0, diff --git a/inst/extdata/OSD/A/AIKEN.json b/inst/extdata/OSD/A/AIKEN.json index eba1bd2625..2f2a0a2100 100644 --- a/inst/extdata/OSD/A/AIKEN.json +++ b/inst/extdata/OSD/A/AIKEN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--1/2 inch to 0; partially decomposed forest litter." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/A/AITS.json b/inst/extdata/OSD/A/AITS.json index 2d84311372..e23b213030 100644 --- a/inst/extdata/OSD/A/AITS.json +++ b/inst/extdata/OSD/A/AITS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ALAE.json b/inst/extdata/OSD/A/ALAE.json index d6b247ddf3..3daf505eb9 100644 --- a/inst/extdata/OSD/A/ALAE.json +++ b/inst/extdata/OSD/A/ALAE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 5, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "weak fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "cobbly", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--0 to 5 centimeter (0 to 2 inches); very dark brown (10YR 2/2) cobbly sandy loam, very dark grayish brown (10YR 3/2) dry; weak fine granular structure; soft, very friable, nonsticky and nonplastic; common very fine roots; many fine pores; many ash particles up to 2 millimeters in diameter that do not break down on continued rubbing; 20 percent subangular 'a'a gravel and 14 percent subangular 'a'a cobbles; neutral (pH 6.8); clear smooth boundary. (2 to 3 inches thick)" + }, { "name": "A2", "top": 5, diff --git a/inst/extdata/OSD/A/ALAMBIQUE.json b/inst/extdata/OSD/A/ALAMBIQUE.json index 9b4f8ad2b5..bc6ae95774 100644 --- a/inst/extdata/OSD/A/ALAMBIQUE.json +++ b/inst/extdata/OSD/A/ALAMBIQUE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ALAPAI.json b/inst/extdata/OSD/A/ALAPAI.json index 7855c3a324..d9ef9b820b 100644 --- a/inst/extdata/OSD/A/ALAPAI.json +++ b/inst/extdata/OSD/A/ALAPAI.json @@ -212,7 +212,7 @@ { "name": "Bw4", "top": 127, - "bottom": "NA", + "bottom": 145, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ALBRIGHTS.json b/inst/extdata/OSD/A/ALBRIGHTS.json index 190c6273ec..082baf36fa 100644 --- a/inst/extdata/OSD/A/ALBRIGHTS.json +++ b/inst/extdata/OSD/A/ALBRIGHTS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--0 to 1 centimeter; partially decomposed leaves, twigs and mosses, very strongly acid. (0 to 2 inches thick)" + }, { "name": "A", "top": 1, diff --git a/inst/extdata/OSD/A/ALCOT.json b/inst/extdata/OSD/A/ALCOT.json index 69cc5379d9..93f002b14f 100644 --- a/inst/extdata/OSD/A/ALCOT.json +++ b/inst/extdata/OSD/A/ALCOT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ALET.json b/inst/extdata/OSD/A/ALET.json index 62a4b35705..8af19929aa 100644 --- a/inst/extdata/OSD/A/ALET.json +++ b/inst/extdata/OSD/A/ALET.json @@ -162,6 +162,52 @@ "distinctness": "clear", "topography": "smooth", "narrative": "Bt3--79 to 117 cm (31 to 46 in); pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; moderate fine and medium angular blocky structure; very hard, very firm; sticky and plastic; few very fine roots; many faint clay films on surfaces of peds; 1 percent round siliceous pebbles less than 3 cm (1 in) in diameter; noneffervescent; slightly alkaline; clear smooth boundary. (Combined thickness of the Bt horizon is (43 to 127 cm [17 to 50 in])" + }, + { + "name": "Btk1", + "top": 117, + "bottom": 155, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "clay loam", + "structure": "weak fine and medium subangular blocky and granular", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Btk1--117 to 155 (46 to 61 in); very pale brown (10YR 7/3) clay loam, pale brown (10YR 6/3) moist; weak fine and medium subangular blocky and granular structure; very hard, very firm, sticky and plastic; few very fine and fine roots; few faint clay films on surfaces of peds; 5 percent fine and medium threads of calcium carbonate; Sodium Adsorption Ratio (SAR) of 1; Electrical Conductivity (EC) 2 dS/m violently effervescent; moderately alkaline; clear smooth boundary. (25 to 64 cm [10 to 25 in] thick)" + }, + { + "name": "Btk2", + "top": 155, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "sandy clay loam", + "structure": "weak fine and medium subangular blocky and granular", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Btk2--155 to 203 (61 to 80 in); very pale brown (10YR 7/3) sandy clay loam, pale brown (10YR 6/3) moist; weak fine and medium subangular blocky and granular structure; hard, firm, slightly sticky and plastic; few very fine and fine roots; few faint clay films on surfaces of peds; 10 percent fine and medium films and threads of calcium carbonate; Sodium Adsorption Ratio (SAR) of 1; Electrical Conductivity (EC) 2 dS/m; violently effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/A/ALKIRIDGE.json b/inst/extdata/OSD/A/ALKIRIDGE.json index af3463c954..dbe28b1e91 100644 --- a/inst/extdata/OSD/A/ALKIRIDGE.json +++ b/inst/extdata/OSD/A/ALKIRIDGE.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ALLIS.json b/inst/extdata/OSD/A/ALLIS.json index 2f555dea78..fe2654ccf1 100644 --- a/inst/extdata/OSD/A/ALLIS.json +++ b/inst/extdata/OSD/A/ALLIS.json @@ -208,6 +208,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "2Cr--28 to 31 inches; weathered shale bedrock." + }, + { + "name": "2R", + "top": 79, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2R--31+ inches; shale bedrock" } ] ] diff --git a/inst/extdata/OSD/A/ALMAC.json b/inst/extdata/OSD/A/ALMAC.json index 5500c36683..f3c5ad50c2 100644 --- a/inst/extdata/OSD/A/ALMAC.json +++ b/inst/extdata/OSD/A/ALMAC.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 6, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ALPINE.json b/inst/extdata/OSD/A/ALPINE.json index da25eb7084..9854132555 100644 --- a/inst/extdata/OSD/A/ALPINE.json +++ b/inst/extdata/OSD/A/ALPINE.json @@ -233,7 +233,7 @@ "narrative": "Bkq'--90 to 111 cm; brown (10YR 5/3) extremely gravelly loamy sand, yellowish brown (10YR 5/4) moist; single grain; loose; very few very fine roots; many interstitial pores; few discontinuous pockets of weakly cemented sands and gravel; continuous calcium carbonate coats around 80 percent of rock fragments; 65 percent calcium carbonate equivalent; silica around rock fragments; 70 percent gravel, 5 percent cobbles, 5 percent stones; strongly effervescent; slightly alkaline (pH 7.8); gradual wavy boundary. (Combined thickness of the Bkq and Bkq' horizons is 0 to 40 cm)" }, { - "name": "1", + "name": "Bk\"1", "top": 111, "bottom": 130, "dry_hue": "10YR", @@ -256,7 +256,7 @@ "narrative": "Bk\"1--111 to 130 cm; brown (10YR 5/3) extremely gravelly sandy loam, yellowish brown (10YR 5/4) moist; single grain; loose; few very fine roots; many interstitial pores; continuous calcium carbonate coats on bottoms of all rock fragments; 55 percent calcium carbonate equivalent; 70 percent gravel, 5 percent cobbles, 5 percent stones; strongly effervescent; moderately alkaline (pH 8.0); gradual wavy boundary. (Combined thickness of the Bk, Bk' and Bk\" horizons is 28 to greater than 128 cm)" }, { - "name": "2", + "name": "Bk\"2", "top": 130, "bottom": 152, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/A/ALSCO.json b/inst/extdata/OSD/A/ALSCO.json index cd2999d3f3..72f848e6e9 100644 --- a/inst/extdata/OSD/A/ALSCO.json +++ b/inst/extdata/OSD/A/ALSCO.json @@ -143,7 +143,7 @@ { "name": "Btk2", "top": 28, - "bottom": "NA", + "bottom": 41, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "Bk1", - "top": "NA", + "top": 41, "bottom": 53, "dry_hue": "7.5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/A/ALTHOUSE.json b/inst/extdata/OSD/A/ALTHOUSE.json index 7f8d8df139..0ccba99e2f 100644 --- a/inst/extdata/OSD/A/ALTHOUSE.json +++ b/inst/extdata/OSD/A/ALTHOUSE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ALVISO.json b/inst/extdata/OSD/A/ALVISO.json index 01c413100e..80aaf894e5 100644 --- a/inst/extdata/OSD/A/ALVISO.json +++ b/inst/extdata/OSD/A/ALVISO.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--0 to 1/8 inches; discontinuous layer of plant remains. (0 to 1 inch thick)" + }, + { + "name": "Ag", + "top": 1, + "bottom": 13, + "dry_hue": "5Y", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "5Y", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silty clay loam", + "structure": "moderate medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.2, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Ag--1/8 to 5 inches; gray (5Y 5/1) silty clay loam, dark olive gray (5Y 3/2) moist; moderate medium angular blocky structure; hard, friable, sticky, plastic; few fine and common very fine roots; few very fine interstitial and very fine tubular pores; neutral (pH 7.2); gradual smooth boundary. (4 to 7 inches thick)" + }, { "name": "Clg", "top": 13, diff --git a/inst/extdata/OSD/A/AMPAD.json b/inst/extdata/OSD/A/AMPAD.json index 7fdcc486ef..08781cbec0 100644 --- a/inst/extdata/OSD/A/AMPAD.json +++ b/inst/extdata/OSD/A/AMPAD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0iOi", + "name": "OiOi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "AB--5 to 10 inches; yellowish brown (10YR 5/4) ashy sandy loam, dark yellowish brown (10YR 4/4) moist; weak fine subangular blocky structure; slightly hard, friable, nonsticky and nonplastic; common very fine and fine roots; few very fine irregular pores; 5 percent sandstone paragravel; moderately acid (pH 6.0); clear wavy boundary. (0 to 5 inches thick)" }, + { + "name": "Bw1", + "top": 25, + "bottom": 41, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "sandy loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.8, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw1--10 to 16 to 15 inches; light brown (7.5YR 6/4) sandy loam, brown (7.5YR 4/4) moist; weak fine subangular blocky structure; slightly hard, friable, nonsticky and slightly plastic; common very fine and fine roots; few very fine irregular pores; 5 percent sandstone paragravel; moderately acid (pH 5.8); clear wavy boundary. (6 to 9 inches thick)" + }, { "name": "Bw2", "top": 41, diff --git a/inst/extdata/OSD/A/ANCHORAGE.json b/inst/extdata/OSD/A/ANCHORAGE.json index b5ac88c810..0e5e307310 100644 --- a/inst/extdata/OSD/A/ANCHORAGE.json +++ b/inst/extdata/OSD/A/ANCHORAGE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ANDRY.json b/inst/extdata/OSD/A/ANDRY.json index 80eeb36e92..771090fb2b 100644 --- a/inst/extdata/OSD/A/ANDRY.json +++ b/inst/extdata/OSD/A/ANDRY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "021", + "name": "O21", "top": 30, "bottom": 15, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "021--12 to 6 inches; very dark grayish brown (10YR 3/2) hemic material; about 50 percent fiber, about 30 percent rubbed;" }, { - "name": "022", + "name": "O22", "top": 15, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ANGELINA.json b/inst/extdata/OSD/A/ANGELINA.json index dc111ec159..ffc14aee32 100644 --- a/inst/extdata/OSD/A/ANGELINA.json +++ b/inst/extdata/OSD/A/ANGELINA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--0 to 1 inches; leaves, stems, and other litter in various stage of decomposition. (1 to 4 inches thick)" }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ANGLE.json b/inst/extdata/OSD/A/ANGLE.json index 6b90ae9a2e..8130279fa4 100644 --- a/inst/extdata/OSD/A/ANGLE.json +++ b/inst/extdata/OSD/A/ANGLE.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.5, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1 to 0; undecomposed needles, grass, leaves, and twigs. medium acid (pH 5.5)." + }, { "name": "A", "top": 0, - "bottom": 5, + "bottom": 2, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "E", - "top": 5, - "bottom": 18, + "top": 2, + "bottom": 7, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, @@ -119,8 +142,8 @@ }, { "name": "Bt1", - "top": 18, - "bottom": 58, + "top": 7, + "bottom": 23, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 4, @@ -142,8 +165,8 @@ }, { "name": "Bt2", - "top": 58, - "bottom": 107, + "top": 23, + "bottom": 42, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 4, @@ -165,8 +188,8 @@ }, { "name": "C", - "top": 107, - "bottom": 152, + "top": 42, + "bottom": 60, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ANGLEN.json b/inst/extdata/OSD/A/ANGLEN.json index 1a5e15cbb6..afe323fbe8 100644 --- a/inst/extdata/OSD/A/ANGLEN.json +++ b/inst/extdata/OSD/A/ANGLEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ANGOSTURA.json b/inst/extdata/OSD/A/ANGOSTURA.json index 306bfa7ea3..114bfe2dbc 100644 --- a/inst/extdata/OSD/A/ANGOSTURA.json +++ b/inst/extdata/OSD/A/ANGOSTURA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ANNAROSE.json b/inst/extdata/OSD/A/ANNAROSE.json index aa3584891a..23588e76ee 100644 --- a/inst/extdata/OSD/A/ANNAROSE.json +++ b/inst/extdata/OSD/A/ANNAROSE.json @@ -231,6 +231,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Cdk1--127 to 175 cm (50 to 69 in); very pale brown (10YR 8/2) weakly consolidated sandstone, and about 10 percent very pale brown (10YR 7/3) fine sandy loam; light gray (10YR 7/2), and light yellowish brown (10YR 6/4) moist; massive; hard, firm; few very fine and fine roots in fractures; common very fine and fine tubular pores; fractures are spaced 5 to 15 inches apart; 8 percent by volume threads and masses of calcium carbonate; 80 percent of matrix is violently effervescent with 20 percent noneffervescent; moderately alkaline; gradual wavy boundary." + }, + { + "name": "Cdk2", + "top": 175, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "noneffervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cdk2--175 to 203 (69 to 80 in); very pale brown (10YR 8/2) weakly consolidated sandstone, and about 10 percent very pale brown (10YR 7/3) fine sandy loam along fractures; light gray (10YR 7/2), and light yellowish brown (10YR 6/4) moist; massive; hard, firm; few very fine and fine roots in fractures; common very fine and fine tubular pores; fractures are spaced 10 to 20 inches apart; 5 percent by volume threads and masses of calcium carbonate; 60 percent of matrix is violently effervescent with 40 percent noneffervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/A/ANOKA.json b/inst/extdata/OSD/A/ANOKA.json index aeec85bf1b..9fb37b607e 100644 --- a/inst/extdata/OSD/A/ANOKA.json +++ b/inst/extdata/OSD/A/ANOKA.json @@ -162,52 +162,6 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bt--36 to 43 inches; brown (10YR 4/3) loamy very fine sand; few masses of yellowish brown (10YR 5/4); few masses of light brownish gray (10YR 6/2) uncoated sand grains; massive; hard, friable; common clay bridges between sand grains; strongly acid; clear wavy boundary. (4 to 14 inches thick)" - }, - { - "name": "1", - "top": 109, - "bottom": 142, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 2, - "texture_class": "very fine sandy loam", - "structure": "massive", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "moderately acid", - "eff_class": "NA", - "distinctness": "abrupt", - "topography": "wavy", - "narrative": "(E&Bt)1--43 to 56 inches; grayish brown (10YR 5/2), brown (10YR 5/3), and yellowish brown (10YR 5/4) very fine sand; single grained (E); brown (10YR 4/3) to yellowish brown (10YR 5/4) very fine sandy loam lamellae 1 to 4 inches thick (Bt); massive; friable; common clay bridges between sand grains; moderately acid; abrupt wavy boundary. (12 to 30 inches thick)" - }, - { - "name": "2", - "top": 142, - "bottom": 178, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 3, - "texture_class": "loamy very fine sand", - "structure": "single grain", - "dry_rupture": "loose", - "moist_rupture": "loose", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "slightly acid", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "(E&Bt)2--56 to 70 inches; brown (10YR 5/3) very fine sand (E); single grain; loose; a few 1/8- to 1/4- inch dark yellowish brown (10YR 4/4) loamy very fine sand lamellae (Bt); slightly acid." } ] ] diff --git a/inst/extdata/OSD/A/ANSEL.json b/inst/extdata/OSD/A/ANSEL.json index 9a35ad42e7..1ca5934637 100644 --- a/inst/extdata/OSD/A/ANSEL.json +++ b/inst/extdata/OSD/A/ANSEL.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ANTIOCH.json b/inst/extdata/OSD/A/ANTIOCH.json index 45aa715047..a1a36526ce 100644 --- a/inst/extdata/OSD/A/ANTIOCH.json +++ b/inst/extdata/OSD/A/ANTIOCH.json @@ -254,6 +254,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C1--60 to 76 inches; pale brown (10YR 6/3) loam, dark yellowish brown (10YR 4/4) moist; weak medium angular blocky structure; slightly hard, friable, slightly sticky, plastic; many very fine tubular pores; common thin clay films on faces of peds and lining pores; common dark stains; moderately alkaline (pH 8.0); clear wavy boundary. (10 to 20 inches thick)" + }, + { + "name": "C2", + "top": 193, + "bottom": 206, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "weak medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--76 to 81; Dark yellowish brown (10YR 4/4) moist fine sandy loam; weak medium angular blocky structure; slightly hard, friable, many very fine tubular pores; few thin clay films on faces of peds and lining pores; moderately alkaline (ph 8.0); common Fe and Mn stains." } ] ] diff --git a/inst/extdata/OSD/A/ANTWERP.json b/inst/extdata/OSD/A/ANTWERP.json index ce041e63a3..f623b9b5b3 100644 --- a/inst/extdata/OSD/A/ANTWERP.json +++ b/inst/extdata/OSD/A/ANTWERP.json @@ -97,7 +97,7 @@ { "name": "Bw", "top": 3, - "bottom": "NA", + "bottom": 15, "dry_hue": "2.5Y", "dry_value": 5, "dry_chroma": 2, diff --git a/inst/extdata/OSD/A/ANUNDE.json b/inst/extdata/OSD/A/ANUNDE.json index e53078c78d..83fd0b595d 100644 --- a/inst/extdata/OSD/A/ANUNDE.json +++ b/inst/extdata/OSD/A/ANUNDE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/APEX.json b/inst/extdata/OSD/A/APEX.json index b5b243bec5..985d914940 100644 --- a/inst/extdata/OSD/A/APEX.json +++ b/inst/extdata/OSD/A/APEX.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/APILAM.json b/inst/extdata/OSD/A/APILAM.json index 7f497b9b32..275ca6b8b4 100644 --- a/inst/extdata/OSD/A/APILAM.json +++ b/inst/extdata/OSD/A/APILAM.json @@ -325,9 +325,9 @@ "narrative": "6C2--152 to 165 centimeters (59 to 65 inches); lithochromic very dark gray (2.5Y 3/1) interior, ashy very fine sandy loam; structureless single grain; loose, loose, nonsticky, nonplastic; neutral, pH 7.1by 1:1 H2O, clear smooth boundary." }, { - "name": "25", - "top": 8, - "bottom": "NA", + "name": "7C3", + "top": 165, + "bottom": 170, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/APUKI.json b/inst/extdata/OSD/A/APUKI.json index 74a8ad4738..c5e839dd58 100644 --- a/inst/extdata/OSD/A/APUKI.json +++ b/inst/extdata/OSD/A/APUKI.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "C1", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, + "texture_class": "sand", + "structure": "moderate medium platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.3, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C1--0 to 1 centimeter (0 to 0.5 inches); lithochromic black (N 2/0) ashy sand; weak to moderate medium platy structure; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; many very fine and fine interstitial pores; extremely acid (pH 4.3); clear wavy boundary. (0 to 1 centimeter (0 to 1 inch) thick)" + }, { "name": "C2", "top": 1, diff --git a/inst/extdata/OSD/A/ARIKARA.json b/inst/extdata/OSD/A/ARIKARA.json index 7cc632c0a1..ea5be7a1c0 100644 --- a/inst/extdata/OSD/A/ARIKARA.json +++ b/inst/extdata/OSD/A/ARIKARA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ARIPEKA.json b/inst/extdata/OSD/A/ARIPEKA.json index 47fdc79223..fdfe41e6f0 100644 --- a/inst/extdata/OSD/A/ARIPEKA.json +++ b/inst/extdata/OSD/A/ARIPEKA.json @@ -231,6 +231,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Cr--21 to 29 inches; white (10YR 8/1) soft limestone; massive; firm; about 35 percent, by volume, hard limestone fragments; this layer has a solution hole approximately 15 inches in diameter containing strong brown (7.5YR 5/8) fine sandy loam material and hard limestone fragments; moderately alkaline; abrupt irregular boundary. (0 to 10 inches thick)" + }, + { + "name": "R", + "top": 74, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "fine sandy loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--29+ inches; hard limestone that can be chipped but not dug with a spade. This layer has a solution hole about 15 inches in diameter extending to a depth of about 45 inches below the soil surface. It is filled with fine sandy loam material and hard limestone fragments." } ] ] diff --git a/inst/extdata/OSD/A/ARNOLD.json b/inst/extdata/OSD/A/ARNOLD.json index 5dc26fdd8b..70f062cbac 100644 --- a/inst/extdata/OSD/A/ARNOLD.json +++ b/inst/extdata/OSD/A/ARNOLD.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O1--1/2 inch to 0; incomplete cover of twigs and leaves." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/A/ARRITOLA.json b/inst/extdata/OSD/A/ARRITOLA.json index 603924a350..03e18a910c 100644 --- a/inst/extdata/OSD/A/ARRITOLA.json +++ b/inst/extdata/OSD/A/ARRITOLA.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 6, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "moderate thin platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--0 to 2 1/2 inches; light brownish gray (10YR 6/2) loam, very dark grayish brown (10YR 3/2) moist; moderate thin platy structure; soft, friable, nonsticky, nonplastic; few very fine roots; many very fine pores; mildly alkaline (pH 7.6); abrupt smooth boundary. (2 to 6 inches thick)" + }, + { + "name": "B21", + "top": 6, + "bottom": 15, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "clay loam", + "structure": "moderate thick platy", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "B21--2 1/2 to 6 inches; light brownish gray (10YR 6/2) clay loam, dark brown (10YR 3/3) moist; moderate thick platy structure; hard, friable, sticky, plastic; many very fine roots; few very fine tubular pores; mildly alkaline (pH 7.6); abrupt smooth boundary. (2 to 6 inches thick)" + }, { "name": "B22", "top": 15, diff --git a/inst/extdata/OSD/A/ARTILLERY.json b/inst/extdata/OSD/A/ARTILLERY.json index cddf8ee391..30c61f495b 100644 --- a/inst/extdata/OSD/A/ARTILLERY.json +++ b/inst/extdata/OSD/A/ARTILLERY.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr -- 9 to 12 inches; slightly to moderately weathered bedrock material of moderate to high excavation difficulty." + }, + { + "name": "R", + "top": 30, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 12+ inches; highly fractured altered granitic bedrock." } ] ] diff --git a/inst/extdata/OSD/A/ARVA.json b/inst/extdata/OSD/A/ARVA.json index da2a6f88e9..a58fab28d1 100644 --- a/inst/extdata/OSD/A/ARVA.json +++ b/inst/extdata/OSD/A/ARVA.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "AB--20 to 38 cm; grayish brown (10YR 5/2) gravelly clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine roots; many very fine and few fine tubular pores; few thin clay films lining pores; 20 percent gravel; neutral (pH 6.8); gradual wavy boundary. (5 to 20 cm thick)" }, + { + "name": "Bt1", + "top": 38, + "bottom": 74, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt1--38 to 74; brown (10YR 5/3) gravelly clay, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; very hard, very firm, very sticky and very plastic; common very fine roots; many very fine and few fine tubular pores; many distinct clay films on ped faces and lining pores; 30 percent gravel; neutral (pH 6.7); gradual wavy boundary. (25 to 46 cm thick)" + }, { "name": "Bt2", "top": 74, diff --git a/inst/extdata/OSD/A/ASABEAN.json b/inst/extdata/OSD/A/ASABEAN.json index fa41748914..3d50fc7e02 100644 --- a/inst/extdata/OSD/A/ASABEAN.json +++ b/inst/extdata/OSD/A/ASABEAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ASHBRAY.json b/inst/extdata/OSD/A/ASHBRAY.json index a6b6972bae..ba7a09b943 100644 --- a/inst/extdata/OSD/A/ASHBRAY.json +++ b/inst/extdata/OSD/A/ASHBRAY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; partially decomposed needles, twigs and leaves." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/A/ASHCROFT.json b/inst/extdata/OSD/A/ASHCROFT.json index d6fe335ea9..601b3e6562 100644 --- a/inst/extdata/OSD/A/ASHCROFT.json +++ b/inst/extdata/OSD/A/ASHCROFT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i1", + "name": "Oi1", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i1--0 to 3 cm; undecomposed twigs, bark, and needles." }, { - "name": "0i2", + "name": "Oi2", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/ASHLEY.json b/inst/extdata/OSD/A/ASHLEY.json index 4f07278bbc..585c3062c8 100644 --- a/inst/extdata/OSD/A/ASHLEY.json +++ b/inst/extdata/OSD/A/ASHLEY.json @@ -97,7 +97,7 @@ { "name": "A2", "top": 18, - "bottom": "NA", + "bottom": 41, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "A3", - "top": "NA", + "top": 41, "bottom": 76, "dry_hue": "7.5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/A/ASPARAS.json b/inst/extdata/OSD/A/ASPARAS.json index 1f3e096f99..ee7a85931f 100644 --- a/inst/extdata/OSD/A/ASPARAS.json +++ b/inst/extdata/OSD/A/ASPARAS.json @@ -120,7 +120,7 @@ { "name": "B2lt", "top": 18, - "bottom": "NA", + "bottom": 33, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 3, @@ -142,7 +142,7 @@ }, { "name": "B22t", - "top": "NA", + "top": 33, "bottom": 61, "dry_hue": "7.5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/A/ASPEN.json b/inst/extdata/OSD/A/ASPEN.json index 5f4237563a..f293699487 100644 --- a/inst/extdata/OSD/A/ASPEN.json +++ b/inst/extdata/OSD/A/ASPEN.json @@ -72,55 +72,9 @@ "HORIZONS": [ [ { - "name": "1", - "top": 0, - "bottom": 38, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "loam", - "structure": "NA", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "NA", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "1--0 to 15 inches; rather dark-brown friable loam containing a small amount of gravel and stone; usually alkaline in reaction, and slightly or distinctly calcareous. Range in Thickness 15 inches." - }, - { - "name": "2", - "top": 38, - "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "loam", - "structure": "NA", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "NA", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "2--15 to 30 inches; lighter brown or somewhat yellowish-brown friable loam containing a large percentage of gravel and cobbles, and of a rather permeable character. Range in Thickness 10-36 inches." - }, - { - "name": "3", - "top": 76, - "bottom": "NA", + "name": "inches", + "top": 3, + "bottom": 30, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ASTA.json b/inst/extdata/OSD/A/ASTA.json index c7e0a2e721..bef515699d 100644 --- a/inst/extdata/OSD/A/ASTA.json +++ b/inst/extdata/OSD/A/ASTA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "02--2 to 1 inch; new needles, leaves, bark, twigs and other organic debris." }, { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/ATASTRA.json b/inst/extdata/OSD/A/ATASTRA.json index b4d87e2b87..e96a8c4a4f 100644 --- a/inst/extdata/OSD/A/ATASTRA.json +++ b/inst/extdata/OSD/A/ATASTRA.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "2Bt1--74 to 122 cm; brown (10YR 5/3), extremely cobbly ashy sandy loam, dark brown (10YR 3/3), moist; weak fine and medium subangular blocky structure; very friable, soft, nonsticky and nonplastic; common fine to coarse roots and few very fine roots; common very fine tubular and many very fine irregular pores; 5 percent faint clay bridges between sand grains; 30 percent subangular gravel, 30 percent subangular cobbles, 10 percent subangular stones; slightly acid (pH 6.2); clear wavy boundary. (38 to 64 cm thick)" + }, + { + "name": "2Bt2", + "top": 122, + "bottom": 152, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "extremely cobbly", + "pH": 5.7, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Bt2--122 to 152; pale yellow (2.5Y 7/3), extremely cobbly ashy sandy loam, light olive brown (2.5Y 5/3), moist; massive; very friable, slightly hard, nonsticky and nonplastic; few very fine to coarse roots; common very fine tubular and common very fine interstitial pores; 5 percent faint clay bridges between sand grains; 5 percent fine light olive brown (2.5Y 5/6), moist, iron-manganese masses; 30 percent subangular gravel, 30 percent subangular cobbles, 10 percent subangular stones; moderately acid (pH 5.7)." } ] ] diff --git a/inst/extdata/OSD/A/ATKINS.json b/inst/extdata/OSD/A/ATKINS.json index 8c255b131f..85a649f84d 100644 --- a/inst/extdata/OSD/A/ATKINS.json +++ b/inst/extdata/OSD/A/ATKINS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--0 to 1 centimeter; Moderately decomposed organic matter." + }, { "name": "A", "top": 1, diff --git a/inst/extdata/OSD/A/ATRING.json b/inst/extdata/OSD/A/ATRING.json index bd7c5f54dd..7d191ef125 100644 --- a/inst/extdata/OSD/A/ATRING.json +++ b/inst/extdata/OSD/A/ATRING.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/AUGGIE.json b/inst/extdata/OSD/A/AUGGIE.json index 97ef2b6ec0..76af98f72c 100644 --- a/inst/extdata/OSD/A/AUGGIE.json +++ b/inst/extdata/OSD/A/AUGGIE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/AU_TRAIN.json b/inst/extdata/OSD/A/AU_TRAIN.json index 11a1424b4d..e7fb4a466b 100644 --- a/inst/extdata/OSD/A/AU_TRAIN.json +++ b/inst/extdata/OSD/A/AU_TRAIN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/A/AVIS.json b/inst/extdata/OSD/A/AVIS.json index 5d0acc58cd..bf170a325d 100644 --- a/inst/extdata/OSD/A/AVIS.json +++ b/inst/extdata/OSD/A/AVIS.json @@ -74,7 +74,7 @@ { "name": "O2", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/A/AZTEC.json b/inst/extdata/OSD/A/AZTEC.json index de64a394d0..2dba03e1ea 100644 --- a/inst/extdata/OSD/A/AZTEC.json +++ b/inst/extdata/OSD/A/AZTEC.json @@ -97,7 +97,7 @@ { "name": "C", "top": 5, - "bottom": "NA", + "bottom": 38, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, @@ -119,7 +119,7 @@ }, { "name": "Ck", - "top": "NA", + "top": 38, "bottom": 76, "dry_hue": "7.5YR", "dry_value": 6, @@ -143,7 +143,7 @@ { "name": "Cyk", "top": 76, - "bottom": "NA", + "bottom": 130, "dry_hue": "5YR", "dry_value": 6, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "Cy", - "top": "NA", + "top": 130, "bottom": 160, "dry_hue": "5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/A/AZWELL.json b/inst/extdata/OSD/A/AZWELL.json index d817306a74..06147836e7 100644 --- a/inst/extdata/OSD/A/AZWELL.json +++ b/inst/extdata/OSD/A/AZWELL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/4 inch to 0; undecomposed forest litter." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/B/BABELTHUAP.json b/inst/extdata/OSD/B/BABELTHUAP.json index 1e519fa4ae..453db30e57 100644 --- a/inst/extdata/OSD/B/BABELTHUAP.json +++ b/inst/extdata/OSD/B/BABELTHUAP.json @@ -139,6 +139,29 @@ "distinctness": "gradual", "topography": "irregular", "narrative": "Bto--28 to 64 centimeters (11 to 25 inches); dark red (2.5YR 3/6) and yellowish red (5YR 4/6) silty clay; moderate medium and coarse angular blocky structure parting to moderate very fine and fine angular blocky; firm, slightly sticky and slightly plastic; few very fine and fine roots; common very fine and fine tubular and interstitial pores; common thin strong brown (7.5YR 4/6) clay coatings on faces of peds and lining pores; 6 gravel ironstone concretions; very strongly acid (pH 4.9, 1:1 water); gradual irregular boundary. (25 to 51 centimeters thick) Lab sample # 80P00036" + }, + { + "name": "CBt", + "top": 64, + "bottom": 200, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 6, + "texture_class": "silty clay loam", + "structure": "weak medium and thick platy", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "CBt--64 to 200 (25 to 78 inches); dark yellowish brown (10YR 3/6) silty clay loam; pinkish gray (7.5YR 6/2) specks, some areas dominated by specks, others by matrix color; weak medium and thick platy structure parting to moderate fine angular blocky; firm, slightly sticky and slightly plastic; few very fine roots following ped faces; few very fine tubular pores in peds; common very fine and fine tubular pore clay coatings on peds; many thin and moderately thick strong brown (7.5YR 5/6) coatings on faces of peds and lining pores, 14 percent gravel petroferric fragments, gibbsite pendants, and ironstone concretions; very strongly acid (pH 4.6; 1:1 water.) Lab sample # 80P00037" } ] ] diff --git a/inst/extdata/OSD/B/BACONA.json b/inst/extdata/OSD/B/BACONA.json index 2e3bdd18ef..1d9e45f305 100644 --- a/inst/extdata/OSD/B/BACONA.json +++ b/inst/extdata/OSD/B/BACONA.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BADGER.json b/inst/extdata/OSD/B/BADGER.json index 53d71af17f..93b23d46c6 100644 --- a/inst/extdata/OSD/B/BADGER.json +++ b/inst/extdata/OSD/B/BADGER.json @@ -189,7 +189,7 @@ { "name": "2Cg2", "top": 140, - "bottom": "NA", + "bottom": 152, "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 2, diff --git a/inst/extdata/OSD/B/BAILEGAP.json b/inst/extdata/OSD/B/BAILEGAP.json index 408a8281dc..73e200567a 100644 --- a/inst/extdata/OSD/B/BAILEGAP.json +++ b/inst/extdata/OSD/B/BAILEGAP.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BAILEYVILLE.json b/inst/extdata/OSD/B/BAILEYVILLE.json index 8cb7e05463..5e1c3c0dc4 100644 --- a/inst/extdata/OSD/B/BAILEYVILLE.json +++ b/inst/extdata/OSD/B/BAILEYVILLE.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "Bt2--25 to 33 centimeters (10 to 13 inches); very dark grayish brown (10YR 3/2) exterior; silty clay; weak medium prismatic structure parting to moderate fine and medium subangular blocky; firm, very hard, very sticky, very plastic; common fine and few medium roots throughout; common discontinuous distinct very dark gray (10YR 3/1), moist, clay films on all faces of peds; noneffervescent, by HCL, 1 normal; moderately acid; 10YR 3/1 fill in old crack channels; linear extensibility percent is 10; gradual smooth boundary." }, + { + "name": "Bt3", + "top": 33, + "bottom": 48, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silty clay", + "structure": "weak medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "noneffervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Bt3--33 to 48 centimters (13 to 19 inches); dark grayish brown (10YR 4/2) exterior, silty clay; weak medium prismatic structure parting to moderate fine and medium subangular blocky; firm, very hard, very sticky, very plastic; common fine roots throughout; common discontinuous distinct very dark grayish brown (10YR 3/2) moist, clay films on all faces of peds; 2 percent prominent spherical iron-manganese concretions throughout and common fine prominent irregular strong brown (7.5YR 5/6) moist, masses of oxidized iron infused into matrix adjacent to pores; noneffervescent, by HCL, 1 normal; slightly acid; 10YR 3/1 fill in old crack channels; linear extensibility percent is 7; gradual smooth boundary." + }, { "name": "Bt4", "top": 48, diff --git a/inst/extdata/OSD/B/BALD.json b/inst/extdata/OSD/B/BALD.json index 0b9b3ea1f0..a6d3ab3992 100644 --- a/inst/extdata/OSD/B/BALD.json +++ b/inst/extdata/OSD/B/BALD.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; oak leaves, pine twigs and needles." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/B/BALDHILL.json b/inst/extdata/OSD/B/BALDHILL.json index 8d8be9a181..396f2264b9 100644 --- a/inst/extdata/OSD/B/BALDHILL.json +++ b/inst/extdata/OSD/B/BALDHILL.json @@ -97,7 +97,7 @@ { "name": "BA", "top": 10, - "bottom": "NA", + "bottom": 30, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,7 +119,7 @@ }, { "name": "Bwl", - "top": "NA", + "top": 30, "bottom": 74, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/B/BALDY.json b/inst/extdata/OSD/B/BALDY.json index 24308d4f90..de0ea64235 100644 --- a/inst/extdata/OSD/B/BALDY.json +++ b/inst/extdata/OSD/B/BALDY.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BALTIMORE.json b/inst/extdata/OSD/B/BALTIMORE.json index b3de9df8c4..291669df66 100644 --- a/inst/extdata/OSD/B/BALTIMORE.json +++ b/inst/extdata/OSD/B/BALTIMORE.json @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Ap -- 0 to 10 inches; dark reddish brown (5YR 3/3) silt loam," }, + { + "name": "struc", + "top": "NA", + "bottom": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "reddish brown (5YR 5/3) dry; moderate fine and medium granular struc- ture; soft, very friable, slightly sticky; many fine and medium roots; neutral; abrupt smooth boundary. (10 to 12 inches thick)" + }, { "name": "BA", "top": 25, diff --git a/inst/extdata/OSD/B/BAMTUSH.json b/inst/extdata/OSD/B/BAMTUSH.json index 8f7d6d1d46..0ef1857b4f 100644 --- a/inst/extdata/OSD/B/BAMTUSH.json +++ b/inst/extdata/OSD/B/BAMTUSH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BANADERU.json b/inst/extdata/OSD/B/BANADERU.json index 4fcdb3d5a7..f6d8a6f8a4 100644 --- a/inst/extdata/OSD/B/BANADERU.json +++ b/inst/extdata/OSD/B/BANADERU.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BANCAS.json b/inst/extdata/OSD/B/BANCAS.json index 90726eb05e..fd4b24e8e6 100644 --- a/inst/extdata/OSD/B/BANCAS.json +++ b/inst/extdata/OSD/B/BANCAS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 1, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BANDID.json b/inst/extdata/OSD/B/BANDID.json index 85ff7b46cf..a1b8153fb1 100644 --- a/inst/extdata/OSD/B/BANDID.json +++ b/inst/extdata/OSD/B/BANDID.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 1, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Oi--2 inches to 1/2; leaves, needles and twigs." }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa-1/2 inch to 0; decomposed organic matter." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/B/BANNEL.json b/inst/extdata/OSD/B/BANNEL.json index 813cff63da..b5c25d8884 100644 --- a/inst/extdata/OSD/B/BANNEL.json +++ b/inst/extdata/OSD/B/BANNEL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; leaves, needles, and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/B/BARHISKEY.json b/inst/extdata/OSD/B/BARHISKEY.json index 3efae45fc3..eb431ff9f9 100644 --- a/inst/extdata/OSD/B/BARHISKEY.json +++ b/inst/extdata/OSD/B/BARHISKEY.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BARLOW.json b/inst/extdata/OSD/B/BARLOW.json index 405466f818..d873431fe9 100644 --- a/inst/extdata/OSD/B/BARLOW.json +++ b/inst/extdata/OSD/B/BARLOW.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -117,6 +117,52 @@ "topography": "wavy", "narrative": "O2--5 inches to 0; very dark gray (10YR 3/1) and very dark brown (10YR 2/2) amorphous organic matter; many roots; abrupt wavy boundary. (3 to 8 inches thick)" }, + { + "name": "A2", + "top": 0, + "bottom": 4, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.7, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A2--0 to 1 1/2 inches; dark gray (10YR 4/1) silt loam, light gray to gray (10YR 6/1) dry; massive; soft, very friable, nonsticky and nonplastic; many roots; many very fine and fine irregular pores; very strongly acid (pH 4.7); abrupt wavy boundary. (1/2 to 3 inches thick)" + }, + { + "name": "B2ir", + "top": 4, + "bottom": 23, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.1, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "B2ir--1 1/2 to 9 inches; dark yellowish brown (10YR 3/4) silt loam, brown (10YR 5/3) dry and crushed; variegated with brown (7.5YR 4/2 and 4/4 and 10YR 4/3) and dark grayish brown (10YR 4/2); massive; slightly hard, friable, nonsticky and slightly plastic; many roots; many very fine and fine irregular pores; strongly acid (pH 5.1); gradual wavy boundary. (4 to 15 inches thick)" + }, { "name": "B3", "top": 23, diff --git a/inst/extdata/OSD/B/BARNELLCREEK.json b/inst/extdata/OSD/B/BARNELLCREEK.json index e7739a4679..5e12ca59ec 100644 --- a/inst/extdata/OSD/B/BARNELLCREEK.json +++ b/inst/extdata/OSD/B/BARNELLCREEK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BARNHARDT.json b/inst/extdata/OSD/B/BARNHARDT.json index f55cd17fe1..0411eef435 100644 --- a/inst/extdata/OSD/B/BARNHARDT.json +++ b/inst/extdata/OSD/B/BARNHARDT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BASCOVY.json b/inst/extdata/OSD/B/BASCOVY.json index 85f42a7b04..71ee7b1805 100644 --- a/inst/extdata/OSD/B/BASCOVY.json +++ b/inst/extdata/OSD/B/BASCOVY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 1, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.9, + "pH_class": "slightly alkaline", + "eff_class": "slightly effervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--0 to 1/4 inch; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) moist, vesicular crust; hard, firm, very sticky and very plastic; common uncoated sand grains on the surface; slightly effervescent; slightly alkaline (pH 7.9); abrupt smooth boundary. (0 to 1/2 inch thick)" + }, + { + "name": "A2", + "top": 1, + "bottom": 15, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "moderate medium and fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "slightly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A2--1/4 to 6 inches; grayish brown (2.5Y 5/2) clay; dark grayish brown (2.5Y 4/2) moist; moderate medium and fine subangular blocky structure; extremely hard, firm, very sticky and very plastic; common fine and medium roots; few fine pores; few vertical cracks less than 1/2 inch wide; slightly effervescent in spots; moderately alkaline; clear smooth boundary. (2 to 8 inches thick)" + }, { "name": "Bss", "top": 15, diff --git a/inst/extdata/OSD/B/BATEMAN.json b/inst/extdata/OSD/B/BATEMAN.json index 43d7df5ec5..6894df4189 100644 --- a/inst/extdata/OSD/B/BATEMAN.json +++ b/inst/extdata/OSD/B/BATEMAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BATZA.json b/inst/extdata/OSD/B/BATZA.json index 53544e4233..22780a79ec 100644 --- a/inst/extdata/OSD/B/BATZA.json +++ b/inst/extdata/OSD/B/BATZA.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BAUMGARD.json b/inst/extdata/OSD/B/BAUMGARD.json index de4213b1fa..5aecdf469a 100644 --- a/inst/extdata/OSD/B/BAUMGARD.json +++ b/inst/extdata/OSD/B/BAUMGARD.json @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BEAL.json b/inst/extdata/OSD/B/BEAL.json index 67a984a247..3b49a0b851 100644 --- a/inst/extdata/OSD/B/BEAL.json +++ b/inst/extdata/OSD/B/BEAL.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BEARKNOB.json b/inst/extdata/OSD/B/BEARKNOB.json index 7d00d5d94e..8ef7879c16 100644 --- a/inst/extdata/OSD/B/BEARKNOB.json +++ b/inst/extdata/OSD/B/BEARKNOB.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Bgx1--41 to 64 cm; light brownish gray (10YR 6/2) very gravelly loamy sand; moderate very thick platy structure; firm, brittle; 40 percent gravel, cobbles, and stones; very strongly acid; abrupt wavy boundary." }, + { + "name": "Bgx2", + "top": 64, + "bottom": 76, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "loamy sand", + "structure": "moderate very thick platy", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bgx2--64 to 76; light brownish gray (10YR 6/2) very gravelly loamy sand; moderate very thick platy structure; firm, brittle; 40 percent gravel, cobbles, and stones; common medium prominent strong brown (7.5YR 5/6) masses of oxidized iron; very strongly acid; clear wavy boundary. (combined thickness of the Bxg horizons is 30 to 75 cm (12 to 30 inches))" + }, { "name": "Cdg1", "top": 76, diff --git a/inst/extdata/OSD/B/BEAUGHTON.json b/inst/extdata/OSD/B/BEAUGHTON.json index 8aa8372d16..e308495d00 100644 --- a/inst/extdata/OSD/B/BEAUGHTON.json +++ b/inst/extdata/OSD/B/BEAUGHTON.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; thin scattering of dead bunchgrass and Jeffrey pine needles. (0 to 1 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/B/BEECHWOOD.json b/inst/extdata/OSD/B/BEECHWOOD.json index c19df77d69..7bbbf23382 100644 --- a/inst/extdata/OSD/B/BEECHWOOD.json +++ b/inst/extdata/OSD/B/BEECHWOOD.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BEESKOVE.json b/inst/extdata/OSD/B/BEESKOVE.json index 6708580612..bbe3b970f6 100644 --- a/inst/extdata/OSD/B/BEESKOVE.json +++ b/inst/extdata/OSD/B/BEESKOVE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BEHANIN.json b/inst/extdata/OSD/B/BEHANIN.json index fec2cca36a..e89f857a65 100644 --- a/inst/extdata/OSD/B/BEHANIN.json +++ b/inst/extdata/OSD/B/BEHANIN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; partially to well decomposed needles, twigs, etc." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/B/BEHEMOTOSH.json b/inst/extdata/OSD/B/BEHEMOTOSH.json index 4706ae63b3..103b7bc870 100644 --- a/inst/extdata/OSD/B/BEHEMOTOSH.json +++ b/inst/extdata/OSD/B/BEHEMOTOSH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 to 0 inches; litter from conifers and oaks." + }, { "name": "A11", "top": 0, @@ -162,6 +185,29 @@ "distinctness": "diffuse", "topography": "irregular", "narrative": "B2t--16 to 24 inches; reddish yellow (7.5YR 7/6) very cobbly light clay loam, strong brown (7.5YR 5/6) moist; weak fine to medium blocky subangular structure; hard, friable, nonsticky, slightly plastic; few very fine and fine roots; common very fine and fine tubular and interstitial pores; few moderately thick, common thin clay films on ped faces and in pores; moderately acid (pH 5.6); diffuse irregular boundary. (7 to 12 inches thick)" + }, + { + "name": "CR", + "top": 61, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "CR--24+ inches; rhyolite stones with a small amount of soil and with very few very fine to fine, and plentiful medium roots." } ] ] diff --git a/inst/extdata/OSD/B/BEIGLE.json b/inst/extdata/OSD/B/BEIGLE.json index e878368bd6..11b5be3b5f 100644 --- a/inst/extdata/OSD/B/BEIGLE.json +++ b/inst/extdata/OSD/B/BEIGLE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BELLAVISTA.json b/inst/extdata/OSD/B/BELLAVISTA.json index 0d283a02d9..1857e1626d 100644 --- a/inst/extdata/OSD/B/BELLAVISTA.json +++ b/inst/extdata/OSD/B/BELLAVISTA.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bkqm--42 to 64 inches; light brownish gray (10YR 6/2) with light gray streaks, loamy coarse sand, dark yellowish brown (10YR 4/4) moist, with very pale brown streaks; strong fine and medium platy structure; hard, very firm, nonsticky and nonplastic; no roots; few fine tubular pores; moderately alkaline (pH 8.0) abrupt, smooth and wavy boundary. The Cm horizon is 12 to 24 inches thick." + }, + { + "name": "2Bkqm", + "top": 163, + "bottom": "NA", + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Bkqm--64+ inches; brown (7.5YR 5/4) sandy loam, dark brown (7.5YR 3/2) moist with few faint very dark brown mottles; massive; hard, very firm, nonsticky, nonplastic; no roots; few fine tubular pores; moderately alkaline (pH 8.0)." } ] ] diff --git a/inst/extdata/OSD/B/BELLICUM.json b/inst/extdata/OSD/B/BELLICUM.json index e29db9d26f..a95e2164ef 100644 --- a/inst/extdata/OSD/B/BELLICUM.json +++ b/inst/extdata/OSD/B/BELLICUM.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "E", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "Bs1", - "top": "NA", + "top": 3, "bottom": 18, "dry_hue": "l0YR", "dry_value": 6, @@ -143,7 +143,7 @@ { "name": "Bs2", "top": 18, - "bottom": "NA", + "bottom": 46, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 6, @@ -165,7 +165,7 @@ }, { "name": "2Bwb", - "top": "NA", + "top": 46, "bottom": 84, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/B/BELLTOWER.json b/inst/extdata/OSD/B/BELLTOWER.json index 9c0eb32a9c..86d51f2d64 100644 --- a/inst/extdata/OSD/B/BELLTOWER.json +++ b/inst/extdata/OSD/B/BELLTOWER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BELLWOOD.json b/inst/extdata/OSD/B/BELLWOOD.json index d3fa9ec990..d684f92fad 100644 --- a/inst/extdata/OSD/B/BELLWOOD.json +++ b/inst/extdata/OSD/B/BELLWOOD.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "silty clay loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "irregular", + "narrative": "A--0 to 3 (0 to 1 in); reddish brown (5YR 4/3) silty clay loam; weak fine granular structure; friable; many fine roots; very strongly acid; abrupt irregular boundary. (Thickness of the A horizon is 0 to 8 cm [0 to 3 in])" + }, { "name": "Bw", "top": 3, diff --git a/inst/extdata/OSD/B/BELTSVILLE.json b/inst/extdata/OSD/B/BELTSVILLE.json index b4b82819e7..d27ef82ce3 100644 --- a/inst/extdata/OSD/B/BELTSVILLE.json +++ b/inst/extdata/OSD/B/BELTSVILLE.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 13, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.3, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oi--0 to 13 mm (0 to 0.5 inches); fibric material; slightly decomposed needles, leaves, twigs, and other woody materials; extremely acid (pH 4.3); abrupt wavy boundary. (0 to 8 cm thick)" + }, + { + "name": "A", + "top": 13, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.2, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A--13 mm to 8 cm (0.5 to 3 inches); dark grayish brown (10YR 4/2) silt loam; moderate medium subangular blocky structure; friable; common medium roots and many very fine and fine and few coarse; few fine tubular pores; extremely acid (pH 4.2); abrupt smooth boundary. (2.5 to 38 cm thick)" + }, { "name": "E", "top": 8, diff --git a/inst/extdata/OSD/B/BENHAM.json b/inst/extdata/OSD/B/BENHAM.json index 4c87c3cff0..499fd10dec 100644 --- a/inst/extdata/OSD/B/BENHAM.json +++ b/inst/extdata/OSD/B/BENHAM.json @@ -73,8 +73,8 @@ [ { "name": "Oe", - "top": "NA", - "bottom": "NA", + "top": 11, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BENTILLA.json b/inst/extdata/OSD/B/BENTILLA.json index 96d8a1a784..2db4087f5b 100644 --- a/inst/extdata/OSD/B/BENTILLA.json +++ b/inst/extdata/OSD/B/BENTILLA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BENZ.json b/inst/extdata/OSD/B/BENZ.json index f29907ed45..4d00561226 100644 --- a/inst/extdata/OSD/B/BENZ.json +++ b/inst/extdata/OSD/B/BENZ.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 1, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "A1--0 to 1/8 inch; light gray (2.5Y 7/2) clay loam, grayish brown (2.5Y 5/2) moist vesicular surface crust. (0 to 1/2 inch thick)" + }, + { + "name": "A2", + "top": 1, + "bottom": 5, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "weak fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.8, + "pH_class": "strongly alkaline", + "eff_class": "slightly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "A2--1/8 to 2 inches; grayish brown (2.5Y 5/2) clay loam, very dark grayish brown (2.5Y 3/2) moist; weak fine granular structure; very hard, friable, sticky and plastic; disseminated lime; slightly effervescent; strongly alkaline (pH 8.8); clear boundary. (1 to 4 inches thick)" + }, { "name": "C1", "top": 5, diff --git a/inst/extdata/OSD/B/BEN_LOMOND.json b/inst/extdata/OSD/B/BEN_LOMOND.json index 3f0972ba13..e478a812db 100644 --- a/inst/extdata/OSD/B/BEN_LOMOND.json +++ b/inst/extdata/OSD/B/BEN_LOMOND.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 2, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 2; inches redwood needles and twigs in various stages of decomposition. (0 to 8 inches thick)" + }, { "name": "A1", - "top": 5, - "bottom": 23, + "top": 2, + "bottom": 9, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "A2", - "top": 23, - "bottom": 53, + "top": 9, + "bottom": 21, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, @@ -119,8 +142,8 @@ }, { "name": "B", - "top": 53, - "bottom": 81, + "top": 21, + "bottom": 32, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, @@ -142,8 +165,8 @@ }, { "name": "C", - "top": 81, - "bottom": 122, + "top": 32, + "bottom": 48, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, @@ -165,8 +188,8 @@ }, { "name": "Cr", - "top": 122, - "bottom": 132, + "top": 48, + "bottom": 52, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BERGEN.json b/inst/extdata/OSD/B/BERGEN.json index afcb34de09..bce6538cff 100644 --- a/inst/extdata/OSD/B/BERGEN.json +++ b/inst/extdata/OSD/B/BERGEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0p", + "name": "Op", "top": 0, "bottom": 25, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0p -- 0 to 10 inches; black (10YR 2/1) broken face and rubbed sapric material; about 5 percent fiber, less than 2 percent rubbed; moderate fine and medium granular structure; very friable; common roots; neutral; clear smooth boundary. (6 to 12 inches thick.)" }, { - "name": "0a", + "name": "Oa", "top": 25, "bottom": 36, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BERGKELLER.json b/inst/extdata/OSD/B/BERGKELLER.json index ec07c11b57..9ad548756d 100644 --- a/inst/extdata/OSD/B/BERGKELLER.json +++ b/inst/extdata/OSD/B/BERGKELLER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BERGSVIK.json b/inst/extdata/OSD/B/BERGSVIK.json index c0eb4d366c..ef0615f421 100644 --- a/inst/extdata/OSD/B/BERGSVIK.json +++ b/inst/extdata/OSD/B/BERGSVIK.json @@ -141,7 +141,7 @@ "narrative": "Oe2--6 to 17 inches; black (5YR 2/1) broken, rubbed and pressed, mucky peat, about 85 percent fibers, 40 percent rubbed; many very fine and fine roots; extremely acid (pH 4.2); gradual smooth boundary. (4 to 17 inches thick)" }, { - "name": "0e3", + "name": "Oe3", "top": 43, "bottom": 86, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BERMEJA.json b/inst/extdata/OSD/B/BERMEJA.json index f2a8263089..bc15f0fbd2 100644 --- a/inst/extdata/OSD/B/BERMEJA.json +++ b/inst/extdata/OSD/B/BERMEJA.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Cr--8 to 27 inches; dark red saprolite that has an extremely paragravelly clay texture, red (2.5YR 5/6) dry; massive; hard, firm; slightly sticky, slightly plastic; about 70 percent, by volume, paragravels; strongly acid; clear wavy boundary. (5 to 20 inches thick)" + }, + { + "name": "R", + "top": 69, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--27+ inches; hard consolidated chert bedrock." } ] ] diff --git a/inst/extdata/OSD/B/BERNICE.json b/inst/extdata/OSD/B/BERNICE.json index 1138abce5f..04bfa1563f 100644 --- a/inst/extdata/OSD/B/BERNICE.json +++ b/inst/extdata/OSD/B/BERNICE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BICKMORE.json b/inst/extdata/OSD/B/BICKMORE.json index 5f99dc1f75..f26f1a61d1 100644 --- a/inst/extdata/OSD/B/BICKMORE.json +++ b/inst/extdata/OSD/B/BICKMORE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BIGCREEK.json b/inst/extdata/OSD/B/BIGCREEK.json index 765f7a42e3..615c71c545 100644 --- a/inst/extdata/OSD/B/BIGCREEK.json +++ b/inst/extdata/OSD/B/BIGCREEK.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; slightly undecomposed forest litter of needles, leaves, twigs and cones." + }, + { + "name": "E", + "top": 1, + "bottom": 3, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "loamy sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "E--1/2 to 1 inch; light gray (10YR 7/1) paragravelly ashy loamy sand, dark grayish brown (10YR 4/2) moist; single grain; loose, nonsticky and nonplastic; few fine roots; 15 percent pumice; slightly acid (pH 6.4); broken smooth boundary. (0 to 1 inch thick)" + }, { "name": "Bw1", "top": 3, diff --git a/inst/extdata/OSD/B/BIGELOW.json b/inst/extdata/OSD/B/BIGELOW.json index 109730af8c..a18800711f 100644 --- a/inst/extdata/OSD/B/BIGELOW.json +++ b/inst/extdata/OSD/B/BIGELOW.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BIGHILL.json b/inst/extdata/OSD/B/BIGHILL.json index 8b83c0c665..0e22582a76 100644 --- a/inst/extdata/OSD/B/BIGHILL.json +++ b/inst/extdata/OSD/B/BIGHILL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BIGMEADOW.json b/inst/extdata/OSD/B/BIGMEADOW.json index bd4fe05380..0bc5091402 100644 --- a/inst/extdata/OSD/B/BIGMEADOW.json +++ b/inst/extdata/OSD/B/BIGMEADOW.json @@ -120,7 +120,7 @@ { "name": "Cg", "top": 38, - "bottom": "NA", + "bottom": 66, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 1, diff --git a/inst/extdata/OSD/B/BIGRIVER.json b/inst/extdata/OSD/B/BIGRIVER.json index a10561c930..7b955b51e0 100644 --- a/inst/extdata/OSD/B/BIGRIVER.json +++ b/inst/extdata/OSD/B/BIGRIVER.json @@ -187,7 +187,7 @@ "narrative": "C'--30 to 43 centimeters (12 to 17 inches); variegated pale brown (10YR 6/3) and very pale brown (10YR 7/4) sandy loam, variegated brown (10YR 5/3) and yellowish brown (10YR 5/4) moist; moderate fine platy structure; soft, very friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine interstitial pores; slightly acid (pH 6.3); abrupt smooth boundary. (0 to 13 centimeters thick)" }, { - "name": "b1", + "name": "A\"b1", "top": 43, "bottom": 64, "dry_hue": "10YR", @@ -210,7 +210,7 @@ "narrative": "A\"b1--43 to 64 centimeters (17 to 25 inches); variegated brown (10YR 5/3) and light yellowish brown (10YR 6/4) loam, very dark grayish brown (10YR 3/2) and dark grayish brown (10YR 4/2) moist; moderate fine and medium subangular blocky structure; hard, friable, slightly sticky and plastic; common fine, medium and coarse roots; many very fine, fine and medium tubular and few very fine interstitial pores; slightly acid (pH 6.3); gradual irregular boundary. (0 to 25 centimeters thick)" }, { - "name": "b2", + "name": "A\"b2", "top": 64, "bottom": 112, "dry_hue": "10YR", @@ -233,7 +233,7 @@ "narrative": "A\"b2--64 to 112 centimeters (25 to 44 inches); grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; strong fine and medium subangular blocky structure; hard, friable, slightly sticky and plastic; common fine, medium and coarse roots; many very fine and common fine and medium tubular, and few very fine interstitial pores; slightly acid (pH 6.3); abrupt smooth boundary. (0 to 64 centimeters thick)" }, { - "name": "1", + "name": "C\"1", "top": 112, "bottom": 137, "dry_hue": "10YR", @@ -256,7 +256,7 @@ "narrative": "C\"1--112 to 137 centimeters (44 to 54 inches); variegated brown (10YR 5/3) and pale brown (10YR 6/3) sandy loam, brown (10YR 4/3) moist; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few medium and coarse roots; common very fine and fine interstitial pores; slightly acid (pH 6.3); abrupt smooth boundary. (0 to 38 centimeters thick)" }, { - "name": "2", + "name": "C\"2", "top": 137, "bottom": 160, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/B/BIGTOM.json b/inst/extdata/OSD/B/BIGTOM.json index fb20102cc5..23b6fc34a0 100644 --- a/inst/extdata/OSD/B/BIGTOM.json +++ b/inst/extdata/OSD/B/BIGTOM.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BINVAR.json b/inst/extdata/OSD/B/BINVAR.json index 9c4547e620..845b1b8faf 100644 --- a/inst/extdata/OSD/B/BINVAR.json +++ b/inst/extdata/OSD/B/BINVAR.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 1, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BIRDSVIEW.json b/inst/extdata/OSD/B/BIRDSVIEW.json index ae426c7a8f..40f61560d4 100644 --- a/inst/extdata/OSD/B/BIRDSVIEW.json +++ b/inst/extdata/OSD/B/BIRDSVIEW.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BISPING.json b/inst/extdata/OSD/B/BISPING.json index ac861bf4ff..47921c8c48 100644 --- a/inst/extdata/OSD/B/BISPING.json +++ b/inst/extdata/OSD/B/BISPING.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BLACKBURN.json b/inst/extdata/OSD/B/BLACKBURN.json index 48192a82b8..7de8a00b8b 100644 --- a/inst/extdata/OSD/B/BLACKBURN.json +++ b/inst/extdata/OSD/B/BLACKBURN.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--0 to 1/2 inches; litter of needles and twigs over a dark colored layer of matted organic material." + }, + { + "name": "E", + "top": 1, + "bottom": 3, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak thin platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "broken", + "narrative": "E--1/2 to 1 inch; white (10YR 8/1) loam, light brownish gray (10YR 6/2) moist; weak thin platy structure; soft, friable; slightly acid; abrupt broken boundary. (0 to 2 inches thick)" + }, { "name": "Bw1", "top": 3, diff --git a/inst/extdata/OSD/B/BLACKLOCK.json b/inst/extdata/OSD/B/BLACKLOCK.json index b4fc44bca0..4c57ee677a 100644 --- a/inst/extdata/OSD/B/BLACKLOCK.json +++ b/inst/extdata/OSD/B/BLACKLOCK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BLACKSPAR.json b/inst/extdata/OSD/B/BLACKSPAR.json index 8fccacad81..9c4899108b 100644 --- a/inst/extdata/OSD/B/BLACKSPAR.json +++ b/inst/extdata/OSD/B/BLACKSPAR.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bt2--7 to 17 inches; light yellowish brown (10YR 6/4) extremely cobbly loam, dark yellowish brown (10YR 4/4) moist; moderate very fine and fine angular blocky structure; hard, firm, slightly sticky and slightly plastic; few very fine and fine roots; common very fine and fine tubular pores; about 30 percent cobbles and 35 percent gravel;" + }, + { + "name": "2R", + "top": 43, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2R--17; quartzitic sandstone" } ] ] diff --git a/inst/extdata/OSD/B/BLAG.json b/inst/extdata/OSD/B/BLAG.json index 2884824ba0..be1e3ece15 100644 --- a/inst/extdata/OSD/B/BLAG.json +++ b/inst/extdata/OSD/B/BLAG.json @@ -97,7 +97,7 @@ { "name": "Bw", "top": 15, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 3, @@ -119,7 +119,7 @@ }, { "name": "R", - "top": "NA", + "top": 41, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/B/BLAZEFORK.json b/inst/extdata/OSD/B/BLAZEFORK.json index 4c276da027..aeb7c444f1 100644 --- a/inst/extdata/OSD/B/BLAZEFORK.json +++ b/inst/extdata/OSD/B/BLAZEFORK.json @@ -302,7 +302,7 @@ "narrative": "2Btk4--154 to 198 centimeters (61 to 78 inches); light yellowish brown (10YR 6/4) loam, dark yellowish brown (10YR 4/4) moist; common fine distinct dark yellowish brown (10YR 4/6) moist irregular redoximorphic concentrations throughout and common fine distinct grayish brown (10YR 5/2) moist irregular redoximorphic depletions throughout; weak medium prismatic structure parting to moderate medium angular blocky and moderate medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine roots throughout; common fine tubular pores; few faint patchy brown (10YR 4/3), moist, clay films on horizontal faces of peds and common distinct discontinuous dark grayish brown (10YR 4/2), moist, clay films on vertical faces of peds and few distinct patchy black (10YR 2/1), moist, manganese or iron-manganese stains on vertical and horizontal faces of peds; common fine rounded iron-manganese concretions throughout and few fine and medium irregular masses of carbonate throughout; slightly alkaline; clear wavy boundary." }, { - "name": "t", + "name": "2B\"t", "top": 198, "bottom": 203, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/B/BLETHEN.json b/inst/extdata/OSD/B/BLETHEN.json index 2b4d6f8369..1eaffeffd7 100644 --- a/inst/extdata/OSD/B/BLETHEN.json +++ b/inst/extdata/OSD/B/BLETHEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 13, "bottom": 5, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--5 to 2 inches; accumulation of needles, leaves and twigs." }, { - "name": "0a", + "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -165,7 +165,7 @@ }, { "name": "Bs2", - "top": "NA", + "top": 33, "bottom": 61, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/B/BLEWETT.json b/inst/extdata/OSD/B/BLEWETT.json index 779642ca11..2c7bc68152 100644 --- a/inst/extdata/OSD/B/BLEWETT.json +++ b/inst/extdata/OSD/B/BLEWETT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--l/2 to 0 inch; undecomposed forest litter. (l/2 to l inch thick)." + }, { "name": "A", "top": 0, @@ -97,7 +120,7 @@ { "name": "Bw", "top": 8, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 4, @@ -119,7 +142,7 @@ }, { "name": "R", - "top": "NA", + "top": 25, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/B/BLOODSTONE.json b/inst/extdata/OSD/B/BLOODSTONE.json index 1bd869fead..bb612e70ad 100644 --- a/inst/extdata/OSD/B/BLOODSTONE.json +++ b/inst/extdata/OSD/B/BLOODSTONE.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C--1 to 12 inches; yellowish red (5YR 5/6) very gravelly loam, yellowish red (5YR 4/6) moist; massive; loose, nonsticky and nonplastic; few fine roots; few fine tubular pores; about 50 percent gravel; strongly effervescent; carbonates disseminated; about 12 percent calcium carbonate equivalent; strongly alkaline (pH 8.6); abrupt smooth boundary. (6 to 18 inches thick)" + }, + { + "name": "R", + "top": 30, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--12+ inches; hard, fractured, red calcareous sandstone." } ] ] diff --git a/inst/extdata/OSD/B/BOARDFLOWER.json b/inst/extdata/OSD/B/BOARDFLOWER.json index 8d02a6804f..ad7d3b87f5 100644 --- a/inst/extdata/OSD/B/BOARDFLOWER.json +++ b/inst/extdata/OSD/B/BOARDFLOWER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BOBTAIL.json b/inst/extdata/OSD/B/BOBTAIL.json index 17e6d94380..4a9c3ac17d 100644 --- a/inst/extdata/OSD/B/BOBTAIL.json +++ b/inst/extdata/OSD/B/BOBTAIL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--2 to 1 inches; undecomposed organic material principally needles, bark, twigs, and the fleshy remains of understory plants." }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BODEN.json b/inst/extdata/OSD/B/BODEN.json index 05a3b58e03..af9f5a7c69 100644 --- a/inst/extdata/OSD/B/BODEN.json +++ b/inst/extdata/OSD/B/BODEN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inch; partly decomposed leaves and twigs." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/B/BODENBURG.json b/inst/extdata/OSD/B/BODENBURG.json index 30fe0f6f1e..511adb83ff 100644 --- a/inst/extdata/OSD/B/BODENBURG.json +++ b/inst/extdata/OSD/B/BODENBURG.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BODINE.json b/inst/extdata/OSD/B/BODINE.json index d28b2a065f..b38e91478b 100644 --- a/inst/extdata/OSD/B/BODINE.json +++ b/inst/extdata/OSD/B/BODINE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BOGUS.json b/inst/extdata/OSD/B/BOGUS.json index 45da416302..b2ee58ae4d 100644 --- a/inst/extdata/OSD/B/BOGUS.json +++ b/inst/extdata/OSD/B/BOGUS.json @@ -74,7 +74,7 @@ { "name": "O1 and O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BOHNA.json b/inst/extdata/OSD/B/BOHNA.json index 1dd42e04d1..b89756e0b3 100644 --- a/inst/extdata/OSD/B/BOHNA.json +++ b/inst/extdata/OSD/B/BOHNA.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BOOMTOWN.json b/inst/extdata/OSD/B/BOOMTOWN.json index bd003cfba0..f6a46d1212 100644 --- a/inst/extdata/OSD/B/BOOMTOWN.json +++ b/inst/extdata/OSD/B/BOOMTOWN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--0 to 1 inches; partially decomposed pine and fir needles. Abrupt smooth boundary. (0 to 3 inches thick.)" }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BOOTEN.json b/inst/extdata/OSD/B/BOOTEN.json index f529224331..72342ca24e 100644 --- a/inst/extdata/OSD/B/BOOTEN.json +++ b/inst/extdata/OSD/B/BOOTEN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BOOTS.json b/inst/extdata/OSD/B/BOOTS.json index 8b1a7ffe35..44dd23307b 100644 --- a/inst/extdata/OSD/B/BOOTS.json +++ b/inst/extdata/OSD/B/BOOTS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BORAVALL.json b/inst/extdata/OSD/B/BORAVALL.json index c719fdfb52..9df6f962dc 100644 --- a/inst/extdata/OSD/B/BORAVALL.json +++ b/inst/extdata/OSD/B/BORAVALL.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "Bkn--23 to 48 cm; light gray (10YR 7/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate fine subangular blocky structure; soft, very friable, moderately sticky and moderately plastic; common very fine, fine, medium and coarse roots; many very fine irregular pores; strongly effervescent; calcium carbonate equivalent is 4 percent; EC is 2 mmhos/cm; SAR is 30; very strongly alkaline (pH 9.4); abrupt wavy boundary. (13 to 140 cm thick)" }, + { + "name": "BCkn", + "top": 48, + "bottom": 109, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "silty clay loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.6, + "pH_class": "strongly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "BCkn--48 to 109; very pale brown (10YR 7/3) silty clay loam, brown (10YR 4/3) moist; massive; slightly hard, friable, moderately sticky and moderately plastic; few medium roots; common very fine irregular pores; strongly effervescent; calcium carbonate equivalent is 14 percent; EC is 2.5 mmhos/cm; SAR is 20; strongly alkaline (pH 8.6); abrupt wavy boundary. (0 to 76 cm thick)" + }, { "name": "Bkg", "top": 109, diff --git a/inst/extdata/OSD/B/BORDER.json b/inst/extdata/OSD/B/BORDER.json index 848cf8e60e..558dfa5e7b 100644 --- a/inst/extdata/OSD/B/BORDER.json +++ b/inst/extdata/OSD/B/BORDER.json @@ -72,55 +72,9 @@ "HORIZONS": [ [ { - "name": "1", - "top": 0, - "bottom": 20, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "clay loam", - "structure": "NA", - "dry_rupture": "NA", - "moist_rupture": "NA", - "coherence": "NA", - "cf_class": "gravelly", - "pH": "NA", - "pH_class": "NA", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "1--0 to 8 inches; brownish-gray or weak-brown gravelly clay loam, the gravel mainly subangular fragments of sandstone. Range in thickness about 8\"." - }, - { - "name": "2", - "top": 20, - "bottom": 46, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "clay loam", - "structure": "NA", - "dry_rupture": "NA", - "moist_rupture": "NA", - "coherence": "NA", - "cf_class": "gravelly", - "pH": "NA", - "pH_class": "NA", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "2--8 to 18 inches; medium-brown, moderately compact gravelly clay loam. Range in thickness about 10\"." - }, - { - "name": "3", - "top": 46, - "bottom": "NA", + "name": "inches", + "top": 3, + "bottom": 18, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BORIANA.json b/inst/extdata/OSD/B/BORIANA.json index 0a569c1e67..1e68e7ff6c 100644 --- a/inst/extdata/OSD/B/BORIANA.json +++ b/inst/extdata/OSD/B/BORIANA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/B/BOSSBURG.json b/inst/extdata/OSD/B/BOSSBURG.json index 1ceae6b195..56b4de135b 100644 --- a/inst/extdata/OSD/B/BOSSBURG.json +++ b/inst/extdata/OSD/B/BOSSBURG.json @@ -74,7 +74,7 @@ { "name": "Oap", "top": 0, - "bottom": "NA", + "bottom": 20, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, @@ -164,7 +164,7 @@ "narrative": "2C2g--34 to 54 inches; grayish brown (2.5Y 5/2) ashy silt loam, white (2.5Y 8/1) dry; many medium distinct dark reddish brown (5YR 3/4) moist redox concentrations; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few fine pores; slightly alkaline (pH 7.6); abrupt wavy boundary. (12 to 24 inches thick)" }, { - "name": "30a2", + "name": "3Oa2", "top": 137, "bottom": 173, "dry_hue": "2.5Y", diff --git a/inst/extdata/OSD/B/BOTTINEAU.json b/inst/extdata/OSD/B/BOTTINEAU.json index af6c5d6f28..171fed0739 100644 --- a/inst/extdata/OSD/B/BOTTINEAU.json +++ b/inst/extdata/OSD/B/BOTTINEAU.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BOTTLEHILL.json b/inst/extdata/OSD/B/BOTTLEHILL.json index b35eaa347b..7c4ea74c10 100644 --- a/inst/extdata/OSD/B/BOTTLEHILL.json +++ b/inst/extdata/OSD/B/BOTTLEHILL.json @@ -117,6 +117,29 @@ "topography": "NA", "narrative": "Oe--1 to 4 cm (0.5 to 1.5 in), partially decomposed needle and leaf litter." }, + { + "name": "A1", + "top": 4, + "bottom": 11, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "moderate fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--4 to 11 (1.5 to 4.5 in)cm; brown (10YR 5/3) very gravelly loam, very dark grayish brown (10YR 3/2) moist; 18 percent clay; moderate fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine and common medium roots; many very fine and fine irregular and tubular pores; 35 percent subangular gravel; moderately acid, pH 5.6 by pH meter 1:1 water; NaF pH 9.6; clear smooth boundary." + }, { "name": "A2", "top": 11, diff --git a/inst/extdata/OSD/B/BOULDER_POINT.json b/inst/extdata/OSD/B/BOULDER_POINT.json index 07c5134e13..6e71b0134a 100644 --- a/inst/extdata/OSD/B/BOULDER_POINT.json +++ b/inst/extdata/OSD/B/BOULDER_POINT.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BOURNE.json b/inst/extdata/OSD/B/BOURNE.json index 1dcc37a8ae..6df97c545b 100644 --- a/inst/extdata/OSD/B/BOURNE.json +++ b/inst/extdata/OSD/B/BOURNE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BOWSTRING.json b/inst/extdata/OSD/B/BOWSTRING.json index fe57d949e8..682183e6cb 100644 --- a/inst/extdata/OSD/B/BOWSTRING.json +++ b/inst/extdata/OSD/B/BOWSTRING.json @@ -95,7 +95,7 @@ "narrative": "Oa1--0 to 18 inches; black (10YR 2/1) muck (sapric material); about 30 percent fiber unrubbed, 5 percent rubbed; weak medium subangular blocky structure; friable; mostly herbaceous fiber; moderately acid; gradual wavy boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 46, "bottom": 97, "dry_hue": "NA", @@ -141,7 +141,7 @@ "narrative": "Cg--38 to 47 inches; dark gray (5Y 4/1) fine sand with thin strata of black (N 2/0) muck; massive; very friable; slightly acid; abrupt smooth boundary." }, { - "name": "0'a1", + "name": "O'a1", "top": 119, "bottom": 203, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BRABBLE.json b/inst/extdata/OSD/B/BRABBLE.json index 8de88b37ad..7f63be7abf 100644 --- a/inst/extdata/OSD/B/BRABBLE.json +++ b/inst/extdata/OSD/B/BRABBLE.json @@ -210,9 +210,9 @@ "narrative": "2Bkqm--84 to 97 cm; cemented material; extremely hard, brittle; indurated by opaline silica; strongly effervescent; secondary carbonates segregated in filaments and as coats on rock fragments; 10 percent gravel; clear wavy boundary. (8 to 25 cm thick)" }, { - "name": "2", - "top": 97, - "bottom": "NA", + "name": "cm", + "top": 2, + "bottom": 97, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BRAMLET.json b/inst/extdata/OSD/B/BRAMLET.json index 4c596dee55..de8941f242 100644 --- a/inst/extdata/OSD/B/BRAMLET.json +++ b/inst/extdata/OSD/B/BRAMLET.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bt -- 15 to 29 centimeters (6 to 11 inches); brown (10YR 5/3) very gravelly sandy loam, very dark brown (10YR 2/2) moist; moderate, very fine, subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few, faint clay coatings on ped faces; few fine, medium and coarse roots; 40 percent gravel, 8 percent cobbles, 1 percent stones; neutral (pH 6.8); abrupt irregular boundary. (10 to 30 centimeters thick)" + }, + { + "name": "R", + "top": 29, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 29+ centimeters (11 inches); highly fractured, hard serpentinite." } ] ] diff --git a/inst/extdata/OSD/B/BRANDYWINE.json b/inst/extdata/OSD/B/BRANDYWINE.json index 9b42d338ba..437310ce6b 100644 --- a/inst/extdata/OSD/B/BRANDYWINE.json +++ b/inst/extdata/OSD/B/BRANDYWINE.json @@ -143,7 +143,7 @@ { "name": "C", "top": 64, - "bottom": "NA", + "bottom": 165, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BROADUS.json b/inst/extdata/OSD/B/BROADUS.json index 2c3396eb5c..56d10630f3 100644 --- a/inst/extdata/OSD/B/BROADUS.json +++ b/inst/extdata/OSD/B/BROADUS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BROBETT.json b/inst/extdata/OSD/B/BROBETT.json index f6857ec99d..e3d835567c 100644 --- a/inst/extdata/OSD/B/BROBETT.json +++ b/inst/extdata/OSD/B/BROBETT.json @@ -120,7 +120,7 @@ { "name": "Bqkl", "top": 20, - "bottom": "NA", + "bottom": 43, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Bqk2", - "top": "NA", + "top": 43, "bottom": 76, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/B/BROCKROAD.json b/inst/extdata/OSD/B/BROCKROAD.json index bae251b4c6..0c81108a18 100644 --- a/inst/extdata/OSD/B/BROCKROAD.json +++ b/inst/extdata/OSD/B/BROCKROAD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BROMO.json b/inst/extdata/OSD/B/BROMO.json index 2c5be6b870..0cf18dd16c 100644 --- a/inst/extdata/OSD/B/BROMO.json +++ b/inst/extdata/OSD/B/BROMO.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Al", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": "NA", @@ -119,7 +119,7 @@ }, { "name": "A2", - "top": "NA", + "top": 3, "bottom": 10, "dry_hue": "l0YR", "dry_value": 5, @@ -143,7 +143,7 @@ { "name": "AB", "top": 10, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 2, @@ -165,7 +165,7 @@ }, { "name": "Bs", - "top": "NA", + "top": 25, "bottom": 58, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/B/BROWARD.json b/inst/extdata/OSD/B/BROWARD.json index 69031305dc..7c27a336d9 100644 --- a/inst/extdata/OSD/B/BROWARD.json +++ b/inst/extdata/OSD/B/BROWARD.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--14 to 26 inches; very pale brown (10YR 8/3) fine sand; single grained; loose; few fine faint light gray (10YR 7/1) streaks and few fine distinct yellow (10YR 8/6) masses of iron accumulations; slightly alkaline; abrupt wavy boundary. (Combined thickness of the C horizons ranges from 13 to 37 inches, except in solution holes)" + }, + { + "name": "R", + "top": 66, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--26+ inches; variegated light gray (10YR 7/1) and white (10YR 8/1) limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/B/BROWNFIELD.json b/inst/extdata/OSD/B/BROWNFIELD.json index a1c6b1cd85..31897ccee1 100644 --- a/inst/extdata/OSD/B/BROWNFIELD.json +++ b/inst/extdata/OSD/B/BROWNFIELD.json @@ -231,6 +231,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Bt3--140 to 170 cm (55 to 67 in); red (2.5YR 4/6) sandy clay loam, dark red (2.5YR 3/6) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; very hard, very firm; common very fine and fine roots; common very fine and fine tubular pores; common distinct clay films on faces of peds; neutral; gradual wavy boundary. (25 to 51 cm [10 to 20 in] thick)" + }, + { + "name": "Bt4", + "top": 170, + "bottom": 203, + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 6, + "texture_class": "sandy clay loam", + "structure": "moderate coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt4--170 to 203 (67 to 80 in); red (2.5YR 4/6) sandy clay loam, dark red (2.5YR 3/6) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; hard, firm; common fine and medium roots; common very fine and fine tubular pores; common distinct clay films on faces of peds; neutral; gradual wavy boundary. (25 to 51 cm [10 to 20 in] thick)" } ] ] diff --git a/inst/extdata/OSD/B/BRULE.json b/inst/extdata/OSD/B/BRULE.json index c2207edfee..ca4354d50f 100644 --- a/inst/extdata/OSD/B/BRULE.json +++ b/inst/extdata/OSD/B/BRULE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 15, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "silty clay loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A--0 to 15 (0 to 6 in); dark gray (10YR 4/1) silty clay loam; moderate medium subangular blocky structure; firm; many very fine to coarse roots; few fine pores; extremely acid; clear smooth boundary. (8 to 30 cm [3 to 12 in] thick)" + }, { "name": "AB", "top": 15, diff --git a/inst/extdata/OSD/B/BRYCE.json b/inst/extdata/OSD/B/BRYCE.json index 2e33ed7112..92f8d00a97 100644 --- a/inst/extdata/OSD/B/BRYCE.json +++ b/inst/extdata/OSD/B/BRYCE.json @@ -212,7 +212,7 @@ { "name": "2BCg", "top": 114, - "bottom": "NA", + "bottom": 147, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BUCKHOUSE.json b/inst/extdata/OSD/B/BUCKHOUSE.json index 8b4e97fddb..d8f5bc4592 100644 --- a/inst/extdata/OSD/B/BUCKHOUSE.json +++ b/inst/extdata/OSD/B/BUCKHOUSE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BUCKPEAK.json b/inst/extdata/OSD/B/BUCKPEAK.json index e4c0b56005..6f6ecda986 100644 --- a/inst/extdata/OSD/B/BUCKPEAK.json +++ b/inst/extdata/OSD/B/BUCKPEAK.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BUCKSHOT.json b/inst/extdata/OSD/B/BUCKSHOT.json index 3639b12ec6..2c8a757d66 100644 --- a/inst/extdata/OSD/B/BUCKSHOT.json +++ b/inst/extdata/OSD/B/BUCKSHOT.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BULLGULCH.json b/inst/extdata/OSD/B/BULLGULCH.json index 81ce49672f..68df5b4a7a 100644 --- a/inst/extdata/OSD/B/BULLGULCH.json +++ b/inst/extdata/OSD/B/BULLGULCH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BULLNEL.json b/inst/extdata/OSD/B/BULLNEL.json index 0a877b04d3..3deb668a81 100644 --- a/inst/extdata/OSD/B/BULLNEL.json +++ b/inst/extdata/OSD/B/BULLNEL.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": 4, + "dry_hue": "5YR", + "dry_value": 3, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "moderate very fine granular", + "dry_rupture": "loose", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A11--0 to 1 1/2 inches; dark reddish brown (5YR 2/2) loam, dark reddish brown (5YR 3/4) dry; moderate very fine granular structure; loose, very friable, nonsticky and nonplastic; many very fine and fine roots; 10 percent gravel; slightly acid (pH 6.4); abrupt wavy boundary. (1 to 8 inches thick)" + }, + { + "name": "A12", + "top": 4, + "bottom": 20, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "loam", + "structure": "weak coarse granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.2, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "irregular", + "narrative": "A12--1 1/2 to 8 inches; dark reddish brown (5YR 3/4) gravelly loam, reddish brown (5YR 4/4) dry; weak coarse granular structure; soft, friable, slightly sticky and slightly plastic; many very fine, fine and medium roots; 30 percent gravel and cobbles; slightly acid (pH 6.2); clear irregular boundary. (1 to 9 inches thick)" + }, { "name": "B21t", "top": 20, diff --git a/inst/extdata/OSD/B/BULL_RUN.json b/inst/extdata/OSD/B/BULL_RUN.json index 9ada22c6de..397de5f0f7 100644 --- a/inst/extdata/OSD/B/BULL_RUN.json +++ b/inst/extdata/OSD/B/BULL_RUN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BULOW.json b/inst/extdata/OSD/B/BULOW.json index 0eb398b02f..2319580a99 100644 --- a/inst/extdata/OSD/B/BULOW.json +++ b/inst/extdata/OSD/B/BULOW.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bt--45 to 50 inches; yellowish red (5YR 4/6) sandy clay loam; moderate medium subangular blocky structure; friable; common medium roots and worm casts; neutral; abrupt irregular boundary. (2 to 20 inches thick)" + }, + { + "name": "R", + "top": 127, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--50+ inches; coquina rock of varying hardness that is pitted with solution holes and chambers." } ] ] diff --git a/inst/extdata/OSD/B/BURCHELL.json b/inst/extdata/OSD/B/BURCHELL.json index 51b4199c95..b1690b4d78 100644 --- a/inst/extdata/OSD/B/BURCHELL.json +++ b/inst/extdata/OSD/B/BURCHELL.json @@ -116,6 +116,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "B2--20 to 45 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, firm, very plastic and sticky; nearly continuous thin very dark gray 910YR 3/1) clay films; moderately alkaline (pH 8.2); slightly calcareous, the lime segregated into small light colored soft masses; gradual smooth boundary. (20 to 30 inches thick)" + }, + { + "name": "Cg", + "top": 114, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "fine sandy loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cg--45+ inches; grayish brown (10YR 5/2) stratified silt loams and fine sandy loams, dark grayish brown (10YR 4/2) with many distinct fine and medium mottles of \"bluish-gray\" and strong brown (7.5YR 5/6 and 5/8) moist; slightly hard, friable, slightly plastic to plastic and slightly sticky; moderately alkaline (pH 8.3 to 8.5) slightly calcareous with some hard nodules; decreasing in lime content and pH with depth. (Several feet thick)" } ] ] diff --git a/inst/extdata/OSD/B/BURIBURI.json b/inst/extdata/OSD/B/BURIBURI.json index 49d4ba5ee0..a1f03ddaee 100644 --- a/inst/extdata/OSD/B/BURIBURI.json +++ b/inst/extdata/OSD/B/BURIBURI.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BURNTHILL.json b/inst/extdata/OSD/B/BURNTHILL.json index c1eb60b567..e47e595c7a 100644 --- a/inst/extdata/OSD/B/BURNTHILL.json +++ b/inst/extdata/OSD/B/BURNTHILL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/B/BURT.json b/inst/extdata/OSD/B/BURT.json index c68f26a525..56aea2bc29 100644 --- a/inst/extdata/OSD/B/BURT.json +++ b/inst/extdata/OSD/B/BURT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BUSE.json b/inst/extdata/OSD/B/BUSE.json index 0b5a9ad47e..78a17eca03 100644 --- a/inst/extdata/OSD/B/BUSE.json +++ b/inst/extdata/OSD/B/BUSE.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--56 to 102 cm; light olive brown (2.5Y 5/4) loam; weak fine subangular blocky structure; friable; common coarse irregular carbonate threads; few fine distinct light brownish gray (2.5Y 6/2) redoximorphic depletions and prominent strong brown (7.5YR 5/6) redoximorphic concentrations; about 2 percent gravel; strongly effervescent; moderately alkaline; clear smooth boundary. (combined thickness of the Bk horizons is 6 to 127 cm)" + }, + { + "name": "C", + "top": 102, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "slightly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--102 to 152; light olive brown (2.5Y 5/4) loam; massive; friable; common medium distinct grayish brown (2.5Y 5/2) redoximorphic depletions and few prominent light olive brown (2.5Y 5/6) redoximorphic concentrations; about 2 percent gravel; slightly effervescent; slightly alkaline." } ] ] diff --git a/inst/extdata/OSD/B/BUSHVALLEY.json b/inst/extdata/OSD/B/BUSHVALLEY.json index ff2a08ff9e..2431a75adc 100644 --- a/inst/extdata/OSD/B/BUSHVALLEY.json +++ b/inst/extdata/OSD/B/BUSHVALLEY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BUTANO.json b/inst/extdata/OSD/B/BUTANO.json index da8791c226..b7dd4cc120 100644 --- a/inst/extdata/OSD/B/BUTANO.json +++ b/inst/extdata/OSD/B/BUTANO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "A0", + "name": "AO", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/B/BUTTERMILK.json b/inst/extdata/OSD/B/BUTTERMILK.json index 30238d0587..ec7e2931a5 100644 --- a/inst/extdata/OSD/B/BUTTERMILK.json +++ b/inst/extdata/OSD/B/BUTTERMILK.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Bwy--71 to 112 cm (28 to 44 in); light brown (7.5YR 6/4) silt loam, brown (7.5YR 4/4) moist; weak medium subangular blocky structure; hard, friable; few fine roots; common fine white gypsum crystals; strong effervescence; moderately alkaline; gradual smooth boundary. (Thickness of the Bw horizon is 20 to 61 cm [8 to 24 in])" + }, + { + "name": "Cy", + "top": 112, + "bottom": 155, + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strong effervescence", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cy--112 to 155 (44 to 61 in); pink (7.5YR 7/4) silt loam, light brown (7.5YR 6/4) moist; massive; hard, friable; many fine white gypsum crystals; strong effervescence; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/B/BYBEE.json b/inst/extdata/OSD/B/BYBEE.json index d86919d2b5..0937aa0575 100644 --- a/inst/extdata/OSD/B/BYBEE.json +++ b/inst/extdata/OSD/B/BYBEE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 inch to 0; conifer needles and forest litter, loose and partially decomposed in lower part." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CABLAB.json b/inst/extdata/OSD/C/CABLAB.json index 76c96a3e45..ac9bda52c4 100644 --- a/inst/extdata/OSD/C/CABLAB.json +++ b/inst/extdata/OSD/C/CABLAB.json @@ -186,6 +186,29 @@ "topography": "smooth", "narrative": "Ab--69 to 84 cm; brown (10YR 5/3) gravelly loam, dark brown (10YR 3/3) with lenses of black (10YR2/2) moist; moderate fine subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; common very fine through medium roots; common fine tubular pores; many fine distinct brownish yellow (10YR 6/6) masses of iron accumulation in the matrix; 25 percent gravel; neutral (pH 7.0); clear smooth boundary. (0 to 25 cm thick)" }, + { + "name": "C", + "top": 84, + "bottom": 109, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "C--84 to 109; pale brown (10YR 6/3) gravelly loam, dark brown (10YR 3/3) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine through medium roots; common fine tubular pores; many coarse distinct brownish yellow (10YR 6/6) masses of iron accumulation lining root channels and coating rock fragments; 20 percent gravel; neutral (pH 7.0); clear smooth boundary. (15 to 50 cm thick)" + }, { "name": "2C", "top": 109, diff --git a/inst/extdata/OSD/C/CAGUABO.json b/inst/extdata/OSD/C/CAGUABO.json index 9ecc41a157..bc648469c0 100644 --- a/inst/extdata/OSD/C/CAGUABO.json +++ b/inst/extdata/OSD/C/CAGUABO.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--10 to 16 inches; mixture of weathered and partially weathered basalt rock fragments and saprolite that can be penetrated with the spade; slightly acid. (0 to 7 inches thick)" + }, + { + "name": "R", + "top": 41, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--16+ inches; consolidated basalt rock." } ] ] diff --git a/inst/extdata/OSD/C/CALLINGS.json b/inst/extdata/OSD/C/CALLINGS.json index ed1d2ad5c0..903a4930cd 100644 --- a/inst/extdata/OSD/C/CALLINGS.json +++ b/inst/extdata/OSD/C/CALLINGS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; aspen litter and duff." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CAMAGUEY.json b/inst/extdata/OSD/C/CAMAGUEY.json index 88f1db58b4..2d0c8a3a2e 100644 --- a/inst/extdata/OSD/C/CAMAGUEY.json +++ b/inst/extdata/OSD/C/CAMAGUEY.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bss2--24 to 34 inches; olive yellow (2.5Y 6/6) clay; crushed color olive brown (2.5Y 4/4); massive; very firm; sticky, plastic; few fine roots; few fine shell fragments; common distinct intersecting slickensides having polished and grooved surfaces; many medium distinct dark grayish brown (2.5Y 4/2) areas of iron depletions; violently effervescent; strongly alkaline; clear wavy boundary. (8 to 12 inches thick)" + }, + { + "name": "Bss3", + "top": 86, + "bottom": 127, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 6, + "texture_class": "clay", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "violently effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bss3--34 to 50+ inches; olive yellow (2.5Y 6/6) clay; crushed color light olive brown (2.5Y 5/4); massive; very firm; sticky, plastic; common distinct intersecting slickensides having polished and grooved surfaces; many medium distinct gray (10YR 5/1) areas of iron depletions; violently effervescent; strongly alkaline." } ] ] diff --git a/inst/extdata/OSD/C/CAMBERN.json b/inst/extdata/OSD/C/CAMBERN.json index 56fe615018..03111e0ba9 100644 --- a/inst/extdata/OSD/C/CAMBERN.json +++ b/inst/extdata/OSD/C/CAMBERN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CAMILLUS.json b/inst/extdata/OSD/C/CAMILLUS.json index 78bd4ef3e4..63349f9b3d 100644 --- a/inst/extdata/OSD/C/CAMILLUS.json +++ b/inst/extdata/OSD/C/CAMILLUS.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "2Cr -- 36 to 39 inches; grayish brown (10YR 5/2) soft partially disintegrated calcareous silty shale bedrock." + }, + { + "name": "2R", + "top": 99, + "bottom": 107, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2R -- 39 to 42+ inches; grayish brown (10YR 5/2) soft calcareous silty shale bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CAMPFOUR.json b/inst/extdata/OSD/C/CAMPFOUR.json index 5732967643..5a45cacd86 100644 --- a/inst/extdata/OSD/C/CAMPFOUR.json +++ b/inst/extdata/OSD/C/CAMPFOUR.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CAMPTANK.json b/inst/extdata/OSD/C/CAMPTANK.json index 2460d55e02..604860a4e0 100644 --- a/inst/extdata/OSD/C/CAMPTANK.json +++ b/inst/extdata/OSD/C/CAMPTANK.json @@ -186,6 +186,29 @@ "topography": "smooth", "narrative": "2Bk--43 to 86 cm; brown (10YR 5/3) very stony fine sandy loam, dark yellowish brown (10YR 4/4) moist; weak medium platy structure; hard, friable, slightly sticky and slightly plastic; few fine and few medium roots; few fine tubular pores; 15 percent gravel, 10 percent cobbles, and 15 percent stones; secondary carbonates segregated as common medium coats on faces of peds and bottoms of rock fragments; strongly effervescent; moderately alkaline (pH 8.4); clear smooth boundary. (15 to 50 cm thick)" }, + { + "name": "2C", + "top": 86, + "bottom": 104, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "fine sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "2C--86 to 104; pale brown (10YR 6/3) very gravelly fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; few fine roots; few fine tubular pores; 50 percent gravel; strongly effervescent; moderately alkaline (pH 8.2); abrupt wavy boundary. (0 to 50 cm thick)" + }, { "name": "3R", "top": 104, diff --git a/inst/extdata/OSD/C/CANINECREEK.json b/inst/extdata/OSD/C/CANINECREEK.json index acc3f2447c..4a01588382 100644 --- a/inst/extdata/OSD/C/CANINECREEK.json +++ b/inst/extdata/OSD/C/CANINECREEK.json @@ -71,29 +71,6 @@ ], "HORIZONS": [ [ - { - "name": "1", - "top": 0, - "bottom": 18, - "dry_hue": "10YR", - "dry_value": 4, - "dry_chroma": 2, - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "fine sandy loam", - "structure": "weak fine subangular blocky", - "dry_rupture": "hard", - "moist_rupture": "friable", - "coherence": "indurated", - "cf_class": "NA", - "pH": "NA", - "pH_class": "moderately alkaline", - "eff_class": "NA", - "distinctness": "clear", - "topography": "smooth", - "narrative": "1--0 to 7 inches, (0 to 18 cm); dark grayish brown (10YR 4/2) broken face fine sandy loam, very dark brown (10YR 2/2) broken face moist; 12 percent clay; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; many very fine roots; many very fine interstitial pores; 5 percent rounded indurated 2 to 75 millimeter mixed rock fragments; moderately alkaline, pH 7.9 by pH meter 1:1 water; clear smooth boundary." - }, { "name": "A2", "top": 18, diff --git a/inst/extdata/OSD/C/CANTUCHE.json b/inst/extdata/OSD/C/CANTUCHE.json index 372da2f216..75495cc12a 100644 --- a/inst/extdata/OSD/C/CANTUCHE.json +++ b/inst/extdata/OSD/C/CANTUCHE.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "A12--4 to 9 inches; grayish brown (10YR 5/2) angular cobbly loam; moderate fine and medium granular structure; very friable; common fine and medium roots in soil material and on faces of fragments; few very fine flakes of mica; few small fragments of charcoal; few fine pores; about 70 percent fragments of claystone ranging from 2 mm to 25 cm in diameter; very strongly acid; abrupt wavy boundary. (0 to 8 inches thick)" + }, + { + "name": "Cr", + "top": 23, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--9+ inches; hard, acid, horizontally bedded claystone; claystone is grayish brown or light yellowish brown with streaks or splotches of strong brown and yellowish brown; claystone is discontinuous but there is no evidence of root penetration or soil material within fractures which are usually more than 12 inches apart; few fine flakes of mica; material is extremely difficult to chip with spade; very strongly acid." } ] ] diff --git a/inst/extdata/OSD/C/CARACOLES.json b/inst/extdata/OSD/C/CARACOLES.json index b92e4318e3..81f2f94e5a 100644 --- a/inst/extdata/OSD/C/CARACOLES.json +++ b/inst/extdata/OSD/C/CARACOLES.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 6 inches, very dark grayish brown (10YR 3/2) loam; weak fine granular structure; friable; nonsticky, slightly plastic; many fine roots; neutral; abrupt wavy boundary. (4 to 8 inches thick)" + }, + { + "name": "R", + "top": 15, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--6+ inches; semiconsolidated calcareous sandstone." } ] ] diff --git a/inst/extdata/OSD/C/CARBONDALE.json b/inst/extdata/OSD/C/CARBONDALE.json index ad5fe04b60..d5fdc8aaee 100644 --- a/inst/extdata/OSD/C/CARBONDALE.json +++ b/inst/extdata/OSD/C/CARBONDALE.json @@ -141,7 +141,7 @@ "narrative": "Oa3--28 to 39 inches; black (10YR 2/1) broken face and rubbed muck; about 10 percent fiber, less than 5 percent rubbed; massive; primarily herbaceous fibers and a few woody fragments; slightly acid (pH 6.4 in water); abrupt smooth boundary." }, { - "name": "0e", + "name": "Oe", "top": 99, "bottom": 152, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CARDIGAN.json b/inst/extdata/OSD/C/CARDIGAN.json index 0d8982b102..0aa0330761 100644 --- a/inst/extdata/OSD/C/CARDIGAN.json +++ b/inst/extdata/OSD/C/CARDIGAN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 2, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CARDOVA.json b/inst/extdata/OSD/C/CARDOVA.json index a48bb2b604..18df0c8332 100644 --- a/inst/extdata/OSD/C/CARDOVA.json +++ b/inst/extdata/OSD/C/CARDOVA.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "C-- 66 to 84 cm (26 to 33 inches); very dark gray (N 3/0) very cobbly loam; massive; friable, nonsticky and nonplastic; few fine and medium roots throughout; few fine low-continuity interstitial pores and few fine moderate-continuity tubular pores; 50 percent subangular schist cobbles; strongly acid; clear wavy boundary." }, + { + "name": "Cr", + "top": 84, + "bottom": 112, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Cr-- 84 to 112 (33 to 44 inches); soft bedrock in shades of gray and brown that crushes to a silt loam; 55 percent angular schist fragments; clear wavy boundary." + }, { "name": "R", "top": 112, diff --git a/inst/extdata/OSD/C/CARDSOUND.json b/inst/extdata/OSD/C/CARDSOUND.json index 1b2f13c551..81ad24940b 100644 --- a/inst/extdata/OSD/C/CARDSOUND.json +++ b/inst/extdata/OSD/C/CARDSOUND.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "A--0 to 4 inches; dark yellowish brown (10YR 4/4) silty clay loam; weak fine granular structure; friable; common fine and medium roots; about 12 percent, by volume, limestone pebbles; neutral; strongly effervescent; abrupt irregular boundary (2 to 9 inches thick)." + }, + { + "name": "2R", + "top": 10, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2R--4+ inches; hard, porous, oolitic limestone." } ] ] diff --git a/inst/extdata/OSD/C/CARIBOURIDGE.json b/inst/extdata/OSD/C/CARIBOURIDGE.json index 8a12fe9156..7633971b04 100644 --- a/inst/extdata/OSD/C/CARIBOURIDGE.json +++ b/inst/extdata/OSD/C/CARIBOURIDGE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; needles, leaves, twigs, bark, and cones. (0.5 to 1.5 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CARIS.json b/inst/extdata/OSD/C/CARIS.json index ede0a9b25d..6d0efe663f 100644 --- a/inst/extdata/OSD/C/CARIS.json +++ b/inst/extdata/OSD/C/CARIS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CARLAIN.json b/inst/extdata/OSD/C/CARLAIN.json index d1c91498ef..1f5fe5cb41 100644 --- a/inst/extdata/OSD/C/CARLAIN.json +++ b/inst/extdata/OSD/C/CARLAIN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CARNEY.json b/inst/extdata/OSD/C/CARNEY.json index b44713e815..33fc155fc4 100644 --- a/inst/extdata/OSD/C/CARNEY.json +++ b/inst/extdata/OSD/C/CARNEY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "strong fine granular", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.2, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--0 to 1 1/2 inches; dark brown (10YR 3/3) clay, dark grayish brown (10YR 4/2) dry; strong fine granular structure; very firm, very sticky and very plastic; many fine roots; many fine interstitial pores; neutral (pH 7.2); clear smooth boundary." + }, + { + "name": "A2", + "top": 4, + "bottom": 15, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "strong fine and medium subangular", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.2, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A2--1 1/2 to 6 inches; dark brown (10YR 3/3) clay, dark grayish brown (10YR 4/2) dry; strong fine and medium subangular structure; very firm, very hard, very sticky and very plastic; many fine roots; many fine interstitial pores; neutral (pH 7.2); clear smooth boundary. (Combined A horizon 5 to 17 inches thick)" + }, { "name": "AC", "top": 15, diff --git a/inst/extdata/OSD/C/CAROLINE.json b/inst/extdata/OSD/C/CAROLINE.json index 3f60096ec4..e3ce11524b 100644 --- a/inst/extdata/OSD/C/CAROLINE.json +++ b/inst/extdata/OSD/C/CAROLINE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CASABE.json b/inst/extdata/OSD/C/CASABE.json index 9b06a3319b..e38fff38f0 100644 --- a/inst/extdata/OSD/C/CASABE.json +++ b/inst/extdata/OSD/C/CASABE.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--16 to 38 inches; hard fractured and moderately weathered serpentinite bedrock. (3 to 40 inches thick)" + }, + { + "name": "R", + "top": 97, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--38+ inches; hard fractured consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CASHNER.json b/inst/extdata/OSD/C/CASHNER.json index 0443bf8ee3..299474b716 100644 --- a/inst/extdata/OSD/C/CASHNER.json +++ b/inst/extdata/OSD/C/CASHNER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CASPAR.json b/inst/extdata/OSD/C/CASPAR.json index cf45f9a734..e3d2db9180 100644 --- a/inst/extdata/OSD/C/CASPAR.json +++ b/inst/extdata/OSD/C/CASPAR.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CATALINA.json b/inst/extdata/OSD/C/CATALINA.json index c953cdf19e..89f8789c98 100644 --- a/inst/extdata/OSD/C/CATALINA.json +++ b/inst/extdata/OSD/C/CATALINA.json @@ -254,6 +254,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "C2--72 to 84 inches; 50 percent dark reddish brown (2.5YR 3/4) and 50 percent dark red (2.5YR 3/6) clay; massive; firm; nonsticky, plastic; about 30 percent, by volume, saprolite; very strongly acid; gradual smooth boundary." + }, + { + "name": "C3", + "top": 213, + "bottom": 305, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10R", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C3--84 to 120+ inches; 25 percent dusky red (10R 3/4), 25 percent dark reddish brown (2.5YR 3/4), 25 percent strong brown (7.5YR 5/8), 15 percent dark gray (10YR 4/1), and 10 percent white (10YR 8/1) variegated saprolite having a clay texture; massive; firm; nonsticky, plastic, very strongly acid." } ] ] diff --git a/inst/extdata/OSD/C/CATAMOUNT.json b/inst/extdata/OSD/C/CATAMOUNT.json index f5161eaeac..eb2ec837b7 100644 --- a/inst/extdata/OSD/C/CATAMOUNT.json +++ b/inst/extdata/OSD/C/CATAMOUNT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CATELLI.json b/inst/extdata/OSD/C/CATELLI.json index a315ddb3d4..18a08dec9b 100644 --- a/inst/extdata/OSD/C/CATELLI.json +++ b/inst/extdata/OSD/C/CATELLI.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CATHRO.json b/inst/extdata/OSD/C/CATHRO.json index dfd6f096eb..f761ee037a 100644 --- a/inst/extdata/OSD/C/CATHRO.json +++ b/inst/extdata/OSD/C/CATHRO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 15, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0a1--0 to 6 inches; black (5YR 2/1) rubbed and pressed muck (sapric material); about 40 percent fiber, about 15 percent rubbed; weak fine granular structure; nonsticky; primarily herbaceous fibers; neutral (pH 6.8 in water); clear wavy boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 15, "bottom": 28, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0a2--6 to 11 inches; black (5YR 2/1) broken face and rubbed muck (sapric material), dark reddish brown (5YR 2/2) pressed; about 35 percent fiber, about 10 percent rubbed; weak medium granular structure; nonsticky; primarily herbaceous fibers; neutral (pH 6.8 in water); clear smooth boundary." }, { - "name": "0a3", + "name": "Oa3", "top": 28, "bottom": 58, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CATLETT.json b/inst/extdata/OSD/C/CATLETT.json index 33f183f878..60da00bdaa 100644 --- a/inst/extdata/OSD/C/CATLETT.json +++ b/inst/extdata/OSD/C/CATLETT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CATTCREEK.json b/inst/extdata/OSD/C/CATTCREEK.json index 7ea0c3c941..47c1aecb20 100644 --- a/inst/extdata/OSD/C/CATTCREEK.json +++ b/inst/extdata/OSD/C/CATTCREEK.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CAYUSE.json b/inst/extdata/OSD/C/CAYUSE.json index 4f126f7b51..e44b428c3d 100644 --- a/inst/extdata/OSD/C/CAYUSE.json +++ b/inst/extdata/OSD/C/CAYUSE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--l/4 inch to 0; moss, twigs, needles (l/4 to 1 inch" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CEDARGROVE.json b/inst/extdata/OSD/C/CEDARGROVE.json index d020d4be57..b78973e45f 100644 --- a/inst/extdata/OSD/C/CEDARGROVE.json +++ b/inst/extdata/OSD/C/CEDARGROVE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CENTISSIMA.json b/inst/extdata/OSD/C/CENTISSIMA.json index d4be574a52..fb4eb464f5 100644 --- a/inst/extdata/OSD/C/CENTISSIMA.json +++ b/inst/extdata/OSD/C/CENTISSIMA.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CERES.json b/inst/extdata/OSD/C/CERES.json index b09749cdce..a878914cc9 100644 --- a/inst/extdata/OSD/C/CERES.json +++ b/inst/extdata/OSD/C/CERES.json @@ -208,6 +208,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C--74 to 112 cm (29 to 44 inches), weak red (10R 4/4) extremely channery silt loam; massive; firm; 75 percent rock fragments; moderately acid; clear wavy boundary (0 to 60 cm (24 inches thick))." + }, + { + "name": "R", + "top": 112, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10R", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--112+ cm (44+ inches), dusky red (10R 3/2) interbedded shale and siltstone." } ] ] diff --git a/inst/extdata/OSD/C/CERPONE.json b/inst/extdata/OSD/C/CERPONE.json index 10d3e68e04..14a89bc103 100644 --- a/inst/extdata/OSD/C/CERPONE.json +++ b/inst/extdata/OSD/C/CERPONE.json @@ -257,7 +257,7 @@ }, { "name": "R", - "top": "NA", + "top": 144, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/C/CERRO_MARIQUITA.json b/inst/extdata/OSD/C/CERRO_MARIQUITA.json index a336041c06..057ad00baf 100644 --- a/inst/extdata/OSD/C/CERRO_MARIQUITA.json +++ b/inst/extdata/OSD/C/CERRO_MARIQUITA.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Cr--13 to 23 inches; highly fractured unconsolidated chert; abrupt wavy boundary. (4 to 10 inches thick)" + }, + { + "name": "R", + "top": 58, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--23+ inches; hard consolidated chert bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CHAFIN.json b/inst/extdata/OSD/C/CHAFIN.json index 23eba64034..3d1c8151c2 100644 --- a/inst/extdata/OSD/C/CHAFIN.json +++ b/inst/extdata/OSD/C/CHAFIN.json @@ -97,7 +97,7 @@ { "name": "Bt1", "top": 3, - "bottom": "NA", + "bottom": 20, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 3, diff --git a/inst/extdata/OSD/C/CHAIX.json b/inst/extdata/OSD/C/CHAIX.json index 524551d1f9..b81f813268 100644 --- a/inst/extdata/OSD/C/CHAIX.json +++ b/inst/extdata/OSD/C/CHAIX.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 3, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 1/4 inches to 0; leaf litter." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CHAPOT.json b/inst/extdata/OSD/C/CHAPOT.json index a95aae6c2f..5d15c07b6c 100644 --- a/inst/extdata/OSD/C/CHAPOT.json +++ b/inst/extdata/OSD/C/CHAPOT.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHEAHA.json b/inst/extdata/OSD/C/CHEAHA.json index 0b24b7f405..06c1540c56 100644 --- a/inst/extdata/OSD/C/CHEAHA.json +++ b/inst/extdata/OSD/C/CHEAHA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHEDATNA.json b/inst/extdata/OSD/C/CHEDATNA.json index bb4ea7e700..a66c4545ad 100644 --- a/inst/extdata/OSD/C/CHEDATNA.json +++ b/inst/extdata/OSD/C/CHEDATNA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHEKIKA.json b/inst/extdata/OSD/C/CHEKIKA.json index 6579c59ee3..0101b7f3a1 100644 --- a/inst/extdata/OSD/C/CHEKIKA.json +++ b/inst/extdata/OSD/C/CHEKIKA.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Ap--0 to 5 inches; dark grayish brown (10YR 4/2) very gravelly loam, gray (10YR 6/1) dry; weak fine granular structure; very friable; about 45 percent by volume, limestone fragments 8 cm or less in diameter; strongly effervescent; slightly alkaline; abrupt irregular boundary. (2 to 10 inches thick)" + }, + { + "name": "R", + "top": 13, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--5+ inches; hard, porous, oolitic limestone." } ] ] diff --git a/inst/extdata/OSD/C/CHELINA.json b/inst/extdata/OSD/C/CHELINA.json index 834e1cf699..f0dc86f875 100644 --- a/inst/extdata/OSD/C/CHELINA.json +++ b/inst/extdata/OSD/C/CHELINA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHETASLINA.json b/inst/extdata/OSD/C/CHETASLINA.json index fe8d9f07e6..570eb51bd3 100644 --- a/inst/extdata/OSD/C/CHETASLINA.json +++ b/inst/extdata/OSD/C/CHETASLINA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHICKAMAN.json b/inst/extdata/OSD/C/CHICKAMAN.json index 17eb13caa2..89537d8197 100644 --- a/inst/extdata/OSD/C/CHICKAMAN.json +++ b/inst/extdata/OSD/C/CHICKAMAN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHILKAT.json b/inst/extdata/OSD/C/CHILKAT.json index b14d3a6438..41b1192bc8 100644 --- a/inst/extdata/OSD/C/CHILKAT.json +++ b/inst/extdata/OSD/C/CHILKAT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHILKOOT.json b/inst/extdata/OSD/C/CHILKOOT.json index d0f22136bc..6aea0e3076 100644 --- a/inst/extdata/OSD/C/CHILKOOT.json +++ b/inst/extdata/OSD/C/CHILKOOT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHILLIGAN.json b/inst/extdata/OSD/C/CHILLIGAN.json index aaf45ecf41..588bbf4a9a 100644 --- a/inst/extdata/OSD/C/CHILLIGAN.json +++ b/inst/extdata/OSD/C/CHILLIGAN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHILLUM.json b/inst/extdata/OSD/C/CHILLUM.json index 09f6837673..c8997425e2 100644 --- a/inst/extdata/OSD/C/CHILLUM.json +++ b/inst/extdata/OSD/C/CHILLUM.json @@ -97,7 +97,7 @@ { "name": "E", "top": 3, - "bottom": "NA", + "bottom": 20, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHILSON.json b/inst/extdata/OSD/C/CHILSON.json index 9fc8878335..291e1322ab 100644 --- a/inst/extdata/OSD/C/CHILSON.json +++ b/inst/extdata/OSD/C/CHILSON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHIMNEYROCK.json b/inst/extdata/OSD/C/CHIMNEYROCK.json index 9f07274471..d929f57433 100644 --- a/inst/extdata/OSD/C/CHIMNEYROCK.json +++ b/inst/extdata/OSD/C/CHIMNEYROCK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHIPPENY.json b/inst/extdata/OSD/C/CHIPPENY.json index 982b8c2b17..6cc062b612 100644 --- a/inst/extdata/OSD/C/CHIPPENY.json +++ b/inst/extdata/OSD/C/CHIPPENY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0a1--0 to 8 centimeters; black (5YR 2.5/1) broken face and rubbed muck; about 25 percent fiber, less than 5 percent rubbed; weak fine granular structure; primarily herbaceous fiber; slightly alkaline (pH 7.5 in water); clear smooth boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 8, "bottom": 15, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0a2--8 to 15 centimeters; black (5YR 2.5/1) broken face, dark reddish brown (5YR 2.5/2) rubbed muck; about 50 percent fiber, less than 5 percent rubbed; weak medium granular structure; primarily herbaceous fiber; slightly alkaline (pH 7.5 in water); clear smooth boundary." }, { - "name": "0a3", + "name": "Oa3", "top": 15, "bottom": 51, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHIQUITO.json b/inst/extdata/OSD/C/CHIQUITO.json index aec2ba2243..ac3ce14a82 100644 --- a/inst/extdata/OSD/C/CHIQUITO.json +++ b/inst/extdata/OSD/C/CHIQUITO.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2--11 to 18 inches; very dark grayish brown (10YR 3/2) extremely gravelly clay loam, dark gray (10YR 4/1) dry; weak very fine and fine subangular blocky structure; slightly hard, friable; slightly sticky, moderately plastic; many very fine and fine roots; common fine and medium interstitial pores and few fine and medium irregular pores; about 50 percent, by volume, pebbles and about 10 percent, by volume, parapebbles; neutral; abrupt wavy boundary. (Combined thickness of the Bw horizons ranges from 8 to 13 inches.)" + }, + { + "name": "R", + "top": 46, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--18+ inches; hard fractured consolidated mudstone." } ] ] diff --git a/inst/extdata/OSD/C/CHISTNA.json b/inst/extdata/OSD/C/CHISTNA.json index 5dd539822e..7de15c25d8 100644 --- a/inst/extdata/OSD/C/CHISTNA.json +++ b/inst/extdata/OSD/C/CHISTNA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHISTOCHINA.json b/inst/extdata/OSD/C/CHISTOCHINA.json index 1534626ade..911136a6e4 100644 --- a/inst/extdata/OSD/C/CHISTOCHINA.json +++ b/inst/extdata/OSD/C/CHISTOCHINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHITINA.json b/inst/extdata/OSD/C/CHITINA.json index d8d10222b0..b213ffead9 100644 --- a/inst/extdata/OSD/C/CHITINA.json +++ b/inst/extdata/OSD/C/CHITINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CHOCORUA.json b/inst/extdata/OSD/C/CHOCORUA.json index aee46547bc..81c9a8cdf6 100644 --- a/inst/extdata/OSD/C/CHOCORUA.json +++ b/inst/extdata/OSD/C/CHOCORUA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e1", + "name": "Oe1", "top": 0, "bottom": 20, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0e1--0 to 8 inches; dark reddish brown (5YR 2/2), broken face and rubbed hemic materials; about 50 percent fibers, 25 percent rubbed; fine granular structure; nonsticky; 2 to 5 percent woody fragments; extremely acid; clear smooth boundary. (4 to 16 inches thick)" }, { - "name": "0e2", + "name": "Oe2", "top": 20, "bottom": 41, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0e2--8 to 16 inches; dark reddish brown (5YR 2/2), broken face and rubbed hemic material; about 70 percent fibers, 30 percent rubbed; fine platy structure; nonsticky; 5 percent woody fragments; extremely acid; clear smooth boundary. (4 to 20 inches thick)" }, { - "name": "0e3", + "name": "Oe3", "top": 41, "bottom": 86, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CHRISTOFF.json b/inst/extdata/OSD/C/CHRISTOFF.json index 1f173b5f6a..721fd28921 100644 --- a/inst/extdata/OSD/C/CHRISTOFF.json +++ b/inst/extdata/OSD/C/CHRISTOFF.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed leaves, needles, and twigs; abrupt" + }, + { + "name": "Oe", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1/2 to 1 inch; moderately decomposed organic litter; abrupt" + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/C/CHUIT.json b/inst/extdata/OSD/C/CHUIT.json index 11f9bb2c5a..4e5fd7184b 100644 --- a/inst/extdata/OSD/C/CHUIT.json +++ b/inst/extdata/OSD/C/CHUIT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CINEBAR.json b/inst/extdata/OSD/C/CINEBAR.json index 0128ed43f3..686e5269f9 100644 --- a/inst/extdata/OSD/C/CINEBAR.json +++ b/inst/extdata/OSD/C/CINEBAR.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 4, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--1.5 to 1 inch; needles, twigs, and leaves." }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -143,7 +143,7 @@ { "name": "A2", "top": 15, - "bottom": "NA", + "bottom": 33, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, diff --git a/inst/extdata/OSD/C/CINNAMON.json b/inst/extdata/OSD/C/CINNAMON.json index d8dbcb4785..53cfa1ad87 100644 --- a/inst/extdata/OSD/C/CINNAMON.json +++ b/inst/extdata/OSD/C/CINNAMON.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CISPUS.json b/inst/extdata/OSD/C/CISPUS.json index cb8972b7c4..7485d4f4ba 100644 --- a/inst/extdata/OSD/C/CISPUS.json +++ b/inst/extdata/OSD/C/CISPUS.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "A", "top": 0, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "Bw", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 38, "dry_hue": "l0YR", "dry_value": 8, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "C", - "top": "NA", + "top": 38, "bottom": 109, "dry_hue": "l0YR", "dry_value": 8, diff --git a/inst/extdata/OSD/C/CITADEL.json b/inst/extdata/OSD/C/CITADEL.json index 8c3fa33964..658ea4b0ea 100644 --- a/inst/extdata/OSD/C/CITADEL.json +++ b/inst/extdata/OSD/C/CITADEL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CITRONELLE.json b/inst/extdata/OSD/C/CITRONELLE.json index 550b74eb8e..ebde87adb7 100644 --- a/inst/extdata/OSD/C/CITRONELLE.json +++ b/inst/extdata/OSD/C/CITRONELLE.json @@ -116,6 +116,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--2 to 9 inches; yellowish red (5YR 5/8) fine sand; weak medium granular structure; very friable; few fine and medium roots; many fine interstitial pores; strongly acid; gradual wavy boundary. (3 to 14 inches thick)" + }, + { + "name": "R", + "top": 23, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--9+ inches; hard limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CLARENA.json b/inst/extdata/OSD/C/CLARENA.json index f705d81d0c..40d00d7fee 100644 --- a/inst/extdata/OSD/C/CLARENA.json +++ b/inst/extdata/OSD/C/CLARENA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CLARKSVILLE.json b/inst/extdata/OSD/C/CLARKSVILLE.json index 641934daf6..84f5f405ba 100644 --- a/inst/extdata/OSD/C/CLARKSVILLE.json +++ b/inst/extdata/OSD/C/CLARKSVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CLENDENEN.json b/inst/extdata/OSD/C/CLENDENEN.json index 67f0e066a1..0473f2f321 100644 --- a/inst/extdata/OSD/C/CLENDENEN.json +++ b/inst/extdata/OSD/C/CLENDENEN.json @@ -95,9 +95,9 @@ "narrative": "Oi--8 to 2 inches; undecomposed forest litter." }, { - "name": "0a", + "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CLE_ELUM.json b/inst/extdata/OSD/C/CLE_ELUM.json index dba3d7b8aa..5be57a13c8 100644 --- a/inst/extdata/OSD/C/CLE_ELUM.json +++ b/inst/extdata/OSD/C/CLE_ELUM.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--1/2 inch to 0; undecomposed forest litter; abrupt smooth boundary." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/C/CLOQUATO.json b/inst/extdata/OSD/C/CLOQUATO.json index bdc5bf3979..50975dc3cb 100644 --- a/inst/extdata/OSD/C/CLOQUATO.json +++ b/inst/extdata/OSD/C/CLOQUATO.json @@ -97,7 +97,7 @@ { "name": "A1", "top": 18, - "bottom": "NA", + "bottom": 30, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, @@ -119,7 +119,7 @@ }, { "name": "A2", - "top": "NA", + "top": 30, "bottom": 102, "dry_hue": "10YR", "dry_value": 5, diff --git a/inst/extdata/OSD/C/CLOVERLAND.json b/inst/extdata/OSD/C/CLOVERLAND.json index 3840df5fed..dfb5b18ff4 100644 --- a/inst/extdata/OSD/C/CLOVERLAND.json +++ b/inst/extdata/OSD/C/CLOVERLAND.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CLOVERLICK.json b/inst/extdata/OSD/C/CLOVERLICK.json index 26828c7e7d..35f77ade02 100644 --- a/inst/extdata/OSD/C/CLOVERLICK.json +++ b/inst/extdata/OSD/C/CLOVERLICK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CLUGULCH.json b/inst/extdata/OSD/C/CLUGULCH.json index a2b801ded8..788c7441dc 100644 --- a/inst/extdata/OSD/C/CLUGULCH.json +++ b/inst/extdata/OSD/C/CLUGULCH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COAL_CREEK.json b/inst/extdata/OSD/C/COAL_CREEK.json index 95df77da9b..a847f64d7a 100644 --- a/inst/extdata/OSD/C/COAL_CREEK.json +++ b/inst/extdata/OSD/C/COAL_CREEK.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COBBLANK.json b/inst/extdata/OSD/C/COBBLANK.json index 5bfd4e6e4d..d39ebd515d 100644 --- a/inst/extdata/OSD/C/COBBLANK.json +++ b/inst/extdata/OSD/C/COBBLANK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COCHINA.json b/inst/extdata/OSD/C/COCHINA.json index a3f3792945..15fcb0c733 100644 --- a/inst/extdata/OSD/C/COCHINA.json +++ b/inst/extdata/OSD/C/COCHINA.json @@ -116,6 +116,52 @@ "distinctness": "diffuse", "topography": "wavy", "narrative": "Bw--18 to 86 cm (7 to 34 inches); grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; moderate medium subangular blocky structure parting to moderate fine angular blocky; extremely hard, very firm, very sticky and very plastic; common fine roots; few shell fragments; few slickensides in lower part; very few brown-black concretions 1 millimeter across; EC 1.0 dS/m; strongly effervescent; moderately alkaline; diffuse wavy boundary. Thickness is 30 to 76 cm (12 to 30 in)" + }, + { + "name": "Bnssz", + "top": 86, + "bottom": 132, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "diffuse", + "topography": "wavy", + "narrative": "Bnssz--86 to 132 (34 to 52 inches); light brownish gray (10YR 6/2) clay, grayish brown (10YR 5/2) moist; moderate medium subangular blocky structure parting to moderate fine angular blocky; extremely hard, very firm, very sticky and very plastic; few fine roots; common slightly darker streaks; few slickensides; few brown-black concretions 1 millimeter across; EC 4.2 dS/m; strongly effervescent; moderately alkaline; diffuse wavy boundary. Thickness is 30 to 61 cm (12 to 24 in)" + }, + { + "name": "Bnssyz", + "top": 132, + "bottom": 183, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "weak fine and medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bnssyz--132 to 183 (52 to 72 inches); pale brown (10YR 6/3) clay, brown (10YR 5/3) moist; weak fine and medium subangular blocky structure; extremely hard, very firm, very sticky and very plastic; few slickensides; few salt threads; few gypsum crystals; few brown-black concretions 1 millimeter across; EC 7.0 dS/m; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/C/COCOA.json b/inst/extdata/OSD/C/COCOA.json index 56e583b7bd..752e92926b 100644 --- a/inst/extdata/OSD/C/COCOA.json +++ b/inst/extdata/OSD/C/COCOA.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt--32 to 38 inches; red (2.5YR 4/6) loamy sand; weak medium granular structure; friable; sand grains are coated and bridged with clay; slightly acid; abrupt wavy boundary. (6 to 16 inches thick)" + }, + { + "name": "R", + "top": 97, + "bottom": 102, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--38 to 40+ inches; pale brown (10YR 6/3) hard coquina limestone." } ] ] diff --git a/inst/extdata/OSD/C/COEROCK.json b/inst/extdata/OSD/C/COEROCK.json index 4353e3bd1c..250e7c75a5 100644 --- a/inst/extdata/OSD/C/COEROCK.json +++ b/inst/extdata/OSD/C/COEROCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/COLDCREEK.json b/inst/extdata/OSD/C/COLDCREEK.json index 35dc6f2743..16461b01b7 100644 --- a/inst/extdata/OSD/C/COLDCREEK.json +++ b/inst/extdata/OSD/C/COLDCREEK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/COLFAX.json b/inst/extdata/OSD/C/COLFAX.json index 3b94d6d1f6..151c12c5b7 100644 --- a/inst/extdata/OSD/C/COLFAX.json +++ b/inst/extdata/OSD/C/COLFAX.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -120,7 +120,7 @@ { "name": "E", "top": 3, - "bottom": "NA", + "bottom": 18, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COLITA.json b/inst/extdata/OSD/C/COLITA.json index 9081b46b64..2ac74af6f7 100644 --- a/inst/extdata/OSD/C/COLITA.json +++ b/inst/extdata/OSD/C/COLITA.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Btg--40 to 45 inches; light gray (2.5Y 7/2) sandy clay loam; moderate medium blocky; extremely hard, firm; patchy clay films on faces of peds, few peds have thin coatings of clean sand grains; ECe 1.0 mmhos/cm; common medium prominent strong brown (7.5YR 5/6) masses of iron accumulation; strongly acid; abrupt wavy boundary. (3 to 10 inches thick)" + }, + { + "name": "Cr", + "top": 114, + "bottom": 119, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "silty clay loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--45 to 47+ inches; pale olive (5Y 6/3) shale of silty clay loam texture; separates to platy and blocky fragments; extremely hard, very firm and brittle, ECe 1.2 mmhos/cm." } ] ] diff --git a/inst/extdata/OSD/C/COLSTRIP.json b/inst/extdata/OSD/C/COLSTRIP.json index 39b9bd8bbf..1145a9c1da 100644 --- a/inst/extdata/OSD/C/COLSTRIP.json +++ b/inst/extdata/OSD/C/COLSTRIP.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C--7 to 16 inches; light yellowish brown (2.5Y 6/4) channery loam, olive brown (2.5Y 4/4) moist; massive; hard, very friable, slightly sticky and slightly plastic; common very fine roots; common very fine pores; 15 percent channers; strongly effervescent; moderately alkaline (pH 8.2); abrupt smooth boundary. (1 to 16 inches thick)" + }, + { + "name": "R", + "top": 41, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--16+ inches; hard sandstone." } ] ] diff --git a/inst/extdata/OSD/C/COLTER.json b/inst/extdata/OSD/C/COLTER.json index dbb1cb582a..9611638238 100644 --- a/inst/extdata/OSD/C/COLTER.json +++ b/inst/extdata/OSD/C/COLTER.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COMAR.json b/inst/extdata/OSD/C/COMAR.json index 8c38a09dd7..1adc62f00e 100644 --- a/inst/extdata/OSD/C/COMAR.json +++ b/inst/extdata/OSD/C/COMAR.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COMFREY.json b/inst/extdata/OSD/C/COMFREY.json index 25a1323745..e8bf18b2ff 100644 --- a/inst/extdata/OSD/C/COMFREY.json +++ b/inst/extdata/OSD/C/COMFREY.json @@ -185,6 +185,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Cg1--94 to 145 cm (37 to 57 inches); gray (5Y 5/1), stratified clay loam and loam; massive; friable; few very fine roots; many fine and medium yellowish brown (10YR 5/6) very weakly cemented iron-manganese concretions throughout; common fine prominent gray (10YR 6/1) iron depletions in the matrix; neutral; gradual smooth boundary." + }, + { + "name": "Cg2", + "top": 145, + "bottom": 160, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 5, + "moist_chroma": 1, + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cg2--145 to 160 (57 to 63 inches); 40 percent gray (5Y 5/1), 30 percent yellowish brown (10YR 5/6), and 30 percent dark gray (2.5Y 4/1), stratified loam and sandy loam; massive; friable; 12 percent gravel; neutral." } ] ] diff --git a/inst/extdata/OSD/C/COMPTCHE.json b/inst/extdata/OSD/C/COMPTCHE.json index 282ca3685a..750e3eb47d 100644 --- a/inst/extdata/OSD/C/COMPTCHE.json +++ b/inst/extdata/OSD/C/COMPTCHE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CONE.json b/inst/extdata/OSD/C/CONE.json index f5ea7544ec..2a9341b806 100644 --- a/inst/extdata/OSD/C/CONE.json +++ b/inst/extdata/OSD/C/CONE.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "C1--8 to 48 inches; brownish yellow (10YR 6/6) very gravelly loam, dark brown (7.5YR 4/4) moist; weak fine granular structure; soft, friable; plentiful very fine and fine roots; porous; medium acid; gradual smooth boundary. (30 to 60 inches thick)" + }, + { + "name": "C2", + "top": 122, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--48 + inches; light yellowish brown (10YR 6/4) gravel (cinders), dark brown (7.5YR 4/4) moist; slightly weathered; loose dry and moist; very small amount of soil present in interstices." } ] ] diff --git a/inst/extdata/OSD/C/CONIC.json b/inst/extdata/OSD/C/CONIC.json index f824f34402..d77faac445 100644 --- a/inst/extdata/OSD/C/CONIC.json +++ b/inst/extdata/OSD/C/CONIC.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CONTEE.json b/inst/extdata/OSD/C/CONTEE.json index 7306abc2d2..d0717ae2b4 100644 --- a/inst/extdata/OSD/C/CONTEE.json +++ b/inst/extdata/OSD/C/CONTEE.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bk--124 to 157 cm (49 to 62 in); light brownish gray (10YR 6/2) clay, light gray (10YR 7/2) dry, weak coarse angular blocky structure; very hard, firm, sticky; few fine faint light yellowish brown (10YR 6/4) masses of oxidized iron in matrix with sharp boundaries; few fine black (10YR 2/1) iron-manganese concretions; about 10 percent fine nodules of calcium carbonate; strongly effervescent; moderately alkaline; gradual boundary. (20 to 61 cm [8 to 24 in] thick)" + }, + { + "name": "BCk", + "top": 157, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "BCk--157 to 203 (62 to 80 in); light gray (10YR 7/2) clay loam; massive; very hard, firm; sticky; common fine distinct yellow (10YR 7/6) masses of oxidized iron; few fine black (10YR 2/1) iron-manganese concretions; about 5 percent fine masses and 15 medium nodules of calcium carbonate; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/C/CONTRA_COSTA.json b/inst/extdata/OSD/C/CONTRA_COSTA.json index 670cf7a2d4..f35ceee4a6 100644 --- a/inst/extdata/OSD/C/CONTRA_COSTA.json +++ b/inst/extdata/OSD/C/CONTRA_COSTA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "01--1/2 to 0 inches; partially decomposed layer of leaves and twigs; abrupt smooth boundary. (0 to 1 inches thick)" + }, { "name": "A", "top": 0, @@ -162,6 +185,29 @@ "distinctness": "gradual", "topography": "irregular", "narrative": "BC--21 to 34 inches; brown (7.5YR 5/4) shaly clay, dark reddish brown (5YR 3/4) moist; moderate coarse subangular blocky structure; very hard, firm, very sticky and plastic; few large roots; about 20 percent angular fragments of shale and sandstone up to 1 1/2 inches in diameter; slightly acid (pH 6.5); gradual irregular boundary. (10 to 15 inches thick)" + }, + { + "name": "R", + "top": 86, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--34; fractured and shattered massive light yellowish brown and light olive brown shale and fine-textured sandstone; few large roots penetrate along fracture planes more than 4 inches apart." } ] ] diff --git a/inst/extdata/OSD/C/COPELAND.json b/inst/extdata/OSD/C/COPELAND.json index b173031a81..978680e776 100644 --- a/inst/extdata/OSD/C/COPELAND.json +++ b/inst/extdata/OSD/C/COPELAND.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "irregular", "narrative": "2C--24 to 30 inches; light gray (10YR 7/2) soft limestone; weak fine granular structure; friable; clay and silt-size carbonates coat the sand grains; calcareous; moderately alkaline; clear irregular boundary. (0 to 8 inches thick)" + }, + { + "name": "R", + "top": 76, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--30+ inches; hard limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/C/COPPER_RIVER.json b/inst/extdata/OSD/C/COPPER_RIVER.json index 357770c581..1cc5ebbe98 100644 --- a/inst/extdata/OSD/C/COPPER_RIVER.json +++ b/inst/extdata/OSD/C/COPPER_RIVER.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CORDY.json b/inst/extdata/OSD/C/CORDY.json index 35210df559..d094bfe8ff 100644 --- a/inst/extdata/OSD/C/CORDY.json +++ b/inst/extdata/OSD/C/CORDY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inches; undecomposed needles and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CORLENA.json b/inst/extdata/OSD/C/CORLENA.json index 297b0f1f9a..f0e3a6495f 100644 --- a/inst/extdata/OSD/C/CORLENA.json +++ b/inst/extdata/OSD/C/CORLENA.json @@ -116,6 +116,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "A2--13 to 25 cm (5 to 10 in); dark yellowish brown (10YR 4/4) loamy fine sand, dark yellowish brown (10YR 3/4) moist; weak medium subangular parting to weak very fine granular structure; soft, very friable; few thin darker colored loamy strata, few rounded siliceous pebbles up to 1.3 cm(1/2 in) in diameter; strongly effervescent; moderately alkaline; clear smooth boundary. (0 to 25 cm[0 to 10 in] thick)" + }, + { + "name": "C", + "top": 25, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "loamy fine sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--25 to 203 (10 to 80 in); light yellowish brown (10YR 6/4) loamy fine sand, yellowish brown(10YR 5/4) moist; single grain, loose; few thin strata of rounded siliceous pebbles up to 1.3 cm (1/2 in) in diameter; few strata 1.3 to 10 cm (1/2 to 4 in) thick with textures of loam, sandy loam and fine sand; strongly effervescent; moderately alkaline" } ] ] diff --git a/inst/extdata/OSD/C/CORNUTT.json b/inst/extdata/OSD/C/CORNUTT.json index ed1b62bc00..c4bba9693f 100644 --- a/inst/extdata/OSD/C/CORNUTT.json +++ b/inst/extdata/OSD/C/CORNUTT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; conifer needles and forest litter, loose and partially decomposed in lower part." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CORONA.json b/inst/extdata/OSD/C/CORONA.json index db65d7069e..79eab22878 100644 --- a/inst/extdata/OSD/C/CORONA.json +++ b/inst/extdata/OSD/C/CORONA.json @@ -208,29 +208,6 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--55 to 64 inches; light yellowish brown (10YR 6/4) heavy sandy loam, dark brown (10YR 4/3) moist; massive; very hard, friable, sticky and plastic; many very fine tubular pores; neutral (pH 7.0); abrupt smooth boundary. (8 to 10 inches thick)" - }, - { - "name": "2", - "top": 163, - "bottom": 193, - "dry_hue": "10YR", - "dry_value": 6, - "dry_chroma": 4, - "moist_hue": "10YR", - "moist_value": 3, - "moist_chroma": 3, - "texture_class": "sandy loam", - "structure": "massive", - "dry_rupture": "hard", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": 7, - "pH_class": "neutral", - "eff_class": "NA", - "distinctness": "abrupt", - "topography": "smooth", - "narrative": "2--64 to 76 inches; light yellowish brown (10YR 6/4) sandy loam, dark brown (10YR 3/3) moist; massive; hard, very friable, slightly sticky and slightly plastic; many very fine and fine tubular pores; neutral (pH 7.0); abrupt smooth boundary." } ] ] diff --git a/inst/extdata/OSD/C/COSEY.json b/inst/extdata/OSD/C/COSEY.json index 95d7d5caa7..96bd3de5cd 100644 --- a/inst/extdata/OSD/C/COSEY.json +++ b/inst/extdata/OSD/C/COSEY.json @@ -97,7 +97,7 @@ { "name": "A2", "top": 23, - "bottom": "NA", + "bottom": 38, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "BA", - "top": "NA", + "top": 38, "bottom": 71, "dry_hue": "10YR", "dry_value": 7, diff --git a/inst/extdata/OSD/C/COTTERAL.json b/inst/extdata/OSD/C/COTTERAL.json index 8dcd99069b..01c5e26dfa 100644 --- a/inst/extdata/OSD/C/COTTERAL.json +++ b/inst/extdata/OSD/C/COTTERAL.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COVERTFALLS.json b/inst/extdata/OSD/C/COVERTFALLS.json index b67a1ad6ce..2a0cab74b9 100644 --- a/inst/extdata/OSD/C/COVERTFALLS.json +++ b/inst/extdata/OSD/C/COVERTFALLS.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": "NA", + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O -- Undecomposed leaves and twigs 1 inch thick." + }, { "name": "A", "top": 0, - "bottom": 20, + "bottom": 8, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "Bs1", - "top": 20, - "bottom": 25, + "top": 8, + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,8 +142,8 @@ }, { "name": "Bs2", - "top": 25, - "bottom": 51, + "top": 10, + "bottom": 20, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -142,8 +165,8 @@ }, { "name": "BC", - "top": 51, - "bottom": 66, + "top": 20, + "bottom": 26, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -165,8 +188,8 @@ }, { "name": "2C1", - "top": 66, - "bottom": 104, + "top": 26, + "bottom": 41, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -188,8 +211,8 @@ }, { "name": "2C2", - "top": 104, - "bottom": 183, + "top": 41, + "bottom": 72, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COVILLE.json b/inst/extdata/OSD/C/COVILLE.json index 5592b6f7f6..d693378051 100644 --- a/inst/extdata/OSD/C/COVILLE.json +++ b/inst/extdata/OSD/C/COVILLE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COWEEMAN.json b/inst/extdata/OSD/C/COWEEMAN.json index 3b8a4db002..ac76fd7560 100644 --- a/inst/extdata/OSD/C/COWEEMAN.json +++ b/inst/extdata/OSD/C/COWEEMAN.json @@ -97,7 +97,7 @@ { "name": "BAt", "top": 18, - "bottom": "NA", + "bottom": 36, "dry_hue": "l0YR", "dry_value": 8, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "Btgl", - "top": "NA", + "top": 36, "bottom": 56, "dry_hue": "2.5Y", "dry_value": 8, diff --git a/inst/extdata/OSD/C/COWMARSH.json b/inst/extdata/OSD/C/COWMARSH.json index 30fd66e10f..45d5dc188a 100644 --- a/inst/extdata/OSD/C/COWMARSH.json +++ b/inst/extdata/OSD/C/COWMARSH.json @@ -185,6 +185,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Cg4--109 to 163 cm, (43 to 64.2 in); gray (10YR 6/1), clay; massive; extremely hard, extremely firm; common very fine roots; common very fine tubular pores; 2 percent prominent dark gray (10YR 4/1) organic stains on vertical faces of peds; 5 percent fine prominent brown (7.5YR 4/4) masses of oxidized iron with clear boundaries on faces of peds and 10 percent fine and medium prominent brownish yellow (10YR 6/8) masses of oxidized iron with clear boundaries on faces of peds; extremely acid; gradual wavy boundary. (combined thickness of the Cg horizons is 162 to 183 cm [64 to 72 in])" + }, + { + "name": "Cg5", + "top": 163, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 1, + "texture_class": "clay", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cg5--163 to 203 CM, (64.2 to 79.9 in); gray (10YR 6/1), clay; massive; extremely hard, extremely firm; common very fine roots; common very fine tubular pores; 2 percent prominent dark gray (10YR 4/1) organic stains on vertical faces of peds; 5 percent fine prominent strong brown (7.5YR 5/6) masses of oxidized iron with clear boundaries on faces of peds and 20 percent fine and medium prominent brownish yellow (10YR 6/8) masses of oxidized iron with clear boundaries on faces of peds; extremely acid." } ] ] diff --git a/inst/extdata/OSD/C/COYATA.json b/inst/extdata/OSD/C/COYATA.json index f4fb1be7c2..692596c0bd 100644 --- a/inst/extdata/OSD/C/COYATA.json +++ b/inst/extdata/OSD/C/COYATA.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O1--1 1/2 inches to 1; loose litter of undecomposed leaves, needles and tree limbs." + }, { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/COYOTEROCK.json b/inst/extdata/OSD/C/COYOTEROCK.json index e6ff96278a..b8b74ec286 100644 --- a/inst/extdata/OSD/C/COYOTEROCK.json +++ b/inst/extdata/OSD/C/COYOTEROCK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oi--0 to 1 centimeter (0 to 1 inch); fresh and slightly decomposed oak leaves, forbs and grass stems; moderately acid (pH 6.0); abrupt wavy boundary. (0 to 2 centimeters thick)" + }, { "name": "A1", "top": 1, diff --git a/inst/extdata/OSD/C/CRACKER.json b/inst/extdata/OSD/C/CRACKER.json index a0f1937034..4fa6839840 100644 --- a/inst/extdata/OSD/C/CRACKER.json +++ b/inst/extdata/OSD/C/CRACKER.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "A2--4 to 12 inches; very dark gray (2.5Y 3/1) sandy clay loam; massive; slightly sticky; slightly plastic; neutral; abrupt irregular boundary. (Combined thickness of the A horizons range from 6 to 20 inches)." + }, + { + "name": "R", + "top": 30, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--12+ inches; hard limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CRAFTON.json b/inst/extdata/OSD/C/CRAFTON.json index 898058d0f4..0fa4e029d9 100644 --- a/inst/extdata/OSD/C/CRAFTON.json +++ b/inst/extdata/OSD/C/CRAFTON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01 and 02", - "top": "NA", - "bottom": "NA", + "name": "O1 and O2", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CRAIGEN.json b/inst/extdata/OSD/C/CRAIGEN.json index face6a54a5..60d5731320 100644 --- a/inst/extdata/OSD/C/CRAIGEN.json +++ b/inst/extdata/OSD/C/CRAIGEN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 18, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "fine sand", + "structure": "weak medium subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A--0 to 18 (0 to 7 in); dark grayish brown (10YR 4/2) fine sand; weak medium subangular blocky structure; soft, friable, nonsticky and nonplastic; many fine, medium and coarse roots; common fine and medium interstitial pores; very strongly acid; clear wavy boundary. (10 to 25 cm [4 to 10 in] thick)" + }, { "name": "E1", "top": 18, diff --git a/inst/extdata/OSD/C/CRANBAY.json b/inst/extdata/OSD/C/CRANBAY.json index 4d686a71b1..5eb8ae5e5f 100644 --- a/inst/extdata/OSD/C/CRANBAY.json +++ b/inst/extdata/OSD/C/CRANBAY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--1/2 inch to 0; slightly decomposed needles and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/C/CRANSTON.json b/inst/extdata/OSD/C/CRANSTON.json index cf295b1819..d95ca5e170 100644 --- a/inst/extdata/OSD/C/CRANSTON.json +++ b/inst/extdata/OSD/C/CRANSTON.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1-1/2 inches to 1/2 inch; hardwood leaves and" + }, + { + "name": "Oe", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1/2 inch to 0; partially decomposed leaves and" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/C/CRATER_LAKE.json b/inst/extdata/OSD/C/CRATER_LAKE.json index 9af794d86b..1a18739a3f 100644 --- a/inst/extdata/OSD/C/CRATER_LAKE.json +++ b/inst/extdata/OSD/C/CRATER_LAKE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1 1/2 inches to 0; loose, organic litter of undecomposed twigs, needles and leaves and partially decomposed organic matter." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/C/CREST.json b/inst/extdata/OSD/C/CREST.json index 7d53f4a5a7..ccc253e0f6 100644 --- a/inst/extdata/OSD/C/CREST.json +++ b/inst/extdata/OSD/C/CREST.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inches; decomposed organic material mainly leaves, twigs, bark and needles." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CRIMS.json b/inst/extdata/OSD/C/CRIMS.json index 292778e4c7..6aa7daa3fd 100644 --- a/inst/extdata/OSD/C/CRIMS.json +++ b/inst/extdata/OSD/C/CRIMS.json @@ -95,7 +95,7 @@ "narrative": "Ap--0 to 9 inches; black (10YR 2/1) silt loam, gray (10YR 5/1) dry; massive; hard, friable, nonsticky and nonplastic; many very fine roots; many very fine irregular pores; strongly acid (pH 5.2); abrupt smooth boundary. (0 to 16 inches thick)" }, { - "name": "20e1", + "name": "2Oe1", "top": 23, "bottom": 51, "dry_hue": "10YR", @@ -118,7 +118,7 @@ "narrative": "20e1--9 to 20 inches; black (10YR 2/1) broken, rubbed and pressed, mucky peat, very dark gray (10YR 3/1) dry; about 40 percent fibers, 20 percent rubbed; common fine roots; very strongly acid (pH 4.8); gradual smooth boundary. (Thickness is variable.)" }, { - "name": "20e2", + "name": "2Oe2", "top": 51, "bottom": 102, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/C/CRINKER.json b/inst/extdata/OSD/C/CRINKER.json index fa755e1bb8..f323db884c 100644 --- a/inst/extdata/OSD/C/CRINKER.json +++ b/inst/extdata/OSD/C/CRINKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--3 to 1 inch; leaves, needles and twigs. (2 to 4 inches thick)" }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CROQUIB.json b/inst/extdata/OSD/C/CROQUIB.json index ae33b71f45..ab46f78a32 100644 --- a/inst/extdata/OSD/C/CROQUIB.json +++ b/inst/extdata/OSD/C/CROQUIB.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CROTONCANYON.json b/inst/extdata/OSD/C/CROTONCANYON.json index 40bd4289ac..7492075309 100644 --- a/inst/extdata/OSD/C/CROTONCANYON.json +++ b/inst/extdata/OSD/C/CROTONCANYON.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--2 to 11 inches; light yellowish brown (10YR 6/4) very gravelly clay loam, yellowish brown (10YR 5/4) moist; moderate medium subangular blocky structure; moderately hard, firm, moderately sticky and moderately plastic; common very fine, and fine roots; common very fine interstitial pores; 50 percent gravel; strongly effervescent; carbonates are disseminated throughout; strongly alkaline (pH 8.6); abrupt smooth boundary. (4 to 19 inches thick)" + }, + { + "name": "R", + "top": 28, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--11+ inches; Straight Cliffs Formation sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CROZIER.json b/inst/extdata/OSD/C/CROZIER.json index 01d08c7793..ebb2d7fa79 100644 --- a/inst/extdata/OSD/C/CROZIER.json +++ b/inst/extdata/OSD/C/CROZIER.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--1 to 0; litter and duff." + }, { "name": "A", "top": 0, - "bottom": 25, + "bottom": 10, "dry_hue": "7.5YR", "dry_value": 4, "dry_chroma": 4, @@ -96,8 +119,8 @@ }, { "name": "AB", - "top": 25, - "bottom": 41, + "top": 10, + "bottom": 16, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 4, @@ -119,8 +142,8 @@ }, { "name": "BAt", - "top": 41, - "bottom": 58, + "top": 16, + "bottom": 23, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 6, @@ -142,8 +165,8 @@ }, { "name": "Bt", - "top": 58, - "bottom": 91, + "top": 23, + "bottom": 36, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 6, @@ -165,7 +188,7 @@ }, { "name": "Cr", - "top": 91, + "top": 36, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/C/CRUISER.json b/inst/extdata/OSD/C/CRUISER.json index 2956ed8260..3e72045153 100644 --- a/inst/extdata/OSD/C/CRUISER.json +++ b/inst/extdata/OSD/C/CRUISER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CRUTCH.json b/inst/extdata/OSD/C/CRUTCH.json index 38bd4d2640..9a8cf3c604 100644 --- a/inst/extdata/OSD/C/CRUTCH.json +++ b/inst/extdata/OSD/C/CRUTCH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; needles, twigs, leaves, and cones." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/C/CRUZSPRING.json b/inst/extdata/OSD/C/CRUZSPRING.json index 329c5adca9..5e14980cd6 100644 --- a/inst/extdata/OSD/C/CRUZSPRING.json +++ b/inst/extdata/OSD/C/CRUZSPRING.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--28 to 33 centimeters (11 to 13 inches); fractured, weathered quartzite; common very fine through medium roots in fractures; retains original rock structure." + }, + { + "name": "R", + "top": 33, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--33 (13 inches); hard, slightly fractured quartzite." } ] ] diff --git a/inst/extdata/OSD/C/CUCHILLAS.json b/inst/extdata/OSD/C/CUCHILLAS.json index 456a85aa43..2d8bfcc0b7 100644 --- a/inst/extdata/OSD/C/CUCHILLAS.json +++ b/inst/extdata/OSD/C/CUCHILLAS.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Cr--15 to 36 inches; highly fractured unconsolidated volcanic rock; few fine and medium roots between fracture planes; clear wavy boundary. (4 to 21 inches thick)" + }, + { + "name": "R", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--36+ inches; hard fractured consolidated volcanic bedrock." } ] ] diff --git a/inst/extdata/OSD/C/CUMMISKEY.json b/inst/extdata/OSD/C/CUMMISKEY.json index 2bed0bdb3a..bd8eb50939 100644 --- a/inst/extdata/OSD/C/CUMMISKEY.json +++ b/inst/extdata/OSD/C/CUMMISKEY.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CUNDIYO.json b/inst/extdata/OSD/C/CUNDIYO.json index 42e951dc67..f98dd228c9 100644 --- a/inst/extdata/OSD/C/CUNDIYO.json +++ b/inst/extdata/OSD/C/CUNDIYO.json @@ -73,7 +73,7 @@ [ { "name": "Oi", - "top": "NA", + "top": 3, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", @@ -120,7 +120,7 @@ { "name": "E2", "top": 15, - "bottom": "NA", + "bottom": 36, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 3, @@ -142,7 +142,7 @@ }, { "name": "Btl", - "top": "NA", + "top": 36, "bottom": 86, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/C/CUNNIFF.json b/inst/extdata/OSD/C/CUNNIFF.json index 1d9b6a8714..0b4826e3b1 100644 --- a/inst/extdata/OSD/C/CUNNIFF.json +++ b/inst/extdata/OSD/C/CUNNIFF.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CUPPLES.json b/inst/extdata/OSD/C/CUPPLES.json index 3d4de551e4..d31f88d511 100644 --- a/inst/extdata/OSD/C/CUPPLES.json +++ b/inst/extdata/OSD/C/CUPPLES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 18, "bottom": 10, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--7 to 4 inches; undecomposed forest litter. (2 to 5 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/C/CUTHAND.json b/inst/extdata/OSD/C/CUTHAND.json index cb8c4660e1..41441aae0f 100644 --- a/inst/extdata/OSD/C/CUTHAND.json +++ b/inst/extdata/OSD/C/CUTHAND.json @@ -97,7 +97,7 @@ { "name": "B21", "top": 25, - "bottom": "NA", + "bottom": 48, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, diff --git a/inst/extdata/OSD/D/DABOB.json b/inst/extdata/OSD/D/DABOB.json index 638f0b6a3f..fb817421d4 100644 --- a/inst/extdata/OSD/D/DABOB.json +++ b/inst/extdata/OSD/D/DABOB.json @@ -208,6 +208,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "BC2--23 to 31 inches; grayish brown (10YR 5/2) very gravelly sandy loam, light gray (10YR 7/2) dry; common medium and coarse distinct dark brown (7.5YR 4/4) redox concentrations; massive; hard, firm, nonsticky, nonplastic; few fine and medium roots; 60 percent gravel; slightly acid (pH 6.2); abrupt wavy boundary. (8 to 10 inches thick)" + }, + { + "name": "2Bsm", + "top": 79, + "bottom": 91, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "weakly cemented", + "cf_class": "gravelly", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Bsm--31 to 36+ inches; dark gray (10YR 4/1) gravelly sandy loam, light gray (10YR 6/1) dry; few fine distinct dark brown (7.5YR 4/4) and common medium distinct yellowish brown (10YR 5/6) redox concentrations; massive; extremely hard, extremely firm, weakly cemented, nonsticky, nonplastic; 45 percent fine gravel; slightly acid (pH 6.4)." } ] ] diff --git a/inst/extdata/OSD/D/DADE.json b/inst/extdata/OSD/D/DADE.json index 74645583e8..4fb7e1078d 100644 --- a/inst/extdata/OSD/D/DADE.json +++ b/inst/extdata/OSD/D/DADE.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "irregular", "narrative": "C--32 to 35 inches; brown (7.5YR 5/4) fine sand; single grained; loose; few fine roots; few pockets or lenses of very pale brown (10YR 8/4) and yellow (10YR 7/6) organic matter stains and depletions; moderately alkaline; clear irregular boundary. (0 to 8 inches thick)" + }, + { + "name": "Cr", + "top": 89, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 4, + "texture_class": "fine sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--35+ inches; soft limestone having numerous solution holes and cavities at variable depths; solution holes filled with very pale brown (10YR 7/4) fine sand; common fragments of hard limestone; common pinnacles of limestone extending toward the surface; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/D/DADINA.json b/inst/extdata/OSD/D/DADINA.json index 4e22f2b3ac..e6fc103fda 100644 --- a/inst/extdata/OSD/D/DADINA.json +++ b/inst/extdata/OSD/D/DADINA.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DAHAR.json b/inst/extdata/OSD/D/DAHAR.json index d0830b1b2a..c40a1eb19e 100644 --- a/inst/extdata/OSD/D/DAHAR.json +++ b/inst/extdata/OSD/D/DAHAR.json @@ -120,7 +120,7 @@ { "name": "Bw", "top": 15, - "bottom": "NA", + "bottom": 30, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 2, @@ -143,7 +143,7 @@ { "name": "Bqk", "top": 30, - "bottom": "NA", + "bottom": 53, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 2, @@ -165,7 +165,7 @@ }, { "name": "Bqkm", - "top": "NA", + "top": 53, "bottom": 69, "dry_hue": "l0YR", "dry_value": 8, diff --git a/inst/extdata/OSD/D/DALBO.json b/inst/extdata/OSD/D/DALBO.json index 63d57cd6eb..f7584aa4ad 100644 --- a/inst/extdata/OSD/D/DALBO.json +++ b/inst/extdata/OSD/D/DALBO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DANDREA.json b/inst/extdata/OSD/D/DANDREA.json index e89febd52b..7329584212 100644 --- a/inst/extdata/OSD/D/DANDREA.json +++ b/inst/extdata/OSD/D/DANDREA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DARBY.json b/inst/extdata/OSD/D/DARBY.json index c00478fc9f..1610ac5091 100644 --- a/inst/extdata/OSD/D/DARBY.json +++ b/inst/extdata/OSD/D/DARBY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DARGOL.json b/inst/extdata/OSD/D/DARGOL.json index 863c72eed4..5fb8e74325 100644 --- a/inst/extdata/OSD/D/DARGOL.json +++ b/inst/extdata/OSD/D/DARGOL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DARLING.json b/inst/extdata/OSD/D/DARLING.json index f5be2f60bf..5b579729cd 100644 --- a/inst/extdata/OSD/D/DARLING.json +++ b/inst/extdata/OSD/D/DARLING.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 10, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--4 to 1 inch; undecomposed organic material principally needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DATEMARK.json b/inst/extdata/OSD/D/DATEMARK.json index 07d6758e57..2fd163cd98 100644 --- a/inst/extdata/OSD/D/DATEMARK.json +++ b/inst/extdata/OSD/D/DATEMARK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEADFALL.json b/inst/extdata/OSD/D/DEADFALL.json index 0b8523e240..29d21f7372 100644 --- a/inst/extdata/OSD/D/DEADFALL.json +++ b/inst/extdata/OSD/D/DEADFALL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; very sparse, scattered, and undecomposed litter. (0 to 1 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/D/DEANBURG.json b/inst/extdata/OSD/D/DEANBURG.json index cdcf57bdc7..e23f423d02 100644 --- a/inst/extdata/OSD/D/DEANBURG.json +++ b/inst/extdata/OSD/D/DEANBURG.json @@ -120,7 +120,7 @@ { "name": "2Bt2", "top": 61, - "bottom": "NA", + "bottom": 79, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -142,7 +142,7 @@ }, { "name": "2Bt3", - "top": "NA", + "top": 79, "bottom": 102, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/D/DEATMAN.json b/inst/extdata/OSD/D/DEATMAN.json index e651d54a1c..f619b3939f 100644 --- a/inst/extdata/OSD/D/DEATMAN.json +++ b/inst/extdata/OSD/D/DEATMAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DECY.json b/inst/extdata/OSD/D/DECY.json index 4d276943cc..ee243f5f22 100644 --- a/inst/extdata/OSD/D/DECY.json +++ b/inst/extdata/OSD/D/DECY.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEERTON.json b/inst/extdata/OSD/D/DEERTON.json index 02e44d07a7..01edd92a10 100644 --- a/inst/extdata/OSD/D/DEERTON.json +++ b/inst/extdata/OSD/D/DEERTON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DEGNER.json b/inst/extdata/OSD/D/DEGNER.json index fec5fecc72..84cd0fc6c1 100644 --- a/inst/extdata/OSD/D/DEGNER.json +++ b/inst/extdata/OSD/D/DEGNER.json @@ -189,7 +189,7 @@ { "name": "IVCr", "top": 102, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEHAVEN.json b/inst/extdata/OSD/D/DEHAVEN.json index 73200449d0..d50434a1e2 100644 --- a/inst/extdata/OSD/D/DEHAVEN.json +++ b/inst/extdata/OSD/D/DEHAVEN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEKAPEN.json b/inst/extdata/OSD/D/DEKAPEN.json index bcde3c3190..74e5be950b 100644 --- a/inst/extdata/OSD/D/DEKAPEN.json +++ b/inst/extdata/OSD/D/DEKAPEN.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 to 1/4 inch; undecomposed needles, leaves, and twigs." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1/4 inch to 0; decomposed forest litter; many medium roots." + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/D/DEKOVEN.json b/inst/extdata/OSD/D/DEKOVEN.json index 1be68e146e..f1cd375f48 100644 --- a/inst/extdata/OSD/D/DEKOVEN.json +++ b/inst/extdata/OSD/D/DEKOVEN.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Bg2--99 to 130 cm (39 to 51 inches): dark grayish brown (10YR 4/2) silty clay loam; common medium and coarse distinct brownish yellow (10YR 6/6) and yellow (10YR 7/6) masses of iron accumulation; common medium distinct dark gray (10YR 4/1) iron depletions; weak coarse and very coarse prismatic structure; friable; neutral: gradual smooth boundary. (Combined thickness of the Bg horizons is 61 to 94 cm, 24 to 37 inches thick)." + }, + { + "name": "Cg", + "top": 130, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "silty clay loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cg--130 to 203 (51 to 80 inches): light brownish gray (10YR 6/2) silty clay loam: few to common distinct strong brown (7.5YR 4/6) masses of iron accumulation; few fine faint light gray (10YR 7/1) iron depletions; massive; friable; neutral." } ] ] diff --git a/inst/extdata/OSD/D/DELETE_MEII.json b/inst/extdata/OSD/D/DELETE_MEII.json index 2d75638972..1f94481875 100644 --- a/inst/extdata/OSD/D/DELETE_MEII.json +++ b/inst/extdata/OSD/D/DELETE_MEII.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; slightly decomposed needles, leaves, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DELLEKER.json b/inst/extdata/OSD/D/DELLEKER.json index b765b95f30..af376a0483 100644 --- a/inst/extdata/OSD/D/DELLEKER.json +++ b/inst/extdata/OSD/D/DELLEKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DELMITA.json b/inst/extdata/OSD/D/DELMITA.json index 285f65e8a8..8dc26c82d1 100644 --- a/inst/extdata/OSD/D/DELMITA.json +++ b/inst/extdata/OSD/D/DELMITA.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt--36 to 76 cm (14 to 30 in); red (2.5YR 4/6) sandy clay loam; dark red (2.5YR 3/6) moist; moderate coarse prismatic structure parting to weak fine subangular blocky; very hard, friable, sticky and slightly plastic; few fine roots; few very fine and fine pores; few faint clay films on surfaces of peds and lining pores; noneffervescent; neutral; abrupt wavy boundary. (28 to 71 cm [11 to 28 in] thick)" + }, + { + "name": "Bkkm", + "top": 76, + "bottom": 203, + "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": "NA", + "moist_rupture": "NA", + "coherence": "strongly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bkkm--76 to 203 (30 to 80 in); very pale brown (10YR 8/2) strongly cemented calcium carbonate, becoming less cemented and massive with depth; thick, platy, indurated, finely laminated cap in the upper part; violently effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/D/DELPHI.json b/inst/extdata/OSD/D/DELPHI.json index bbdd98eb0a..e6290dd5a7 100644 --- a/inst/extdata/OSD/D/DELPHI.json +++ b/inst/extdata/OSD/D/DELPHI.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DELWIN.json b/inst/extdata/OSD/D/DELWIN.json index 4aff4a6023..ccd55e84eb 100644 --- a/inst/extdata/OSD/D/DELWIN.json +++ b/inst/extdata/OSD/D/DELWIN.json @@ -143,7 +143,7 @@ { "name": "Bt2", "top": 81, - "bottom": "NA", + "bottom": 114, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 6, diff --git a/inst/extdata/OSD/D/DELYNDIA.json b/inst/extdata/OSD/D/DELYNDIA.json index 3b13d336b8..ae8da108c1 100644 --- a/inst/extdata/OSD/D/DELYNDIA.json +++ b/inst/extdata/OSD/D/DELYNDIA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEMING.json b/inst/extdata/OSD/D/DEMING.json index 36726b079c..859f454db0 100644 --- a/inst/extdata/OSD/D/DEMING.json +++ b/inst/extdata/OSD/D/DEMING.json @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": "NA", - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEMORY.json b/inst/extdata/OSD/D/DEMORY.json index 9303afe18c..692e20ba97 100644 --- a/inst/extdata/OSD/D/DEMORY.json +++ b/inst/extdata/OSD/D/DEMORY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "C--7 to 9 inches; dark grayish brown (10YR 4/2) sandy clay loam; weak medium subangular blocky structure; friable; few fine and medium roots; neutral; abrupt irregular boundary. (0 to 7 inches thick)" + }, + { + "name": "R", + "top": 23, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--9+ inches; hard limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/D/DEMOX.json b/inst/extdata/OSD/D/DEMOX.json index 45150707e8..55bd50bdf7 100644 --- a/inst/extdata/OSD/D/DEMOX.json +++ b/inst/extdata/OSD/D/DEMOX.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DENTDRAW.json b/inst/extdata/OSD/D/DENTDRAW.json index 26bfd8e50e..28b6e95941 100644 --- a/inst/extdata/OSD/D/DENTDRAW.json +++ b/inst/extdata/OSD/D/DENTDRAW.json @@ -209,6 +209,29 @@ "topography": "smooth", "narrative": "3C1--27 to 42 inches; light olive brown (2.5Y 5/3) sandy loam, light gray (2.5Y 7/2) dry; massive; few very fine roots; common very fine tubular pores; slightly hard very friable, slightly sticky and nonplastic; common fine rounded calcium carbonate concentrations ; strongly effervescent in spots; strongly alkaline (pH 9.0); clear smooth boundary." }, + { + "name": "3C2", + "top": 107, + "bottom": 132, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "loamy fine sand", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 9, + "pH_class": "strongly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "3C2--42 to 52; light olive brown (2.5Y 5/3) loamy fine sand, light brownish gray (2.5Y 6/2) dry; massive; soft, very friable, nonsticky and nonplastic; few very fine irregular and few very fine tubular pores; common coarse rounded carbonate concentrations; strongly effervescent in spots; strongly alkaline (pH 9.0); clear smooth boundary." + }, { "name": "3C3", "top": 132, diff --git a/inst/extdata/OSD/D/DESONS.json b/inst/extdata/OSD/D/DESONS.json index 3cf40400cc..7485a625a3 100644 --- a/inst/extdata/OSD/D/DESONS.json +++ b/inst/extdata/OSD/D/DESONS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DEVINE.json b/inst/extdata/OSD/D/DEVINE.json index f5ef430f33..d76978e9c9 100644 --- a/inst/extdata/OSD/D/DEVINE.json +++ b/inst/extdata/OSD/D/DEVINE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 30, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "sandy loam", + "structure": "weak fine subangular blocky and granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "A--0 to 30 (0 to 12 in); brown (10YR 5/3) very gravelly sandy loam, dark brown (10YR 4/3) moist; weak fine subangular blocky and granular structure; hard, very friable; many fine roots; contains an estimated 45 percent by volume of rounded siliceous pebbles 1/2 to 8 cm [1/4 inch to 3 in]; few cobbles; slightly acid; gradual smooth boundary. (15 to 46 cm [6 to 18 in] thick)" + }, { "name": "E", "top": 30, diff --git a/inst/extdata/OSD/D/DEWMINE.json b/inst/extdata/OSD/D/DEWMINE.json index 159b7ed6a9..196f48edba 100644 --- a/inst/extdata/OSD/D/DEWMINE.json +++ b/inst/extdata/OSD/D/DEWMINE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DICECREEK.json b/inst/extdata/OSD/D/DICECREEK.json index 04eac5e121..9f0882c829 100644 --- a/inst/extdata/OSD/D/DICECREEK.json +++ b/inst/extdata/OSD/D/DICECREEK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; slightly decomposed needles and twigs." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/D/DICK.json b/inst/extdata/OSD/D/DICK.json index 1ee95c2cf1..6d32a7046f 100644 --- a/inst/extdata/OSD/D/DICK.json +++ b/inst/extdata/OSD/D/DICK.json @@ -117,6 +117,52 @@ "topography": "NA", "narrative": "Oe--1 to 2 inches; moderately decomposed needles, leaves, and twigs." }, + { + "name": "E1", + "top": 5, + "bottom": 6, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "loamy sand", + "structure": "weak very fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "E1--2 to 2 1/4; grayish brown (10YR 5/2) loamy sand, light gray (10YR 7/1) dry; weak very fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine roots; many fine and very fine irregular pores; trace of pebbles; moderately acid (pH 5.6); abrupt smooth boundary. (1/4 to 5 inches thick)" + }, + { + "name": "E2", + "top": 6, + "bottom": 13, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "loamy sand", + "structure": "weak fine and very fine granular", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "E2--2 1/4 to 5 inches; dark brown (10YR 4/3) loamy sand, very pale brown (10YR 7/3) dry; weak fine and very fine granular structure; soft, loose, nonsticky, nonplastic; many fine and very fine and few medium roots; many fine and very fine irregular pores; trace of pebbles; moderately acid (pH 5.6); clear smooth boundary. (0 to 4 inches thick)" + }, { "name": "E3", "top": 13, diff --git a/inst/extdata/OSD/D/DINES.json b/inst/extdata/OSD/D/DINES.json index b087ce734f..c1aa847550 100644 --- a/inst/extdata/OSD/D/DINES.json +++ b/inst/extdata/OSD/D/DINES.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": 4, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.4, + "pH_class": "moderately alkaline", + "eff_class": "slightly effervescent", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A11--0 to 1 1/2 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; vesicular crust; hard, friable, sticky and plastic; common very fine, fine, and medium roots; slightly effervescent, lime disseminated; moderately alkaline (pH 8.4); abrupt wavy boundary. (0 to 2 inches thick)" + }, + { + "name": "A12", + "top": 4, + "bottom": 18, + "dry_hue": "5Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.6, + "pH_class": "strongly alkaline", + "eff_class": "slightly effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A12--1 1/2 to 7 inches; pale olive (5Y 6/3) silt loam, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure; hard, friable, sticky and plastic; common very fine, fine, and medium roots; slightly effervescent, lime disseminated; strongly alkaline (pH 8.6); clear wavy boundary. (4 to 10 inches thick)" + }, { "name": "C1", "top": 18, diff --git a/inst/extdata/OSD/D/DINGLISHNA.json b/inst/extdata/OSD/D/DINGLISHNA.json index 21b8174b04..8bc5cc1b40 100644 --- a/inst/extdata/OSD/D/DINGLISHNA.json +++ b/inst/extdata/OSD/D/DINGLISHNA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 15, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DINUBA.json b/inst/extdata/OSD/D/DINUBA.json index 1c0379a173..aa149f65f8 100644 --- a/inst/extdata/OSD/D/DINUBA.json +++ b/inst/extdata/OSD/D/DINUBA.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "C-Dca--28 to 36 inches; white (10YR 8/1) stratified silts and very fine sands weakly cemented with lime, light gray (10YR 7/1) moist; hard, very firm; lime is segregated in seams as well as disseminated throughout; moderately alkaline (pH 8.3); gradual smooth boundary 3 to 10 inches thick." + }, + { + "name": "D", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, + "texture_class": "very fine sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.3, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "D--36 to + inches; light gray (10YR 7/1) stratified silts and very fine sands, gray (10YR 6/1) with thin streaks and few fine distinct mottles of strong brown (7.5YR 5/6) moist; distinct fine platy bedding; hard firm, nonplastic and nonsticky; moderate amounts of disseminated and little segregated lime; moderately alkaline (pH 8.3); many feet thick." } ] ] diff --git a/inst/extdata/OSD/D/DINZER.json b/inst/extdata/OSD/D/DINZER.json index ef805da279..32f47fee93 100644 --- a/inst/extdata/OSD/D/DINZER.json +++ b/inst/extdata/OSD/D/DINZER.json @@ -71,6 +71,98 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 9, + "bottom": 4, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--3 1/2 to 1 1/2 inches; needles, leaves, twigs, cones, etc." + }, + { + "name": "O2", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "02--1 1/2 inches to 0; black (10YR 2/1) and very dark brown (10YR 2/2) amorphous organic matter; many roots; abrupt wavy boundary." + }, + { + "name": "A2", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "fine sandy loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": 5.1, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "irregular", + "narrative": "A2--0 to 1/4 inch; dark gray (10YR 4/1) stony fine sandy loam, gray (10YR 6/1) dry; variegated with some dark grayish brown (10YR 4/2); massive; soft, very friable, nonsticky and nonplastic; strongly acid (pH 5.1); abrupt irregular boundary. (0 to 1/2 inch thick)" + }, + { + "name": "B2ir", + "top": 1, + "bottom": 20, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "weak very fine and fine subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": 5.8, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "B2ir--1/4 to 8 inches; dark brown (7.5YR 3/4) stony fine sandy loam, brown (7.5YR 5/4) dry; weak very fine and fine subangular blocky structure; soft, very friable, nonsticky and slightly plastic; many roots; many very fine and fine irregular pores; 40 percent pebbles, cobbles and stones; medium acid (pH 5.8); gradual wavy boundary. (4 to 12 inches thick)" + }, { "name": "B3ir", "top": 20, diff --git a/inst/extdata/OSD/D/DIOBSUD.json b/inst/extdata/OSD/D/DIOBSUD.json index 9a73484c26..077acffba4 100644 --- a/inst/extdata/OSD/D/DIOBSUD.json +++ b/inst/extdata/OSD/D/DIOBSUD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 23, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--9 to 1 inch; forest litter. (2 to 9 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DIPSEA.json b/inst/extdata/OSD/D/DIPSEA.json index 652dd2bf00..491e5bc52f 100644 --- a/inst/extdata/OSD/D/DIPSEA.json +++ b/inst/extdata/OSD/D/DIPSEA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 23, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DISAPPOINT.json b/inst/extdata/OSD/D/DISAPPOINT.json index ed05149983..85d32d3b5a 100644 --- a/inst/extdata/OSD/D/DISAPPOINT.json +++ b/inst/extdata/OSD/D/DISAPPOINT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DIXMINE.json b/inst/extdata/OSD/D/DIXMINE.json index e9f8a91849..624b290398 100644 --- a/inst/extdata/OSD/D/DIXMINE.json +++ b/inst/extdata/OSD/D/DIXMINE.json @@ -257,7 +257,7 @@ }, { "name": "Cr", - "top": "NA", + "top": 136, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/D/DOCDEE.json b/inst/extdata/OSD/D/DOCDEE.json index 0e60778586..d003849dbf 100644 --- a/inst/extdata/OSD/D/DOCDEE.json +++ b/inst/extdata/OSD/D/DOCDEE.json @@ -74,7 +74,7 @@ { "name": "O", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DOKIE.json b/inst/extdata/OSD/D/DOKIE.json index 2d1d60322c..c73b864dce 100644 --- a/inst/extdata/OSD/D/DOKIE.json +++ b/inst/extdata/OSD/D/DOKIE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DOME.json b/inst/extdata/OSD/D/DOME.json index 77a412db74..00f585a843 100644 --- a/inst/extdata/OSD/D/DOME.json +++ b/inst/extdata/OSD/D/DOME.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DOMELL.json b/inst/extdata/OSD/D/DOMELL.json index edf15e705e..0629a9b8b8 100644 --- a/inst/extdata/OSD/D/DOMELL.json +++ b/inst/extdata/OSD/D/DOMELL.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -143,7 +143,7 @@ { "name": "A2", "top": 13, - "bottom": "NA", + "bottom": 28, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -165,7 +165,7 @@ }, { "name": "Bw1", - "top": "NA", + "top": 28, "bottom": 58, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/D/DOMINGUEZ.json b/inst/extdata/OSD/D/DOMINGUEZ.json index cb48e9968c..5f882174bd 100644 --- a/inst/extdata/OSD/D/DOMINGUEZ.json +++ b/inst/extdata/OSD/D/DOMINGUEZ.json @@ -140,6 +140,29 @@ "topography": "NA", "narrative": "Bw2--9 to 25 inches; reddish brown (5YR 5/3) clay, reddish brown" }, + { + "name": "wax", + "top": 3, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "moderate very coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.4, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "(5YR 4/3) moist; moderate very coarse prismatic structure parting to moderate coarse angular blocky; extremely hard, very plastic; few wax- like patches presumed to be silicate clay on vertical faces of peds; cracks 1/2- to 1-inch wide when dry; many slickensides; strongly effervescent, moderately alkaline (pH 8.4); gradual wavy boundary. (8 to 20 inches thick)" + }, { "name": "Bk1", "top": 64, diff --git a/inst/extdata/OSD/D/DOMPIER.json b/inst/extdata/OSD/D/DOMPIER.json index 8fce471d90..b5e8f36110 100644 --- a/inst/extdata/OSD/D/DOMPIER.json +++ b/inst/extdata/OSD/D/DOMPIER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DONAHUE.json b/inst/extdata/OSD/D/DONAHUE.json index 751fff8db2..fdc22817d7 100644 --- a/inst/extdata/OSD/D/DONAHUE.json +++ b/inst/extdata/OSD/D/DONAHUE.json @@ -211,7 +211,7 @@ }, { "name": "2R", - "top": "NA", + "top": 90, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/D/DONEGAN.json b/inst/extdata/OSD/D/DONEGAN.json index 643e7b70e4..e9b94d99ef 100644 --- a/inst/extdata/OSD/D/DONEGAN.json +++ b/inst/extdata/OSD/D/DONEGAN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DONKEYCREEK.json b/inst/extdata/OSD/D/DONKEYCREEK.json index 31ab44a59f..b26f021045 100644 --- a/inst/extdata/OSD/D/DONKEYCREEK.json +++ b/inst/extdata/OSD/D/DONKEYCREEK.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed needles, leaves, twigs, and cone fragments; abrupt smooth boundary. (0.5 to 1 inch thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe--1/2 to 1 inch; moderately decomposed organic materials; abrupt smooth boundary. (0 to 1.5 inches thick)" + }, { "name": "Oa", "top": 3, diff --git a/inst/extdata/OSD/D/DONPEDRO.json b/inst/extdata/OSD/D/DONPEDRO.json index abf28af04a..2782ca6323 100644 --- a/inst/extdata/OSD/D/DONPEDRO.json +++ b/inst/extdata/OSD/D/DONPEDRO.json @@ -166,7 +166,7 @@ { "name": "R", "top": 66, - "bottom": "NA", + "bottom": 200, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DOOLIN.json b/inst/extdata/OSD/D/DOOLIN.json index 91180c8d34..0c23ba59e2 100644 --- a/inst/extdata/OSD/D/DOOLIN.json +++ b/inst/extdata/OSD/D/DOOLIN.json @@ -163,6 +163,29 @@ "topography": "smooth", "narrative": "2Btn3--81 to 122 cm (32 to 48 in); brown (7.5YR 5/4) clay loam, brown (7.5YR 4/4) moist; weak coarse prismatic structure; hard, firm; few distinct clay films on faces of peds; many medium prominent strong brown (7.5YR 5/6) and dark yellowish brown (10YR 4/4) concentrations of oxidized iron; many threads of salts; exchangeable sodium percentage is 18; few medium and fine calcium carbonate concretions; noneffervescent; slightly alkaline; gradual smooth boundary. (23 to 76 cm [9 to 30 in] thick)" }, + { + "name": "2Btn4", + "top": 122, + "bottom": 173, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 8, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 8, + "texture_class": "clay loam", + "structure": "weak coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "noneffervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "2Btn4--122 to 173 (48 to 68 in); reddish yellow (7.5YR 6/8) clay loam, strong brown (7.5YR 5/8) moist; many coarse prominent gray (10YR 5/1) and light gray (10YR 7/2) iron depletions, and many coarse prominent red (2.5YR 4/8) redoximorphic concentrations; weak coarse prismatic structure; hard, firm; few distinct clay films on faces of peds; exchangeable sodium percentage is 18; noneffervescent; slightly alkaline; abrupt smooth boundary. (0 to 89 cm [0 to 35 in] thick)" + }, { "name": "2Cr", "top": 173, diff --git a/inst/extdata/OSD/D/DOOLYVILLE.json b/inst/extdata/OSD/D/DOOLYVILLE.json index 883d45d6d4..c6bc5a1291 100644 --- a/inst/extdata/OSD/D/DOOLYVILLE.json +++ b/inst/extdata/OSD/D/DOOLYVILLE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 3 centimeter (0 to 1 inch); slightly decomposed oak leaves, grass litter and moss; moderately acid (pH 6.0). (0 to 3 centimeters thick)" + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/D/DORVAL.json b/inst/extdata/OSD/D/DORVAL.json index eb005b8508..37b39dc9cc 100644 --- a/inst/extdata/OSD/D/DORVAL.json +++ b/inst/extdata/OSD/D/DORVAL.json @@ -95,7 +95,7 @@ "narrative": "Oa1 -- 0 to 17 inches; black (N2/0) broken face, very dark gray (5YR 3/1) rubbed, sapric material; about 40 percent unrubbed fibers, 10 percent rubbed; moderate fine and medium granular structure; very friable; woody and herbaceous fibers; few fine and very fine roots; neutral; clear wavy boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 43, "bottom": 58, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DOTLAKE.json b/inst/extdata/OSD/D/DOTLAKE.json index 976771d6c2..81010f16df 100644 --- a/inst/extdata/OSD/D/DOTLAKE.json +++ b/inst/extdata/OSD/D/DOTLAKE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DOUGHERTY.json b/inst/extdata/OSD/D/DOUGHERTY.json index 6c150f1704..d3e734e0e9 100644 --- a/inst/extdata/OSD/D/DOUGHERTY.json +++ b/inst/extdata/OSD/D/DOUGHERTY.json @@ -162,6 +162,29 @@ "distinctness": "diffuse", "topography": "smooth", "narrative": "BC--107 to 137 cm (42 to 54 in); yellowish red (5YR 5/6) fine sandy loam, yellowish red (5YR 4/6) moist; weak coarse prismatic structure; hard, friable; moderately acid; diffuse smooth boundary. (Thickness of the BC horizon is 25 to 76 cm [10 to 30 in])" + }, + { + "name": "C", + "top": 137, + "bottom": 178, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 8, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "loamy fine sand", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--137 to 178 (54 to 70 in); yellowish red (5YR 5/8) loamy fine sand, yellowish red (5YR 4/6) moist; massive; slightly hard, friable; moderately acid." } ] ] diff --git a/inst/extdata/OSD/D/DREXEL.json b/inst/extdata/OSD/D/DREXEL.json index 58d0fa1417..036709ff80 100644 --- a/inst/extdata/OSD/D/DREXEL.json +++ b/inst/extdata/OSD/D/DREXEL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DRYADINE.json b/inst/extdata/OSD/D/DRYADINE.json index ccd8f26815..ef2e03446a 100644 --- a/inst/extdata/OSD/D/DRYADINE.json +++ b/inst/extdata/OSD/D/DRYADINE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.5 inch; pine needles, twigs, and cones." }, { - "name": "0e", + "name": "Oe", "top": 1, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/D/DUBAKELLA.json b/inst/extdata/OSD/D/DUBAKELLA.json index 2db8da70e2..6f8dfe03d5 100644 --- a/inst/extdata/OSD/D/DUBAKELLA.json +++ b/inst/extdata/OSD/D/DUBAKELLA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DUEY.json b/inst/extdata/OSD/D/DUEY.json index 0a9523e179..6c2bd2be5d 100644 --- a/inst/extdata/OSD/D/DUEY.json +++ b/inst/extdata/OSD/D/DUEY.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Cr--17 to 35 inches; highly fractured limestone; few medium and coarse roots between rock fractures; abrupt irregular boundary. (5 to 37 inches thick)" + }, + { + "name": "R", + "top": 89, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--35+ inches; hard consolidated limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/D/DUFF.json b/inst/extdata/OSD/D/DUFF.json index 30d40eb221..198ea5ec05 100644 --- a/inst/extdata/OSD/D/DUFF.json +++ b/inst/extdata/OSD/D/DUFF.json @@ -189,7 +189,7 @@ { "name": "C", "top": 94, - "bottom": "NA", + "bottom": 145, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, diff --git a/inst/extdata/OSD/D/DUGUALLA.json b/inst/extdata/OSD/D/DUGUALLA.json index a95c9d897a..4a85c11615 100644 --- a/inst/extdata/OSD/D/DUGUALLA.json +++ b/inst/extdata/OSD/D/DUGUALLA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 28, "dry_hue": "10YR", @@ -95,7 +95,7 @@ "narrative": "0a1--0 to 28 cm; black (10YR 2/1) muck, very dark gray (10YR 3/1) dry; massive; slightly hard, very friable, non-sticky and non-plastic; 20 percent fiber, 5 percent rubbed; few fine roots; many very fine tubular pores; common prominent very pale brown (10YR 7/4), very pale brown (10YR 8/2) dry iron depletions throughout; slightly acid (pH 6.5); strongly saline (EC > 40 dS/m); clear wavy boundary. (10 to 30 cm thick)" }, { - "name": "0a2", + "name": "Oa2", "top": 28, "bottom": 51, "dry_hue": "7.5YR", @@ -118,7 +118,7 @@ "narrative": "0a2--28 to 51 cm; very dark brown (7.5YR 2.5/2) muck, brown (7.5YR 4/2) dry; strong very thin platy structure; hard, very friable, non-sticky and non-plastic; 10 percent fiber, 3 percent rubbed; few very fine roots; few very fine tubular pores; common distinct dark yellowish brown (10YR 4/6), yellowish brown (10YR 5/6) dry iron-manganese concentrations along root channels, common distinct very pale brown (10YR 7/4), very pale brown (10YR 8/2) dry iron depletions throughout; slightly acid (pH 6.3); strongly saline (EC > 40 dS/m); gradual wavy boundary." }, { - "name": "0a3", + "name": "Oa3", "top": 51, "bottom": 66, "dry_hue": "10YR", @@ -141,7 +141,7 @@ "narrative": "0a3--51 to 66 cm; very dark brown (10YR 2/2) muck, very dark gray (10YR 3/1) dry; moderate medium platy structure; moderately hard, very friable, non-sticky and non-plastic; 20 percent fiber, 5 percent rubbed; few fine roots; many very fine irregular pores; 20 percent marine shell fragments; neutral (pH 7.1); strongly saline (EC > 40 dS/m); gradual wavy boundary." }, { - "name": "0a4", + "name": "Oa4", "top": 66, "bottom": 152, "dry_hue": "7.5YR", diff --git a/inst/extdata/OSD/D/DUMONT.json b/inst/extdata/OSD/D/DUMONT.json index 7d9e538010..df397e1c9a 100644 --- a/inst/extdata/OSD/D/DUMONT.json +++ b/inst/extdata/OSD/D/DUMONT.json @@ -74,7 +74,7 @@ { "name": "Oi1", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oi2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/D/DUNSMUIR.json b/inst/extdata/OSD/D/DUNSMUIR.json index 8543ad86d3..6fc0cdb767 100644 --- a/inst/extdata/OSD/D/DUNSMUIR.json +++ b/inst/extdata/OSD/D/DUNSMUIR.json @@ -73,8 +73,8 @@ [ { "name": "O", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EDFRO.json b/inst/extdata/OSD/E/EDFRO.json index d190dfaee2..a90982708f 100644 --- a/inst/extdata/OSD/E/EDFRO.json +++ b/inst/extdata/OSD/E/EDFRO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.5 inches; slightly decomposed needles, leaves, twigs." }, { - "name": "0a", + "name": "Oa", "top": 1, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/EDSON.json b/inst/extdata/OSD/E/EDSON.json index 17b3e38a44..7b1ffde123 100644 --- a/inst/extdata/OSD/E/EDSON.json +++ b/inst/extdata/OSD/E/EDSON.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EGYPTCREEK.json b/inst/extdata/OSD/E/EGYPTCREEK.json index 465d056e74..93ba30bb03 100644 --- a/inst/extdata/OSD/E/EGYPTCREEK.json +++ b/inst/extdata/OSD/E/EGYPTCREEK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EKLUTNA.json b/inst/extdata/OSD/E/EKLUTNA.json index f73257e517..a21b7a2c36 100644 --- a/inst/extdata/OSD/E/EKLUTNA.json +++ b/inst/extdata/OSD/E/EKLUTNA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/ELBAVILLE.json b/inst/extdata/OSD/E/ELBAVILLE.json index 609f249c2f..8927d7e1d8 100644 --- a/inst/extdata/OSD/E/ELBAVILLE.json +++ b/inst/extdata/OSD/E/ELBAVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/ELKNER.json b/inst/extdata/OSD/E/ELKNER.json index f792aff0b8..914ef97705 100644 --- a/inst/extdata/OSD/E/ELKNER.json +++ b/inst/extdata/OSD/E/ELKNER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/ELLEDGE.json b/inst/extdata/OSD/E/ELLEDGE.json index c358e3962b..64e15c5f33 100644 --- a/inst/extdata/OSD/E/ELLEDGE.json +++ b/inst/extdata/OSD/E/ELLEDGE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/ELWELL.json b/inst/extdata/OSD/E/ELWELL.json index 9c7fe9de25..45881202ac 100644 --- a/inst/extdata/OSD/E/ELWELL.json +++ b/inst/extdata/OSD/E/ELWELL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EL_CACIQUE.json b/inst/extdata/OSD/E/EL_CACIQUE.json index 07e2e70fb4..9c9aa48439 100644 --- a/inst/extdata/OSD/E/EL_CACIQUE.json +++ b/inst/extdata/OSD/E/EL_CACIQUE.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--11 to 14 inches; highly fractured serpentinite bedrock." + }, + { + "name": "R", + "top": 36, + "bottom": 218, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--14 to 86+ inches; hard consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/E/EL_DESCANSO.json b/inst/extdata/OSD/E/EL_DESCANSO.json index a7957947c9..c90c7e51b1 100644 --- a/inst/extdata/OSD/E/EL_DESCANSO.json +++ b/inst/extdata/OSD/E/EL_DESCANSO.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bt--8 to 15 inches; dark brown (7.5YR 3/2) extremely paragravelly clay; moderate very fine and fine subangular blocky structure; hard, firm; slightly sticky, moderately plastic; many very fine and fine roots; many very fine to fine irregular pores; common distinct clay films on faces of peds and coarse fragments; about 70 percent, by volume, angular parapebbles, and about 5 percent, by volume, angular paracobbles; neutral; abrupt irregular boundary. (6 to 12 inches thick)" + }, + { + "name": "R", + "top": 38, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--15+ inches; hard fractured consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/E/EL_PAPAYO.json b/inst/extdata/OSD/E/EL_PAPAYO.json index 60c45bd8a4..6f228432ce 100644 --- a/inst/extdata/OSD/E/EL_PAPAYO.json +++ b/inst/extdata/OSD/E/EL_PAPAYO.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--14 to 16 inches; highly fractured unconsolidated andesite rock. (2 to 11 inches thick)" + }, + { + "name": "R", + "top": 41, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--16+ inches; hard consolidated andesite bedrock." } ] ] diff --git a/inst/extdata/OSD/E/EMELINE.json b/inst/extdata/OSD/E/EMELINE.json index d189885411..7b6f5827a1 100644 --- a/inst/extdata/OSD/E/EMELINE.json +++ b/inst/extdata/OSD/E/EMELINE.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 23 centimeters; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; weak fine subangular blocky structure parting to weak fine granular; friable; many fine and very fine roots; about 12 percent rock fragments of weathered limestone in lower 10 centimeters; neutral; abrupt wavy boundary. (10 to 25 centimeters thick)" + }, + { + "name": "R", + "top": 23, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--23+ centimeters; fractured limestone bedrock; upper part has black (10YR 2/1) loamy sediments in the fractures." } ] ] diff --git a/inst/extdata/OSD/E/EMPIRE.json b/inst/extdata/OSD/E/EMPIRE.json index d3812154cf..97a15e741e 100644 --- a/inst/extdata/OSD/E/EMPIRE.json +++ b/inst/extdata/OSD/E/EMPIRE.json @@ -185,6 +185,29 @@ "distinctness": "diffuse", "topography": "smooth", "narrative": "B31t--39 to 57 inches; yellowish brown (10YR 5/6) clay loam with dark reddish brown (5YR 3/4) coatings, yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) dry; massive; hard, firm, sticky, plastic; few very fine and medium roots; many very fine and few fine tubular pores; many moderately thick clay films in pores and few films along fracture planes; very strongly acid (pH 5.0) diffuse smooth boundary. (18 to 30 inches thick)." + }, + { + "name": "B32", + "top": 145, + "bottom": 168, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "very fine sandy loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 5, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "B32--57 to 66+ inches; yellowish brown (10YR 5/6) clay loam with dark reddish brown (5YR 3/4) coatings, yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) dry; massive; hard, firm, sticky, slightly plastic; few very fine and fine roots; common very fine tubular pores; common moderately thick clay films in pores and along fracture planes; strongly acid (pH 5.0); 10 to 20 inches thick. Grades into weathered, stratified, soft sedimentary rocks of varied color (yellow, brown, red) and texture (very fine sandy loam to silty clay loam)." } ] ] diff --git a/inst/extdata/OSD/E/ENOSBURG.json b/inst/extdata/OSD/E/ENOSBURG.json index a52a45c6ec..6bae3e10d3 100644 --- a/inst/extdata/OSD/E/ENOSBURG.json +++ b/inst/extdata/OSD/E/ENOSBURG.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "Cg1--8 to 16 inches; olive gray (5Y 5/2) sand; massive; very friable; common roots; 5 percent rock fragments; common coarse and very coarse, dark reddish brown (2.5YR 3/4) concretions; common fine prominent yellowish brown (10YR 5/4), brown (7.5YR 4/4), and reddish brown (5YR 4/4) masses of iron accumulation; strongly acid; clear wavy boundary." }, + { + "name": "Cg2", + "top": 41, + "bottom": 81, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Cg2--16 to 32, grayish brown (10YR 5/2) coarse sand; single grain; loose; few roots; 5 percent rock fragments; many fine and medium distinct yellowish brown (10YR 5/4) and many fine and medium prominent brown (7.5YR 4/4) and reddish brown (5YR 4/4) masses of iron accumulation; moderately acid in the upper part and slightly acid in the lower part; abrupt smooth boundary. (combined thickness of the C horizon is 0 to 28 inches)" + }, { "name": "2Cg3", "top": 81, diff --git a/inst/extdata/OSD/E/ESHAMY.json b/inst/extdata/OSD/E/ESHAMY.json index 4ff86d87e5..58ad500a95 100644 --- a/inst/extdata/OSD/E/ESHAMY.json +++ b/inst/extdata/OSD/E/ESHAMY.json @@ -72,7 +72,30 @@ "HORIZONS": [ [ { - "name": "021", + "name": "O1", + "top": 32, + "bottom": 25, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "01--12 1/2 to 10 inches; dark reddish brown (5YR 2/2 broken face, and 5YR 3/3, rubbed and pressed) hemic sedge peat; 30 percent fibers, 20 percent rubbed; medium subangular blocky structure; many fine roots; very strongly acid; abrupt smooth boundary." + }, + { + "name": "O21", "top": 25, "bottom": 18, "dry_hue": "NA", @@ -94,6 +117,52 @@ "topography": "smooth", "narrative": "021--10 to 7 inches; dark reddish brown (5YR 3/2 broken face, and 5YR 3/3 rubbed and pressed) sapric peat; 20 percent fibers, 5 percent rubbed; medium subangular blocky structure; many fine roots; very strongly acid; abrupt smooth boundary." }, + { + "name": "C1", + "top": 18, + "bottom": 17, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "C1--7 to 6 1/2 inches; Volcanic ash. Brown (7.5YR 5/4) silt loam; massive; friable; very strongly acid; abrupt smooth boundary, but ash in places is up to 1 1/2 inches thick." + }, + { + "name": "O22", + "top": 17, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "022--6 1/2 to 0 inches; dark reddish brown (5YR 3/3 broken face, 5YR 3/4 rubbed) to dark brown (7.5YR 3/2 pressed) sapric peat; 20 percent fibers, none rubbed; coarse platy structure; few fine roots; very strongly acid; abrupt smooth boundary." + }, { "name": "IIC2", "top": 0, diff --git a/inst/extdata/OSD/E/ESKA.json b/inst/extdata/OSD/E/ESKA.json index 46ac926974..0bec5b6805 100644 --- a/inst/extdata/OSD/E/ESKA.json +++ b/inst/extdata/OSD/E/ESKA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/ESMERALDA.json b/inst/extdata/OSD/E/ESMERALDA.json index b00b3f212c..8943fd6b4b 100644 --- a/inst/extdata/OSD/E/ESMERALDA.json +++ b/inst/extdata/OSD/E/ESMERALDA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/ESS.json b/inst/extdata/OSD/E/ESS.json index 3ca8c635be..c2b0baa439 100644 --- a/inst/extdata/OSD/E/ESS.json +++ b/inst/extdata/OSD/E/ESS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/ETACH.json b/inst/extdata/OSD/E/ETACH.json index 92faf16c01..3e44417078 100644 --- a/inst/extdata/OSD/E/ETACH.json +++ b/inst/extdata/OSD/E/ETACH.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EUER.json b/inst/extdata/OSD/E/EUER.json index 368ac328ca..48ef8f769a 100644 --- a/inst/extdata/OSD/E/EUER.json +++ b/inst/extdata/OSD/E/EUER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/E/EVICK.json b/inst/extdata/OSD/E/EVICK.json index 66565deec7..ba9c380784 100644 --- a/inst/extdata/OSD/E/EVICK.json +++ b/inst/extdata/OSD/E/EVICK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EWAN.json b/inst/extdata/OSD/E/EWAN.json index 597803fddd..69e89ce9ac 100644 --- a/inst/extdata/OSD/E/EWAN.json +++ b/inst/extdata/OSD/E/EWAN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/E/EYAK.json b/inst/extdata/OSD/E/EYAK.json index f920c08387..b94a02c381 100644 --- a/inst/extdata/OSD/E/EYAK.json +++ b/inst/extdata/OSD/E/EYAK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FAIRLESS.json b/inst/extdata/OSD/F/FAIRLESS.json index f89ffee94f..e8aed26e49 100644 --- a/inst/extdata/OSD/F/FAIRLESS.json +++ b/inst/extdata/OSD/F/FAIRLESS.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FANCHER.json b/inst/extdata/OSD/F/FANCHER.json index ecb983e832..4b5d92596d 100644 --- a/inst/extdata/OSD/F/FANCHER.json +++ b/inst/extdata/OSD/F/FANCHER.json @@ -208,6 +208,29 @@ "distinctness": "abrupt", "topography": "broken", "narrative": "B3t--20 to 25 inches; brown (7.5YR 5/4) gravelly clay loam, dark brown (7.5YR 3/4) when moist; moderate fine angular blocky structure; very hard, friable, sticky and plastic; few fine roots; few fine random tubular pores; many moderately thick clay films on ped faces and in pores; gravels are angular fragments of parent rock; slightly acid; abrupt broken boundary. 4 to 7 inches thick." + }, + { + "name": "C/R", + "top": 64, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C/R--25 + inches; highly fractured and moderately weathered serpentine parent rock; varied colors of green, white, yellow, and red; soil material tongues along fractures and clay films coat some weathered rock fragments; plentiful fine to medium roots follow the soil-filled cracks; grades to unweathered, fractured rock within 4 feet of surface." } ] ] diff --git a/inst/extdata/OSD/F/FANTZ.json b/inst/extdata/OSD/F/FANTZ.json index 202114d054..8f9c18a6ea 100644 --- a/inst/extdata/OSD/F/FANTZ.json +++ b/inst/extdata/OSD/F/FANTZ.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FARDRAW.json b/inst/extdata/OSD/F/FARDRAW.json index e14efaf840..8b8bfdcbf0 100644 --- a/inst/extdata/OSD/F/FARDRAW.json +++ b/inst/extdata/OSD/F/FARDRAW.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A1--0 to 20 cm; very dark gray (10YR 3/1) loam, black (10YR 2/1) moist; moderate fine granular structure; soft, friable, slightly sticky and slightly plastic; moderate fine and very fine roots; 5 percent gravel, 1 percent cobbles, and 1 percent stones; neutral (pH 6.8); clear smooth boundary. (15 to 30 cm thick)" }, + { + "name": "A2", + "top": 20, + "bottom": 28, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A2--20 to 28; dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; moderate fine roots; 10 percent gravel and 1 percent cobbles; neutral (pH 6.8); clear wavy boundary. (0 to 24 cm thick)" + }, { "name": "Bt1", "top": 28, diff --git a/inst/extdata/OSD/F/FARFELD.json b/inst/extdata/OSD/F/FARFELD.json index 123303be24..07b1e2a77f 100644 --- a/inst/extdata/OSD/F/FARFELD.json +++ b/inst/extdata/OSD/F/FARFELD.json @@ -231,52 +231,6 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "3Bt2--42 to 53 inches; light olive brown (2.5Y 5/4) clay, olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; few very fine roots throughout; common fine moderate continuous tubular pores; 42 percent clay; common distinct discontinuous clay films on faces of peds and in pores; horizontal bands of concentrations and depletions ranging in thickness from 1/2 to 1 1/2 inches; common prominent strong brown (7.5YR 5/8) iron concretions and many prominent olive gray (5Y 5/2) iron depletions; common nests of gypsum pedogenic throughout; moderately alkaline; gradual wavy boundary. (5 to 20 inches thick)" - }, - { - "name": "horizon", - "top": 135, - "bottom": 224, - "dry_hue": "5Y", - "dry_value": 6, - "dry_chroma": 1, - "moist_hue": "5Y", - "moist_value": 4, - "moist_chroma": 1, - "texture_class": "clay", - "structure": "massive", - "dry_rupture": "hard", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "moderately alkaline", - "eff_class": "very slightly effervescent", - "distinctness": "gradual", - "topography": "wavy", - "narrative": "3C1 horizon--53 to 88 inches; gray (5Y 6/1) clay, dark gray (5Y 4/1) moist; massive; hard, firm, sticky and plastic; common fine moderate continuous tubular pores; 42 percent clay; common fine irregular prominent light olive brown (2.5Y 5/6) iron concretions; few nests of gypsum pedogenic throughout; very slightly effervescent throughout (HCL, 1 normal); moderately alkaline; gradual wavy boundary." - }, - { - "name": "horizon", - "top": 224, - "bottom": 305, - "dry_hue": "5Y", - "dry_value": 7, - "dry_chroma": 2, - "moist_hue": "5Y", - "moist_value": 6, - "moist_chroma": 2, - "texture_class": "silty clay", - "structure": "massive", - "dry_rupture": "hard", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "slightly alkaline", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "3C2 horizon--88 to 120 inches; light gray (5Y 7/2) silty clay, light olive gray (5Y 6/2) moist; massive; hard, firm, sticky and plastic; common fine irregular prominent brown (7.5YR 4/4) iron concretions; 98 to 105 inches has iron-manganese concretions; slightly alkaline." } ] ] diff --git a/inst/extdata/OSD/F/FARVA.json b/inst/extdata/OSD/F/FARVA.json index 0095112abc..eb823c7c4f 100644 --- a/inst/extdata/OSD/F/FARVA.json +++ b/inst/extdata/OSD/F/FARVA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 inches to 0; litter from needles, leaves and twigs." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/F/FEAGINRANCH.json b/inst/extdata/OSD/F/FEAGINRANCH.json index 2e87d447a7..2d770cc89c 100644 --- a/inst/extdata/OSD/F/FEAGINRANCH.json +++ b/inst/extdata/OSD/F/FEAGINRANCH.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 14, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FEDSCREEK.json b/inst/extdata/OSD/F/FEDSCREEK.json index 98932a3f6a..6711764024 100644 --- a/inst/extdata/OSD/F/FEDSCREEK.json +++ b/inst/extdata/OSD/F/FEDSCREEK.json @@ -166,7 +166,7 @@ { "name": "Bw2", "top": 43, - "bottom": "NA", + "bottom": 79, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FELTON.json b/inst/extdata/OSD/F/FELTON.json index 47a8531dd1..6f0e82760a 100644 --- a/inst/extdata/OSD/F/FELTON.json +++ b/inst/extdata/OSD/F/FELTON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FEREBEE.json b/inst/extdata/OSD/F/FEREBEE.json index 37b755d236..0ab7eb82f0 100644 --- a/inst/extdata/OSD/F/FEREBEE.json +++ b/inst/extdata/OSD/F/FEREBEE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FERGUSON.json b/inst/extdata/OSD/F/FERGUSON.json index 06cba8f714..780e225283 100644 --- a/inst/extdata/OSD/F/FERGUSON.json +++ b/inst/extdata/OSD/F/FERGUSON.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FERNCREEK.json b/inst/extdata/OSD/F/FERNCREEK.json index dbbeb558e5..996c3caad5 100644 --- a/inst/extdata/OSD/F/FERNCREEK.json +++ b/inst/extdata/OSD/F/FERNCREEK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FERNHAVEN.json b/inst/extdata/OSD/F/FERNHAVEN.json index 526afa7eb1..4cd5491cc8 100644 --- a/inst/extdata/OSD/F/FERNHAVEN.json +++ b/inst/extdata/OSD/F/FERNHAVEN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FERN_CLIFF.json b/inst/extdata/OSD/F/FERN_CLIFF.json index ec24672587..3f31488206 100644 --- a/inst/extdata/OSD/F/FERN_CLIFF.json +++ b/inst/extdata/OSD/F/FERN_CLIFF.json @@ -95,7 +95,7 @@ "narrative": "O1--4 to 2 inches; undecomposed organic material, chiefly needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FERRON.json b/inst/extdata/OSD/F/FERRON.json index d5aebbd9a9..568b269c83 100644 --- a/inst/extdata/OSD/F/FERRON.json +++ b/inst/extdata/OSD/F/FERRON.json @@ -97,7 +97,7 @@ { "name": "Ag", "top": 3, - "bottom": "NA", + "bottom": 10, "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 2, diff --git a/inst/extdata/OSD/F/FERTEG.json b/inst/extdata/OSD/F/FERTEG.json index 160b58f587..d9b4186c57 100644 --- a/inst/extdata/OSD/F/FERTEG.json +++ b/inst/extdata/OSD/F/FERTEG.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FIDDLETOWN.json b/inst/extdata/OSD/F/FIDDLETOWN.json index 8d2f5d2c82..b5e3770f68 100644 --- a/inst/extdata/OSD/F/FIDDLETOWN.json +++ b/inst/extdata/OSD/F/FIDDLETOWN.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "C--49 to 117 cm; brown (7.5YR 4/3) extremely gravelly loam, very dark brown (7.5 YR 2/2) when moist; 11 percent clay; abrupt, irregular boundary. (25 to 75 cm thick)" + }, + { + "name": "Cr", + "top": 117, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--117+ cm; Gray (N/5) somewhat fractured schist, very dark gray (N/3) when moist; neutral (pH 7.0; crushed, rotten rock)." } ] ] diff --git a/inst/extdata/OSD/F/FISHROCK.json b/inst/extdata/OSD/F/FISHROCK.json index 65414dc285..98c69ee30a 100644 --- a/inst/extdata/OSD/F/FISHROCK.json +++ b/inst/extdata/OSD/F/FISHROCK.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FIVEBIT.json b/inst/extdata/OSD/F/FIVEBIT.json index d3516515cb..948968247b 100644 --- a/inst/extdata/OSD/F/FIVEBIT.json +++ b/inst/extdata/OSD/F/FIVEBIT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 1, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FIVES.json b/inst/extdata/OSD/F/FIVES.json index f6ecd32aa7..cf403e3170 100644 --- a/inst/extdata/OSD/F/FIVES.json +++ b/inst/extdata/OSD/F/FIVES.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "01--2 inches to 11/4; organic litter of loose leaves, twigs, and needles." }, + { + "name": "O2", + "top": 3, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "02--11/4 inch to 0; very dark brown (10YR 2/2) decomposed leaves, twigs, and needles; abrupt smooth boundary." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/F/FLANNERY.json b/inst/extdata/OSD/F/FLANNERY.json index b6ff4d9078..99b5b39b86 100644 --- a/inst/extdata/OSD/F/FLANNERY.json +++ b/inst/extdata/OSD/F/FLANNERY.json @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Oi--1.5 to 1 inch; undecomposed needles, twigs and leaves." }, + { + "name": "Oe", + "top": 3, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1 to 0; slightly decomposed needles, twigs and leaves." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/F/FLARM.json b/inst/extdata/OSD/F/FLARM.json index ca6d899c3c..7758895896 100644 --- a/inst/extdata/OSD/F/FLARM.json +++ b/inst/extdata/OSD/F/FLARM.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FLATSTONE.json b/inst/extdata/OSD/F/FLATSTONE.json index 83c5cd6ec1..13788704e7 100644 --- a/inst/extdata/OSD/F/FLATSTONE.json +++ b/inst/extdata/OSD/F/FLATSTONE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FLAT_HORN.json b/inst/extdata/OSD/F/FLAT_HORN.json index 75b8b80d46..7325054b2e 100644 --- a/inst/extdata/OSD/F/FLAT_HORN.json +++ b/inst/extdata/OSD/F/FLAT_HORN.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FONG.json b/inst/extdata/OSD/F/FONG.json index 16aa1c93a1..3f90fc227c 100644 --- a/inst/extdata/OSD/F/FONG.json +++ b/inst/extdata/OSD/F/FONG.json @@ -231,6 +231,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Ct--50 to 59 inches; brown (10YR 4/3) very gravelly sandy loam, dark brown (10YR 3/3) moist; massive; slightly hard, friable, nonsticky and nonplastic; few very fine roots; few very fine and fine tubular pores; many thin clay films on ped faces and lining pores; 50 percent gravel; slightly acid (pH 6.5); abrupt wavy boundary." + }, + { + "name": "R", + "top": 150, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--59+ inches; soft weathered bedrock (black schist)." } ] ] diff --git a/inst/extdata/OSD/F/FONS.json b/inst/extdata/OSD/F/FONS.json index 5ae9addf7d..8fd303aac0 100644 --- a/inst/extdata/OSD/F/FONS.json +++ b/inst/extdata/OSD/F/FONS.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FORBES.json b/inst/extdata/OSD/F/FORBES.json index b8be16ddaf..cc1cd80604 100644 --- a/inst/extdata/OSD/F/FORBES.json +++ b/inst/extdata/OSD/F/FORBES.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FORK.json b/inst/extdata/OSD/F/FORK.json index dbc3a1cb0d..3eaa4827cf 100644 --- a/inst/extdata/OSD/F/FORK.json +++ b/inst/extdata/OSD/F/FORK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inches; undecomposed forest litter of leaves and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FORSYTH.json b/inst/extdata/OSD/F/FORSYTH.json index b25c25a74c..504ae24dbc 100644 --- a/inst/extdata/OSD/F/FORSYTH.json +++ b/inst/extdata/OSD/F/FORSYTH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0e--2 to 1 inch; loose; partially decomposed organic litter including needles, twigs, bark, and cones; 3 percent rounded cobbles on the soil surface; abrupt smooth boundary. (1 to 2 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FORTRAN.json b/inst/extdata/OSD/F/FORTRAN.json index c115d1fe36..7a34f20289 100644 --- a/inst/extdata/OSD/F/FORTRAN.json +++ b/inst/extdata/OSD/F/FORTRAN.json @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": "NA", - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FORTYFOUR.json b/inst/extdata/OSD/F/FORTYFOUR.json index 32937923a8..d1d9f7fc14 100644 --- a/inst/extdata/OSD/F/FORTYFOUR.json +++ b/inst/extdata/OSD/F/FORTYFOUR.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1 centimeter (0 to 1 inch); slightly decomposed Douglas-fir needles and twigs; moderately acid (pH 6.0). (0 to 3 centimeters thick)" + }, { "name": "A", "top": 1, diff --git a/inst/extdata/OSD/F/FOURLOG.json b/inst/extdata/OSD/F/FOURLOG.json index 6f267bcbee..2d896f6112 100644 --- a/inst/extdata/OSD/F/FOURLOG.json +++ b/inst/extdata/OSD/F/FOURLOG.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FRAILEY.json b/inst/extdata/OSD/F/FRAILEY.json index 073d159823..d60a0c75e6 100644 --- a/inst/extdata/OSD/F/FRAILEY.json +++ b/inst/extdata/OSD/F/FRAILEY.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FRANCITAS.json b/inst/extdata/OSD/F/FRANCITAS.json index cc29dbf9c0..060024eb40 100644 --- a/inst/extdata/OSD/F/FRANCITAS.json +++ b/inst/extdata/OSD/F/FRANCITAS.json @@ -94,6 +94,29 @@ "topography": "wavy", "narrative": "A--0 to 41 cm (0 to 16 in); black (10YR 2/1) clay loam, very dark gray (10YR 3/1) dry; moderate fine angular and subangular blocky structure; extremely hard, very firm; many fine roots; common fine pores; slightly sodic; slightly alkaline; gradual wavy boundary. (15 to 51 cm [6 to 20 in] thick)" }, + { + "name": "Bss", + "top": 41, + "bottom": 97, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "clay", + "structure": "strong fine and medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bss--41 to 97 (16 to 38 in); very dark gray (10YR 3/1) clay, dark gray (10YR 4/1) dry; strong fine and medium angular blocky structure; extremely hard, very firm; common fine roots; few fine pores; common prominent slickensides; moderately sodic; very slightly saline; moderately alkaline; gradual wavy boundary. (25 to 79 cm [10 to 31 in] thick)" + }, { "name": "Bkss1", "top": 97, diff --git a/inst/extdata/OSD/F/FRANKPORT.json b/inst/extdata/OSD/F/FRANKPORT.json index 89c6e613bb..c4d6dfad96 100644 --- a/inst/extdata/OSD/F/FRANKPORT.json +++ b/inst/extdata/OSD/F/FRANKPORT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FREELAND.json b/inst/extdata/OSD/F/FREELAND.json index 6ef9bd9c3c..546db46ece 100644 --- a/inst/extdata/OSD/F/FREELAND.json +++ b/inst/extdata/OSD/F/FREELAND.json @@ -209,29 +209,6 @@ "topography": "smooth", "narrative": "Btx1--41 to 50 inches; mottled yellowish brown (10YR 5/6), gray (10YR 6/1) and strong brown (7.5YR 5/6) silt loam; moderate very coarse prismatic structure parting to moderate medium subangular blocky; very firm and brittle; few fine roots in gray seams; few fine discontinuous pores; common distinct grayish clay films on faces of peds and prisms; vertical gray seams 1/8 to 1 1/2 inches wide that are silty clay loam with pockets of loam; few fine strong brown iron and manganese concretions; very strongly acid; gradual smooth boundary." }, - { - "name": "2", - "top": 127, - "bottom": 170, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "2.5Y", - "moist_value": 7, - "moist_chroma": 2, - "texture_class": "silty clay loam", - "structure": "moderate very coarse prismatic", - "dry_rupture": "NA", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "strongly acid", - "eff_class": "NA", - "distinctness": "clear", - "topography": "smooth", - "narrative": "2Btx-2--50 to 67 inches; mottled light gray (2.5Y 7/2) light olive brown (2.5Y 5/6), and light yellowish brown (2.5Y 6/4) loam; moderate very coarse prismatic structure parting to weak medium subangular blocky; very firm and brittle; common distinct grayish clay films on faces of peds and prisms; few fine discontinuous pores; vertical gray seams 1/8 to 1 1/2 inches wide that are silty clay loam with pockets of loam; common fine strong brown and dark brown iron and manganese concretions; few mica flakes; strongly acid; clear smooth boundary." - }, { "name": "2Btx3", "top": 170, diff --git a/inst/extdata/OSD/F/FREELS.json b/inst/extdata/OSD/F/FREELS.json index 4acdff4645..d450bfeb60 100644 --- a/inst/extdata/OSD/F/FREELS.json +++ b/inst/extdata/OSD/F/FREELS.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "AB--20 to 34 inches; very dark brown (10YR 2/2) loam, dark grayish brown (10YR 4/2) dry; moderate medium prismatic and subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine, and few fine roots; common very fine, fine and few medium tubular pores; few fine pieces of charcoal in the upper part; slightly alkaline (pH 7.4); clear wavy boundary. (0 to 20 inches thick.)" }, + { + "name": "Bw1", + "top": 86, + "bottom": 97, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw1--34 to 38; very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; moderate medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine, fine, and few medium tubular pores; neutral (pH 7.0); clear wavy boundary." + }, { "name": "Bw2", "top": 97, diff --git a/inst/extdata/OSD/F/FREEZENER.json b/inst/extdata/OSD/F/FREEZENER.json index 34044d0ece..5b62a63b1f 100644 --- a/inst/extdata/OSD/F/FREEZENER.json +++ b/inst/extdata/OSD/F/FREEZENER.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/F/FREEZEOUT.json b/inst/extdata/OSD/F/FREEZEOUT.json index f50600c67e..979d6310fc 100644 --- a/inst/extdata/OSD/F/FREEZEOUT.json +++ b/inst/extdata/OSD/F/FREEZEOUT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/F/FRIONA.json b/inst/extdata/OSD/F/FRIONA.json index 2d897a2853..98e969b29d 100644 --- a/inst/extdata/OSD/F/FRIONA.json +++ b/inst/extdata/OSD/F/FRIONA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Ap", + "top": 0, + "bottom": 20, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Ap--0 to 20 (0 to 8 in); brown (7.5YR 4/2) loam, dark brown (7.5YR 3/2) moist; weak fine granular structure; slightly hard, very friable; many fine roots; slightly alkaline; abrupt smooth boundary. (Thickness is 13 to 25 cm ([5 to 10 in].)" + }, { "name": "Bt1", "top": 20, diff --git a/inst/extdata/OSD/F/FUNTER.json b/inst/extdata/OSD/F/FUNTER.json index b438ee45b9..8634a73271 100644 --- a/inst/extdata/OSD/F/FUNTER.json +++ b/inst/extdata/OSD/F/FUNTER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i1", + "name": "Oi1", "top": 0, "bottom": 46, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i1--0 to 18 inches; brown (10YR 5/3) sphagnum peat, very pale brown (10YR 7/4) when pressed; 90 percent fiber, 75 percent rubbed; about 80 percent sphagnum moss fibers and 20 percent sedge; gradual wavy boundary. (5 to 18 inches thick)" }, { - "name": "0i2", + "name": "Oi2", "top": 46, "bottom": 61, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GADONA.json b/inst/extdata/OSD/G/GADONA.json index dad1f99720..8c0076b23a 100644 --- a/inst/extdata/OSD/G/GADONA.json +++ b/inst/extdata/OSD/G/GADONA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GAHEE.json b/inst/extdata/OSD/G/GAHEE.json index a6a9873961..628129b546 100644 --- a/inst/extdata/OSD/G/GAHEE.json +++ b/inst/extdata/OSD/G/GAHEE.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed leaves, needles, and twigs." + }, + { + "name": "Oa", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 to 1 inch; decomposed leaves, needles, and twigs." + }, { "name": "E", "top": 3, diff --git a/inst/extdata/OSD/G/GAKONA.json b/inst/extdata/OSD/G/GAKONA.json index 69c1e47114..5ee539aebe 100644 --- a/inst/extdata/OSD/G/GAKONA.json +++ b/inst/extdata/OSD/G/GAKONA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GALESTOWN.json b/inst/extdata/OSD/G/GALESTOWN.json index ac683787b4..5ed297aaa0 100644 --- a/inst/extdata/OSD/G/GALESTOWN.json +++ b/inst/extdata/OSD/G/GALESTOWN.json @@ -166,7 +166,7 @@ { "name": "C1", "top": 130, - "bottom": "NA", + "bottom": 147, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GAMBLER.json b/inst/extdata/OSD/G/GAMBLER.json index 6204c66e5a..9833b69993 100644 --- a/inst/extdata/OSD/G/GAMBLER.json +++ b/inst/extdata/OSD/G/GAMBLER.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1/2 to 0 inch; decomposing needles, leaves, and twigs." + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/G/GAMBOA.json b/inst/extdata/OSD/G/GAMBOA.json index 54e05df7b1..1bf2f227d4 100644 --- a/inst/extdata/OSD/G/GAMBOA.json +++ b/inst/extdata/OSD/G/GAMBOA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GANADO.json b/inst/extdata/OSD/G/GANADO.json index 0a7f6e05b9..cd70f35ea7 100644 --- a/inst/extdata/OSD/G/GANADO.json +++ b/inst/extdata/OSD/G/GANADO.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "Bss2--69 to 127 cm (27 to 50 in); black (10YR 2/1) clay, very dark gray (10YR 3/1) dry; strong medium angular blocky structure; very hard, very firm, sticky and plastic; few fine roots; few very fine tubular pores; common grooved intersecting slickensides; slightly effervescent; moderately alkaline; gradual wavy boundary. (25 to 89 cm [10 to 35 in] thick)" }, + { + "name": "Bss3", + "top": 127, + "bottom": 173, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "clay", + "structure": "strong medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "slightly effervescent", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bss3--127 to 173 (50 to 68 in); very dark gray (10YR 3/1) clay, dark gray (10YR 4/1) dry; strong medium angular blocky structure; very hard, very firm, sticky and plastic: few fine roots; common grooved intersecting slickensides; few fine pitted concretions of calcium carbonate; slightly effervescent; moderately alkaline; gradual wavy boundary. (0 to 38 cm [0 to 15 in] thick)" + }, { "name": "2Bkss", "top": 173, diff --git a/inst/extdata/OSD/G/GANSNER.json b/inst/extdata/OSD/G/GANSNER.json index a7ae2b7b12..ff29ecdf55 100644 --- a/inst/extdata/OSD/G/GANSNER.json +++ b/inst/extdata/OSD/G/GANSNER.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GAP.json b/inst/extdata/OSD/G/GAP.json index f9331b84a5..e2ac565904 100644 --- a/inst/extdata/OSD/G/GAP.json +++ b/inst/extdata/OSD/G/GAP.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GAPPMAYER.json b/inst/extdata/OSD/G/GAPPMAYER.json index cb48035ca1..54b4e0cb80 100644 --- a/inst/extdata/OSD/G/GAPPMAYER.json +++ b/inst/extdata/OSD/G/GAPPMAYER.json @@ -143,7 +143,7 @@ { "name": "A21", "top": "NA", - "bottom": "NA", + "bottom": 48, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, diff --git a/inst/extdata/OSD/G/GARCIA.json b/inst/extdata/OSD/G/GARCIA.json index 8224a2faf0..e97e69072f 100644 --- a/inst/extdata/OSD/G/GARCIA.json +++ b/inst/extdata/OSD/G/GARCIA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GASSVILLE.json b/inst/extdata/OSD/G/GASSVILLE.json index 3f25912e52..24f031f958 100644 --- a/inst/extdata/OSD/G/GASSVILLE.json +++ b/inst/extdata/OSD/G/GASSVILLE.json @@ -231,6 +231,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--38 to 55 inches; yellowish brown (10YR 5/8) weathered dolomite bedrock with red (2.5YR 4/6) clay in cracks and crevices; hardness gradually increasing with depth. (0 to 18 inches thick)." + }, + { + "name": "R", + "top": 140, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--55+ inches; level bedded dolomite bedrock." } ] ] diff --git a/inst/extdata/OSD/G/GATESON.json b/inst/extdata/OSD/G/GATESON.json index 7517b5d80e..82ad303c97 100644 --- a/inst/extdata/OSD/G/GATESON.json +++ b/inst/extdata/OSD/G/GATESON.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GAVEL.json b/inst/extdata/OSD/G/GAVEL.json index 9f701d39ba..07f66c913f 100644 --- a/inst/extdata/OSD/G/GAVEL.json +++ b/inst/extdata/OSD/G/GAVEL.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "0", - "top": "NA", + "name": "O", + "top": 4, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/G/GEERTSEN.json b/inst/extdata/OSD/G/GEERTSEN.json index 797aa02769..99c64077b6 100644 --- a/inst/extdata/OSD/G/GEERTSEN.json +++ b/inst/extdata/OSD/G/GEERTSEN.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GEPPERT.json b/inst/extdata/OSD/G/GEPPERT.json index 12f8f87d24..d0a21da99a 100644 --- a/inst/extdata/OSD/G/GEPPERT.json +++ b/inst/extdata/OSD/G/GEPPERT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 inch to 0; partially decomposed litter of needles, leaves" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/G/GERMANTOWN.json b/inst/extdata/OSD/G/GERMANTOWN.json index 32cee51cc3..dbdfa06902 100644 --- a/inst/extdata/OSD/G/GERMANTOWN.json +++ b/inst/extdata/OSD/G/GERMANTOWN.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C--27 to 36 inches; olive brown (2.5Y 4/4) loam; massive; friable; about 10 percent rock fragments; many 1 to 3 mm diameter dark oxides of iron and manganese; about 15 percent calcium carbonate disseminated throughout and as few 5 to 10 mm diameter soft masses; few coarse distinct yellowish brown (10YR 5/6) iron concentrations; violently effervescent; slightly alkaline; abrupt smooth boundary. (0 to 20 inches thick)" + }, + { + "name": "R", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--36+ inches; pinkish red, hard quartzite bedrock." } ] ] diff --git a/inst/extdata/OSD/G/GETZVILLE.json b/inst/extdata/OSD/G/GETZVILLE.json index 85ad20b5cd..80af2b99b2 100644 --- a/inst/extdata/OSD/G/GETZVILLE.json +++ b/inst/extdata/OSD/G/GETZVILLE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Ap", + "top": 0, + "bottom": 20, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Ap -- 0 to 20 centimketers; dark grayish brown (2.5Y 4/2) silt loam; moderate medium subangular blocky structure; friable; common fine and very fine roots; moderately acid; abrupt smooth boundary. (15 to 25 centimeters thick.)" + }, { "name": "Bg1", "top": 20, diff --git a/inst/extdata/OSD/G/GIANELLA.json b/inst/extdata/OSD/G/GIANELLA.json index 39b6d52cb2..3fd08a0729 100644 --- a/inst/extdata/OSD/G/GIANELLA.json +++ b/inst/extdata/OSD/G/GIANELLA.json @@ -302,7 +302,7 @@ "narrative": "C9--64 to 66 inches, (163 to 168 cm); light brownish gray (10YR 6/2) silt loam, brown (10YR 4/3) moist; 12 percent clay; massive; slightly hard, very friable, slightly sticky, slightly plastic; common fine tubular pores; neutral, pH 6.8 by pH meter 1:1 water; abrupt smooth boundary." }, { - "name": "C10", + "name": "C1O", "top": 168, "bottom": 175, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/G/GIBNEY.json b/inst/extdata/OSD/G/GIBNEY.json index 268db1e975..2e4a566a23 100644 --- a/inst/extdata/OSD/G/GIBNEY.json +++ b/inst/extdata/OSD/G/GIBNEY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GIBSONVILLE.json b/inst/extdata/OSD/G/GIBSONVILLE.json index 97e55dff21..b0012410dc 100644 --- a/inst/extdata/OSD/G/GIBSONVILLE.json +++ b/inst/extdata/OSD/G/GIBSONVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GIBWELL.json b/inst/extdata/OSD/G/GIBWELL.json index fa99e88b65..cc047ef363 100644 --- a/inst/extdata/OSD/G/GIBWELL.json +++ b/inst/extdata/OSD/G/GIBWELL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GLADSTONE.json b/inst/extdata/OSD/G/GLADSTONE.json index a0b05248a0..a307bd0e7e 100644 --- a/inst/extdata/OSD/G/GLADSTONE.json +++ b/inst/extdata/OSD/G/GLADSTONE.json @@ -185,6 +185,29 @@ "distinctness": "gradual", "topography": "irregular", "narrative": "C--40 to 66 inches, strong brown (7.5YR 5/8) very gravelly sandy loam; massive; very friable, nonsticky, nonplastic; few very fine roots; 40 percent subangular gravel; strongly acid; gradual irregular boundary. (10 to 40 inches thick)" + }, + { + "name": "R", + "top": 168, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 3, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--66 + inches, very pale brown (10YR 7/3) and black (10YR 2/1) highly fractured partially weathered granitic gneiss bedrock." } ] ] diff --git a/inst/extdata/OSD/G/GLAZE.json b/inst/extdata/OSD/G/GLAZE.json index e64d4e0693..e23de18084 100644 --- a/inst/extdata/OSD/G/GLAZE.json +++ b/inst/extdata/OSD/G/GLAZE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GLENBLAIR.json b/inst/extdata/OSD/G/GLENBLAIR.json index 6fbe5b3a64..ac3e26038a 100644 --- a/inst/extdata/OSD/G/GLENBLAIR.json +++ b/inst/extdata/OSD/G/GLENBLAIR.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GLENNIE.json b/inst/extdata/OSD/G/GLENNIE.json index b625015450..c4582b7b87 100644 --- a/inst/extdata/OSD/G/GLENNIE.json +++ b/inst/extdata/OSD/G/GLENNIE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GOLDBLUFFS.json b/inst/extdata/OSD/G/GOLDBLUFFS.json index 8f541708f3..23ba1e4b4c 100644 --- a/inst/extdata/OSD/G/GOLDBLUFFS.json +++ b/inst/extdata/OSD/G/GOLDBLUFFS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 3, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.8, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 3 centimeter (0 to 1 inch); very dark brown (10YR 2/2) fresh and slightly decomposed conifer needles, tanoak leaves, and twigs; brown (10YR 5/3) dry; common very fine roots; many very fine and fine interstitial pores; 2 percent well-rounded gravel and 1 percent well-rounded cobbles; very strongly acid (pH 4.8); abrupt smooth boundary. (0 to 3 centimeters thick)" + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/G/GOLDCORD.json b/inst/extdata/OSD/G/GOLDCORD.json index 80b9a0d517..6266ab184a 100644 --- a/inst/extdata/OSD/G/GOLDCORD.json +++ b/inst/extdata/OSD/G/GOLDCORD.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOLDVALE.json b/inst/extdata/OSD/G/GOLDVALE.json index c7e9e37d3e..a5895e6a8a 100644 --- a/inst/extdata/OSD/G/GOLDVALE.json +++ b/inst/extdata/OSD/G/GOLDVALE.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOLDVEIN.json b/inst/extdata/OSD/G/GOLDVEIN.json index db92f2a045..20cc32b5ce 100644 --- a/inst/extdata/OSD/G/GOLDVEIN.json +++ b/inst/extdata/OSD/G/GOLDVEIN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch, slightly decomposed and fresh oak leaves, pine needles and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GOODHOPE.json b/inst/extdata/OSD/G/GOODHOPE.json index 2bf670baa2..de4e9dc63c 100644 --- a/inst/extdata/OSD/G/GOODHOPE.json +++ b/inst/extdata/OSD/G/GOODHOPE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--3 to 1 inches; dark reddish brown (5YR 2/2) partially decomposed forest litter; many fine roots; abrupt, smooth boundary. (1 to 3 inches thick)" }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GOODLOW.json b/inst/extdata/OSD/G/GOODLOW.json index ecc5ba50f2..4c69d9371d 100644 --- a/inst/extdata/OSD/G/GOODLOW.json +++ b/inst/extdata/OSD/G/GOODLOW.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOODPASTER.json b/inst/extdata/OSD/G/GOODPASTER.json index 00d789ccd6..085e7ea5ca 100644 --- a/inst/extdata/OSD/G/GOODPASTER.json +++ b/inst/extdata/OSD/G/GOODPASTER.json @@ -97,7 +97,7 @@ { "name": "Oi2", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOODVIEW.json b/inst/extdata/OSD/G/GOODVIEW.json index b344bb8b5e..be55ecc70e 100644 --- a/inst/extdata/OSD/G/GOODVIEW.json +++ b/inst/extdata/OSD/G/GOODVIEW.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOODWIN.json b/inst/extdata/OSD/G/GOODWIN.json index 7c9b165d58..204811675b 100644 --- a/inst/extdata/OSD/G/GOODWIN.json +++ b/inst/extdata/OSD/G/GOODWIN.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 8, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GOOLAWAY.json b/inst/extdata/OSD/G/GOOLAWAY.json index 0200e04f50..6766b6b515 100644 --- a/inst/extdata/OSD/G/GOOLAWAY.json +++ b/inst/extdata/OSD/G/GOOLAWAY.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GORDO.json b/inst/extdata/OSD/G/GORDO.json index 8424521078..25a95f3887 100644 --- a/inst/extdata/OSD/G/GORDO.json +++ b/inst/extdata/OSD/G/GORDO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GORE.json b/inst/extdata/OSD/G/GORE.json index f6acad64b3..410a80512a 100644 --- a/inst/extdata/OSD/G/GORE.json +++ b/inst/extdata/OSD/G/GORE.json @@ -231,6 +231,52 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "BC--76 to 122 cm (30 to 48 in); gray (10YR 6/1) silty clay; many medium prominent red (2.5YR 4/6) and strong brown (7.5YR 5/6) lithochromic mottles; weak coarse subangular blocky structure; firm; few pockets of very fine sandy loam and silty clay loam in lower part of horizon; very strongly acid; abrupt wavy boundary. (Thickness of the BC horizon is 0 to 61 cm [0 to 24 in])" + }, + { + "name": "Bss", + "top": 122, + "bottom": 147, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "clay", + "structure": "moderate fine subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bss--122 to 147 (48 to 58 in); yellowish red (5YR 5/6) clay; moderate fine subangular blocky structure; firm; few distinct slickensides that do not intersect; moderately acid; clear wavy boundary. (Thickness of the Bss horizon is 0 to 36 cm [0 inch to 14 in])" + }, + { + "name": "C", + "top": 147, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--147 to 203 (58 to 80 in); reddish brown (2.5YR 4/4) clay; massive; firm; few distinct slickensides; few medium prominent grayish brown (2.5Y 5/2) iron depletions with diffuse boundaries; moderately acid." } ] ] diff --git a/inst/extdata/OSD/G/GOZEM.json b/inst/extdata/OSD/G/GOZEM.json index cb4974995b..fa3764f50e 100644 --- a/inst/extdata/OSD/G/GOZEM.json +++ b/inst/extdata/OSD/G/GOZEM.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 1, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GRASSLAND.json b/inst/extdata/OSD/G/GRASSLAND.json index f95743dfe2..a2af913321 100644 --- a/inst/extdata/OSD/G/GRASSLAND.json +++ b/inst/extdata/OSD/G/GRASSLAND.json @@ -71,29 +71,6 @@ ], "HORIZONS": [ [ - { - "name": "designation", - "top": 0, - "bottom": 0, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "NA", - "moist_value": "NA", - "moist_chroma": "NA", - "texture_class": "NA", - "structure": "NA", - "dry_rupture": "NA", - "moist_rupture": "NA", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "NA", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "horizon designation--0 to 00 inches; moist matrix color; texture; dry matrix color; mottles; structure; rupture resistance; manner of failure; stickiness; plasticity; penetration resistance; excavation difficulty (if root limiting); roots; pores; masses; nodules; concretions; depletions; concentrations; ped and void surface features; special features; fragments; effervescence; a,a-dipyridyl response; salinity; odor; reaction; boundary. (00 to 00 inches thick or Combined thickness of the XX horizon is 00 to 00 inches)" - }, { "name": "Ap", "top": 0, diff --git a/inst/extdata/OSD/G/GRAVECREEK.json b/inst/extdata/OSD/G/GRAVECREEK.json index 4cfd40ffa3..459cbc4165 100644 --- a/inst/extdata/OSD/G/GRAVECREEK.json +++ b/inst/extdata/OSD/G/GRAVECREEK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GREENDALE.json b/inst/extdata/OSD/G/GREENDALE.json index 365192a456..41f79b7783 100644 --- a/inst/extdata/OSD/G/GREENDALE.json +++ b/inst/extdata/OSD/G/GREENDALE.json @@ -166,7 +166,7 @@ { "name": "Bwb", "top": 86, - "bottom": "NA", + "bottom": 152, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GREENGULCH.json b/inst/extdata/OSD/G/GREENGULCH.json index b221bbe4e6..1d6bff8244 100644 --- a/inst/extdata/OSD/G/GREENGULCH.json +++ b/inst/extdata/OSD/G/GREENGULCH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1 1/2 inches to 0; partially decomposed grasses, twigs, bark, and leaves." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/G/GRENADIER.json b/inst/extdata/OSD/G/GRENADIER.json index fb69563a61..ba9ad6b945 100644 --- a/inst/extdata/OSD/G/GRENADIER.json +++ b/inst/extdata/OSD/G/GRENADIER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 3 inches; undecomposed organic material principally needles, bark, twigs, and leaves." }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GRENET.json b/inst/extdata/OSD/G/GRENET.json index 3dc354bae0..604a4dc991 100644 --- a/inst/extdata/OSD/G/GRENET.json +++ b/inst/extdata/OSD/G/GRENET.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GREWINGK.json b/inst/extdata/OSD/G/GREWINGK.json index 44493208d4..405ef3f565 100644 --- a/inst/extdata/OSD/G/GREWINGK.json +++ b/inst/extdata/OSD/G/GREWINGK.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -117,6 +117,52 @@ "topography": "wavy", "narrative": "Oe -- 3 inches to 0; dark reddish brown (5YR 2/2) partially decomposed moss, twigs, and roots; slight admixture of volcanic ash, particularly near bottom of horizon; many roots; very strongly acid; abrupt wavy boundary." }, + { + "name": "E", + "top": 0, + "bottom": 4, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "E -- 0 to 1 1/2 inches; dark grayish brown (2.5Y 4/2) coarse silt loam; common medium faint mottles of brown (10YR 4/3); weak thin platy structure; very friable; few roots; very strongly acid; abrupt wavy boundary. (0 to 2 inches thick)" + }, + { + "name": "Bs1", + "top": 4, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bs1 -- 1 1/2 to 4 inches; dark reddish brown (5YR 3/2) and (5YR 3/4) silt loam; weak thin platy structure; friable, slight brittleness at top; few roots; smeary when rubbed; few pebbles with stains on surface; very strongly acid; clear wavy boundary. (1 to 4 inches thick)" + }, { "name": "2Bs2", "top": 10, diff --git a/inst/extdata/OSD/G/GREYSTOKE.json b/inst/extdata/OSD/G/GREYSTOKE.json index fc803f3ed0..38fa0f6a03 100644 --- a/inst/extdata/OSD/G/GREYSTOKE.json +++ b/inst/extdata/OSD/G/GREYSTOKE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GRINDER.json b/inst/extdata/OSD/G/GRINDER.json index 9b0f78b1a3..765680d736 100644 --- a/inst/extdata/OSD/G/GRINDER.json +++ b/inst/extdata/OSD/G/GRINDER.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "weak thin platy", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 7.3, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A -- 0 to 1 centimeter (0 to 0.5 inch); yellowish brown (10YR 5/4) gravelly fine sandy loam, dark yellowish brown (10YR 4/4) moist; weak thin platy structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; few very fine and fine vesicular pores; 19 percent fine gravel and 1 percent medium and coarse gravel; neutral (pH 7.3); abrupt smooth boundary. (1 to 3 centimeters thick)" + }, { "name": "Bt1", "top": 1, diff --git a/inst/extdata/OSD/G/GRIZZLY.json b/inst/extdata/OSD/G/GRIZZLY.json index 1ee3f33379..84e8017829 100644 --- a/inst/extdata/OSD/G/GRIZZLY.json +++ b/inst/extdata/OSD/G/GRIZZLY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 2.5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GROTTO.json b/inst/extdata/OSD/G/GROTTO.json index 29fabff3f6..addf915928 100644 --- a/inst/extdata/OSD/G/GROTTO.json +++ b/inst/extdata/OSD/G/GROTTO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; forest litter; undecomposed needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GROVE.json b/inst/extdata/OSD/G/GROVE.json index c82e54b105..2844e1dc32 100644 --- a/inst/extdata/OSD/G/GROVE.json +++ b/inst/extdata/OSD/G/GROVE.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 6, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--2 1/2 inches to 1 inch; needles, twigs, and leaves." + }, { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GUDGREY.json b/inst/extdata/OSD/G/GUDGREY.json index d0503c2fc8..79f238e0e2 100644 --- a/inst/extdata/OSD/G/GUDGREY.json +++ b/inst/extdata/OSD/G/GUDGREY.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "0", - "top": "NA", + "name": "O", + "top": 4, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/G/GUEMES.json b/inst/extdata/OSD/G/GUEMES.json index 257d02bcb6..d0fb1d1d38 100644 --- a/inst/extdata/OSD/G/GUEMES.json +++ b/inst/extdata/OSD/G/GUEMES.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GUERIN.json b/inst/extdata/OSD/G/GUERIN.json index 8fae634c4f..41bbddb44e 100644 --- a/inst/extdata/OSD/G/GUERIN.json +++ b/inst/extdata/OSD/G/GUERIN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GUGUAK.json b/inst/extdata/OSD/G/GUGUAK.json index dcf2af2c1a..db0767e08f 100644 --- a/inst/extdata/OSD/G/GUGUAK.json +++ b/inst/extdata/OSD/G/GUGUAK.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi1", + "top": 0, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oil--0 to 2 1/2 inches; very dusky red (2.5YR 2/2 broken face) to dusky red (2.5YR 3/2 rubbed) fibric peat; 90 percent fibers, 75 percent rubbed; many fine roots; very strongly acid; abrupt smooth boundary." + }, + { + "name": "Oa1", + "top": 6, + "bottom": 15, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10R", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "weak coarse subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oal--2 1/2 to 6 inches; reddish black (10R 2/1) peat; 60 percent fibers, 10 percent rubbed; weak coarse subangular blocky structure; many fine roots; very strongly acid; abrupt smooth boundary." + }, { "name": "IIC1", "top": 15, diff --git a/inst/extdata/OSD/G/GUILDER.json b/inst/extdata/OSD/G/GUILDER.json index 78433efbef..d954ddb129 100644 --- a/inst/extdata/OSD/G/GUILDER.json +++ b/inst/extdata/OSD/G/GUILDER.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GULKANA.json b/inst/extdata/OSD/G/GULKANA.json index 4f4eedaf9b..0d049e7089 100644 --- a/inst/extdata/OSD/G/GULKANA.json +++ b/inst/extdata/OSD/G/GULKANA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GULNARE.json b/inst/extdata/OSD/G/GULNARE.json index e12fa3e465..cfb384f666 100644 --- a/inst/extdata/OSD/G/GULNARE.json +++ b/inst/extdata/OSD/G/GULNARE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/G/GURABO.json b/inst/extdata/OSD/G/GURABO.json index 54a2e60f8e..69279dabb0 100644 --- a/inst/extdata/OSD/G/GURABO.json +++ b/inst/extdata/OSD/G/GURABO.json @@ -231,6 +231,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "4C--48 to 62 inches; mixed colors of the weathered rock fragments; rubbed color yellowish brown (10YR 5/4) gravelly clay loam; weak coarse subangular blocky structure; friable; slightly sticky, slightly plastic; faint pressure faces on surfaces of peds; slightly acid; gradual wavy boundary." + }, + { + "name": "5C", + "top": 157, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "5C--62 to 80+ inches; coarse-textured partially weathered igneous rock fragments." } ] ] diff --git a/inst/extdata/OSD/G/GURDON.json b/inst/extdata/OSD/G/GURDON.json index 923227c646..43ac69de24 100644 --- a/inst/extdata/OSD/G/GURDON.json +++ b/inst/extdata/OSD/G/GURDON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/G/GUYANDOTTE.json b/inst/extdata/OSD/G/GUYANDOTTE.json index 60ec308dbc..c7eff216f2 100644 --- a/inst/extdata/OSD/G/GUYANDOTTE.json +++ b/inst/extdata/OSD/G/GUYANDOTTE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HAFUL.json b/inst/extdata/OSD/H/HAFUL.json index df913c1d2c..3f81febe56 100644 --- a/inst/extdata/OSD/H/HAFUL.json +++ b/inst/extdata/OSD/H/HAFUL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oi--1/2 inch to 0; recent and decomposing fir needles, twigs and other litter; abrupt wavy boundary." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/H/HAGSTADT.json b/inst/extdata/OSD/H/HAGSTADT.json index c26fffdac8..6ad53e1ded 100644 --- a/inst/extdata/OSD/H/HAGSTADT.json +++ b/inst/extdata/OSD/H/HAGSTADT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HALLIHAN.json b/inst/extdata/OSD/H/HALLIHAN.json index d722c124aa..f9590c0ad5 100644 --- a/inst/extdata/OSD/H/HALLIHAN.json +++ b/inst/extdata/OSD/H/HALLIHAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HALL_RANCH.json b/inst/extdata/OSD/H/HALL_RANCH.json index 9930864e0b..aa58f45149 100644 --- a/inst/extdata/OSD/H/HALL_RANCH.json +++ b/inst/extdata/OSD/H/HALL_RANCH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HAMBRIGHT.json b/inst/extdata/OSD/H/HAMBRIGHT.json index ec34ea9ee1..5598ab8f6e 100644 --- a/inst/extdata/OSD/H/HAMBRIGHT.json +++ b/inst/extdata/OSD/H/HAMBRIGHT.json @@ -97,7 +97,7 @@ { "name": "AB", "top": 3, - "bottom": "NA", + "bottom": 15, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, diff --git a/inst/extdata/OSD/H/HAMMERSLEY.json b/inst/extdata/OSD/H/HAMMERSLEY.json index 29e9d2d6d2..590502d97b 100644 --- a/inst/extdata/OSD/H/HAMMERSLEY.json +++ b/inst/extdata/OSD/H/HAMMERSLEY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HANAGITA.json b/inst/extdata/OSD/H/HANAGITA.json index 65913d206d..8e0ccbf10f 100644 --- a/inst/extdata/OSD/H/HANAGITA.json +++ b/inst/extdata/OSD/H/HANAGITA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HANDSHOE.json b/inst/extdata/OSD/H/HANDSHOE.json index 824d7f0ba1..48070d1a4c 100644 --- a/inst/extdata/OSD/H/HANDSHOE.json +++ b/inst/extdata/OSD/H/HANDSHOE.json @@ -208,6 +208,52 @@ "distinctness": "clear", "topography": "smooth", "narrative": "Bw3--127 to 155 cm (50 to 61 inches); yellowish brown (10YR 5/6) channery sandy loam; moderate medium subangular blocky structure; firm; very few very fine roots; 20 percent sandstone channers; strongly acid; clear smooth boundary. Combined thickness of the Bw horizon is 79 to 191 cm (30 to 75 inches)" + }, + { + "name": "BC", + "top": 155, + "bottom": 173, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "sandy loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "very channery", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "BC--155 to 173 (61 to 68 inches); yellowish brown (10YR 5/6) very channery sandy loam; weak medium subangular blocky structure; firm; very few very fine roots; 45 percent sandstone channers; strongly acid; gradual smooth boundary." + }, + { + "name": "CB", + "top": 173, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "sandy loam", + "structure": "weak coarse subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "very channery", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "CB--173 to 203 (68 to 80 inches); yellowish brown (10YR 5/6) very channery sandy loam; weak coarse subangular blocky structure; firm; very few very fine roots; 50 percent sandstone channers; very strongly acid. Combined thickness of the BC and CB horizons is 0 to 102 cm (0 to 40 inches)" } ] ] diff --git a/inst/extdata/OSD/H/HANNEGAN.json b/inst/extdata/OSD/H/HANNEGAN.json index 9caf06ae7d..ac0c09cf76 100644 --- a/inst/extdata/OSD/H/HANNEGAN.json +++ b/inst/extdata/OSD/H/HANNEGAN.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HARBOR.json b/inst/extdata/OSD/H/HARBOR.json index 79a23e02a2..ff05bac9e7 100644 --- a/inst/extdata/OSD/H/HARBOR.json +++ b/inst/extdata/OSD/H/HARBOR.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "Bw1 -- 33 to 48 centimeters; yellowish brown (10YR 5/4) fine sandy loam; weak fine and medium platy structure parting to weak fine and medium subangular blocky; loose; common very fine and fine roots; few distinct dark brown (10YR 3/3) organic coats in root channels; common medium prominent strong brown (7.5YR 5/8) and fine and medium red (10R 4/6) masses of iron accumulation in the matrix; 1 percent rock fragments; strongly acid; clear wavy boundary." }, + { + "name": "Bw2", + "top": 48, + "bottom": 64, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "weak very fine platy", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw2 -- 48 to 64 centiemters; yellowish brown (10YR 5/4) fine sandy loam; weak very fine platy structure with weak coarse subangular blocky in some parts; loose; few very fine and fine roots; very few prominent dark brown (10YR 3/3) organic coats in root channels; common medium and coarse distinct light brownish gray (10YR 6/2) areas of iron depletion in the matrix; common fine and medium distinct yellowish brown (10YR 5/6) and common fine prominent red (10R 4/6) masses of iron accumulation in the matrix; strongly acid; clear wavy boundary." + }, { "name": "Bw3", "top": 64, diff --git a/inst/extdata/OSD/H/HARDIN_HEIGHTS.json b/inst/extdata/OSD/H/HARDIN_HEIGHTS.json index 53be53e957..78f649d6d2 100644 --- a/inst/extdata/OSD/H/HARDIN_HEIGHTS.json +++ b/inst/extdata/OSD/H/HARDIN_HEIGHTS.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C2--15 to 20 inches; light yellowish brown (10YR 6/4) silty clay; massive; firm; few fine and medium roots; few fine yellowish brown (10YR 5/6) splotches and streaks; about 20 percent, by volume white (10YR 8/1) limestone fragments and concretions; moderately alkaline; clear wavy boundary (Combined thickness of the C horizons range from 2 to 13 inches)." + }, + { + "name": "R", + "top": 51, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 8, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--20+ inches; white (10YR 8/1) limestone that is rippable by mechanized equipment." } ] ] diff --git a/inst/extdata/OSD/H/HARECREEK.json b/inst/extdata/OSD/H/HARECREEK.json index ff54d2102c..6d3bd53c47 100644 --- a/inst/extdata/OSD/H/HARECREEK.json +++ b/inst/extdata/OSD/H/HARECREEK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HARKERS.json b/inst/extdata/OSD/H/HARKERS.json index af8a85484e..6063783e51 100644 --- a/inst/extdata/OSD/H/HARKERS.json +++ b/inst/extdata/OSD/H/HARKERS.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "B21t--19 to 42 inches; brown (7.5YR 5/4) gravelly clay, dark reddish brown (5YR 3/4) moist ped; brown (7.5YR 4/3) moist; strong medium prismatic structure that parts to strong medium blocky structure; very hard, extremely firm, very sticky, very plastic; few coarse medium fine and very fine roots; few very fine pores; clay films are moderately thick continuous on faces of peds; 30 percent gravel; neutral (pH 7.Z); gradual wavy boundary. (15 to 24 inches thick)" }, + { + "name": "B22t", + "top": 107, + "bottom": 147, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "strong medium blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "B22t--42 to 58; Brown (7.5YR 5/4) very gravelly clay, dark reddish brown (5YR 3/4) moist ped, brown (7.5YR 4/3) crushed moist; strong medium prismatic structure that parts to strong medium blocky structure; very hard, extremely firm, very sticky, very plastic; few fine and very fine roots; few very fine pores; clay films are moderately thick continuous on faces of peds; 55 percent gravel; neutral (pH 7.0); clear smooth boundary. (12 to 24 inches thick)" + }, { "name": "Clca", "top": 147, diff --git a/inst/extdata/OSD/H/HARPER.json b/inst/extdata/OSD/H/HARPER.json index b9f35117b4..99cb6823b8 100644 --- a/inst/extdata/OSD/H/HARPER.json +++ b/inst/extdata/OSD/H/HARPER.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "A2--18 to 43 cm (7 to 17 in); black (10YR 2/1) clay, black (10YR 2/1) moist; moderate fine and medium angular blocky structure; hard, firm, sticky and plastic; common fine and medium roots; noncalcareous; moderately alkaline; abrupt wavy boundary. (Combined thickness is 10 to 50 cm [4 to 20 in])" + }, + { + "name": "R", + "top": 43, + "bottom": 68, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "indurated", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--43 to 68 (17 to 27 in); indurated, fractured dolomitic limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/H/HARTLESS.json b/inst/extdata/OSD/H/HARTLESS.json index 28b7e83502..8486be5298 100644 --- a/inst/extdata/OSD/H/HARTLESS.json +++ b/inst/extdata/OSD/H/HARTLESS.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HARTNIT.json b/inst/extdata/OSD/H/HARTNIT.json index 1d746c15d8..0a05598123 100644 --- a/inst/extdata/OSD/H/HARTNIT.json +++ b/inst/extdata/OSD/H/HARTNIT.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 15, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HATCH.json b/inst/extdata/OSD/H/HATCH.json index 035c4d2e45..a801f19174 100644 --- a/inst/extdata/OSD/H/HATCH.json +++ b/inst/extdata/OSD/H/HATCH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 inch to 0; conifer needles and twigs." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/H/HAUGAN.json b/inst/extdata/OSD/H/HAUGAN.json index 96fb3ed78e..0e16fb1dae 100644 --- a/inst/extdata/OSD/H/HAUGAN.json +++ b/inst/extdata/OSD/H/HAUGAN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HAVENSNECK.json b/inst/extdata/OSD/H/HAVENSNECK.json index b2fa71fd9f..88951c77d6 100644 --- a/inst/extdata/OSD/H/HAVENSNECK.json +++ b/inst/extdata/OSD/H/HAVENSNECK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HAVERLY.json b/inst/extdata/OSD/H/HAVERLY.json index ff08be3de4..7daea04061 100644 --- a/inst/extdata/OSD/H/HAVERLY.json +++ b/inst/extdata/OSD/H/HAVERLY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HAYWIRE.json b/inst/extdata/OSD/H/HAYWIRE.json index 5e92f20d95..86acd35cf0 100644 --- a/inst/extdata/OSD/H/HAYWIRE.json +++ b/inst/extdata/OSD/H/HAYWIRE.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed forest litter, needles and twigs; abrupt smooth boundary. (0 to 2 inches thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe--1/2 to 1 inch; moderately decomposed forest litter; common fine, medium, and coarse roots; abrupt smooth boundary. (1/2 to 3 inches thick)" + }, { "name": "E", "top": 3, diff --git a/inst/extdata/OSD/H/HAZELCAMP.json b/inst/extdata/OSD/H/HAZELCAMP.json index 39c3dc8276..a32212562e 100644 --- a/inst/extdata/OSD/H/HAZELCAMP.json +++ b/inst/extdata/OSD/H/HAZELCAMP.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HEARNE.json b/inst/extdata/OSD/H/HEARNE.json index f818a2f653..056b2431ad 100644 --- a/inst/extdata/OSD/H/HEARNE.json +++ b/inst/extdata/OSD/H/HEARNE.json @@ -97,7 +97,7 @@ { "name": "E", "top": 18, - "bottom": "NA", + "bottom": 25, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, @@ -119,8 +119,8 @@ }, { "name": "Bt1", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 46, "dry_hue": "2.5YR", "dry_value": 4, "dry_chroma": 6, @@ -142,7 +142,7 @@ }, { "name": "Bt2", - "top": "NA", + "top": 46, "bottom": 64, "dry_hue": "2.5YR", "dry_value": 5, @@ -166,7 +166,7 @@ { "name": "BC", "top": 64, - "bottom": "NA", + "bottom": 79, "dry_hue": "2.5YR", "dry_value": 5, "dry_chroma": 6, @@ -188,7 +188,7 @@ }, { "name": "C1", - "top": "NA", + "top": 79, "bottom": 94, "dry_hue": "5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/H/HEFLIN.json b/inst/extdata/OSD/H/HEFLIN.json index e6c68dd950..d63d3f882a 100644 --- a/inst/extdata/OSD/H/HEFLIN.json +++ b/inst/extdata/OSD/H/HEFLIN.json @@ -186,6 +186,29 @@ "topography": "wavy", "narrative": "BC--25 to 36 inches; yellowish brown (10YR 5/4) clay loam, dark yellowish brown (10YR 4/4) moist; massive; hard, very firm, sticky, plastic; very few roots; slightly acid; clear wavy boundary. (10 to 12 inches thick)" }, + { + "name": "C", + "top": 91, + "bottom": 142, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sandy clay loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "C--36 TO 56 inches; pale brown (10YR 6/3) sandy clay loam; massive; slightly hard, firm, slightly acid; clear smooth boundary. (16 to 24 inches)" + }, { "name": "Cr", "top": 142, diff --git a/inst/extdata/OSD/H/HEHE.json b/inst/extdata/OSD/H/HEHE.json index 71455eb408..54085df2b6 100644 --- a/inst/extdata/OSD/H/HEHE.json +++ b/inst/extdata/OSD/H/HEHE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HEISLER.json b/inst/extdata/OSD/H/HEISLER.json index 8ff4cad243..4b894e9661 100644 --- a/inst/extdata/OSD/H/HEISLER.json +++ b/inst/extdata/OSD/H/HEISLER.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "OI", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0I--1 to 1/2 inch; undecomposed needles, leaves, and twigs." + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oa--1/2 inch to 0; decomposed organic matter; abrupt wavy boundary." + }, { "name": "Bs1", "top": 0, diff --git a/inst/extdata/OSD/H/HEMCROSS.json b/inst/extdata/OSD/H/HEMCROSS.json index 8f36c026ef..33b8c2a091 100644 --- a/inst/extdata/OSD/H/HEMCROSS.json +++ b/inst/extdata/OSD/H/HEMCROSS.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HENCRATT.json b/inst/extdata/OSD/H/HENCRATT.json index 62cbfb4c33..3f88312516 100644 --- a/inst/extdata/OSD/H/HENCRATT.json +++ b/inst/extdata/OSD/H/HENCRATT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1 1/2 to 0 inches; litter of pine needles" + }, { "name": "A11", "top": 0, diff --git a/inst/extdata/OSD/H/HEWENT.json b/inst/extdata/OSD/H/HEWENT.json index 84e5182dc1..732eb45eee 100644 --- a/inst/extdata/OSD/H/HEWENT.json +++ b/inst/extdata/OSD/H/HEWENT.json @@ -188,7 +188,7 @@ }, { "name": "R", - "top": "NA", + "top": 67, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/H/HIBERNIA.json b/inst/extdata/OSD/H/HIBERNIA.json index 1b33ab33e2..59a5244d1b 100644 --- a/inst/extdata/OSD/H/HIBERNIA.json +++ b/inst/extdata/OSD/H/HIBERNIA.json @@ -212,7 +212,7 @@ { "name": "C2", "top": 157, - "bottom": "NA", + "bottom": 183, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HIERRO.json b/inst/extdata/OSD/H/HIERRO.json index c064700d22..0e957f7872 100644 --- a/inst/extdata/OSD/H/HIERRO.json +++ b/inst/extdata/OSD/H/HIERRO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i1", + "name": "Oi1", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i1--0 to 1 inches; slightly decomposed forest litter consisting primarily of needles, bark, and twigs." }, { - "name": "0e2", + "name": "Oe2", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HIGHBANK.json b/inst/extdata/OSD/H/HIGHBANK.json index 39a931947f..fc6fdc25e3 100644 --- a/inst/extdata/OSD/H/HIGHBANK.json +++ b/inst/extdata/OSD/H/HIGHBANK.json @@ -187,8 +187,8 @@ "narrative": "Bw3--48 to 56 inches; reddish brown (5YR 4/3) clay, dark reddish brown (5YR 3/3) moist; weak medium angular blocky structure; very hard, very firm, very sticky and very plastic; few fine roots; few very fine pores; few small slickensides; common pressure faces; few bedding planes; strongly effervescent; moderately alkaline; gradual smooth boundary. (combined thickness of the Bw horizon is 20 to 65 inches)" }, { - "name": "to", - "top": 157, + "name": "BC", + "top": 142, "bottom": "NA", "dry_hue": "5YR", "dry_value": 4, diff --git a/inst/extdata/OSD/H/HIGHCAMP.json b/inst/extdata/OSD/H/HIGHCAMP.json index 4840270e32..7e66570d08 100644 --- a/inst/extdata/OSD/H/HIGHCAMP.json +++ b/inst/extdata/OSD/H/HIGHCAMP.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HIGHHORN.json b/inst/extdata/OSD/H/HIGHHORN.json index 19b12a1a17..a4cc08347d 100644 --- a/inst/extdata/OSD/H/HIGHHORN.json +++ b/inst/extdata/OSD/H/HIGHHORN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HILINE.json b/inst/extdata/OSD/H/HILINE.json index 6f95c5855b..7838762308 100644 --- a/inst/extdata/OSD/H/HILINE.json +++ b/inst/extdata/OSD/H/HILINE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HILTABIDEL.json b/inst/extdata/OSD/H/HILTABIDEL.json index 11c8217180..178ae58539 100644 --- a/inst/extdata/OSD/H/HILTABIDEL.json +++ b/inst/extdata/OSD/H/HILTABIDEL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; litter of knobcone pine and manzanita leaves and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/H/HISNA.json b/inst/extdata/OSD/H/HISNA.json index 462a22e8bb..d9f178dd8b 100644 --- a/inst/extdata/OSD/H/HISNA.json +++ b/inst/extdata/OSD/H/HISNA.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HITCHCOCK.json b/inst/extdata/OSD/H/HITCHCOCK.json index 379eaf5381..9f637bf766 100644 --- a/inst/extdata/OSD/H/HITCHCOCK.json +++ b/inst/extdata/OSD/H/HITCHCOCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HOBIT.json b/inst/extdata/OSD/H/HOBIT.json index 18501cbd1d..cee313ee9f 100644 --- a/inst/extdata/OSD/H/HOBIT.json +++ b/inst/extdata/OSD/H/HOBIT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOCAR.json b/inst/extdata/OSD/H/HOCAR.json index 41862ea41d..1b4d5e176d 100644 --- a/inst/extdata/OSD/H/HOCAR.json +++ b/inst/extdata/OSD/H/HOCAR.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 3; pine litter. (0 to 8 cm thick)" + }, { "name": "A1", "top": 3, diff --git a/inst/extdata/OSD/H/HOCONUCO.json b/inst/extdata/OSD/H/HOCONUCO.json index 868e2e1c8d..3fa418e956 100644 --- a/inst/extdata/OSD/H/HOCONUCO.json +++ b/inst/extdata/OSD/H/HOCONUCO.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--14 to 37 inches; hard fractured and moderately weathered serpentinite bedrock. (5 to 25 inches thick)" + }, + { + "name": "R", + "top": 94, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--37+ inches; hard fractured consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/H/HODA.json b/inst/extdata/OSD/H/HODA.json index bd0f0f876b..c37289c129 100644 --- a/inst/extdata/OSD/H/HODA.json +++ b/inst/extdata/OSD/H/HODA.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi1", + "top": 8, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi1--3 to 1/2 inches; pine needles, oak leaves, twigs and litter." + }, + { + "name": "Oi2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi2--1/2 to 0 inches; partially decomposed litter." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/H/HOFFSTADT.json b/inst/extdata/OSD/H/HOFFSTADT.json index a28ffdddb8..c37adffec5 100644 --- a/inst/extdata/OSD/H/HOFFSTADT.json +++ b/inst/extdata/OSD/H/HOFFSTADT.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOGAN.json b/inst/extdata/OSD/H/HOGAN.json index cf1f6999f6..a51ed269c0 100644 --- a/inst/extdata/OSD/H/HOGAN.json +++ b/inst/extdata/OSD/H/HOGAN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOHMANN.json b/inst/extdata/OSD/H/HOHMANN.json index f4cc7ab323..e1b2df7c1b 100644 --- a/inst/extdata/OSD/H/HOHMANN.json +++ b/inst/extdata/OSD/H/HOHMANN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 6, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "Loose", + "moist_rupture": "Loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--2 1/2 to 0 inches; Loose litter of leaves over very thin partly decomposed organic matter. (0 to 3 inches thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/H/HOLLISTER.json b/inst/extdata/OSD/H/HOLLISTER.json index 4c0397faed..73fd771129 100644 --- a/inst/extdata/OSD/H/HOLLISTER.json +++ b/inst/extdata/OSD/H/HOLLISTER.json @@ -208,6 +208,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Bkssy2--152 to 178 cm (60 to 70 in); yellowish red (5YR 5/6) clay, yellowish red (5YR 4/6) moist; moderate coarse wedge-shaped aggregates parting to moderate medium angular blocky structure; hard, friable; few fine pores; many distinct slickensides; few pockets of gypsum; 5 to 10 percent masses of calcium carbonate; strongly effervescent; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bkssy horizon is 6 to 112 cm [15 to 44 in])" + }, + { + "name": "2BCss", + "top": 178, + "bottom": 203, + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "clay", + "structure": "weak coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "2BCss--178 to 203 (70 to 80 in); red (2.5YR 5/6) clay, red (2.5YR 4/6) moist; laminated with light gray or light olive gray weathered claystone; weak coarse angular blocky structure; very hard, firm; common distinct slickensides; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/H/HOLLOW.json b/inst/extdata/OSD/H/HOLLOW.json index af75ff7659..ae71500385 100644 --- a/inst/extdata/OSD/H/HOLLOW.json +++ b/inst/extdata/OSD/H/HOLLOW.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOMESTEAD.json b/inst/extdata/OSD/H/HOMESTEAD.json index d6407ca1df..5b8edee1b9 100644 --- a/inst/extdata/OSD/H/HOMESTEAD.json +++ b/inst/extdata/OSD/H/HOMESTEAD.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HONEYDEW.json b/inst/extdata/OSD/H/HONEYDEW.json index 46488507e8..5bfbe26e60 100644 --- a/inst/extdata/OSD/H/HONEYDEW.json +++ b/inst/extdata/OSD/H/HONEYDEW.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HONOMANU.json b/inst/extdata/OSD/H/HONOMANU.json index 88496cee91..458a4d3503 100644 --- a/inst/extdata/OSD/H/HONOMANU.json +++ b/inst/extdata/OSD/H/HONOMANU.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOODSPORT.json b/inst/extdata/OSD/H/HOODSPORT.json index 370338c6ec..03732d4429 100644 --- a/inst/extdata/OSD/H/HOODSPORT.json +++ b/inst/extdata/OSD/H/HOODSPORT.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 6, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--2 1/2 inches to 1 inch; needles, leaves, wood, and bark." + }, { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOOKBRANCH.json b/inst/extdata/OSD/H/HOOKBRANCH.json index f6b7f03e4d..9497686c40 100644 --- a/inst/extdata/OSD/H/HOOKBRANCH.json +++ b/inst/extdata/OSD/H/HOOKBRANCH.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed needles, leaves, twigs, and cone fragments; abrupt smooth boundary. (1/2 to 3 inches thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe--1/2 to 1 inch; moderately decomposed organic materials; abrupt smooth boundary. (0 to 1 1/2 inches thick)" + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/H/HOOSKANADEN.json b/inst/extdata/OSD/H/HOOSKANADEN.json index a86046776f..b588e0142c 100644 --- a/inst/extdata/OSD/H/HOOSKANADEN.json +++ b/inst/extdata/OSD/H/HOOSKANADEN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOOTER.json b/inst/extdata/OSD/H/HOOTER.json index b3d48b47d5..0e047b15ca 100644 --- a/inst/extdata/OSD/H/HOOTER.json +++ b/inst/extdata/OSD/H/HOOTER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 8, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--3 to 2 inches; Forest litter of slightly decomposed needles, twigs and cones." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HOPBURN.json b/inst/extdata/OSD/H/HOPBURN.json index a26c52e383..8bda3db021 100644 --- a/inst/extdata/OSD/H/HOPBURN.json +++ b/inst/extdata/OSD/H/HOPBURN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--1/2 to 0 inches; forest litter of needles and grass leaves; abrupt smooth boundary." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/H/HORSESHOE.json b/inst/extdata/OSD/H/HORSESHOE.json index 669c1ffed7..00931e4fb9 100644 --- a/inst/extdata/OSD/H/HORSESHOE.json +++ b/inst/extdata/OSD/H/HORSESHOE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HOSKIN.json b/inst/extdata/OSD/H/HOSKIN.json index da40663b11..d35135957f 100644 --- a/inst/extdata/OSD/H/HOSKIN.json +++ b/inst/extdata/OSD/H/HOSKIN.json @@ -94,6 +94,29 @@ "topography": "wavy", "narrative": "Al--0 to 7 inches; brown (7.5YR 4/3) cobbly loam, dark brown (7.5YR 3/2) moist; weak fine granular structure; soft, friable, nonsticky and slightly plastic; many fine and medium and large roots; 40 percent gravel and cobbles; neutral (pH 6.8); clear wavy boundary. (7 to 19 inches thick)" }, + { + "name": "B2t", + "top": 18, + "bottom": 41, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very cobbly", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "B2t--7 to 16; brown (7.5YR 5/4) very cobbly heavy loam, dark brown (7.5YR 3/4) moist; weak medium subangular blocky structure that parts to weak fine subangular blocky structure; slightly hard, friable, nonsticky and slightly plastic; many fine and medium roots; many fine pores; common thin clay films; 60 Percent gravel and cobbles; neutral (pH 7.0); gradual wavy boundary. (8 to 25 inches thick)" + }, { "name": "C", "top": 15, diff --git a/inst/extdata/OSD/H/HOTEL.json b/inst/extdata/OSD/H/HOTEL.json index 524b30e67f..a34efb7ff3 100644 --- a/inst/extdata/OSD/H/HOTEL.json +++ b/inst/extdata/OSD/H/HOTEL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOUDEK.json b/inst/extdata/OSD/H/HOUDEK.json index b6d7677c75..1de5b612b0 100644 --- a/inst/extdata/OSD/H/HOUDEK.json +++ b/inst/extdata/OSD/H/HOUDEK.json @@ -97,7 +97,7 @@ { "name": "Bt1", "top": 15, - "bottom": "NA", + "bottom": 25, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, diff --git a/inst/extdata/OSD/H/HOUSEFIELD.json b/inst/extdata/OSD/H/HOUSEFIELD.json index 80851289f7..9221673b36 100644 --- a/inst/extdata/OSD/H/HOUSEFIELD.json +++ b/inst/extdata/OSD/H/HOUSEFIELD.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOVDE.json b/inst/extdata/OSD/H/HOVDE.json index 323e021803..1cc5112399 100644 --- a/inst/extdata/OSD/H/HOVDE.json +++ b/inst/extdata/OSD/H/HOVDE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", - "top": "NA", - "bottom": "NA", + "name": "Oi", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "A", "top": 0, - "bottom": 9, + "bottom": 23, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,8 +119,8 @@ }, { "name": "2C1", - "top": 9, - "bottom": "NA", + "top": 23, + "bottom": 33, "dry_hue": "2.5Y", "dry_value": 5, "dry_chroma": 2, @@ -142,8 +142,8 @@ }, { "name": "2C2", - "top": "NA", - "bottom": 29, + "top": 33, + "bottom": 74, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "2C3", - "top": 29, - "bottom": 39, + "top": 74, + "bottom": 99, "dry_hue": "2.5Y", "dry_value": 5, "dry_chroma": 2, @@ -188,8 +188,8 @@ }, { "name": "2C4", - "top": 39, - "bottom": 60, + "top": 99, + "bottom": 152, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 2, diff --git a/inst/extdata/OSD/H/HOWASH.json b/inst/extdata/OSD/H/HOWASH.json index af6b90ccfd..f77320f88e 100644 --- a/inst/extdata/OSD/H/HOWASH.json +++ b/inst/extdata/OSD/H/HOWASH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HOZOMEEN.json b/inst/extdata/OSD/H/HOZOMEEN.json index a9d2bcdaf5..c0bd73678b 100644 --- a/inst/extdata/OSD/H/HOZOMEEN.json +++ b/inst/extdata/OSD/H/HOZOMEEN.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HUDSPETH.json b/inst/extdata/OSD/H/HUDSPETH.json index f03628d63d..251b429ed2 100644 --- a/inst/extdata/OSD/H/HUDSPETH.json +++ b/inst/extdata/OSD/H/HUDSPETH.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HUICHICA.json b/inst/extdata/OSD/H/HUICHICA.json index 458f4a536b..1adfe89904 100644 --- a/inst/extdata/OSD/H/HUICHICA.json +++ b/inst/extdata/OSD/H/HUICHICA.json @@ -186,6 +186,29 @@ "topography": "irregular", "narrative": "IIC1m--30 to 36 inches; white (2.5Y 8/2) sandy loam, dark brown (10YR 4/3) moist with light olive brown mottles; massive; very hard, slightly sticky, nonplastic; few fine roots; common very fine interstitial and fine tubular pores; continuous moderately thick to thick clay films in pores and as bridges, moderately alkaline; strongly cemented; gradual irregular boundary." }, + { + "name": "IIC2m", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 8, + "moist_chroma": 2, + "texture_class": "loamy sand", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "indurated", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "IIC2m--36 tp 47 inches; white (2.5Y 8/2) loamy sand, (10YR 4/3) moist, with common fine distinct mottles of dark brown; massive breaking to moderate subangular blocky structure; very hard, very firm, nonsticky, nonplastic; no roots; common fine and very fine interstitial pores; manganese stains and continuous thick clay films along fracture planes, moderately alkaline, variable cementation, weak to indurated, clear wavy boundary." + }, { "name": "IIIC3", "top": 119, diff --git a/inst/extdata/OSD/H/HUKILL.json b/inst/extdata/OSD/H/HUKILL.json index b9fa9f9d4b..8631f93eff 100644 --- a/inst/extdata/OSD/H/HUKILL.json +++ b/inst/extdata/OSD/H/HUKILL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 inch to 0; conifer needles and forest litter, loose" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/H/HULUA.json b/inst/extdata/OSD/H/HULUA.json index 051e569a75..e5358cf763 100644 --- a/inst/extdata/OSD/H/HULUA.json +++ b/inst/extdata/OSD/H/HULUA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HUMSKEL.json b/inst/extdata/OSD/H/HUMSKEL.json index d1566734b4..cc0b43e988 100644 --- a/inst/extdata/OSD/H/HUMSKEL.json +++ b/inst/extdata/OSD/H/HUMSKEL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/H/HUN.json b/inst/extdata/OSD/H/HUN.json index 8bfccbdaa9..02244c894e 100644 --- a/inst/extdata/OSD/H/HUN.json +++ b/inst/extdata/OSD/H/HUN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 4, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1.5 inches; needles, leaves, twigs and cones." }, { - "name": "0e", + "name": "Oe", "top": 4, "bottom": 5, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/H/HUNTROCK.json b/inst/extdata/OSD/H/HUNTROCK.json index ad9ca09c98..ad3c019113 100644 --- a/inst/extdata/OSD/H/HUNTROCK.json +++ b/inst/extdata/OSD/H/HUNTROCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HURST.json b/inst/extdata/OSD/H/HURST.json index 05d79dd86e..2ef2b460b0 100644 --- a/inst/extdata/OSD/H/HURST.json +++ b/inst/extdata/OSD/H/HURST.json @@ -254,6 +254,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "2Btkg1--157 to 193 centimeters (62 to 76 inches); olive gray (5Y 4/2) silty clay; weak medium prismatic structure parting to moderate medium angular blocky; very firm; few very fine roots; common distinct olive gray (5Y 4/2) clay films on faces of peds; common distinct very dark brown (7.5YR 2.5/3) masses of oxidized iron and manganese on faces of peds and lining large channels; few fine prominent yellowish brown (10YR 5/4) masses of oxidized iron in the matrix; few fine prominent irregular black (7.5YR 2.5/1) extremely weakly cemented iron-manganese accumulations with diffuse strong brown (7.5YR 5/6) boundaries; common fine and medium prominent irregular white (10YR 8/1) (dry) carbonate concretions; about 45 percent clay; strongly effervescent; slightly alkaline; clear smooth boundary." + }, + { + "name": "2Btkg2", + "top": 193, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "silty clay loam", + "structure": "weak medium prismatic", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "weakly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Btkg2--193 to 203 (76 to 80 inches); grayish brown (2.5Y 5/2) silty clay loam; weak medium prismatic structure parting to weak medium angular blocky; firm; few distinct dark grayish brown (10YR 4/2) clay films lining vertical channels; common medium prominent strong brown (7.5YR 4/6) masses of oxidized iron along vertical channels; few fine distinct yellowish brown (10YR 5/4) masses of oxidized iron in the matrix; common fine prominent irregular very dark brown (7.5YR 2.5/2) extremely weakly cemented iron-manganese accumulations with diffuse strong brown (7.5YR 5/6) boundaries; about 33 percent clay; slightly alkaline. (Combined thickness of the 2Btkg horizons is 0 to 46 centimeters or 0 to 18 inches.)" } ] ] diff --git a/inst/extdata/OSD/H/HUSE.json b/inst/extdata/OSD/H/HUSE.json index 68cb66ed02..6a19d286d4 100644 --- a/inst/extdata/OSD/H/HUSE.json +++ b/inst/extdata/OSD/H/HUSE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HUSKA.json b/inst/extdata/OSD/H/HUSKA.json index 673bc6bc29..4da9a06022 100644 --- a/inst/extdata/OSD/H/HUSKA.json +++ b/inst/extdata/OSD/H/HUSKA.json @@ -164,7 +164,7 @@ "narrative": "Btnyz--64 to 86 cm (25 to 34 in); yellowish red (5YR 5/6) clay, yellowish red (5YR 4/6) moist; weak medium blocky structure; extremely hard, very firm; common distinct clay films on faces of peds; many fine irregular threads of salts; few medium crystals of gypsum; exchangeable sodium is 53 percent; slightly effervescent; moderately alkaline; clear smooth boundary. (Thickness of the Btnyz horizon is 23 to 58 cm [9 to 23 in])" }, { - "name": "tn", + "name": "B`tn", "top": 86, "bottom": 127, "dry_hue": "2.5YR", diff --git a/inst/extdata/OSD/H/HUYSINK.json b/inst/extdata/OSD/H/HUYSINK.json index 52a65ede51..ffa9c4e955 100644 --- a/inst/extdata/OSD/H/HUYSINK.json +++ b/inst/extdata/OSD/H/HUYSINK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/H/HYDABURG.json b/inst/extdata/OSD/H/HYDABURG.json index 22d7199195..bfbf3a318d 100644 --- a/inst/extdata/OSD/H/HYDABURG.json +++ b/inst/extdata/OSD/H/HYDABURG.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi1--1/2 to 0 inches; litter of living sphagnum moss and sedges." + }, { "name": "Oi2", "top": 0, @@ -94,6 +117,75 @@ "topography": "smooth", "narrative": "Oi2--0 to 4 inches; dark reddish brown (5YR 3/2) peat (90 percent unrubbed, 80 percent rubbed fiber content); many very fine, common medium roots; extremely acid (pH 3.6); clear smooth boundary. (2 to 5 inches thick)" }, + { + "name": "Oe1", + "top": 10, + "bottom": 19, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 3.8, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Oe1--4 to 7 1/2 inches; dark reddish brown (5YR 3/2) mucky peat (60 percent unrubbed, 40 percent rubbed fiber content); very friable; common fine roots; extremely acid (pH 3.8); gradual smooth boundary. (2 to 16 inches thick)" + }, + { + "name": "Oe2", + "top": 19, + "bottom": 27, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 3.8, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Oe2--7 1/2 to 10 1/2 inches; black (5YR 2/1) mucky peat (60 percent unrubbed, 40 percent rubbed fiber content); very friable; common fine roots; extremely acid (pH 3.8); gradual wavy boundary. (2 to 11 inches thick)" + }, + { + "name": "C", + "top": 27, + "bottom": 33, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 3.8, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "C--10 1/2 to 13 inches; dark grayish brown (2.5Y 4/2) silt loam with black (5YR 2/1) organic stains; friable, nonsticky and nonplastic; common fine roots; extremely acid (pH 3.8); abrupt wavy boundary. (2 to 3 inches thick)" + }, { "name": "R", "top": 33, diff --git a/inst/extdata/OSD/I/ICHETUCKNEE.json b/inst/extdata/OSD/I/ICHETUCKNEE.json index 0ce96628bb..88e1a64058 100644 --- a/inst/extdata/OSD/I/ICHETUCKNEE.json +++ b/inst/extdata/OSD/I/ICHETUCKNEE.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bt2--39 to 55 inches; yellowish red (5YR 5/6) clay; strong medium subangular blocky structure; very firm; very sticky, very slightly plastic; common faint clay films on faces of peds; slightly acid; abrupt irregular boundary. (Combined thickness of the Bt horizons ranges from 21 to 55 inches)" + }, + { + "name": "R", + "top": 140, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 8, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--55+ inches; very pale brown (10YR 8/2) soft limestone; about 40 percent, by volume, hard limestone boulders; solution holes filled with clay comprise about 10 percent of the pedon; strongly alkaline." } ] ] diff --git a/inst/extdata/OSD/I/ILLABOT.json b/inst/extdata/OSD/I/ILLABOT.json index c49e1018ad..c83d35a3d9 100644 --- a/inst/extdata/OSD/I/ILLABOT.json +++ b/inst/extdata/OSD/I/ILLABOT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--3 to 1 inch; accumulation of needles, twigs, and roots." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/I/ILLER.json b/inst/extdata/OSD/I/ILLER.json index 60782a2110..83021c2df7 100644 --- a/inst/extdata/OSD/I/ILLER.json +++ b/inst/extdata/OSD/I/ILLER.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01 and 02", + "name": "O1 and O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/I/INARI.json b/inst/extdata/OSD/I/INARI.json index 10d59f68ff..ce4966c590 100644 --- a/inst/extdata/OSD/I/INARI.json +++ b/inst/extdata/OSD/I/INARI.json @@ -208,6 +208,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--132 to 183 cm (52 to 72 in); pale yellow (2.5Y 7/3) sandy clay loam, pale yellow (2.5Y 7/3), moist; moderate coarse prismatic structure parting to moderate medium and coarse subangular blocky; firm, hard, moderately sticky, slightly plastic; common very fine roots; common very fine tubular pores; 1 percent distinct pressure faces on vertical faces of peds; 3 percent faint sand coats on vertical faces of peds; 10 percent faint distinct light gray (2.5Y 7/2) clay films on all faces of peds; 5 percent by volume medium and coarse masses of calcium carbonate; 1 percent by volume medium nodules of calcium carbonate embedded in carbonate masses; 1 percent fine prominent black (10YR 2/1) manganese masses with sharp boundaries in matrix; moderately alkaline; gradual wavy boundary. (20 to 76 cm [8 to 30 in] thick)" + }, + { + "name": "Btk3", + "top": 183, + "bottom": 203, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sandy clay loam", + "structure": "weak coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Btk3--183 to 203 (72 to 80 in); light gray (2.5Y 7/2) sandy clay loam, light gray (2.5Y 7/2), moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; firm, hard, moderately sticky, moderately plastic; common very fine roots; 1 percent distinct sand coats on vertical faces of peds; 5 percent faint pressure faces on vertical faces of peds; 20 percent faint distinct light brownish gray (2.5Y 6/2) clay films on all faces of peds; 6 percent by volume coarse carbonate masses; 1 percent by volume medium carbonate nodules embedded in carbonate masses; 1 percent fine distinct black (10YR 2/1) masses of manganese with sharp boundaries in matrix; 1 percent fine prominent yellowish brown (10YR 5/8) masses of oxidized iron with sharp boundaries in matrix; 1 percent fine distinct yellow (2.5Y 7/6) masses of oxidized iron with clear boundaries in matrix; moderately alkaline. (20 to 43 cm [8 to 17 in] thick)" } ] ] diff --git a/inst/extdata/OSD/I/INDART.json b/inst/extdata/OSD/I/INDART.json index d8c66a8c56..632e2ff26d 100644 --- a/inst/extdata/OSD/I/INDART.json +++ b/inst/extdata/OSD/I/INDART.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 3 inches; Undecomposed organic material, mainly needles, twigs, bark, and pine cones." }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/I/INDIERA.json b/inst/extdata/OSD/I/INDIERA.json index c83ff5c767..aa552a1ede 100644 --- a/inst/extdata/OSD/I/INDIERA.json +++ b/inst/extdata/OSD/I/INDIERA.json @@ -208,6 +208,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--47 to 82 inches; highly fractured and slightly weathered serpentinite bedrock." + }, + { + "name": "R", + "top": 208, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--82+ inches; hard consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/I/INDLETON.json b/inst/extdata/OSD/I/INDLETON.json index f3fcfb1729..abb3ba45a3 100644 --- a/inst/extdata/OSD/I/INDLETON.json +++ b/inst/extdata/OSD/I/INDLETON.json @@ -73,7 +73,7 @@ [ { "name": "Oi", - "top": "NA", + "top": 3, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/I/INDUS.json b/inst/extdata/OSD/I/INDUS.json index 103a801a4f..ddcea455cc 100644 --- a/inst/extdata/OSD/I/INDUS.json +++ b/inst/extdata/OSD/I/INDUS.json @@ -95,9 +95,9 @@ "narrative": "Oe--1.5 to 0.5 inches; dark reddish brown (5YR 2/2) partially decomposed plant remains. (0 to 3 inches thick)" }, { - "name": "0a", - "top": "NA", - "bottom": "NA", + "name": "Oa", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/I/INMACHUK.json b/inst/extdata/OSD/I/INMACHUK.json index 7d6c10701e..1332b272da 100644 --- a/inst/extdata/OSD/I/INMACHUK.json +++ b/inst/extdata/OSD/I/INMACHUK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i1", + "name": "Oi1", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i1--0 to 2 inches; dark reddish brown (5YR 3/2) mat of coarse living mosses, sedges, and plant roots; very strongly acid; abrupt smooth boundary." }, { - "name": "0i2", + "name": "Oi2", "top": 5, "bottom": 36, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0i2--2 to 14 inches; black (5YR 2/1) fibrous coarse sedge peat with admixture of finely divided peat; 70 percent fiber rubbed; many roots; very strongly acid; clear smooth boundary." }, { - "name": "0i3", + "name": "Oi3", "top": 36, "bottom": 41, "dry_hue": "NA", @@ -141,7 +141,7 @@ "narrative": "0i3--14 to 16 inches; dark reddish brown (5YR 3/3) fibrous sedge peat with admixture of finely divided peat; 60 percent fiber rubbed; roots common; very strongly acid; clear smooth boundary." }, { - "name": "0i4f", + "name": "Oi4f", "top": 41, "bottom": 51, "dry_hue": "NA", diff --git a/inst/extdata/OSD/I/INSPIRATION.json b/inst/extdata/OSD/I/INSPIRATION.json index 2ba61cc846..d0aae7c000 100644 --- a/inst/extdata/OSD/I/INSPIRATION.json +++ b/inst/extdata/OSD/I/INSPIRATION.json @@ -208,6 +208,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw -- 37 to 64 cm; yellowish brown (10YR 5/6) dry, very gravelly ashy sandy loam; dark yellowish brown (10YR 3/6) moist; moderate medium subangular blocky structure; friable, slightly hard, nonsticky, nonplastic; few very fine, fine, medium, and coarse roots throughout; 15 percent fine gravel, 10 percent medium and coarse gravel, and 10 percent cobbles; strongly acid (pH 5.1); abrupt wavy boundary." + }, + { + "name": "2BC", + "top": 64, + "bottom": 150, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 6, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "coarse sandy loam", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "extremely gravelly", + "pH": 5.8, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2BC -- 64 to 150 m; brownish yellow (10YR 6/6) dry, extremely gravelly coarse sandy loam; dark yellowish brown (10YR 4/6) moist; single grain; loose, nonsticky, nonplastic; few medium roots throughout; 10 percent fine gravel, 30 percent medium and coarse gravel, 25 percent cobbles; moderately acid (pH 5.8)." } ] ] diff --git a/inst/extdata/OSD/I/INSULA.json b/inst/extdata/OSD/I/INSULA.json index f4a445ecf1..2b7443ff55 100644 --- a/inst/extdata/OSD/I/INSULA.json +++ b/inst/extdata/OSD/I/INSULA.json @@ -72,7 +72,30 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oi", + "top": 4, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--1 1/2 to 1 inch; undecomposed and decomposing plant remains. (1/4 to 1 inch thick)" + }, + { + "name": "Oa", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/I/IPISH.json b/inst/extdata/OSD/I/IPISH.json index 6dfca751fe..7d886a2508 100644 --- a/inst/extdata/OSD/I/IPISH.json +++ b/inst/extdata/OSD/I/IPISH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/4 inch to 0; new and partially decomposed needles, leaves, twigs, bark and other organic debris." + }, { "name": "A11", "top": 0, diff --git a/inst/extdata/OSD/I/IRA.json b/inst/extdata/OSD/I/IRA.json index aecd8050f3..a6560d42ce 100644 --- a/inst/extdata/OSD/I/IRA.json +++ b/inst/extdata/OSD/I/IRA.json @@ -118,7 +118,7 @@ "narrative": "B2--8 to 13 inches; yellowish brown (10YR 5/4) fine sandy loam; very weak fine subangular blocky structure; very friable; common fine roots; many fine pores; 10 percent coarse fragments; moderately acid; clear wavy boundary. (4 to 10 inches thick)" }, { - "name": "2", + "name": "A`2", "top": 33, "bottom": 51, "dry_hue": "NA", @@ -141,7 +141,7 @@ "narrative": "A`2--13 to 20 inches; light yellowish brown (10YR 6/4) gravelly fine sandy loam; common medium distinct yellowish brown (10YR 5/6) mottles; weak thick platy structure; firm; few roots; common fine pores; 20 percent coarse fragments; moderately acid; abrupt irregular boundary. (0 to 8 inches thick)" }, { - "name": "x1", + "name": "B`x1", "top": 51, "bottom": 81, "dry_hue": "NA", @@ -164,7 +164,7 @@ "narrative": "B`x1--20 to 32 inches; brown (7.5YR 4/3) gravelly fine sandy loam; common medium and coarse distinct strong brown (7.5YR 5/6), pinkish gray (5YR 6/2) and light brown (7.5YR 6/4) mottles; weak thick platy structure within moderate very coarse prisms 8 to 24 inches across; very firm, brittle; few roots between prisms; common fine pores with thin clay linings inside prisms; prisms separated by common fine pores within thin clay linings inside pinkish gray (7.5YR 6/2) fine sand coats; 30 percent coarse fragments; moderately acid; diffuse smooth boundary. (10 to 20 inches thick)" }, { - "name": "x2", + "name": "B`x2", "top": 81, "bottom": 102, "dry_hue": "NA", diff --git a/inst/extdata/OSD/I/ISAAC.json b/inst/extdata/OSD/I/ISAAC.json index 811e8ee2ac..b746b00027 100644 --- a/inst/extdata/OSD/I/ISAAC.json +++ b/inst/extdata/OSD/I/ISAAC.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "C--24 to 36 inches; yellowish red (5YR 4/6) light clay loam; massive; very friable, nonsticky, slightly plastic; original rock structure is visible; neutral; clear smooth boundary. (8 to 14 inches thick)" + }, + { + "name": "R", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--36 plus inches; semi-consolidated, bedded extrusive volcanic rock." } ] ] diff --git a/inst/extdata/OSD/I/ISHI_PISHI.json b/inst/extdata/OSD/I/ISHI_PISHI.json index 72185e58e6..6c13795458 100644 --- a/inst/extdata/OSD/I/ISHI_PISHI.json +++ b/inst/extdata/OSD/I/ISHI_PISHI.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/I/ISLOTE.json b/inst/extdata/OSD/I/ISLOTE.json index 2637712fb2..037a2d294c 100644 --- a/inst/extdata/OSD/I/ISLOTE.json +++ b/inst/extdata/OSD/I/ISLOTE.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bt4--24 to 30 inches; dark red (2.5YR 3/6) clay; weak medium subangular blocky structure; firm, slightly sticky, plastic; few faint clay films; many white specks, common fine sand grains, neutral. (6 to 8 inches thick)" + }, + { + "name": "C", + "top": 76, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--30 plus inches; partially cemented calcareous sandstone that can be penetrated with the spade." } ] ] diff --git a/inst/extdata/OSD/I/IVERSEN.json b/inst/extdata/OSD/I/IVERSEN.json index c822caa234..ffa67d75c5 100644 --- a/inst/extdata/OSD/I/IVERSEN.json +++ b/inst/extdata/OSD/I/IVERSEN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/I/IZOD.json b/inst/extdata/OSD/I/IZOD.json index ac794df095..9c0b645a21 100644 --- a/inst/extdata/OSD/I/IZOD.json +++ b/inst/extdata/OSD/I/IZOD.json @@ -97,7 +97,7 @@ { "name": "C1", "top": 8, - "bottom": "NA", + "bottom": 18, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, diff --git a/inst/extdata/OSD/J/JACANA.json b/inst/extdata/OSD/J/JACANA.json index 5c094feadd..c3b7cc4301 100644 --- a/inst/extdata/OSD/J/JACANA.json +++ b/inst/extdata/OSD/J/JACANA.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "BC--21 to 28 inches; 80 percent saprolite and 20 percent dark brown (7.5YR 3/2) clay in pockets and seams; clay loam; massive; friable; slightly sticky, slightly plastic; few faint clay films on faces of peds; neutral; gradual wavy boundary. (6 to 10 inches thick)" + }, + { + "name": "Cr", + "top": 71, + "bottom": 102, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--28 to 40+ inches; highly weathered, semi-consolidated bedded, volcanic rock." } ] ] diff --git a/inst/extdata/OSD/J/JACKMAN.json b/inst/extdata/OSD/J/JACKMAN.json index ed22ce7d8e..ed200d70a2 100644 --- a/inst/extdata/OSD/J/JACKMAN.json +++ b/inst/extdata/OSD/J/JACKMAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JAFA.json b/inst/extdata/OSD/J/JAFA.json index 53dcfb5169..085f5eb9a7 100644 --- a/inst/extdata/OSD/J/JAFA.json +++ b/inst/extdata/OSD/J/JAFA.json @@ -74,7 +74,7 @@ { "name": "O1 and O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JANNEY.json b/inst/extdata/OSD/J/JANNEY.json index 6dba3a8b9b..d20d4eb831 100644 --- a/inst/extdata/OSD/J/JANNEY.json +++ b/inst/extdata/OSD/J/JANNEY.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bh2--24 to 27 inches; very dark grayish brown (10YR 3/2) fine sand; sand grains are coated with colloidal organic matter; weak fine subangular blocky structure; very friable; few fine roots; moderately acid; abrupt irregular boundary (total thickness of the Bh horizon ranges from 2 to 10 inches)." + }, + { + "name": "R", + "top": 69, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--27+ inches; Limestone bedrock that can be dug with light power machinery." } ] ] diff --git a/inst/extdata/OSD/J/JAWBONE.json b/inst/extdata/OSD/J/JAWBONE.json index eb21a1b2ef..2f89bbf3cf 100644 --- a/inst/extdata/OSD/J/JAWBONE.json +++ b/inst/extdata/OSD/J/JAWBONE.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw--5 to 14 centimeters (2 to 5 inches); pale brown (10YR 6/3) loamy sand, brown (10YR 4/3) moist; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; common very fine and few fine roots; common very fine irregular and common fine tubular pores; 9 percent fine gravel and 1 percent medium and coarse gravel; slightly alkaline (pH 7.4); abrupt wavy boundary." + }, + { + "name": "Cr", + "top": 14, + "bottom": 40, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--14 to 40(5 to 16 inches); soft weathered granitic bedrock, with moderate excavation difficulty." } ] ] diff --git a/inst/extdata/OSD/J/JAYAR.json b/inst/extdata/OSD/J/JAYAR.json index 86cdb0884b..af9d8c60ae 100644 --- a/inst/extdata/OSD/J/JAYAR.json +++ b/inst/extdata/OSD/J/JAYAR.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JEKLEY.json b/inst/extdata/OSD/J/JEKLEY.json index eb5e9178ca..846ef39190 100644 --- a/inst/extdata/OSD/J/JEKLEY.json +++ b/inst/extdata/OSD/J/JEKLEY.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JENKINS.json b/inst/extdata/OSD/J/JENKINS.json index eddbbe0beb..2dcdbd72b2 100644 --- a/inst/extdata/OSD/J/JENKINS.json +++ b/inst/extdata/OSD/J/JENKINS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": "NA", "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--2 to inch; undecomposed organic material, mainly bark, twigs, and needles." }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/J/JERU.json b/inst/extdata/OSD/J/JERU.json index 31daecc6b4..cba4b01d92 100644 --- a/inst/extdata/OSD/J/JERU.json +++ b/inst/extdata/OSD/J/JERU.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.5 inch; needles, leaves, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 1, "bottom": 5, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/J/JIM.json b/inst/extdata/OSD/J/JIM.json index f878e22ed6..2e9428d895 100644 --- a/inst/extdata/OSD/J/JIM.json +++ b/inst/extdata/OSD/J/JIM.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JIMLAKE.json b/inst/extdata/OSD/J/JIMLAKE.json index 4005b56037..8b1f8553da 100644 --- a/inst/extdata/OSD/J/JIMLAKE.json +++ b/inst/extdata/OSD/J/JIMLAKE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -120,7 +120,7 @@ { "name": "Bw", "top": 8, - "bottom": "NA", + "bottom": 23, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/J/JIMMERSON.json b/inst/extdata/OSD/J/JIMMERSON.json index 2f46bff118..e84f25ff8a 100644 --- a/inst/extdata/OSD/J/JIMMERSON.json +++ b/inst/extdata/OSD/J/JIMMERSON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/J/JOEGALE.json b/inst/extdata/OSD/J/JOEGALE.json index 08db2eea1a..35cb446b89 100644 --- a/inst/extdata/OSD/J/JOEGALE.json +++ b/inst/extdata/OSD/J/JOEGALE.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Btk2--24 to 45 cm; brownish yellow (10YR 6/6) clay loam, yellowish brown (10YR 5/4), moist; weak medium subangular blocky structure; firm, moderately hard, moderately sticky, moderately plastic; few fine roots; few fine dendritic tubular pores; 6 percent faint clay films on all faces of peds; 5 percent fine irregular carbonate nodules in matrix; 5 percentgravel; violently effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (10 to 23 cm thick)" + }, + { + "name": "R", + "top": 45, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--45; calcareous sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/J/JOENEY.json b/inst/extdata/OSD/J/JOENEY.json index 1c983bf5f4..6df4a089c7 100644 --- a/inst/extdata/OSD/J/JOENEY.json +++ b/inst/extdata/OSD/J/JOENEY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JOJO.json b/inst/extdata/OSD/J/JOJO.json index b5cefe8c1b..d6beaf3e98 100644 --- a/inst/extdata/OSD/J/JOJO.json +++ b/inst/extdata/OSD/J/JOJO.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JONAH.json b/inst/extdata/OSD/J/JONAH.json index ce64e231e1..d6d858a257 100644 --- a/inst/extdata/OSD/J/JONAH.json +++ b/inst/extdata/OSD/J/JONAH.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--94 to 114 cm; pale olive (5Y 6/4) very parachannery clay loam, olive (5Y 5/4), moist; massive; firm, moderately hard, moderately sticky, moderately plastic; few fine roots throughout; many fine tubular pores; 5 percent fine irregular carbonate masses in matrix; 5 percent fine irregular salt masses in matrix; 5 percent irregular salt masses around rock fragments; 40 percent parachanners; strongly effervescent; moderately alkaline (pH 8.0); clear wavy boundary. (18 to 26 cm thick)" + }, + { + "name": "Cr", + "top": 114, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--114; sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/J/JORGENSEN.json b/inst/extdata/OSD/J/JORGENSEN.json index 79078f5c8e..1a58dc75f5 100644 --- a/inst/extdata/OSD/J/JORGENSEN.json +++ b/inst/extdata/OSD/J/JORGENSEN.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 18, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JUG.json b/inst/extdata/OSD/J/JUG.json index 2fff855f19..41ff170bc6 100644 --- a/inst/extdata/OSD/J/JUG.json +++ b/inst/extdata/OSD/J/JUG.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JUMPOFF.json b/inst/extdata/OSD/J/JUMPOFF.json index f3d847c036..e589730c78 100644 --- a/inst/extdata/OSD/J/JUMPOFF.json +++ b/inst/extdata/OSD/J/JUMPOFF.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JUMPSTART.json b/inst/extdata/OSD/J/JUMPSTART.json index 3104a6545e..01901cf93f 100644 --- a/inst/extdata/OSD/J/JUMPSTART.json +++ b/inst/extdata/OSD/J/JUMPSTART.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/J/JUNIPERO.json b/inst/extdata/OSD/J/JUNIPERO.json index 7eaf8909d4..f2dbdc5264 100644 --- a/inst/extdata/OSD/J/JUNIPERO.json +++ b/inst/extdata/OSD/J/JUNIPERO.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/J/JUNQUITOS.json b/inst/extdata/OSD/J/JUNQUITOS.json index 190880cfd4..b0dc587c71 100644 --- a/inst/extdata/OSD/J/JUNQUITOS.json +++ b/inst/extdata/OSD/J/JUNQUITOS.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C--28 to 35 inches; brownish yellow (10YR 6/8) clay; massive; hard, firm, slightly sticky, slightly plastic; many fine dark brown (10YR 3/3) concretions; about 12 percent, by volume, rock fragments; many coarse prominent red (2.5YR 5/8) masses of iron accumulation; common medium distinct gray (10YR 5/1) areas of iron depletions; neutral; abrupt smooth boundary." + }, + { + "name": "R", + "top": 89, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R-35+ inches; volcanic rock with angular fractures." } ] ] diff --git a/inst/extdata/OSD/K/KACHESS.json b/inst/extdata/OSD/K/KACHESS.json index fb64aec064..b6069b86be 100644 --- a/inst/extdata/OSD/K/KACHESS.json +++ b/inst/extdata/OSD/K/KACHESS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KALAMBACH.json b/inst/extdata/OSD/K/KALAMBACH.json index b8b369b225..ab3b38a8c6 100644 --- a/inst/extdata/OSD/K/KALAMBACH.json +++ b/inst/extdata/OSD/K/KALAMBACH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KALEETAN.json b/inst/extdata/OSD/K/KALEETAN.json index c11c002b67..5ac7c3db93 100644 --- a/inst/extdata/OSD/K/KALEETAN.json +++ b/inst/extdata/OSD/K/KALEETAN.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KALO.json b/inst/extdata/OSD/K/KALO.json index 45ce894b44..bee6b93e35 100644 --- a/inst/extdata/OSD/K/KALO.json +++ b/inst/extdata/OSD/K/KALO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KALSIN.json b/inst/extdata/OSD/K/KALSIN.json index 5b1e9d7ef6..28e0fac7ff 100644 --- a/inst/extdata/OSD/K/KALSIN.json +++ b/inst/extdata/OSD/K/KALSIN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "Oi--1 inch to 0; dark brown (10YR 3/3) thin root mat underlain by mixture of roots and silty material; silty material has very fine granular structure; friable; very strongly to strongly acid; abrupt smooth boundary. (1 to 4 inches thick)" }, + { + "name": "C1", + "top": 0, + "bottom": 4, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "C1--0 to 1 1/2 inches; light gray (10YR 7/1) silt loam volcanic ash; massive; firm in place; few roots; strongly acid; abrupt wavy boundary. (1 to 2 inches thick)" + }, + { + "name": "C2", + "top": 4, + "bottom": 13, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "C2--1 1/2 to 5 inches; light yellowish brown (10YR 6/4) silt loam volcanic ash; massive; firm in place; few roots; strongly acid; abrupt wavy boundary. (2 to 5 inches thick)" + }, { "name": "C3", "top": 13, diff --git a/inst/extdata/OSD/K/KANARANZI.json b/inst/extdata/OSD/K/KANARANZI.json index 767d678689..8f717aedb2 100644 --- a/inst/extdata/OSD/K/KANARANZI.json +++ b/inst/extdata/OSD/K/KANARANZI.json @@ -93,6 +93,121 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); very dark brown (10YR 2/2) silt loam, very dark grayish brown (10YR 3/2) dry; weak fine subangular blocky structure; friable; slightly acid; abrupt smooth boundary. [15 to 25 centimeter (6 to 10 inches) thick]" + }, + { + "name": "BA", + "top": 18, + "bottom": 30, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "loam", + "structure": "weak fine prismatic", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "BA--18 to 30 centimeter (7 to 12 inches); dark brown (10YR 3/3) loam, brown (10YR 4/3) dry; very dark grayish brown (10YR 3/2) coats on faces of peds; weak fine prismatic structure parting to weak fine and medium subangular blocky; friable; slightly acid; clear wavy boundary. [0 to 18 centimeter (0 to 7 inches) thick]" + }, + { + "name": "Bw", + "top": 30, + "bottom": 51, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "loam", + "structure": "weak medium prismatic", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw--30 to 51 centimeter (12 to 20 inches); brown (10YR 4/3) loam, very dark grayish brown (10YR 3/2) coats on faces of peds; weak medium prismatic structure; friable; slightly acid in upper part grading to neutral in lower part; clear wavy boundary. [10 to 30 centimeter (4 to 12 inches) thick]" + }, + { + "name": "2C1", + "top": 51, + "bottom": 66, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "slightly effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "2C1--51 to 66 centimeter (20 to 26 inches); brown (10YR 4/3) mixed with grayish brown (10YR 5/2) gravelly coarse sand; single grain; loose; about 20 percent coarse fragments; slightly effervescent; slightly alkaline; clear wavy boundary. [0 to 20 centimeter (0 to 8 inches) thick]" + }, + { + "name": "2C2", + "top": 66, + "bottom": 127, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 1, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "2C2--66 to 127 centimeter (26 to 50 inches); mixed gray (10YR 5/1) and yellowish brown (10YR 5/4) gravelly coarse sand; single grain; loose; about 20 percent coarse fragments; strongly effervescent; slightly alkaline; clear smooth boundary. [ 0 to 51 centimeter (0 to 20 inches) thick]" + }, + { + "name": "2C3", + "top": 127, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C3--127 to 203 centimeter (50 to 80 inches); yellowish brown (10YR 5/4) gravelly coarse sand; single grain; loose; about 20 percent gravel; strongly effervescent; slightly alkaline." } ] ] diff --git a/inst/extdata/OSD/K/KANASKAT.json b/inst/extdata/OSD/K/KANASKAT.json index cb234e5d0a..3732de057c 100644 --- a/inst/extdata/OSD/K/KANASKAT.json +++ b/inst/extdata/OSD/K/KANASKAT.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KANDIK.json b/inst/extdata/OSD/K/KANDIK.json index 9b254eb842..10bbe059b1 100644 --- a/inst/extdata/OSD/K/KANDIK.json +++ b/inst/extdata/OSD/K/KANDIK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KANID.json b/inst/extdata/OSD/K/KANID.json index a981953983..426a72a373 100644 --- a/inst/extdata/OSD/K/KANID.json +++ b/inst/extdata/OSD/K/KANID.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KANIKSU.json b/inst/extdata/OSD/K/KANIKSU.json index ef3bce35e7..7c5a06507f 100644 --- a/inst/extdata/OSD/K/KANIKSU.json +++ b/inst/extdata/OSD/K/KANIKSU.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--0 to 1/2 inch; needles, leaves and twigs." + }, + { + "name": "Oa", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0a--1/2 inch to 1; decomposed organic matter." + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/K/KARHEEN.json b/inst/extdata/OSD/K/KARHEEN.json index 18c84f8ee2..d2cf4df823 100644 --- a/inst/extdata/OSD/K/KARHEEN.json +++ b/inst/extdata/OSD/K/KARHEEN.json @@ -141,7 +141,7 @@ "narrative": "Oa1--5 to 9 inches; black (N 2/0) muck; few fibers unrubbed, no fibers after rubbing; nonsticky, nonplastic; few fine roots; very strongly acid (pH 4.5); abrupt wavy boundary. (4 to 8 inches thick)" }, { - "name": "0a2", + "name": "Oa2", "top": 23, "bottom": 38, "dry_hue": "NA", @@ -164,7 +164,7 @@ "narrative": "0a2--9 to 15 inches; black (N 2/0) very gravelly muck; no fibers; nonsticky, nonplastic; very strongly acid (pH 4.5); 50 percent gravel; gradual wavy boundary. (6 to 12 inches thick)" }, { - "name": "0a3", + "name": "Oa3", "top": 38, "bottom": 152, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KARTA.json b/inst/extdata/OSD/K/KARTA.json index 83ed413a83..7255259508 100644 --- a/inst/extdata/OSD/K/KARTA.json +++ b/inst/extdata/OSD/K/KARTA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 25, "bottom": 20, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--10 to 8 inches; undecomposed forest litter. (0 to 4 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 20, "bottom": 8, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0e--8 to 3 inches; dark reddish brown (5YR 2.5/2) mucky peat; common fine and medium roots; extremely acid (pH 3.6). (0 to 5 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KASEBERG.json b/inst/extdata/OSD/K/KASEBERG.json index a47055c3a6..6f77ca7a03 100644 --- a/inst/extdata/OSD/K/KASEBERG.json +++ b/inst/extdata/OSD/K/KASEBERG.json @@ -139,6 +139,52 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C--14 to 16 inches; light gray (2.5Y 7/2) silt loam, light olive (2.5Y 5/4) moist; common fine distinct yellowish brown (10YR 5/8) mottles; massive; very hard, extremely firm, slightly sticky and slightly plastic; common very fine tubular pores; slightly acid (pH 6.3); abrupt wavy boundary. (0 to 4 inches thick)." + }, + { + "name": "Cqm", + "top": 41, + "bottom": 41, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cqm -- 16 to 16 1/4 inches; continuous silica-cemented hardpan. (1/4 to 3 inches thick)." + }, + { + "name": "Cr", + "top": 41, + "bottom": 51, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--16 1/4 to 20 inches; light gray (10YR 7/2) soft siltstone." } ] ] diff --git a/inst/extdata/OSD/K/KATULA.json b/inst/extdata/OSD/K/KATULA.json index 48f71458d2..01521eafc1 100644 --- a/inst/extdata/OSD/K/KATULA.json +++ b/inst/extdata/OSD/K/KATULA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 18, "bottom": 5, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--7 to 2 inches; accumulation of Douglas-fir and western hemlock needles and twigs; clear smooth boundary. (2 to 6 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KEBA.json b/inst/extdata/OSD/K/KEBA.json index 43f3fad8ed..844d220ae7 100644 --- a/inst/extdata/OSD/K/KEBA.json +++ b/inst/extdata/OSD/K/KEBA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KEBLER.json b/inst/extdata/OSD/K/KEBLER.json index 9151d601ca..4be5dc986b 100644 --- a/inst/extdata/OSD/K/KEBLER.json +++ b/inst/extdata/OSD/K/KEBLER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; undecomposed organic material mainly needles, twigs, and bark." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KEDDIE.json b/inst/extdata/OSD/K/KEDDIE.json index 42d319c485..6d5c25625f 100644 --- a/inst/extdata/OSD/K/KEDDIE.json +++ b/inst/extdata/OSD/K/KEDDIE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 2, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--3/4 inch to 0; mat of live and decomposing roots and organic matter. (0 to 1 inch thick)" + }, { "name": "Ap", "top": 0, diff --git a/inst/extdata/OSD/K/KEENE.json b/inst/extdata/OSD/K/KEENE.json index fd9e3fb624..ed747556fe 100644 --- a/inst/extdata/OSD/K/KEENE.json +++ b/inst/extdata/OSD/K/KEENE.json @@ -254,6 +254,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "2Cr--117 to 157 cm (46 to 62 inches); grayish brown (10YR 5/2) shale bedrock." + }, + { + "name": "3R", + "top": 157, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "3R--157 (62 inches); gray sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/K/KEERINS.json b/inst/extdata/OSD/K/KEERINS.json index a0f3287c13..146fdc7e08 100644 --- a/inst/extdata/OSD/K/KEERINS.json +++ b/inst/extdata/OSD/K/KEERINS.json @@ -143,7 +143,7 @@ { "name": "Btk2", "top": 28, - "bottom": "NA", + "bottom": 41, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 1, @@ -166,7 +166,7 @@ { "name": "Cr", "top": 41, - "bottom": "NA", + "bottom": 46, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KEGEL.json b/inst/extdata/OSD/K/KEGEL.json index 8758295e23..5f1699df75 100644 --- a/inst/extdata/OSD/K/KEGEL.json +++ b/inst/extdata/OSD/K/KEGEL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KEKAWAKA.json b/inst/extdata/OSD/K/KEKAWAKA.json index 2d6a9e7db9..8e3e910912 100644 --- a/inst/extdata/OSD/K/KEKAWAKA.json +++ b/inst/extdata/OSD/K/KEKAWAKA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01 and 02", + "name": "O1 and O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KELLERBUTTE.json b/inst/extdata/OSD/K/KELLERBUTTE.json index db7b0a35aa..5498aaae1b 100644 --- a/inst/extdata/OSD/K/KELLERBUTTE.json +++ b/inst/extdata/OSD/K/KELLERBUTTE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i and 0e", + "name": "Oi and Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KELVIN.json b/inst/extdata/OSD/K/KELVIN.json index dd0f41ebd7..a5076cb327 100644 --- a/inst/extdata/OSD/K/KELVIN.json +++ b/inst/extdata/OSD/K/KELVIN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KENNY_LAKE.json b/inst/extdata/OSD/K/KENNY_LAKE.json index e8bc1f3bdb..0e504227c9 100644 --- a/inst/extdata/OSD/K/KENNY_LAKE.json +++ b/inst/extdata/OSD/K/KENNY_LAKE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KERRICK.json b/inst/extdata/OSD/K/KERRICK.json index 4bd91883ff..a46da3bfac 100644 --- a/inst/extdata/OSD/K/KERRICK.json +++ b/inst/extdata/OSD/K/KERRICK.json @@ -120,7 +120,7 @@ { "name": "Bk2", "top": 41, - "bottom": "NA", + "bottom": 79, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/K/KETTNER.json b/inst/extdata/OSD/K/KETTNER.json index b9133631f2..86d50ab2fe 100644 --- a/inst/extdata/OSD/K/KETTNER.json +++ b/inst/extdata/OSD/K/KETTNER.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O2", + "top": 0, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01&02-- inch to 0, needles and leaves, in various stages of decomposition." + }, { "name": "A11", "top": 0, diff --git a/inst/extdata/OSD/K/KIBESILLAH.json b/inst/extdata/OSD/K/KIBESILLAH.json index 7b854bb3f3..153f930b4b 100644 --- a/inst/extdata/OSD/K/KIBESILLAH.json +++ b/inst/extdata/OSD/K/KIBESILLAH.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KIEHL.json b/inst/extdata/OSD/K/KIEHL.json index bc59c0c87b..d3a64f7711 100644 --- a/inst/extdata/OSD/K/KIEHL.json +++ b/inst/extdata/OSD/K/KIEHL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KILAUEA.json b/inst/extdata/OSD/K/KILAUEA.json index 88ac2184c5..00ca8961b9 100644 --- a/inst/extdata/OSD/K/KILAUEA.json +++ b/inst/extdata/OSD/K/KILAUEA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Cm", + "top": 0, + "bottom": 1, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 3.1, + "pH_class": "ultra acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Cm--0 to 1 centimeter (0 to 0.5 inches); cemented crust; when crushed, dark reddish gray (5YR 4/2) very gravelly ashy sandy loam, dark reddish gray (5YR 4/2) dry; 10 percent thin white coats on underside of crust; 65 percent subrounded pyroclastic gravel; ultra acid (pH 3.1); abrupt wavy boundary. (0 to 5 centimeters (0 to 2 inches) thick)" + }, { "name": "C1", "top": 1, @@ -279,7 +302,7 @@ "narrative": "C9--102 to 142 centimeters (40 to 56 inches); very dark grayish brown (2.5Y 3/2) and olive brown (2.5Y 4/3) ashy very fine sand; massive; soft, loose, nonsticky and nonplastic; few very fine and fine roots; many very fine and fine interstitial pores; slightly alkaline (pH 7.5); abrupt wavy boundary. (38 to 102 centimeters (15 to 40 inches) thick)" }, { - "name": "C10", + "name": "C1O", "top": 142, "bottom": 190, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/K/KILLET.json b/inst/extdata/OSD/K/KILLET.json index 08ce2aaca9..16d3a22370 100644 --- a/inst/extdata/OSD/K/KILLET.json +++ b/inst/extdata/OSD/K/KILLET.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KINDIG.json b/inst/extdata/OSD/K/KINDIG.json index a0286a0f25..d41f48d3e7 100644 --- a/inst/extdata/OSD/K/KINDIG.json +++ b/inst/extdata/OSD/K/KINDIG.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KINDY.json b/inst/extdata/OSD/K/KINDY.json index ccb295e2b0..e6159cc20a 100644 --- a/inst/extdata/OSD/K/KINDY.json +++ b/inst/extdata/OSD/K/KINDY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 6, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--2 1/2 to 1/2 inch; needles and twigs. (1 to 7 inches thick)" + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 inch to 0; decomposed forest litter. (0 to 2 inches thick)" + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/K/KINESAVA.json b/inst/extdata/OSD/K/KINESAVA.json index 299589a132..cb6fbd0780 100644 --- a/inst/extdata/OSD/K/KINESAVA.json +++ b/inst/extdata/OSD/K/KINESAVA.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "A12--5 to 25 inches; dark brown (7.5YR 4/2) fine sandy loam, dark brown (7.5YR 3/2) moist; weak medium subangular blocky structure; slightly hard, very friable, nonsticky, nonplastic; common fine and very fine roots; common medium, and few fine tubular pores; mildly alkaline (pH 7.6); gradual wavy boundary. (19 to 44 inches thick)" }, + { + "name": "A13", + "top": 64, + "bottom": 79, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "fine sandy loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A13--25 to 31; brown (7.5YR 4/2) heavy fine sandy loam, dark brown (7.5YR 3/3) moist; moderate medium subangular blocky structure; hard, friable, slightly sticky, slightly plastic; few fine roots; common fine and very fine tubular pores; mildly alkaline (pH 7.6); clear smooth boundary. (O to 6 inches thick)" + }, { "name": "Blt", "top": 79, diff --git a/inst/extdata/OSD/K/KINGMONT.json b/inst/extdata/OSD/K/KINGMONT.json index 2c41b29e45..37651a017b 100644 --- a/inst/extdata/OSD/K/KINGMONT.json +++ b/inst/extdata/OSD/K/KINGMONT.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--1/2 to 0 inch; undecomposed forest litter. (1/2 to l inch thick)" + }, { "name": "El", "top": 0, - "bottom": "NA", + "bottom": 36, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 3, @@ -96,7 +119,7 @@ }, { "name": "E2", - "top": "NA", + "top": 36, "bottom": 71, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/K/KINKEL.json b/inst/extdata/OSD/K/KINKEL.json index 94482ef124..d32a7de408 100644 --- a/inst/extdata/OSD/K/KINKEL.json +++ b/inst/extdata/OSD/K/KINKEL.json @@ -74,7 +74,7 @@ { "name": "O1 and O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KIOKLUK.json b/inst/extdata/OSD/K/KIOKLUK.json index 99cbe9ea90..69e3a259ba 100644 --- a/inst/extdata/OSD/K/KIOKLUK.json +++ b/inst/extdata/OSD/K/KIOKLUK.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KIPER.json b/inst/extdata/OSD/K/KIPER.json index 9a458d32d7..13467007f0 100644 --- a/inst/extdata/OSD/K/KIPER.json +++ b/inst/extdata/OSD/K/KIPER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KIRK.json b/inst/extdata/OSD/K/KIRK.json index 0c29d2184e..4730a1b4e0 100644 --- a/inst/extdata/OSD/K/KIRK.json +++ b/inst/extdata/OSD/K/KIRK.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 4, + "dry_hue": "N", + "dry_value": 5, + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.2, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--0 to 1 1/2 inches; very dark gray (10YR 3/1) medial loam, gray (N 5/) dry; massive; soft, friable, nonsticky and nonplastic; many very fine roots; neutral (pH 7.2); abrupt smooth boundary. (0 to 3 inches thick)" + }, + { + "name": "A2", + "top": 4, + "bottom": 13, + "dry_hue": "N", + "dry_value": 5, + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "loam", + "structure": "weak thin platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A2--1 1/2 to 5 inches; black (10YR 2/1) medial loam, gray (N 5/) dry; weak thin platy structure parting to weak very fine granular; soft, friable, slightly sticky and slightly plastic; common very fine roots; common very fine tubular pores; 5 percent gravel-size pumice; neutral (pH 6.8); clear smooth boundary. (3 to 7 inches thick)" + }, { "name": "A3", "top": 13, diff --git a/inst/extdata/OSD/K/KITCHEN_CREEK.json b/inst/extdata/OSD/K/KITCHEN_CREEK.json index d1e6604211..33b731fbcf 100644 --- a/inst/extdata/OSD/K/KITCHEN_CREEK.json +++ b/inst/extdata/OSD/K/KITCHEN_CREEK.json @@ -186,6 +186,29 @@ "topography": "smooth", "narrative": "B2t--28 to 42 inches; Pale brown (10YR 6/3) coarse sandy loam, yellowish brown (10YR 5/4) moist; massive; hard, friable, slightly sticky, slightly plastic; few fine roots; common fine pores; colloid bridging mineral grains; moderately acid (pH 6.0); gradual smooth boundary. (10 to 18 inches thick)" }, + { + "name": "B3t", + "top": 107, + "bottom": 137, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "coarse sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "B3t--42 to 54; Very pale brown (10YR 7/3) coarse sandy loam, pale brown (10YR 6/3) moist; massive; hard, friable, nonsticky, slightly plastic; few fine roots; few fine tubular pores; colloid bridging mineral grains; moderately acid (pH 6.0); gradual smooth boundary. (9 to 16 inches thick)" + }, { "name": "C1", "top": 137, diff --git a/inst/extdata/OSD/K/KITTLESON.json b/inst/extdata/OSD/K/KITTLESON.json index 4df121aa6a..6770cb1167 100644 --- a/inst/extdata/OSD/K/KITTLESON.json +++ b/inst/extdata/OSD/K/KITTLESON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLASI.json b/inst/extdata/OSD/K/KLASI.json index 8119d0efe2..6610c10892 100644 --- a/inst/extdata/OSD/K/KLASI.json +++ b/inst/extdata/OSD/K/KLASI.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 13, - "bottom": "NA", + "bottom": 20, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLAWASI.json b/inst/extdata/OSD/K/KLAWASI.json index fb72e86bad..0f8bb1c744 100644 --- a/inst/extdata/OSD/K/KLAWASI.json +++ b/inst/extdata/OSD/K/KLAWASI.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 23, - "bottom": "NA", + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLAWATTI.json b/inst/extdata/OSD/K/KLAWATTI.json index c0dddbd958..6fca136022 100644 --- a/inst/extdata/OSD/K/KLAWATTI.json +++ b/inst/extdata/OSD/K/KLAWATTI.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 18, "bottom": 13, "dry_hue": "NA", @@ -97,7 +97,7 @@ { "name": "Oa", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLISKON.json b/inst/extdata/OSD/K/KLISKON.json index 33b5de2a71..7819113f68 100644 --- a/inst/extdata/OSD/K/KLISKON.json +++ b/inst/extdata/OSD/K/KLISKON.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLOOTCH.json b/inst/extdata/OSD/K/KLOOTCH.json index 75c113b9ed..d126161588 100644 --- a/inst/extdata/OSD/K/KLOOTCH.json +++ b/inst/extdata/OSD/K/KLOOTCH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; slightly decomposed needles, leaves, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KLUNA.json b/inst/extdata/OSD/K/KLUNA.json index 68b8360367..37e87e18ab 100644 --- a/inst/extdata/OSD/K/KLUNA.json +++ b/inst/extdata/OSD/K/KLUNA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLUTCH.json b/inst/extdata/OSD/K/KLUTCH.json index 5cea459cc9..ee0fe23450 100644 --- a/inst/extdata/OSD/K/KLUTCH.json +++ b/inst/extdata/OSD/K/KLUTCH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; slightly decomposed needles, leaves, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/K/KLUTE.json b/inst/extdata/OSD/K/KLUTE.json index 2ea3f14496..826e4f4ad9 100644 --- a/inst/extdata/OSD/K/KLUTE.json +++ b/inst/extdata/OSD/K/KLUTE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KLUTINA.json b/inst/extdata/OSD/K/KLUTINA.json index 9594a45853..a8c11aabea 100644 --- a/inst/extdata/OSD/K/KLUTINA.json +++ b/inst/extdata/OSD/K/KLUTINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KNAPKE.json b/inst/extdata/OSD/K/KNAPKE.json index c7b1f377d4..35c39058c5 100644 --- a/inst/extdata/OSD/K/KNAPKE.json +++ b/inst/extdata/OSD/K/KNAPKE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KNIK.json b/inst/extdata/OSD/K/KNIK.json index 42182e119f..c86cfb1ab2 100644 --- a/inst/extdata/OSD/K/KNIK.json +++ b/inst/extdata/OSD/K/KNIK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KOETHER.json b/inst/extdata/OSD/K/KOETHER.json index 0baf4784c0..fffdfe2ef0 100644 --- a/inst/extdata/OSD/K/KOETHER.json +++ b/inst/extdata/OSD/K/KOETHER.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 16 inches; light brownish gray (10YR 6/2) very stony loamy sand, dark grayish brown (10YR 4/2) moist; single grained, loose, nonsticky and nonplastic; 50 percent fragments of sandstone greater than 3 inches in diameter; very strongly acid; abrupt wavy boundary. (7 to 20 inches thick)" + }, + { + "name": "R", + "top": 41, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "strongly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--16+ inches; slightly fractured, strongly cemented coarse grained sandstone." } ] ] diff --git a/inst/extdata/OSD/K/KONAWA.json b/inst/extdata/OSD/K/KONAWA.json index 60a38f62dd..5b2b842096 100644 --- a/inst/extdata/OSD/K/KONAWA.json +++ b/inst/extdata/OSD/K/KONAWA.json @@ -139,6 +139,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Bt--43 to 135 cm (17 to 53 in); red (2.5YR 4/6) sandy clay loam, dark red (2.5YR 3/6) moist; moderate medium subangular blocky structure; very hard, friable; few faint clay films on peds; moderately acid; gradual smooth boundary. (Thickness of the Bt horizon is 25 to 91 cm [10 to 36 in])" + }, + { + "name": "BC", + "top": 135, + "bottom": 183, + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "2.5YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "fine sandy loam", + "structure": "weak coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "BC--135 to 183 (53 to 72 in); red (2.5YR 5/6) fine sandy loam, red (2.5YR 4/6) moist; weak coarse subangular blocky structure; very hard, friable; neutral." } ] ] diff --git a/inst/extdata/OSD/K/KONNAROCK.json b/inst/extdata/OSD/K/KONNAROCK.json index b649f00342..eb8f6af5b9 100644 --- a/inst/extdata/OSD/K/KONNAROCK.json +++ b/inst/extdata/OSD/K/KONNAROCK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "silt loam", + "structure": "moderate fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very channery", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A--0 t0 2 inches; dark reddish brown (5YR 3/3) very channery silt loam; moderate fine granular structure; friable, slightly sticky, slightly plastic; many fine and medium roots; 45 percent channers; very strongly acid; clear smooth boundary. (1 to 5 inches thick)" + }, { "name": "Bw", "top": 5, diff --git a/inst/extdata/OSD/K/KOOLAU.json b/inst/extdata/OSD/K/KOOLAU.json index 05d056dbee..17709a1788 100644 --- a/inst/extdata/OSD/K/KOOLAU.json +++ b/inst/extdata/OSD/K/KOOLAU.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -186,29 +186,6 @@ "topography": "smooth", "narrative": "B22g--23 to 27 inches; gray (N 5/) light silty clay, light gray (5Y 7/2) dry; very pale brown (10YR 7/3), yellow (10YR 7/6), and strong brown (7.5YR 5/8) mottles; massive; some very firm horizontal lenses; hard, friable, sticky, plastic, and weakly smeary; many medium, fine and very fine pores; thin patchy light brown (7.5YR 6/4) coats in pores look like clay films; extremely acid (pH 4.4); gradual smooth boundary. (3 to 6 inches thick)" }, - { - "name": "U23g", - "top": 69, - "bottom": 81, - "dry_hue": "5Y", - "dry_value": 7, - "dry_chroma": 3, - "moist_hue": "5Y", - "moist_value": 5, - "moist_chroma": 1, - "texture_class": "clay loam", - "structure": "weak thick platy", - "dry_rupture": "hard", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": 4.6, - "pH_class": "very strongly acid", - "eff_class": "NA", - "distinctness": "clear", - "topography": "smooth", - "narrative": "U23g--27 to 32 inches; gray (5Y 5/1) clay loam, pale yellow (5Y 7/3) dry; yellowish brown (10YR 5/6), light olive brown (2.5Y 5/4), red (2.5YR 4/8), and brown (10YR 4/3) mottles; weak thick platy structure parting to weak fine angular and subangular blocky; slghtly hard, friable, sticky, plastic and smeary; few medium, many fine and very fine pores; moderately thick very pale brown (10YR 7/3) coats in some pores look like clay films; very strongly acid (pH 4.6); clear smooth boundary. (4 to 6 inches thick)" - }, { "name": "C", "top": 81, diff --git a/inst/extdata/OSD/K/KOOTENAI.json b/inst/extdata/OSD/K/KOOTENAI.json index b65684bd73..1a70a6f8d1 100644 --- a/inst/extdata/OSD/K/KOOTENAI.json +++ b/inst/extdata/OSD/K/KOOTENAI.json @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Oi--0 to 1.5 inch; undecomposed and partially decomposed needles, leaves, and twigs." }, + { + "name": "Oe", + "top": 4, + "bottom": 5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1.5 to 2.0; decomposed needles, leaves, and twigs." + }, { "name": "A", "top": 5, diff --git a/inst/extdata/OSD/K/KROTO.json b/inst/extdata/OSD/K/KROTO.json index 78fd68a81d..5a84e6e9d4 100644 --- a/inst/extdata/OSD/K/KROTO.json +++ b/inst/extdata/OSD/K/KROTO.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KRUBATE.json b/inst/extdata/OSD/K/KRUBATE.json index 4ff833aaeb..2545a3e582 100644 --- a/inst/extdata/OSD/K/KRUBATE.json +++ b/inst/extdata/OSD/K/KRUBATE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUCKUP.json b/inst/extdata/OSD/K/KUCKUP.json index beb8a81003..07602df5b6 100644 --- a/inst/extdata/OSD/K/KUCKUP.json +++ b/inst/extdata/OSD/K/KUCKUP.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KULSHAN.json b/inst/extdata/OSD/K/KULSHAN.json index 453213062b..a16dadf3b5 100644 --- a/inst/extdata/OSD/K/KULSHAN.json +++ b/inst/extdata/OSD/K/KULSHAN.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUNAYOSH.json b/inst/extdata/OSD/K/KUNAYOSH.json index 362dae93d8..bc7710b0ab 100644 --- a/inst/extdata/OSD/K/KUNAYOSH.json +++ b/inst/extdata/OSD/K/KUNAYOSH.json @@ -72,7 +72,30 @@ "HORIZONS": [ [ { - "name": "012", + "name": "O11", + "top": 6, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "011--2 1/2 to 1 inch; undecomposed forest litter." + }, + { + "name": "O12", "top": 3, "bottom": 0, "dry_hue": "NA", @@ -93,6 +116,52 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "012--1 to 0 inch; black (5YR 2/1) partially decomposed forest litter; many roots; abrupt smooth boundary." + }, + { + "name": "A1", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "A1--0 to 1/2 inch; dark brown (10YR 3/3) sand; single grain, loose, nonplastic; many roots; few iron stains on sand grains; very strongly acid; abrupt sooth boundary." + }, + { + "name": "C", + "top": 1, + "bottom": 46, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5GY", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--1/2 to 18 + inches; dark greenish gray (5GY 4/1) sand; singlegrain, loose, nonplastic; many roots; neutral." } ] ] diff --git a/inst/extdata/OSD/K/KUPREANOF.json b/inst/extdata/OSD/K/KUPREANOF.json index 5bd00237ae..577c330e4e 100644 --- a/inst/extdata/OSD/K/KUPREANOF.json +++ b/inst/extdata/OSD/K/KUPREANOF.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUSDRY.json b/inst/extdata/OSD/K/KUSDRY.json index 4556af2925..d92ad6c039 100644 --- a/inst/extdata/OSD/K/KUSDRY.json +++ b/inst/extdata/OSD/K/KUSDRY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUSLINA.json b/inst/extdata/OSD/K/KUSLINA.json index 7bd9993b87..94b7ae4648 100644 --- a/inst/extdata/OSD/K/KUSLINA.json +++ b/inst/extdata/OSD/K/KUSLINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 25, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUSLINAD.json b/inst/extdata/OSD/K/KUSLINAD.json index 4fedae126d..a7994cca93 100644 --- a/inst/extdata/OSD/K/KUSLINAD.json +++ b/inst/extdata/OSD/K/KUSLINAD.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUSU.json b/inst/extdata/OSD/K/KUSU.json index cfe6b33044..7b480f3bc3 100644 --- a/inst/extdata/OSD/K/KUSU.json +++ b/inst/extdata/OSD/K/KUSU.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KUTCHER.json b/inst/extdata/OSD/K/KUTCHER.json index 09d569bd6c..90bee9ab72 100644 --- a/inst/extdata/OSD/K/KUTCHER.json +++ b/inst/extdata/OSD/K/KUTCHER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/K/KVICHAK.json b/inst/extdata/OSD/K/KVICHAK.json index 178b6b657d..517175483c 100644 --- a/inst/extdata/OSD/K/KVICHAK.json +++ b/inst/extdata/OSD/K/KVICHAK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LABORCITA.json b/inst/extdata/OSD/L/LABORCITA.json index 15c878994b..3470365c60 100644 --- a/inst/extdata/OSD/L/LABORCITA.json +++ b/inst/extdata/OSD/L/LABORCITA.json @@ -120,7 +120,7 @@ { "name": "Bw", "top": 18, - "bottom": "NA", + "bottom": 41, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Bk1", - "top": "NA", + "top": 41, "bottom": 71, "dry_hue": "7.5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/L/LABUCK.json b/inst/extdata/OSD/L/LABUCK.json index eb26dbb3d9..4b56fb6d5a 100644 --- a/inst/extdata/OSD/L/LABUCK.json +++ b/inst/extdata/OSD/L/LABUCK.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Bw2--38 to 56 cm; yellowish brown (10YR 5/4) gravelly loam, pale brown (10YR 6/3) dry; slightly hard, friable, slightly sticky and slightly plastic; common very fine and fine roots; common very fine irregular pores; 20 percent fine gravel, 2 to 6 mm in diameter; moderately acid (pH 6.0); gradual wavy boundary. (18 to 36 cm thick)" }, + { + "name": "C", + "top": 56, + "bottom": 81, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "coarse sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C--56 to 81; yellowish brown (10YR 5/4) very gravelly coarse sandy loam, pale brown (10YR 6/3) dry; massive; hard, friable, 36 percent gravel; moderately acid (pH 6.0); clear wavy boundary. (0 to 30 cm thick)" + }, { "name": "Cr", "top": 81, diff --git a/inst/extdata/OSD/L/LACY.json b/inst/extdata/OSD/L/LACY.json index d5ae75899b..90e968d60b 100644 --- a/inst/extdata/OSD/L/LACY.json +++ b/inst/extdata/OSD/L/LACY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LADYBIRD.json b/inst/extdata/OSD/L/LADYBIRD.json index 44f40fc57b..3305bb7106 100644 --- a/inst/extdata/OSD/L/LADYBIRD.json +++ b/inst/extdata/OSD/L/LADYBIRD.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 3 centimeter; (0 to 1 inch); fresh and slightly decomposed fern fronds, leaves and twigs; very strongly acid (pH 4.5). (1 to 15 centimeters thick)" + }, { "name": "A1", "top": 3, diff --git a/inst/extdata/OSD/L/LAGALL.json b/inst/extdata/OSD/L/LAGALL.json index 3c4a5fb9a3..b2abe8e11d 100644 --- a/inst/extdata/OSD/L/LAGALL.json +++ b/inst/extdata/OSD/L/LAGALL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LAGITOS.json b/inst/extdata/OSD/L/LAGITOS.json index 17a397368d..1354d68d57 100644 --- a/inst/extdata/OSD/L/LAGITOS.json +++ b/inst/extdata/OSD/L/LAGITOS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "Bw--9 to 20 inches; very dark grayish brown (10YR 3/3) silt loam, brown (10YR 5/3) dry; common medium distinct dark yellowish brown (10YR 3/6) mottles, yellowish brown (10YR 5/6) dry; moderate fine, very fine, and medium angular blocky structures; hard, firm, sticky, plastic; weakly smeary; many fine and very fine roots; many fine and very fine irregular and tubular pores; 10 percent pebbles; very strongly acid (pH 4.8); at 20 inches 1/4-inch thick intermittent layer of yellowish red (5YR 5/8) silt loam, reddish yellow (7.5YR 6/8) dry; massive; very hard, very firm, sticky plastic; weakly smeary; strongly acid (pH 5.2); abrupt smooth boundary. (11 to 17 inches thick)" }, + { + "name": "C1", + "top": 51, + "bottom": 1, + "dry_hue": "5Y", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "5Y", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "C1--20-1/4 to 30 inches; light olive gray (5Y 6/2) silt loam, white (5Y 8/1) dry; common medium distinct light olive brown (2.5Y 5/4) mottles, pale yellow (2.5Y 7/4) dry; massive; hard, firm, sticky, plastic; weakly smeary; very few very fine roots; common very fine irregular and tubular pores; 10 percent pebbles; very strongly acid (pH 5.0); abrupt smooth boundary. (7 to 10 inches thick)" + }, { "name": "C2", "top": 76, diff --git a/inst/extdata/OSD/L/LAKOA.json b/inst/extdata/OSD/L/LAKOA.json index fad01cf80a..04105ddc1e 100644 --- a/inst/extdata/OSD/L/LAKOA.json +++ b/inst/extdata/OSD/L/LAKOA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 2, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LAMEDEER.json b/inst/extdata/OSD/L/LAMEDEER.json index d44e4047bf..5bc00b6427 100644 --- a/inst/extdata/OSD/L/LAMEDEER.json +++ b/inst/extdata/OSD/L/LAMEDEER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LANTERN.json b/inst/extdata/OSD/L/LANTERN.json index 7fc2086a98..d6589747e3 100644 --- a/inst/extdata/OSD/L/LANTERN.json +++ b/inst/extdata/OSD/L/LANTERN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LAROQUE.json b/inst/extdata/OSD/L/LAROQUE.json index d838f4b9a7..30b61e08a4 100644 --- a/inst/extdata/OSD/L/LAROQUE.json +++ b/inst/extdata/OSD/L/LAROQUE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LARTON.json b/inst/extdata/OSD/L/LARTON.json index 04f9026a3c..f2b20cdce5 100644 --- a/inst/extdata/OSD/L/LARTON.json +++ b/inst/extdata/OSD/L/LARTON.json @@ -120,7 +120,7 @@ { "name": "Bt1", "top": 64, - "bottom": "NA", + "bottom": 79, "dry_hue": "2.5YR", "dry_value": 6, "dry_chroma": 6, @@ -142,7 +142,7 @@ }, { "name": "Bt2", - "top": "NA", + "top": 79, "bottom": 122, "dry_hue": "5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/L/LASAC.json b/inst/extdata/OSD/L/LASAC.json index 1e8e99b9e4..8b2d55ba51 100644 --- a/inst/extdata/OSD/L/LASAC.json +++ b/inst/extdata/OSD/L/LASAC.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 TO 1 inch; forest litter of needles, twigs and leaves; abrupt smooth boundary. (0 to 2 inches thick)" + }, { "name": "A", "top": 3, diff --git a/inst/extdata/OSD/L/LASTANCE.json b/inst/extdata/OSD/L/LASTANCE.json index 10109e9e61..097aea75f4 100644 --- a/inst/extdata/OSD/L/LASTANCE.json +++ b/inst/extdata/OSD/L/LASTANCE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--2 inches to 1 inch; needles, twigs, cones, leaves, etc." }, { - "name": "0e", + "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LAS_FLORES.json b/inst/extdata/OSD/L/LAS_FLORES.json index 5388402c44..f3f4cfc137 100644 --- a/inst/extdata/OSD/L/LAS_FLORES.json +++ b/inst/extdata/OSD/L/LAS_FLORES.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": 3, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "loamy sand", + "structure": "weak fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.8, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A11--0 to 3; Light brownish gray (10YR 6/2) loamy sand, dark grayish brown (10YR 4/2) moist; weak fine granular structure; soft, very friable, nonsticky, nonplastic; many very fine roots; many very fine interstitial pores; medium acid (pH 5.8); abrupt smooth boundary. (2 to 4 inches thick)" + }, { "name": "A12", - "top": 8, - "bottom": 36, + "top": 3, + "bottom": 14, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "B21t", - "top": 36, - "bottom": 56, + "top": 14, + "bottom": 22, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -119,8 +142,8 @@ }, { "name": "B22t", - "top": 56, - "bottom": 97, + "top": 22, + "bottom": 38, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -142,8 +165,8 @@ }, { "name": "C1", - "top": 97, - "bottom": 122, + "top": 38, + "bottom": 48, "dry_hue": "5Y", "dry_value": 8, "dry_chroma": 3, @@ -165,8 +188,8 @@ }, { "name": "C2", - "top": 122, - "bottom": 137, + "top": 48, + "bottom": 54, "dry_hue": "5Y", "dry_value": 7, "dry_chroma": 1, diff --git a/inst/extdata/OSD/L/LATINA.json b/inst/extdata/OSD/L/LATINA.json index 5924a23f50..f4fb0ecfc3 100644 --- a/inst/extdata/OSD/L/LATINA.json +++ b/inst/extdata/OSD/L/LATINA.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "Bnz2--23 to 41 cm (9 to 16 in); pale red (2.5YR 6/2) sandy clay loam, light brownish gray (10YR 6/2) dry; moderate fine and medium angular blocky structure; very hard, friable, sticky and plastic; few fine pores; few patchy clay films; few fine distinct yellowish brown (10YR 5/4) masses of iron accumulation; common threads of salt; strongly saline; slightly effervescent; moderately alkaline; gradual wavy boundary. (13 to 23 cm [5 to 9 in] thick)" }, + { + "name": "Bknz", + "top": 41, + "bottom": 76, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "sandy clay loam", + "structure": "weak coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bknz--41 to 76 (16 to 30 in); light brownish gray (10YR 6/2) sandy clay loam, light brownish gray (10YR 6/2) dry; weak coarse angular blocky structure; very hard, friable, sticky and plastic; few fine pores; few faint yellowish brown (10YR 5/4) masses of iron accumulation; common threads and nests of salt; 4 percent masses of calcium carbonate; strongly saline; strongly effervescent; moderately alkaline; gradual wavy boundary. (20 to 48 cm [8 to l8 in] thick)" + }, { "name": "BCknz", "top": 76, diff --git a/inst/extdata/OSD/L/LAUREN.json b/inst/extdata/OSD/L/LAUREN.json index 1d4164e004..845b10421e 100644 --- a/inst/extdata/OSD/L/LAUREN.json +++ b/inst/extdata/OSD/L/LAUREN.json @@ -162,6 +162,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bw--33 to 44 inches; dark brown (7.5YR 3/2) very gravelly coarse sandy loam, brown (10YR 5/3) dry; massive; slightly hard, very friable, nonsticky, nonplastic; few fine fibrous roots; many very fine and medium pores; 55 percent pebbles; neutral (pH 6.7); clear wavy boundary. (5 to 14 inches thick)" + }, + { + "name": "2C", + "top": 112, + "bottom": 132, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "loamy coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C--44 to 52+ inches; dark brown (10YR 3/3) very gravelly loamy coarse sand, pale brown (10YR 6/3) dry; single grain; loose, nonsticky, nonplastic; 55 percent pebbles; neutral (pH 6.8)." } ] ] diff --git a/inst/extdata/OSD/L/LAVATOP.json b/inst/extdata/OSD/L/LAVATOP.json index 8efe468ad8..2d80967d0c 100644 --- a/inst/extdata/OSD/L/LAVATOP.json +++ b/inst/extdata/OSD/L/LAVATOP.json @@ -165,7 +165,7 @@ }, { "name": "R", - "top": "NA", + "top": 65, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/L/LAVENTANA.json b/inst/extdata/OSD/L/LAVENTANA.json index b0b5ccdac5..6d87d77d91 100644 --- a/inst/extdata/OSD/L/LAVENTANA.json +++ b/inst/extdata/OSD/L/LAVENTANA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; forest litter. (0 to 2 inches thick)." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/L/LAWNDALE.json b/inst/extdata/OSD/L/LAWNDALE.json index 4260e4cd78..db809e9c44 100644 --- a/inst/extdata/OSD/L/LAWNDALE.json +++ b/inst/extdata/OSD/L/LAWNDALE.json @@ -277,6 +277,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "2C1--132 to 180 cm (52 to 71 inches); yellowish brown (10YR 5/8) fine sand; single grain; loose; slightly alkaline; gradual smooth boundary." + }, + { + "name": "2C2", + "top": 180, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 8, + "texture_class": "fine sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "slightly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C2--180 to 203 (71 to 80 inches); yellowish brown (10YR 5/8) fine sand; single grain; loose; slightly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/L/LA_TAINA.json b/inst/extdata/OSD/L/LA_TAINA.json index 006c88f925..ff8699d9eb 100644 --- a/inst/extdata/OSD/L/LA_TAINA.json +++ b/inst/extdata/OSD/L/LA_TAINA.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--17 to 29 inches; Highly fractured serpentinite bedrock." + }, + { + "name": "R", + "top": 74, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "Hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--29+ inches; Hard consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/L/LA_TEA.json b/inst/extdata/OSD/L/LA_TEA.json index 8431f56e25..17949e4d32 100644 --- a/inst/extdata/OSD/L/LA_TEA.json +++ b/inst/extdata/OSD/L/LA_TEA.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Cr--16 to 18 inches; highly fractured semi-consolidated limestone that is rippable by hand tools; abrupt irregular boundary. (2 to 8 inches thick)" + }, + { + "name": "R", + "top": 46, + "bottom": 102, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--18 to 40+ inches; hard consolidated limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/L/LEADVILLE.json b/inst/extdata/OSD/L/LEADVILLE.json index 7d092f606c..365363da78 100644 --- a/inst/extdata/OSD/L/LEADVILLE.json +++ b/inst/extdata/OSD/L/LEADVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 3 inches; slightly decomposed needles, bark, twigs, and grass remains. (1 to 2 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LEATHERBARK.json b/inst/extdata/OSD/L/LEATHERBARK.json index 2e25cc4f76..a530c512b0 100644 --- a/inst/extdata/OSD/L/LEATHERBARK.json +++ b/inst/extdata/OSD/L/LEATHERBARK.json @@ -254,6 +254,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C--37 to 40 inches; brown (10YR 4/3) very channery silt loam; massive; friable; many medium distinct gray (10YR 5/1) iron depletions and common medium prominent yellowish brown (10YR 5/8) iron concentrations in the matrix; 35 percent rock fragments; very strongly acid; clear wavy boundary. (0 to 15 inches thick)" + }, + { + "name": "Cr", + "top": 102, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--40+ inches; black (10YR 2/1) gray (10YR 5/1) and reddish brown (2.5YR 4/4) fractured siltstones and shales. (Excavation difficulty is moderate requiring impact energy or foot pressure when using a tile spade.)" } ] ] diff --git a/inst/extdata/OSD/L/LEDFORD.json b/inst/extdata/OSD/L/LEDFORD.json index b06a5e1358..9422b3be25 100644 --- a/inst/extdata/OSD/L/LEDFORD.json +++ b/inst/extdata/OSD/L/LEDFORD.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LEDOW.json b/inst/extdata/OSD/L/LEDOW.json index b35c12be2f..cd54f8002f 100644 --- a/inst/extdata/OSD/L/LEDOW.json +++ b/inst/extdata/OSD/L/LEDOW.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LEDWITH.json b/inst/extdata/OSD/L/LEDWITH.json index 15bf3b6c2d..ce5ab38bc5 100644 --- a/inst/extdata/OSD/L/LEDWITH.json +++ b/inst/extdata/OSD/L/LEDWITH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 23, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LEERAY.json b/inst/extdata/OSD/L/LEERAY.json index 9544790200..9f2405ac0c 100644 --- a/inst/extdata/OSD/L/LEERAY.json +++ b/inst/extdata/OSD/L/LEERAY.json @@ -117,6 +117,52 @@ "topography": "smooth", "narrative": "A2--11 to 28 cm (4 to 11 in); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to moderate medium and coarse angular blocky; very hard, very firm, very sticky and very plastic; common very fine and fine roots throughout; few very fine continuous tubular pores; few fine and medium irregular calcium carbonate nodules; 1 percent rounded siliceous gravel; strongly effervescent; moderately alkaline; clear smooth boundary. Combined thickness of the A horizons is 13 to 71 cm (5 to 28 in)" }, + { + "name": "Bss1", + "top": 28, + "bottom": 42, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "moderate coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Bss1--28 to 42 (11 to 17 in); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; moderate coarse angular blocky structure parting to moderate medium angular blocky; very hard, very firm, very sticky and very plastic; few very fine roots throughout; few very fine continuous pores; prominent continuous very dark grayish brown (10YR 3/2) slickensides; few very dark gray (10YR 3/1) stains on slickenside surfaces; common fine and medium irregular calcium carbonate nodules; 1 percent rounded siliceous gravel; strongly effervescent; moderately alkaline; clear smooth boundary." + }, + { + "name": "Bss2", + "top": 42, + "bottom": 81, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "moderate coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Bss2--42 to 81 (17 to 32 in); grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; moderate coarse prismatic structure parting to moderate medium and coarse angular blocky; very hard, very firm, very sticky and very plastic; few fine roots throughout; few very fine continuous pores; prominent continuous very dark grayish brown (10YR 3/2) slickensides; common very dark gray (10YR 3/1) iron-manganese stains on slickenside faces; few fine rounded iron-manganese concretions and common fine and medium irregular calcium carbonate nodules; 1 percent rounded siliceous gravel; strongly effervescent; moderately alkaline; gradual smooth boundary. Combined thickness of the Bss horizons is 0 to 68 cm (0 to 27 in)" + }, { "name": "Bkss1", "top": 81, diff --git a/inst/extdata/OSD/L/LEGAULT.json b/inst/extdata/OSD/L/LEGAULT.json index 0f67602339..e4942c2fb2 100644 --- a/inst/extdata/OSD/L/LEGAULT.json +++ b/inst/extdata/OSD/L/LEGAULT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LELA.json b/inst/extdata/OSD/L/LELA.json index b28885ae72..a873e405cb 100644 --- a/inst/extdata/OSD/L/LELA.json +++ b/inst/extdata/OSD/L/LELA.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "A--15 33 cm (6 to 13 in); dark reddish brown (5YR 3/2) crushed silty clay; dark reddish brown (5YR 2/2) crushed moist; strong very fine and fine angular blocky structure; very hard, very firm; few fine roots; few very fine and fine constricted tubular pores; noneffervescent; neutral (pH 7.0); clear wavy boundary. (Thickness of the A horizon is 10 to 30 cm [4 to 12 in])" }, + { + "name": "Bss1", + "top": 33, + "bottom": 86, + "dry_hue": "5YR", + "dry_value": 3, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silty clay", + "structure": "moderate medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.5, + "pH_class": "slightly alkaline", + "eff_class": "noneffervescent", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bss1--33 to 86 (13 to 34 in); dark reddish brown (5YR 3/2) crushed silty clay; dark reddish brown (5YR 2/2) crushed moist; moderate medium angular blocky structure parting to strong very fine and fine angular blocky; very hard, very firm; few very fine roots; common very fine and fine constricted tubular pores; common intersecting slickensides tilted at an angle of 20 to 40 degrees; few pressure faces on faces of peds; noneffervescent; slightly alkaline (pH 7.5); gradual wavy boundary." + }, { "name": "Bss2", "top": 86, diff --git a/inst/extdata/OSD/L/LEMAH.json b/inst/extdata/OSD/L/LEMAH.json index 425e1112da..e911f23f5d 100644 --- a/inst/extdata/OSD/L/LEMAH.json +++ b/inst/extdata/OSD/L/LEMAH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LEMITAR.json b/inst/extdata/OSD/L/LEMITAR.json index 05c85a17da..e56498b63f 100644 --- a/inst/extdata/OSD/L/LEMITAR.json +++ b/inst/extdata/OSD/L/LEMITAR.json @@ -97,7 +97,7 @@ { "name": "Bt", "top": 5, - "bottom": "NA", + "bottom": 25, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -119,8 +119,8 @@ }, { "name": "Btk", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 30, "dry_hue": "7.5YR", "dry_value": 4, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "2R", - "top": "NA", + "top": 30, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/L/LEMOLO.json b/inst/extdata/OSD/L/LEMOLO.json index 00faa57909..c44a18c3ff 100644 --- a/inst/extdata/OSD/L/LEMOLO.json +++ b/inst/extdata/OSD/L/LEMOLO.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LEMONEX.json b/inst/extdata/OSD/L/LEMONEX.json index bf9a6c703f..b3107750fa 100644 --- a/inst/extdata/OSD/L/LEMONEX.json +++ b/inst/extdata/OSD/L/LEMONEX.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "Oi--0 to 3 centimeters (0 to 1 inch); pine needles, twigs and leaves; abrupt smooth boundary. (1 to 3 inches thick)" }, + { + "name": "A1", + "top": 3, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "clay loam", + "structure": "moderate fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": 6.6, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--3 to 8 centimetyers (1 to 3 inches); black (10YR 2/1) stony ashy clay loam, dark gray (10YR 4/1) dry; moderate fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; common fine discontinuous pores; 10 percent stones, 5 percent cobbles and 10 percent gravel; neutral (pH 6.6); clear smooth boundary. (5 to 25 centimeters (2 to 10 inches) thick)" + }, { "name": "A2", "top": 8, diff --git a/inst/extdata/OSD/L/LEMPIRA.json b/inst/extdata/OSD/L/LEMPIRA.json index 1a1be2e5f3..0d658b189a 100644 --- a/inst/extdata/OSD/L/LEMPIRA.json +++ b/inst/extdata/OSD/L/LEMPIRA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; slightly decomposed leaves, needles and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/L/LETTIA.json b/inst/extdata/OSD/L/LETTIA.json index 519e2159b2..f0840de08f 100644 --- a/inst/extdata/OSD/L/LETTIA.json +++ b/inst/extdata/OSD/L/LETTIA.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LEW.json b/inst/extdata/OSD/L/LEW.json index 6ff7412d00..c746e3652e 100644 --- a/inst/extdata/OSD/L/LEW.json +++ b/inst/extdata/OSD/L/LEW.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LE_BAR.json b/inst/extdata/OSD/L/LE_BAR.json index e2b233df69..6a7e732246 100644 --- a/inst/extdata/OSD/L/LE_BAR.json +++ b/inst/extdata/OSD/L/LE_BAR.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1 to 1/2 inch; litter of needles, twigs, wood, leaves. (1/2 to 1 inch thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1/2 inch to 0; partially decomposed remains of needles, twigs, wood, leaves. (1/2 to 1 inch thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/L/LICKDALE.json b/inst/extdata/OSD/L/LICKDALE.json index ceadc472f3..169d178883 100644 --- a/inst/extdata/OSD/L/LICKDALE.json +++ b/inst/extdata/OSD/L/LICKDALE.json @@ -70,6 +70,122 @@ ] ], "HORIZONS": [ - {} + [ + { + "name": "Ap", + "top": 0, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Ap--0-10--Black (10YR 2/1) silt loam; weak fine granular structure; friable, slightly sticky and slightly plastic; many roots; medium acid (limed); abrupt smooth boundary. (6 to 12 inches thick)" + }, + { + "name": "B21g", + "top": 10, + "bottom": 20, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silty clay loam", + "structure": "weak medium blocky and subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "B21g--10-20 --Dark grayish brown (10YR 4/2) silty clay loam, with common fine distinct mottles of yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4); weak medium blocky and subangular blocky structure; firm, sticky and plastic; many roots in upper portion; strongly acid; clear wavy boundary. (7 to 15 inches thick)" + }, + { + "name": "B22g", + "top": 20, + "bottom": 32, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 1, + "texture_class": "sandy clay loam", + "structure": "moderate coarse blocky and subangular blocky", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "B22g--20-32 --Gray (10YR 5/1) sandy clay loam, with common medium distinct mottles of yellowish red (5YR 5/6); moderate coarse blocky and subangular blocky structure; firm, sticky and plastic; a few roots in upper portion; some irregular inclusions of loose sandy material; very strongly acid; abrupt wavy boundary. (7 to 13 inches thick)" + }, + { + "name": "IICg", + "top": 32, + "bottom": 46, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "loamy coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "irregular", + "narrative": "IICg--32-46 --Light brownish gray (10YR 6/2) loamy coarse sand; single grain; loose; no roots; very strongly acid; clear irregular boundary. (12 to 32 inches thick)" + }, + { + "name": "R", + "top": 46, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R-- 46 --Gray to pale brown weathered sandstone." + } + ] ] } diff --git a/inst/extdata/OSD/L/LIDAN.json b/inst/extdata/OSD/L/LIDAN.json index cf7ee80316..48ba239302 100644 --- a/inst/extdata/OSD/L/LIDAN.json +++ b/inst/extdata/OSD/L/LIDAN.json @@ -189,7 +189,7 @@ { "name": "Bqkm2", "top": 91, - "bottom": "NA", + "bottom": 152, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 3, diff --git a/inst/extdata/OSD/L/LILAPOINT.json b/inst/extdata/OSD/L/LILAPOINT.json index 39b49f1289..09f55e0a2f 100644 --- a/inst/extdata/OSD/L/LILAPOINT.json +++ b/inst/extdata/OSD/L/LILAPOINT.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "Bw2--43 to 56 cm; very pale brown (10YR 7/4) loam, yellowish brown (10YR 5/4), moist; weak medium and fine subangular blocky structure; very friable, soft, slightly sticky, slightly plastic; few coarse and common medium and fine roots; 1 percent gravel; strongly effervescent (8 percent calcium carbonate equivalent), carbonates are finely disseminated; moderately alkaline (pH 8.2); clear smooth boundary." }, + { + "name": "Bw3", + "top": 56, + "bottom": 86, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "fine sandy loam", + "structure": "weak medium and fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Bw3--56 to 86m; very pale brown (10YR 7/4) fine sandy loam, brown (10YR 5/3), moist; weak medium and fine subangular blocky structure; friable, slightly hard, slightly sticky, moderately plastic; few coarse and common medium and fine roots; 3 percent gravel; strongly effervescent (7 percent calcium carbonate equivalent), carbonates are finely disseminated; moderately alkaline (pH 8.2); gradual smooth boundary. (Combined thickness of the Bw horizons is 15 to 71 cm)" + }, { "name": "C", "top": 86, diff --git a/inst/extdata/OSD/L/LIMINGA.json b/inst/extdata/OSD/L/LIMINGA.json index 1661a57178..73b920a97b 100644 --- a/inst/extdata/OSD/L/LIMINGA.json +++ b/inst/extdata/OSD/L/LIMINGA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 2, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LITTLEFAWN.json b/inst/extdata/OSD/L/LITTLEFAWN.json index 037823606c..fa8a03d54e 100644 --- a/inst/extdata/OSD/L/LITTLEFAWN.json +++ b/inst/extdata/OSD/L/LITTLEFAWN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LITTLERED.json b/inst/extdata/OSD/L/LITTLERED.json index eb63862f56..0b6063a3c2 100644 --- a/inst/extdata/OSD/L/LITTLERED.json +++ b/inst/extdata/OSD/L/LITTLERED.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; litter of manzanita and pine." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/L/LITTLESPRING.json b/inst/extdata/OSD/L/LITTLESPRING.json index 00404acfc2..da25a10c84 100644 --- a/inst/extdata/OSD/L/LITTLESPRING.json +++ b/inst/extdata/OSD/L/LITTLESPRING.json @@ -208,6 +208,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "3Cky3--150 to 165 cm; pale brown (10YR 6/3) stratified sandy clay loam and sandy loam, brown (10YR 4/3) moist; strong thick platy structure parting to moderate medium subangular blocky and strong fine subangular blocky; slightly hard, friable, slightly sticky and moderately plastic; few very fine and fine irregular pores; few (1 percent) coarse prominent masses of secondary calcium carbonate; few (1 percent) fine prominent gypsum threads; slightly effervescent; moderately alkaline (pH 8.0). (Combined thickness of 3Cky and Ck horizons 48 to 137 cm)" + }, + { + "name": "3C", + "top": 165, + "bottom": 191, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "3C--165 to 191; pale brown (10YR 6/3) sand, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; few very fine and fine interstitial pores; 5 percent gravel; moderately alkaline (pH 8.2)." } ] ] diff --git a/inst/extdata/OSD/L/LIVENGOOD.json b/inst/extdata/OSD/L/LIVENGOOD.json index 654231a15d..c7e05d7c5c 100644 --- a/inst/extdata/OSD/L/LIVENGOOD.json +++ b/inst/extdata/OSD/L/LIVENGOOD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LOBITOS.json b/inst/extdata/OSD/L/LOBITOS.json index f318922ef4..f23ed675b7 100644 --- a/inst/extdata/OSD/L/LOBITOS.json +++ b/inst/extdata/OSD/L/LOBITOS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 1, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LOLOPEAK.json b/inst/extdata/OSD/L/LOLOPEAK.json index e43e58fe2e..8e5165ad66 100644 --- a/inst/extdata/OSD/L/LOLOPEAK.json +++ b/inst/extdata/OSD/L/LOLOPEAK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LOMAPELONA.json b/inst/extdata/OSD/L/LOMAPELONA.json index 6d4e23b605..d754dd9533 100644 --- a/inst/extdata/OSD/L/LOMAPELONA.json +++ b/inst/extdata/OSD/L/LOMAPELONA.json @@ -166,7 +166,7 @@ { "name": "C4", "top": 99, - "bottom": "NA", + "bottom": 203, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, diff --git a/inst/extdata/OSD/L/LONESTAR.json b/inst/extdata/OSD/L/LONESTAR.json index ef35ab6527..145cebbf96 100644 --- a/inst/extdata/OSD/L/LONESTAR.json +++ b/inst/extdata/OSD/L/LONESTAR.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LORACK.json b/inst/extdata/OSD/L/LORACK.json index cd2262c2cd..d25140b287 100644 --- a/inst/extdata/OSD/L/LORACK.json +++ b/inst/extdata/OSD/L/LORACK.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LOSMARIOS.json b/inst/extdata/OSD/L/LOSMARIOS.json index 80e031cb6a..228fbfaf1a 100644 --- a/inst/extdata/OSD/L/LOSMARIOS.json +++ b/inst/extdata/OSD/L/LOSMARIOS.json @@ -97,7 +97,7 @@ { "name": "2Bw", "top": 15, - "bottom": "NA", + "bottom": 46, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "2Bk", - "top": "NA", + "top": 46, "bottom": 74, "dry_hue": "10YR", "dry_value": 5, diff --git a/inst/extdata/OSD/L/LOSTPOINT.json b/inst/extdata/OSD/L/LOSTPOINT.json index 95c1dc81f4..36662348bf 100644 --- a/inst/extdata/OSD/L/LOSTPOINT.json +++ b/inst/extdata/OSD/L/LOSTPOINT.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "An2--15 to 56 centimeters (6 to 22 inches); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) with coatings of black (10YR 2/1) moist; moderate medium and strong very coarse prismatic structure; extremely hard, friable, very sticky and very plastic; few fine, common and many very fine roots, mostly on ped faces; common very fine tubular pores; cracks are 5 to 10 millimeters wide; ESP is 12.8; EC is 10.5 ds/m; moderately alkaline (p 8.0); gradual wavy boundary. (36 to 50 centimeters; 14 to 20 inches thick)." }, + { + "name": "Bnss", + "top": 56, + "bottom": 91, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "strong very coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bnss--56 o 91 centimeters (22 to 36 inches); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; strong very coarse prismatic structure; extremely hard, friable, very sticky and very plastic; many very fine roots, mostly on ped faces; common very fine tubular pores; cracks 1 to 5 millimeters wide; ESP is 25.8; EC is 17.7 ds/m; few pressure faces and few intersecting slickensides; neutral (pH 6.8); gradual wavy boundary. (30 to 40 centimeters; 12 to 16 inches thick)." + }, { "name": "BCn", "top": 91, diff --git a/inst/extdata/OSD/L/LOS_PENONES.json b/inst/extdata/OSD/L/LOS_PENONES.json index efa542898a..3b13c0964b 100644 --- a/inst/extdata/OSD/L/LOS_PENONES.json +++ b/inst/extdata/OSD/L/LOS_PENONES.json @@ -93,6 +93,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Oe--0 to 8 inches; black (10YR 2/1) mucky peat, very dark brown (10YR 2/2) crushed and rubbed; about 70 percent fiber, 30 percent rubbed; massive; friable; many very fine, fine and medium roots, few coarse roots; moderately alkaline; abrupt wavy boundary. (3 to 15 inches thick)" + }, + { + "name": "R", + "top": 20, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--8+ inches; hard consolidated limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/L/LOUSCOT.json b/inst/extdata/OSD/L/LOUSCOT.json index b883120a74..09d78497e2 100644 --- a/inst/extdata/OSD/L/LOUSCOT.json +++ b/inst/extdata/OSD/L/LOUSCOT.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A11--0- to 1-inch; light brownish gray (10YR 6/2) silt loam, darkk gray (10YR 4/1) moist; vesicular crust; slightly hard, very friable, sticky and plastic; few fine roots; many very fine vesicular pores; medium acid (pH 6.0); abrupt smooth boundary. (1/2- to 1-inches thick)" + }, { "name": "A12", - "top": 3, - "bottom": 10, + "top": 1, + "bottom": 4, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "C1", - "top": 10, - "bottom": 36, + "top": 4, + "bottom": 14, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -119,8 +142,8 @@ }, { "name": "C2", - "top": 36, - "bottom": 56, + "top": 14, + "bottom": 22, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -142,8 +165,8 @@ }, { "name": "C3", - "top": 56, - "bottom": 86, + "top": 22, + "bottom": 34, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -165,8 +188,8 @@ }, { "name": "C4", - "top": 86, - "bottom": 152, + "top": 34, + "bottom": 60, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, diff --git a/inst/extdata/OSD/L/LOVEJOY.json b/inst/extdata/OSD/L/LOVEJOY.json index 5893b3157c..0624f1e478 100644 --- a/inst/extdata/OSD/L/LOVEJOY.json +++ b/inst/extdata/OSD/L/LOVEJOY.json @@ -71,10 +71,56 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 2.5, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "strong very thin platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.3, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--0 to 2 1/2\" inches; light gray (10YR 6/1) loam, dark grayish brown (10YR 4/2) moist; strong very thin platy structure; soft, very friable, slightly sticky, slightly plastic; many very fine and few fine roots; many very fine vesicular pores and common tubular pores; strongly acid (pH 5.3); clear smooth boundary. (2 to 6 inches thick)" + }, + { + "name": "A2", + "top": 2.5, + "bottom": 10, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "moderate thin platy", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.5, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A2--2 1/2 to 10 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; moderate medium prismatic and moderate thin platy structure; hard, friable, sticky, plastic; common very fine and few fine and medium roots; many very fine horizontal tubular pores and common very fine interstitial pores; common thin clay films lining pores; strongly acid (pH 5.5); clear smooth boundary. (5 to 8 inches thick)" + }, { "name": "A3", - "top": 25, - "bottom": 41, + "top": 10, + "bottom": 16, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 1, @@ -96,8 +142,8 @@ }, { "name": "Bt", - "top": 41, - "bottom": 53, + "top": 16, + "bottom": 21, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, @@ -119,8 +165,8 @@ }, { "name": "Bqkm", - "top": 53, - "bottom": 104, + "top": 21, + "bottom": 41, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 2, @@ -142,8 +188,8 @@ }, { "name": "C", - "top": 104, - "bottom": 135, + "top": 41, + "bottom": 53, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 4, diff --git a/inst/extdata/OSD/L/LOWERCREEK.json b/inst/extdata/OSD/L/LOWERCREEK.json index b6de5ef360..322647de5c 100644 --- a/inst/extdata/OSD/L/LOWERCREEK.json +++ b/inst/extdata/OSD/L/LOWERCREEK.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01 and 02", + "name": "O1 and O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LUAP.json b/inst/extdata/OSD/L/LUAP.json index 409c2ab554..61e46a7721 100644 --- a/inst/extdata/OSD/L/LUAP.json +++ b/inst/extdata/OSD/L/LUAP.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "2Bk2--58 to 94 cm; variegated extremely gravelly coarse sand; single grained; loose, nonsticky and nonplastic; common very fine roots; many very fine interstitial pores; 70 percent gravel; thin lime coats on undersides of gravel; violently effervescent; moderately alkaline (pH 8.2); abrupt wavy boundary. (0 to 40 thick)" }, + { + "name": "3Bkm", + "top": 94, + "bottom": 112, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 7, + "moist_chroma": 4, + "texture_class": "NA", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "strongly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "violently effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "3Bkm--94 to 112; very pale brown (10YR 8/2) continuous strongly cemented lime hardpan, pale yellow (2.5Y 7/4) moist; massive; extremely hard, extremely firm; 70 percent gravel; violently effervescent; clear wavy boundary. (5 to 20 thick)" + }, { "name": "4Ck", "top": 112, diff --git a/inst/extdata/OSD/L/LUCILE.json b/inst/extdata/OSD/L/LUCILE.json index 6d893a5772..93ffae20d2 100644 --- a/inst/extdata/OSD/L/LUCILE.json +++ b/inst/extdata/OSD/L/LUCILE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LUMBERLY.json b/inst/extdata/OSD/L/LUMBERLY.json index 52319e3347..1ff3c992a3 100644 --- a/inst/extdata/OSD/L/LUMBERLY.json +++ b/inst/extdata/OSD/L/LUMBERLY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LUNA.json b/inst/extdata/OSD/L/LUNA.json index 3a321b4d52..6cc935d3ce 100644 --- a/inst/extdata/OSD/L/LUNA.json +++ b/inst/extdata/OSD/L/LUNA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/L/LUTAK.json b/inst/extdata/OSD/L/LUTAK.json index 9f2c6e3319..908b6c9942 100644 --- a/inst/extdata/OSD/L/LUTAK.json +++ b/inst/extdata/OSD/L/LUTAK.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LYNNWOOD.json b/inst/extdata/OSD/L/LYNNWOOD.json index 909f47fb14..d4b7857fcb 100644 --- a/inst/extdata/OSD/L/LYNNWOOD.json +++ b/inst/extdata/OSD/L/LYNNWOOD.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/L/LYONSVILLE.json b/inst/extdata/OSD/L/LYONSVILLE.json index beefc3632c..24522bb86a 100644 --- a/inst/extdata/OSD/L/LYONSVILLE.json +++ b/inst/extdata/OSD/L/LYONSVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--3 to 1 inch; litter layer of fir needles and leaves of shrubs; abrupt smooth boundary. (1 to 4 inches thick)" }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MACFARLANE.json b/inst/extdata/OSD/M/MACFARLANE.json index 62be4394b1..21f583866b 100644 --- a/inst/extdata/OSD/M/MACFARLANE.json +++ b/inst/extdata/OSD/M/MACFARLANE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 3 inches; undecomposed organic material, principally bark, twigs, and needles." }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MACHIAS.json b/inst/extdata/OSD/M/MACHIAS.json index f2bc605740..511fe047e8 100644 --- a/inst/extdata/OSD/M/MACHIAS.json +++ b/inst/extdata/OSD/M/MACHIAS.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "B22g--2 to 20 inches; dark yellowish brown (10YR 4/4) to yellowish brown (10YR 5/6) paling with depth to olive brown (2.5Y 4/4) gravelly loam; weak fine granular structure; and common distinct coarse mottling of strong brown and light gray occurs at 12 to 14 inches; strongly acid; gradual wavy boundary. (10 to 20 inches thick)" + }, + { + "name": "D", + "top": 51, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "very fine sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "D--20+ inches; very dark grayish brown (10YR-2.5Y 3/2) to dark grayish brown (10YR-2.5Y 4/2) stratified gravel and sand; single grained; loose. Pebbles are mostly 0.5 to 3 inches in diameter and many have olive brown (2.5Y 4/4) silt or very fine sand caps but are clean below. Cobbles and stones are common in some places. Strata tend to be about 8 to 12 inches in thickness and are not necessarily continuous. Faint to distinct coarse common mottles of strong broun and light gray occur in the upper three or four feet but gradually fade with depth and are no longer noted below seven or eight feet." } ] ] diff --git a/inst/extdata/OSD/M/MACKATIE.json b/inst/extdata/OSD/M/MACKATIE.json index 419db6a904..06afda5ae4 100644 --- a/inst/extdata/OSD/M/MACKATIE.json +++ b/inst/extdata/OSD/M/MACKATIE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MACLAREN.json b/inst/extdata/OSD/M/MACLAREN.json index dd865fe39d..500ade2a22 100644 --- a/inst/extdata/OSD/M/MACLAREN.json +++ b/inst/extdata/OSD/M/MACLAREN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MACMEAL.json b/inst/extdata/OSD/M/MACMEAL.json index e8088eb71a..cb302d1bb6 100644 --- a/inst/extdata/OSD/M/MACMEAL.json +++ b/inst/extdata/OSD/M/MACMEAL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i1", + "name": "Oi1", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -95,7 +95,7 @@ "narrative": "0i1--2 inches to 1-inch; mat of twigs, leaves, and dead plants." }, { - "name": "0i2", + "name": "Oi2", "top": 3, "bottom": "NA", "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MADDEN.json b/inst/extdata/OSD/M/MADDEN.json index 20328f20c6..f0b9b1f4fd 100644 --- a/inst/extdata/OSD/M/MADDEN.json +++ b/inst/extdata/OSD/M/MADDEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MAL.json b/inst/extdata/OSD/M/MAL.json index 05d7646a8f..84133e61a8 100644 --- a/inst/extdata/OSD/M/MAL.json +++ b/inst/extdata/OSD/M/MAL.json @@ -74,7 +74,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MALSTROM.json b/inst/extdata/OSD/M/MALSTROM.json index 4351fd5cbe..1399838290 100644 --- a/inst/extdata/OSD/M/MALSTROM.json +++ b/inst/extdata/OSD/M/MALSTROM.json @@ -143,7 +143,7 @@ { "name": "Bk2", "top": 64, - "bottom": "NA", + "bottom": 135, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 3, diff --git a/inst/extdata/OSD/M/MANEZE.json b/inst/extdata/OSD/M/MANEZE.json index 932556374d..6e5a67071b 100644 --- a/inst/extdata/OSD/M/MANEZE.json +++ b/inst/extdata/OSD/M/MANEZE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi-- 0 to 1 centimeter (0 to 1 inch); slightly decomposed oak leaves and twigs; moderately acid (pH 6.0). (0 to 4 centimeters thick)" + }, { "name": "A1", "top": 1, diff --git a/inst/extdata/OSD/M/MANKOMEN.json b/inst/extdata/OSD/M/MANKOMEN.json index 69c94590ff..3b56cf5335 100644 --- a/inst/extdata/OSD/M/MANKOMEN.json +++ b/inst/extdata/OSD/M/MANKOMEN.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 18, - "bottom": "NA", + "bottom": 38, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MANTON.json b/inst/extdata/OSD/M/MANTON.json index 02ef6f3349..1935f6af92 100644 --- a/inst/extdata/OSD/M/MANTON.json +++ b/inst/extdata/OSD/M/MANTON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "A0", + "name": "AO", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MAPLECREST.json b/inst/extdata/OSD/M/MAPLECREST.json index 182ebc569c..fbbeebba4f 100644 --- a/inst/extdata/OSD/M/MAPLECREST.json +++ b/inst/extdata/OSD/M/MAPLECREST.json @@ -117,29 +117,6 @@ "topography": "smooth", "narrative": "Bw1--8 to 18 inches, reddish brown (5YR 4/4) gravelly loam; weak fine granular structure; many fine and medium roots; friable; 20 percent rock fragments; strongly acid; clear smooth boundary." }, - { - "name": "2", - "top": 46, - "bottom": 76, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "5YR", - "moist_value": 5, - "moist_chroma": 4, - "texture_class": "loam", - "structure": "weak fine subangular blocky", - "dry_rupture": "NA", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "gravelly", - "pH": "NA", - "pH_class": "very strongly acid", - "eff_class": "NA", - "distinctness": "clear", - "topography": "wavy", - "narrative": "Bw-2--18 to 30 inches, reddish brown (5YR 5/4) gravelly loam; weak fine subangular blocky structure; common medium and fine roots; firm; 25 percent rock fragments; very strongly acid; clear wavy boundary." - }, { "name": "Bw3", "top": 76, diff --git a/inst/extdata/OSD/M/MAPLE_MOUNTAIN.json b/inst/extdata/OSD/M/MAPLE_MOUNTAIN.json index 02e77b6ba4..ec5f1f96ea 100644 --- a/inst/extdata/OSD/M/MAPLE_MOUNTAIN.json +++ b/inst/extdata/OSD/M/MAPLE_MOUNTAIN.json @@ -70,6 +70,122 @@ ] ], "HORIZONS": [ - {} + [ + { + "name": "A1", + "top": 0, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "cobbly", + "pH": 6.1, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Al--0 to 10\";Dark graylsh brown (10YR 4/2) cobbly loam, very dark brown (10YR 2/2) molst; moderate flne granular structure; soft, frlable, sllghtly stlcky, slightly plastlc; common flne, medlum, and few coarse roots; few flne tubular pores; slightly acid (pH 6.1); clear smooth boundary. (8 to 12 inches thick)" + }, + { + "name": "B21t", + "top": 10, + "bottom": 14, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "cobbly", + "pH": 6.5, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "B21t--10 to 14\";Graylsh brown (10YR 5/2) cobbly clay loam, dark brown (10YR 3/3) moist; moderate medlum and flne subangular blocky structure; hard, flrm, sticky, plastic; common fine, medlum, and few coarse roots; few fine tubular pores; thin continuous clay films; slightly acid (pH 6.5); clear smooth boundary. (3 to 6 inches thick)" + }, + { + "name": "B22t", + "top": 14, + "bottom": 33, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "cobbly", + "pH": 6.3, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "B22t--14 to 33\";Brown (7.5YR 5/4) cobbly clay loam, dark brown (7,5YR 4/4) moist; moderate coarse, medium and fine subangular blocky structure; very hard, very firm, sticky, very plastic; common fine, few medlum and coarse roots; few fine tubular pores; moderately thick continuous clay films; slightly acid (pH 6.3); gradual smooth boundary. (14 to 20 inche9 thick)" + }, + { + "name": "B23t", + "top": 33, + "bottom": 50, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 6, + "moist_chroma": 5, + "texture_class": "clay loam", + "structure": "moderate medium and fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "cobbly", + "pH": 64, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "B23t--33 to 50\";Llght brown (7.5YR 6/5) cobbly clay loam, brown (7.5YR 5/4) moist; moderate medium and fine subangular blocky structure; hard, firm, sticky, plastic; few fine roots; few fine tubular pores; thin continuous clay films; slightly acid (pH 64); gradual wavy boundary. (13 to 18 inches thlck)" + }, + { + "name": "C", + "top": 50, + "bottom": 56, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "sandy clay loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.8, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--50 to 56\";Pale brown (10YR 6/3) sandy clay loam, brown (lOYR 4/3) molst; massive; hard, friable, slightly sticky, plastic; few fine and medium tubular pores; slightly calcareous; mildly alkaline (pH 7.8)." + } + ] ] } diff --git a/inst/extdata/OSD/M/MARA.json b/inst/extdata/OSD/M/MARA.json index 08ac70702f..31cfa892b5 100644 --- a/inst/extdata/OSD/M/MARA.json +++ b/inst/extdata/OSD/M/MARA.json @@ -97,7 +97,7 @@ { "name": "Bw1", "top": 5, - "bottom": "NA", + "bottom": 25, "dry_hue": "2.5Y", "dry_value": 5, "dry_chroma": 2, diff --git a/inst/extdata/OSD/M/MARBLEMOUNT.json b/inst/extdata/OSD/M/MARBLEMOUNT.json index 2eb3f1825f..2a163cab90 100644 --- a/inst/extdata/OSD/M/MARBLEMOUNT.json +++ b/inst/extdata/OSD/M/MARBLEMOUNT.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MARESUA.json b/inst/extdata/OSD/M/MARESUA.json index 9b1334a85b..fcb5c3c159 100644 --- a/inst/extdata/OSD/M/MARESUA.json +++ b/inst/extdata/OSD/M/MARESUA.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--26 to 46 inches; soft semi-consolidated serpentinite bedrock that is rippable by hand tools." + }, + { + "name": "R", + "top": 117, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--46+ inches; hard consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/M/MARQUEZ.json b/inst/extdata/OSD/M/MARQUEZ.json index 516ac5d17a..f62c668ea9 100644 --- a/inst/extdata/OSD/M/MARQUEZ.json +++ b/inst/extdata/OSD/M/MARQUEZ.json @@ -97,7 +97,7 @@ { "name": "E", "top": 18, - "bottom": "NA", + "bottom": 33, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 6, @@ -119,7 +119,7 @@ }, { "name": "Bt1", - "top": "NA", + "top": 33, "bottom": 61, "dry_hue": "5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/M/MARTELLA.json b/inst/extdata/OSD/M/MARTELLA.json index 9a129b01b5..4447db508a 100644 --- a/inst/extdata/OSD/M/MARTELLA.json +++ b/inst/extdata/OSD/M/MARTELLA.json @@ -117,6 +117,29 @@ "topography": "smooth", "narrative": "Oe--2 to 6 cm: very dark grayish brown (10YR 3/2) moist; loose, moderately decomposed organic litter composed of needles, leaves and twigs; moderately acid (pH 6.0); abrupt smooth boundary. (combined thickness of Oi, Oe horizons - 3 to 10 cm)" }, + { + "name": "A", + "top": 6, + "bottom": 29, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "weak medium and coarse subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.6, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A--6 to 29; very pale brown (10YR 7/3) ashy silt loam, dark brown (7.5YR 3/4) moist; weak medium and coarse subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; many roots; many fine pores; less than 5 percent gravel; neutral (pH 6.6); clear wavy boundary. (12 to 25 cm thick)" + }, { "name": "E", "top": 29, @@ -186,6 +209,29 @@ "topography": "wavy", "narrative": "2Bt--67 to 83 cm; light gray (2.5Y 7/2) silty clay loam, light olive brown (2.5Y 5/4) moist; moderate medium and coarse prismatic structure; very hard, firm, moderately sticky and moderately plastic; common roots; few fine pores; few thin clay films on peds and in pores; less than 5 percent gravel; slightly acid (pH 6.4); clear wavy boundary. (10 to 20 cm thick)" }, + { + "name": "2C1", + "top": 83, + "bottom": 108, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.2, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "2C1--83 to 108; light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; massive and laminated; very hard, very firm, slightly sticky and slightly plastic; few roots; few fine pores; neutral (pH 7.2); clear smooth boundary. (8 to 12 inches thick)" + }, { "name": "2C2", "top": 108, diff --git a/inst/extdata/OSD/M/MARTISCO.json b/inst/extdata/OSD/M/MARTISCO.json index 07042bf1a7..26c7c10ace 100644 --- a/inst/extdata/OSD/M/MARTISCO.json +++ b/inst/extdata/OSD/M/MARTISCO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 18, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0a1 -- 0 to 7 inches; black (5YR 2/1) muck (sapric material); moderate medium granular structure; friable; many roots; 20 percent silt; neutral; abrupt smooth boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 18, "bottom": 33, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MASHEL.json b/inst/extdata/OSD/M/MASHEL.json index fc9481bee9..b01ec4d5ca 100644 --- a/inst/extdata/OSD/M/MASHEL.json +++ b/inst/extdata/OSD/M/MASHEL.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MASONFORT.json b/inst/extdata/OSD/M/MASONFORT.json index ce8a09c5ef..abcafb98cd 100644 --- a/inst/extdata/OSD/M/MASONFORT.json +++ b/inst/extdata/OSD/M/MASONFORT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 8, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "sandy loam", + "structure": "weak thin platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A-- to 3 inches; brown (10YR 5/3) sandy loam, brown (10YR 4/3) moist; weak thin platy structure; soft, very friable, nonsticky and nonplastic; few fine roots; common fine interstitial and few fine and very fine tubular pores; 10 percent gravel; slightly calcareous; moderately alkaline (pH 8.0); clear smooth boundary. (2 to 5 inches thick)" + }, { "name": "Bk1", "top": 8, diff --git a/inst/extdata/OSD/M/MASTERSON.json b/inst/extdata/OSD/M/MASTERSON.json index bc73a1f4c6..b9f05c4cd2 100644 --- a/inst/extdata/OSD/M/MASTERSON.json +++ b/inst/extdata/OSD/M/MASTERSON.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 5, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--2 to 1/2 inches; loose litter of red and white fir needles and twigs." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1/2 to 0 inches; very dark brown, partially decomposed organic matter." + }, { "name": "A11", "top": 0, diff --git a/inst/extdata/OSD/M/MATTAPONI.json b/inst/extdata/OSD/M/MATTAPONI.json index 2b6330bacb..b6c7870e35 100644 --- a/inst/extdata/OSD/M/MATTAPONI.json +++ b/inst/extdata/OSD/M/MATTAPONI.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MAYBESO.json b/inst/extdata/OSD/M/MAYBESO.json index 42741a4a8c..0da82e8eba 100644 --- a/inst/extdata/OSD/M/MAYBESO.json +++ b/inst/extdata/OSD/M/MAYBESO.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oi--0 to 1/2 inch; living mosses and partially decomposed forest litter; abrupt wavy boundary. (1/2 to 1 inch thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.3, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Oe--1/2 to 4 inches; black (5YR 2.5/1, broken face and pressed) mucky peat; 80 percent fiber content unrubbed, 50 percent rubbed; common fine and medium roots and few coarse roots; extremely acid (pH 4.3); clear wavy boundary. (3 to 6 inches thick)" + }, { "name": "Oa1", "top": 10, diff --git a/inst/extdata/OSD/M/MAYO.json b/inst/extdata/OSD/M/MAYO.json index d922923a40..84fe5f7dc4 100644 --- a/inst/extdata/OSD/M/MAYO.json +++ b/inst/extdata/OSD/M/MAYO.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "IIIC3--34 to 44 inches; pale brown (10YR 6/3) sandy loam; massive; loose; very friable; many fine quartz grains; few fine dark grains; common fine weathered feldspar crystals; very strongly acid; abrupt smooth boundary. (8 to 14 inches thick)" + }, + { + "name": "IIIC4", + "top": 102, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "IIIC4--40 to 60+ inches; brown (10YR 5/3) sandy loam; massive; very friable, many fine quartz grains; common fine black grains; common fine weathered feldspar crystals; few fine shiny and flaky grains; strongly acid." } ] ] diff --git a/inst/extdata/OSD/M/MAYWOOD.json b/inst/extdata/OSD/M/MAYWOOD.json index 34a391b1bf..b375ea828f 100644 --- a/inst/extdata/OSD/M/MAYWOOD.json +++ b/inst/extdata/OSD/M/MAYWOOD.json @@ -94,6 +94,29 @@ "topography": "wavy", "narrative": "A--0 to 3 inches; light olive brown (2.5Y 5/3) silt loam, dark grayish brown (10YR 4/2) moist; massive; hard, friable, slightly sticky, slightly plastic; many very fine roots; many very fine and fine tubular pores; slightly acid (pH 6.5); abrupt wavy boundary. (2 to 6 inches thick)" }, + { + "name": "C1", + "top": 8, + "bottom": 36, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.3, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C1--3 to 14; pale brown (10YR 6/3) silt loam, brown (10YR 4/3) moist; massive; hard, friable, slightly sticky, slightly plastic; common very fine roots; many very fine tubular and interstitial pores; slightly acid (pH 6.3); clear wavy boundary. (8 to 16 inches thick)." + }, { "name": "C2", "top": 36, diff --git a/inst/extdata/OSD/M/MCCAFFERY.json b/inst/extdata/OSD/M/MCCAFFERY.json index 49255ddfc6..69d9b56861 100644 --- a/inst/extdata/OSD/M/MCCAFFERY.json +++ b/inst/extdata/OSD/M/MCCAFFERY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MCCALLY.json b/inst/extdata/OSD/M/MCCALLY.json index 1463dec90f..24fbc1f6d5 100644 --- a/inst/extdata/OSD/M/MCCALLY.json +++ b/inst/extdata/OSD/M/MCCALLY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 0, "dry_hue": "NA", @@ -93,6 +93,98 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "01--3 to 0 inches; very dark brown (10YR 2/2) mat of litter, moss, and roots; extremely acid; abrupt smooth boundary." + }, + { + "name": "A2", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "weak very thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "broken", + "narrative": "A2--0 to 1/2 inches; light gray (10YR 6/1) silt loam; weak very thin platy structure; very friable; roots common; extremely acid; abrupt broken boundary." + }, + { + "name": "B2", + "top": 1, + "bottom": 11, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "B2--1/2 to 4 1/2 inches; dark yellowish brown (10YR 4/4) silt loam; patches of dark brown (7.5YR 3/2); weak fine subangular blocky structure, breaking to weak very fine granular; very friable; roots common; charcoal fragments and fine dark concretions; extremely acid; clear wavy boundary." + }, + { + "name": "C1", + "top": 11, + "bottom": 46, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "stony", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C1--4 1/2 to 18 inches; light olive brown (2.5YR 5/4) stony silt loam; weak fine subangular blocky structure in fine earth; few roots; extremely acid; gradual boundary." + }, + { + "name": "R", + "top": 46, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2-R--18 to + inches; weathered shale bedrock; angular fragments." } ] ] diff --git a/inst/extdata/OSD/M/MCCASKILL.json b/inst/extdata/OSD/M/MCCASKILL.json index 379ce1b222..c3bae38e37 100644 --- a/inst/extdata/OSD/M/MCCASKILL.json +++ b/inst/extdata/OSD/M/MCCASKILL.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A--0 to 10 cm (0 to 4 in); dark grayish brown (10YR 4/2) fine sandy loam; common dark yellowish brown(10YR 4/4) mottles; weak fine and medium subangular structure; friable; common very fine, fine, and very coarse roots; slightly acid clear smooth boundary." }, + { + "name": "E", + "top": 10, + "bottom": 33, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "fine sandy loam", + "structure": "weak fine and medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "E--10 to 33 (4 to 13 in); light brownish gray (10YR 6/2) fine sandy loam; many medium prominent yellowish brown(10YR 5/6) iron accumulations; weak fine and medium subangular blocky structure; friable; common very fine and coarse roots; 10 percent by volume sandstone fragments less than 3 inches in diameter; slightly acid; clear smooth boundary." + }, { "name": "Bt1", "top": 33, diff --git a/inst/extdata/OSD/M/MCCREE.json b/inst/extdata/OSD/M/MCCREE.json index aad9c42c9b..b0deb27242 100644 --- a/inst/extdata/OSD/M/MCCREE.json +++ b/inst/extdata/OSD/M/MCCREE.json @@ -94,6 +94,52 @@ "topography": "NA", "narrative": "Oe--0 to 1 inch; partially decomposed forest litter; moderately acid (pH 6.0)." }, + { + "name": "A", + "top": 3, + "bottom": 4, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "fine sandy loam", + "structure": "weak fine crumb", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A--1 to 1 1/2 inch; dark grayish brown (10YR 4/2) stony ashy fine sandy loam, black (10YR 2/1) moist; weak fine crumb structure; soft, very friable, nonsticky and nonplastic; many fine and medium roots; many fine tubular pores; 5 percent pumice, 15 percent pebbles, 5 percent cobbles and 5 percent stones; NaF pH 10.1; neutral (pH 7.0); abrupt smooth boundary. (0 to 1 inch thick)" + }, + { + "name": "E", + "top": 4, + "bottom": 15, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "fine sandy loam", + "structure": "weak fine crumb", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": 6.9, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "E--1 1/2 to 6 inches; light brownish gray (10YR 6/2) stony ashy fine sandy loam, dark grayish brown (10YR 4/2) moist; weak fine crumb structure; soft, very friable, nonsticky and nonplastic; many fine and medium roots; many fine and medium tubular pores; 5 percent pumice, 15 percent pebbles, 5 percent cobbles and 5 percent stones; NaF pH 10.1; neutral (pH 6.9); gradual wavy boundary. (3 to 7 inches thick)" + }, { "name": "Bw", "top": 15, diff --git a/inst/extdata/OSD/M/MCDAVITT.json b/inst/extdata/OSD/M/MCDAVITT.json index 5d1b2e4fc5..20201f1788 100644 --- a/inst/extdata/OSD/M/MCDAVITT.json +++ b/inst/extdata/OSD/M/MCDAVITT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/M/MCDOUG.json b/inst/extdata/OSD/M/MCDOUG.json index a5aa64aa85..9b6615e64a 100644 --- a/inst/extdata/OSD/M/MCDOUG.json +++ b/inst/extdata/OSD/M/MCDOUG.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MCGARVEY.json b/inst/extdata/OSD/M/MCGARVEY.json index 219eca8820..69d762397d 100644 --- a/inst/extdata/OSD/M/MCGARVEY.json +++ b/inst/extdata/OSD/M/MCGARVEY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--4 to 3 inches; undecomposed tanoak and redwood leaves and twigs." }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MCGINNIS.json b/inst/extdata/OSD/M/MCGINNIS.json index 0b419638de..030c62e986 100644 --- a/inst/extdata/OSD/M/MCGINNIS.json +++ b/inst/extdata/OSD/M/MCGINNIS.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "0", - "top": "NA", + "name": "O", + "top": 1, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/M/MCINTYRE.json b/inst/extdata/OSD/M/MCINTYRE.json index a27819dcc4..98f2849c64 100644 --- a/inst/extdata/OSD/M/MCINTYRE.json +++ b/inst/extdata/OSD/M/MCINTYRE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; undecomposed organic material consisting mainly of needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MCNAB.json b/inst/extdata/OSD/M/MCNAB.json index 1cc5daa435..ddb4ef6b1d 100644 --- a/inst/extdata/OSD/M/MCNAB.json +++ b/inst/extdata/OSD/M/MCNAB.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MCNULL.json b/inst/extdata/OSD/M/MCNULL.json index 8dc1f56851..3210ae91af 100644 --- a/inst/extdata/OSD/M/MCNULL.json +++ b/inst/extdata/OSD/M/MCNULL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MEARES.json b/inst/extdata/OSD/M/MEARES.json index b91aebb8cd..d13153af0c 100644 --- a/inst/extdata/OSD/M/MEARES.json +++ b/inst/extdata/OSD/M/MEARES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--4 to 3 inches; undecomposed forest litter." }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MEDFRA.json b/inst/extdata/OSD/M/MEDFRA.json index 479cebdc67..91e30d89fd 100644 --- a/inst/extdata/OSD/M/MEDFRA.json +++ b/inst/extdata/OSD/M/MEDFRA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 25, "bottom": 0, "dry_hue": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "01--10 to 0 inches; Brown (7.5YR 4/4; 7.5YR 5/6, squeezed) partially decomposed moss; many roots; abrupt smooth boundary. (6 to 12 inches thick)" }, + { + "name": "A1", + "top": 0, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A1--0 to 2 1/2 inches; Very dark brown (10YR 2/2) silt loam; many streaks and patches of very dark gray (10YR 3/1), weak fine granular structure; very friable; many roots; clear wavy boundary. (2 to 5 inches thick)" + }, + { + "name": "C1", + "top": 6, + "bottom": 36, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "C1--2 1/2 to 14 inches; Olive brown (2.5Y 4/4) silt loam; large patches of brown (10YR 4/3); common, medium, distinct olive gray (5Y 5/2) mottles; massive; nonsticky, nonplastic; few roots; abrupt smooth boundary. (8 to 15 inches thick)" + }, { "name": "C2f", "top": 36, diff --git a/inst/extdata/OSD/M/MEDLAKE.json b/inst/extdata/OSD/M/MEDLAKE.json index de98ddd0ae..4a08302258 100644 --- a/inst/extdata/OSD/M/MEDLAKE.json +++ b/inst/extdata/OSD/M/MEDLAKE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MEEKS.json b/inst/extdata/OSD/M/MEEKS.json index 793f495ae3..140f404437 100644 --- a/inst/extdata/OSD/M/MEEKS.json +++ b/inst/extdata/OSD/M/MEEKS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MELAKWA.json b/inst/extdata/OSD/M/MELAKWA.json index 015dec1604..2063505426 100644 --- a/inst/extdata/OSD/M/MELAKWA.json +++ b/inst/extdata/OSD/M/MELAKWA.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MELRUDE.json b/inst/extdata/OSD/M/MELRUDE.json index e7300260d6..67e0516996 100644 --- a/inst/extdata/OSD/M/MELRUDE.json +++ b/inst/extdata/OSD/M/MELRUDE.json @@ -235,7 +235,7 @@ { "name": "2BC", "top": 157, - "bottom": "NA", + "bottom": 185, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MENDELTNA.json b/inst/extdata/OSD/M/MENDELTNA.json index 4244ccd5fc..33cf61e273 100644 --- a/inst/extdata/OSD/M/MENDELTNA.json +++ b/inst/extdata/OSD/M/MENDELTNA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 23, - "bottom": "NA", + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MENDNA.json b/inst/extdata/OSD/M/MENDNA.json index 9c1c430c6e..6a8423a49b 100644 --- a/inst/extdata/OSD/M/MENDNA.json +++ b/inst/extdata/OSD/M/MENDNA.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 23, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MERINO.json b/inst/extdata/OSD/M/MERINO.json index 9818054036..37221516eb 100644 --- a/inst/extdata/OSD/M/MERINO.json +++ b/inst/extdata/OSD/M/MERINO.json @@ -97,7 +97,7 @@ { "name": "A", "top": 3, - "bottom": "NA", + "bottom": 5, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, diff --git a/inst/extdata/OSD/M/MERRILLAN.json b/inst/extdata/OSD/M/MERRILLAN.json index 5a8f5316a4..7b2803b41f 100644 --- a/inst/extdata/OSD/M/MERRILLAN.json +++ b/inst/extdata/OSD/M/MERRILLAN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MESA.json b/inst/extdata/OSD/M/MESA.json index cdf70576dd..50718c0f98 100644 --- a/inst/extdata/OSD/M/MESA.json +++ b/inst/extdata/OSD/M/MESA.json @@ -117,6 +117,29 @@ "topography": "smooth", "narrative": "Bt--10 to 36 cm; light brown (7.5YR 6/3) clay loam, brown (7.5YR 4/3) moist; moderate fine prismatic structure parting to fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; many distinct clay films on faces of peds and on surfaces along root channels and pores; 10 percent gravel; slightly effervescent; moderately alkaline (pH 8.0); gradual smooth boundary. (0 to 48 cm thick)" }, + { + "name": "Btk", + "top": 36, + "bottom": 51, + "dry_hue": "7.5YR", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "weak medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Btk--36 to 51; pink (7.5YR 7/4) clay loam, brown (7.5YR 5/4) moist; weak medium prismatic structure parting to fine subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; few distinct clay films on faces of peds and on surfaces along root channels and pores; calcium carbonate concretions and carbonate coats on rock fragments; 10 percent gravel; strongly effervescent; moderately alkaline (pH 8.2); gradual smooth boundary. (10 to 84 cm thick)" + }, { "name": "BCk1", "top": 51, diff --git a/inst/extdata/OSD/M/MESSER.json b/inst/extdata/OSD/M/MESSER.json index ae5eccdcf0..961e2570ff 100644 --- a/inst/extdata/OSD/M/MESSER.json +++ b/inst/extdata/OSD/M/MESSER.json @@ -278,6 +278,29 @@ "topography": "wavy", "narrative": "Bt4--157 to 197 cm, (61.8 to 77.6 in); light yellowish brown (10YR 6/4), silt loam; weak very coarse prismatic structure parting to weak very coarse subangular blocky; slightly hard, friable; brittle; many very fine and fine vesicular and fine tubular pores; continuous distinct , moist, clay films on faces of peds; 1 percent medium iron-manganese nodules and 10 percent fine distinct light brownish gray (10YR 6/2) iron depletions with clear boundaries in matrix surrounding redox concentrations and 10 percent fine prominent red (2.5YR 4/8) masses of oxidized iron with sharp boundaries in matrix and 10 percent medium distinct yellowish brown (10YR 5/6) masses of oxidized iron with clear boundaries in matrix; strongly acid, gradual wavy boundary." }, + { + "name": "Bt5", + "top": 197, + "bottom": 242, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 8, + "texture_class": "clay loam", + "structure": "weak very coarse prismatic", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt5--197 to 242, (cm 77.6 to 95.3 in); brownish yellow (10YR 6/8), clay loam; weak very coarse prismatic structure parting to weak very coarse subangular blocky; firm; few fine and medium vesicular and fine tubular pores; discontinuous distinct , moist, clay films on vertical faces of peds; 1 percent medium iron-manganese nodules and 10 percent fine distinct light brownish gray (10YR 6/2) iron depletions with clear boundaries in matrix surrounding redox concentrations and 10 percent fine prominent red (2.5YR 4/8) masses of oxidized iron with sharp boundaries in matrix and 10 percent medium distinct yellowish brown (10YR 5/6) masses of oxidized iron with clear boundaries in matrix; strongly acid; gradual wavy boundary. (Combined thickness of the Bt horizons to 203 cm is 106 to 133 cm [42 to 52 in])" + }, { "name": "BCg", "top": 242, diff --git a/inst/extdata/OSD/M/METIGOSHE.json b/inst/extdata/OSD/M/METIGOSHE.json index 073bafeb87..3120895b1d 100644 --- a/inst/extdata/OSD/M/METIGOSHE.json +++ b/inst/extdata/OSD/M/METIGOSHE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/METTAH.json b/inst/extdata/OSD/M/METTAH.json index f08accd8e1..69d3eb6773 100644 --- a/inst/extdata/OSD/M/METTAH.json +++ b/inst/extdata/OSD/M/METTAH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 2, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 2 centimeter (0 to 1 inch); fresh and slightly decomposed conifer needles, tanoak leaves, and twigs; very strongly acid (pH 4.5); abrupt smooth boundary. (0 to 6 centimeters thick)" + }, { "name": "A", "top": 2, diff --git a/inst/extdata/OSD/M/MIERUF.json b/inst/extdata/OSD/M/MIERUF.json index d7bbbc7a9f..015e5efffe 100644 --- a/inst/extdata/OSD/M/MIERUF.json +++ b/inst/extdata/OSD/M/MIERUF.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MILLERFLAT.json b/inst/extdata/OSD/M/MILLERFLAT.json index 5f088e9841..4fa131d570 100644 --- a/inst/extdata/OSD/M/MILLERFLAT.json +++ b/inst/extdata/OSD/M/MILLERFLAT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MILLPAW.json b/inst/extdata/OSD/M/MILLPAW.json index 6cc50454d2..b0146de712 100644 --- a/inst/extdata/OSD/M/MILLPAW.json +++ b/inst/extdata/OSD/M/MILLPAW.json @@ -97,7 +97,7 @@ { "name": "Bt1", "top": 10, - "bottom": "NA", + "bottom": 25, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, @@ -119,7 +119,7 @@ }, { "name": "Bt2", - "top": "NA", + "top": 25, "bottom": 89, "dry_hue": "10YR", "dry_value": 4, diff --git a/inst/extdata/OSD/M/MINATARE.json b/inst/extdata/OSD/M/MINATARE.json index e978b46df0..b5412cbccb 100644 --- a/inst/extdata/OSD/M/MINATARE.json +++ b/inst/extdata/OSD/M/MINATARE.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 4, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "silt loam", + "structure": "weak medium granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A--0 to 1 1/2 inches; gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; weak medium granular structure; soft, friable; exchangeable sodium percentage = 5; slightly alkaline; abrupt smooth boundary. (1 to 5 inches thick)" + }, + { + "name": "E", + "top": 4, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 1, + "texture_class": "loam", + "structure": "weak fine platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "E--1 1/2 to 3 inches; light gray (10YR 7/1) loam, gray (10YR 5/1) moist; weak fine platy structure; soft, friable; exchangeable sodium percentage = 24; strongly alkaline; abrupt wavy boundary. (1 to 3 inches)" + }, { "name": "Btn1", "top": 8, diff --git a/inst/extdata/OSD/M/MINNIEPEAK.json b/inst/extdata/OSD/M/MINNIEPEAK.json index c1b18342a0..814e8d8add 100644 --- a/inst/extdata/OSD/M/MINNIEPEAK.json +++ b/inst/extdata/OSD/M/MINNIEPEAK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MINOCQUA.json b/inst/extdata/OSD/M/MINOCQUA.json index 5d9105cbaa..ece35b00f4 100644 --- a/inst/extdata/OSD/M/MINOCQUA.json +++ b/inst/extdata/OSD/M/MINOCQUA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MIRABAL.json b/inst/extdata/OSD/M/MIRABAL.json index b11db7b257..a832bbd3c2 100644 --- a/inst/extdata/OSD/M/MIRABAL.json +++ b/inst/extdata/OSD/M/MIRABAL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MITCH.json b/inst/extdata/OSD/M/MITCH.json index 4bba4243f8..ecf8979a70 100644 --- a/inst/extdata/OSD/M/MITCH.json +++ b/inst/extdata/OSD/M/MITCH.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "C1--4 to 26 inches; dark grayish brown (10YR 4/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak coarse subangular blocky structure; that parts to weak fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common fine and very fine roots; few very fine tubular pores; strongly calcareous; mildly alkaline (pH 7.5); clear wavy boundary. (10 to 30 inches thick)" }, + { + "name": "C2", + "top": 66, + "bottom": 74, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "weak thick platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C2--26 t0 29 inches--grayish brown (10YR 5/2) very fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak thick platy structure; soft, very friable; few medium and very fine roots; common fine interstitial pores; strongly calcareous; moderately alkaline (pH 8.0); clear wavy boundary. (0 to 4 inches thick)" + }, { "name": "C3", "top": 74, diff --git a/inst/extdata/OSD/M/MOBATE.json b/inst/extdata/OSD/M/MOBATE.json index 50cac44425..70ffccab92 100644 --- a/inst/extdata/OSD/M/MOBATE.json +++ b/inst/extdata/OSD/M/MOBATE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MOBERG.json b/inst/extdata/OSD/M/MOBERG.json index c8d96dedca..050b6086bb 100644 --- a/inst/extdata/OSD/M/MOBERG.json +++ b/inst/extdata/OSD/M/MOBERG.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "2BC--12 to 20 inches; strong brown (7.5YR 4/6) very gravelly sandy loam; weak very fine subangular blocky structure; very friable; few fine roots; about 60 percent angular granitic pebbles by volume; very strongly acid; clear wavy boundary. (6 to 13 inches thick)" + }, + { + "name": "2C", + "top": 51, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "loamy coarse sand", + "structure": "single grain", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "extremely gravelly", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C--20 TO 60 INCHES; strong brown (7.5YR 5/6) extremely gravelly loamy coarse sand; single grain; about 80 percent coarse fragments by volume; very strongly acid." } ] ] diff --git a/inst/extdata/OSD/M/MOHAGGIN.json b/inst/extdata/OSD/M/MOHAGGIN.json index 5b324a38be..7c0e5ed1e3 100644 --- a/inst/extdata/OSD/M/MOHAGGIN.json +++ b/inst/extdata/OSD/M/MOHAGGIN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 2 inches; undecomposed needles and twigs." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 13, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MOJO.json b/inst/extdata/OSD/M/MOJO.json index 553bad535d..51d9c412c9 100644 --- a/inst/extdata/OSD/M/MOJO.json +++ b/inst/extdata/OSD/M/MOJO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MONIA.json b/inst/extdata/OSD/M/MONIA.json index 5d6f12b805..b38a0c0086 100644 --- a/inst/extdata/OSD/M/MONIA.json +++ b/inst/extdata/OSD/M/MONIA.json @@ -166,7 +166,7 @@ { "name": "Bk4", "top": 140, - "bottom": "NA", + "bottom": 185, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 6, diff --git a/inst/extdata/OSD/M/MONTALVA.json b/inst/extdata/OSD/M/MONTALVA.json index 505b09ce3d..290deee2fc 100644 --- a/inst/extdata/OSD/M/MONTALVA.json +++ b/inst/extdata/OSD/M/MONTALVA.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "BC--29 to 32 inches; dark brown (7.5YR 3/2) sandy clay loam; massive; slightly hard, friable; slightly sticky, slightly plastic; few fine roots; common fine irregular pores; about 15 percent, by volume, paragravels; slightly alkaline." + }, + { + "name": "Cr", + "top": 81, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--32+ inches; moderately weathered, semi-consolidated, bedded volcanic rock." } ] ] diff --git a/inst/extdata/OSD/M/MONTBORNE.json b/inst/extdata/OSD/M/MONTBORNE.json index 72333c3493..fcc2ac2835 100644 --- a/inst/extdata/OSD/M/MONTBORNE.json +++ b/inst/extdata/OSD/M/MONTBORNE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MONTROSS.json b/inst/extdata/OSD/M/MONTROSS.json index 3b83394eef..339ec4ddc7 100644 --- a/inst/extdata/OSD/M/MONTROSS.json +++ b/inst/extdata/OSD/M/MONTROSS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/M/MOOLACK.json b/inst/extdata/OSD/M/MOOLACK.json index 89939c3cc0..32293e404e 100644 --- a/inst/extdata/OSD/M/MOOLACK.json +++ b/inst/extdata/OSD/M/MOOLACK.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 to 1/2 inch; hemlock needles and twigs." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "02--1/2 to 0 inches; decomposed organic materials; abrupt smooth boundary." + }, { "name": "A2", "top": 0, diff --git a/inst/extdata/OSD/M/MOOSED.json b/inst/extdata/OSD/M/MOOSED.json index db7f0690b1..4dae63e54d 100644 --- a/inst/extdata/OSD/M/MOOSED.json +++ b/inst/extdata/OSD/M/MOOSED.json @@ -120,7 +120,7 @@ { "name": "Bwl", "top": 18, - "bottom": "NA", + "bottom": 28, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 4, @@ -142,8 +142,8 @@ }, { "name": "Bw2", - "top": "NA", - "bottom": "NA", + "top": 28, + "bottom": 38, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 4, @@ -165,8 +165,8 @@ }, { "name": "C", - "top": "NA", - "bottom": "NA", + "top": 38, + "bottom": 46, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 4, @@ -188,7 +188,7 @@ }, { "name": "R", - "top": "NA", + "top": 46, "bottom": "NA", "dry_hue": "5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/M/MORNINGSTAR.json b/inst/extdata/OSD/M/MORNINGSTAR.json index 8ec179d5bc..61a797953a 100644 --- a/inst/extdata/OSD/M/MORNINGSTAR.json +++ b/inst/extdata/OSD/M/MORNINGSTAR.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1; partially decomposed needles, leaves and twigs." + }, { "name": "A1", - "top": 3, - "bottom": 18, + "top": 1, + "bottom": 7, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, @@ -96,8 +119,8 @@ }, { "name": "A2", - "top": 18, - "bottom": 41, + "top": 7, + "bottom": 16, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -119,8 +142,8 @@ }, { "name": "Bt1", - "top": 41, - "bottom": 61, + "top": 16, + "bottom": 24, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -142,8 +165,8 @@ }, { "name": "Bt2", - "top": 61, - "bottom": 84, + "top": 24, + "bottom": 33, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -165,8 +188,8 @@ }, { "name": "Bt3", - "top": 84, - "bottom": 119, + "top": 33, + "bottom": 47, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -188,8 +211,8 @@ }, { "name": "C", - "top": 119, - "bottom": 152, + "top": 47, + "bottom": 60, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, diff --git a/inst/extdata/OSD/M/MOSBY.json b/inst/extdata/OSD/M/MOSBY.json index 370b134926..447ab72083 100644 --- a/inst/extdata/OSD/M/MOSBY.json +++ b/inst/extdata/OSD/M/MOSBY.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "C1--25 to 28 inches; pale yellow (5Y 7/3) heavy silty clay loam, olive (5Y 6/3) moist; weak platy structure; hard, friable, sticky and plastic; numerous soft shale fragments; strong effervescence. (3 to 6 inches thick)" + }, + { + "name": "C2", + "top": 71, + "bottom": 107, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silty clay loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "strong effervescence", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--28 to 42+ inches; olive colored platy heavy silty clay loam or light silty clay mudstones; strong effervescence." } ] ] diff --git a/inst/extdata/OSD/M/MOTEADO.json b/inst/extdata/OSD/M/MOTEADO.json index 90c4d828a7..a58505a0dd 100644 --- a/inst/extdata/OSD/M/MOTEADO.json +++ b/inst/extdata/OSD/M/MOTEADO.json @@ -231,6 +231,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "B'og--41 to 54 inches; olive gray (5Y 4/2) clay; weak medium subangular blocky structure; few fine and medium interstitial and tubular pores; common medium distinct reddish brown (5YR 4/4) coatings on vertical faces of peds and along old root channels; few large wormcasts about 1/3 inch in diameter coated with strong brown (7.5YR 4/6) material and filled with gray (10YR 5/1) material; few fine rounded soft masses of iron-manganese; common medium prominent strong brown (7.5YR 4/6) masses of iron accumulation; very strongly acid; abrupt smooth boundary. (0 to 15 inches thick)" + }, + { + "name": "R", + "top": 137, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--54 + inches; unweathered volcanic sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/M/MOWAKO.json b/inst/extdata/OSD/M/MOWAKO.json index 6fa33a1644..aa01a94561 100644 --- a/inst/extdata/OSD/M/MOWAKO.json +++ b/inst/extdata/OSD/M/MOWAKO.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MOWBRAY.json b/inst/extdata/OSD/M/MOWBRAY.json index c0d898f888..129cf0fb3d 100644 --- a/inst/extdata/OSD/M/MOWBRAY.json +++ b/inst/extdata/OSD/M/MOWBRAY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MOWICH.json b/inst/extdata/OSD/M/MOWICH.json index dbbc20cee0..ec4ffd7334 100644 --- a/inst/extdata/OSD/M/MOWICH.json +++ b/inst/extdata/OSD/M/MOWICH.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MULETT.json b/inst/extdata/OSD/M/MULETT.json index c8f153a164..940c4a543b 100644 --- a/inst/extdata/OSD/M/MULETT.json +++ b/inst/extdata/OSD/M/MULETT.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--28 to 36 cm; pale brown (10YR 6/3) extremely stony loam, brown (10YR 4/3) moist; moderate medium and fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; many fine and very fine, few medium roots; many very fine and fine tubular pores; 30 percent cobbles and 30 percent stones; strongly effervescent; moderately alkaline (pH 8.4); abrupt smooth boundary. (8 to 18 cm thick)" + }, + { + "name": "R", + "top": 36, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--36; fractured quartz latite; silica and carbonates coat fractures." } ] ] diff --git a/inst/extdata/OSD/M/MULHOLLAND.json b/inst/extdata/OSD/M/MULHOLLAND.json index cbeb22c8e8..160c16dc17 100644 --- a/inst/extdata/OSD/M/MULHOLLAND.json +++ b/inst/extdata/OSD/M/MULHOLLAND.json @@ -73,8 +73,8 @@ [ { "name": "Oe", - "top": "NA", - "bottom": "NA", + "top": 4, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MULTORPOR.json b/inst/extdata/OSD/M/MULTORPOR.json index f6d5c44b46..d78c3ca93a 100644 --- a/inst/extdata/OSD/M/MULTORPOR.json +++ b/inst/extdata/OSD/M/MULTORPOR.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--1/2 inch to 0; loose litter of needles, twigs, cones, leaves, etc." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/M/MURNEN.json b/inst/extdata/OSD/M/MURNEN.json index 1116366790..6dffc9c393 100644 --- a/inst/extdata/OSD/M/MURNEN.json +++ b/inst/extdata/OSD/M/MURNEN.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MUSSERHILL.json b/inst/extdata/OSD/M/MUSSERHILL.json index 76cac68ce6..c8330b1f95 100644 --- a/inst/extdata/OSD/M/MUSSERHILL.json +++ b/inst/extdata/OSD/M/MUSSERHILL.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inches; leaves, twigs, and grass stems." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/M/MUSTY.json b/inst/extdata/OSD/M/MUSTY.json index 1788a6f2d8..56ef0765de 100644 --- a/inst/extdata/OSD/M/MUSTY.json +++ b/inst/extdata/OSD/M/MUSTY.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/M/MYSTEN.json b/inst/extdata/OSD/M/MYSTEN.json index 93ed907b91..21b66dd03a 100644 --- a/inst/extdata/OSD/M/MYSTEN.json +++ b/inst/extdata/OSD/M/MYSTEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; undecomposed organic material; chiefly, needles, twigs and bark." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NABESNA.json b/inst/extdata/OSD/N/NABESNA.json index ee09dc5c6d..840213be16 100644 --- a/inst/extdata/OSD/N/NABESNA.json +++ b/inst/extdata/OSD/N/NABESNA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "011", + "name": "O11", "top": 13, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "011--5 to 2 inches; Dark reddish brown (5YR 2/2) mat of organic materials; mostly moss; many roots; clear smooth boundary." }, { - "name": "012", + "name": "O12", "top": 5, "bottom": 0, "dry_hue": "NA", @@ -117,6 +117,52 @@ "topography": "wavy", "narrative": "012--2 to 0 inches; Black (10YR 2/1) organic matter, mostly partially decomposed moss; many roots; abrupt wavy boundary." }, + { + "name": "C1g", + "top": 0, + "bottom": 11, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C1g--0 to 4 1/2 inches; Dark grayish brown (2.5Y 4/2) silt loam; streaks of very dark grayish brown (2.5Y 3/2); weak thin platy structure; very friable; roots common; clear wavy boundary." + }, + { + "name": "C2g", + "top": 11, + "bottom": 18, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C2g --4 1/2 to 7 inches; Very dark grayish brown (10YR 3/2) silt loam; thin horizontal lenses of organic matter; common fine distinct mottles of dark brown (7.5YR 4/4); weak fine granular structure; very friable; roots common; clear wavy boundary." + }, { "name": "C3g", "top": 18, diff --git a/inst/extdata/OSD/N/NAGROM.json b/inst/extdata/OSD/N/NAGROM.json index 719962daf2..b6f893edac 100644 --- a/inst/extdata/OSD/N/NAGROM.json +++ b/inst/extdata/OSD/N/NAGROM.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--1 1/2 to 1/2 inch; leaves, needles, twigs, and moss; abrupt smooth boundary. (1/2 to 3 inches thick)" + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oa--1/2 inch to 0; decomposed organic litter, abrupt smooth boundary. (1/2 to 2 inches thick)" + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/N/NAHA.json b/inst/extdata/OSD/N/NAHA.json index c4123aff35..0755ab6a64 100644 --- a/inst/extdata/OSD/N/NAHA.json +++ b/inst/extdata/OSD/N/NAHA.json @@ -97,7 +97,7 @@ { "name": "A2", "top": 5, - "bottom": "NA", + "bottom": 36, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, @@ -119,8 +119,8 @@ }, { "name": "Bw1", - "top": "NA", - "bottom": "NA", + "top": 36, + "bottom": 53, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Bw", - "top": "NA", + "top": 53, "bottom": 69, "dry_hue": "10YR", "dry_value": 6, diff --git a/inst/extdata/OSD/N/NAKNEK.json b/inst/extdata/OSD/N/NAKNEK.json index 3d1e6a00d1..aa9dbf85a8 100644 --- a/inst/extdata/OSD/N/NAKNEK.json +++ b/inst/extdata/OSD/N/NAKNEK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "011", + "name": "O11", "top": 41, "bottom": 23, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "011--16 to 9 inches; Dark reddish brown (5YR 3/3) to light reddish brown (5YR 6/3, squeezed dry) moss peat; many roots; extremely acid; abrupt smooth boundary. (5 to 8 inches thick)" }, { - "name": "012", + "name": "O12", "top": 23, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NANAMKIN.json b/inst/extdata/OSD/N/NANAMKIN.json index fdea891cff..3d21b6b77e 100644 --- a/inst/extdata/OSD/N/NANAMKIN.json +++ b/inst/extdata/OSD/N/NANAMKIN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NANCY.json b/inst/extdata/OSD/N/NANCY.json index 3241e9b780..0dff394a35 100644 --- a/inst/extdata/OSD/N/NANCY.json +++ b/inst/extdata/OSD/N/NANCY.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NANITA.json b/inst/extdata/OSD/N/NANITA.json index 8ddd270b9d..2f4980336c 100644 --- a/inst/extdata/OSD/N/NANITA.json +++ b/inst/extdata/OSD/N/NANITA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NARDINE.json b/inst/extdata/OSD/N/NARDINE.json index b7c9a63399..5ed2c722ee 100644 --- a/inst/extdata/OSD/N/NARDINE.json +++ b/inst/extdata/OSD/N/NARDINE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NAREL.json b/inst/extdata/OSD/N/NAREL.json index 09e5bd3ca1..fb4b6f238e 100644 --- a/inst/extdata/OSD/N/NAREL.json +++ b/inst/extdata/OSD/N/NAREL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NARGAR.json b/inst/extdata/OSD/N/NARGAR.json index f03e680468..a1ec5e82ed 100644 --- a/inst/extdata/OSD/N/NARGAR.json +++ b/inst/extdata/OSD/N/NARGAR.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 to 1/2 inch; needles, leaves and twigs." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1/2 inch to 0; black (10YR 2/1) decomposed litter." + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/N/NASHMEAD.json b/inst/extdata/OSD/N/NASHMEAD.json index eda304ea95..5b24872cb0 100644 --- a/inst/extdata/OSD/N/NASHMEAD.json +++ b/inst/extdata/OSD/N/NASHMEAD.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NATAGA.json b/inst/extdata/OSD/N/NATAGA.json index 4f574ed775..1ac0cc0ba6 100644 --- a/inst/extdata/OSD/N/NATAGA.json +++ b/inst/extdata/OSD/N/NATAGA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NATAPOC.json b/inst/extdata/OSD/N/NATAPOC.json index 59a506a5ee..29744b66c3 100644 --- a/inst/extdata/OSD/N/NATAPOC.json +++ b/inst/extdata/OSD/N/NATAPOC.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NATCHEZ.json b/inst/extdata/OSD/N/NATCHEZ.json index 42b27d9b36..7de372fc47 100644 --- a/inst/extdata/OSD/N/NATCHEZ.json +++ b/inst/extdata/OSD/N/NATCHEZ.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NATI.json b/inst/extdata/OSD/N/NATI.json index 12324f0708..80b12625ff 100644 --- a/inst/extdata/OSD/N/NATI.json +++ b/inst/extdata/OSD/N/NATI.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 9, + "bottom": 8, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--3 1/2 to 3 inches; undecomposed needles, leaves, and twigs." + }, { "name": "Oa", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NATIONAL.json b/inst/extdata/OSD/N/NATIONAL.json index 340109ee40..46b4c105a5 100644 --- a/inst/extdata/OSD/N/NATIONAL.json +++ b/inst/extdata/OSD/N/NATIONAL.json @@ -74,7 +74,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NATKIM.json b/inst/extdata/OSD/N/NATKIM.json index 47a4c71267..f1fae182b0 100644 --- a/inst/extdata/OSD/N/NATKIM.json +++ b/inst/extdata/OSD/N/NATKIM.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.5 inches; decomposing forest litter; abrupt wavy boundary. (1/2 to 2 inches thick)." }, { - "name": "0e", + "name": "Oe", "top": 1, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NEBEKER.json b/inst/extdata/OSD/N/NEBEKER.json index 7a9f60ae3d..986b905da4 100644 --- a/inst/extdata/OSD/N/NEBEKER.json +++ b/inst/extdata/OSD/N/NEBEKER.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Ap", + "top": 0, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.1, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Ap--0 to 8 degrees; dark grayish brown (10YR 4/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; many fine and common medium pores; slightly acid (pH 6.1); clear wavy boundary. (6 to 10 inches thick)" + }, { "name": "BA", - "top": 20, - "bottom": 36, + "top": 8, + "bottom": 14, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 3, @@ -96,8 +119,8 @@ }, { "name": "Bt1", - "top": 36, - "bottom": 66, + "top": 14, + "bottom": 26, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 3, @@ -119,8 +142,8 @@ }, { "name": "Bt2", - "top": 66, - "bottom": 122, + "top": 26, + "bottom": 48, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -142,8 +165,8 @@ }, { "name": "Bt3", - "top": 122, - "bottom": 140, + "top": 48, + "bottom": 55, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -165,8 +188,8 @@ }, { "name": "2C", - "top": 140, - "bottom": 178, + "top": 55, + "bottom": 70, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, diff --git a/inst/extdata/OSD/N/NEEDMORE.json b/inst/extdata/OSD/N/NEEDMORE.json index 2eb39e2028..1da42bd575 100644 --- a/inst/extdata/OSD/N/NEEDMORE.json +++ b/inst/extdata/OSD/N/NEEDMORE.json @@ -185,6 +185,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "C--32 to 37 inches; mottled yellowish brown (10YR 5/6), brownish yellow (10YR 6/6), strong brown (7.5YR 5/6), and very pale brown (10YR 7/3) seams and pockets of silty clay soil material between partially weathered calcareous shale fragments; massive; very firm; moderately acid; gradual wavy boundary. (0 to 7 inches thick)" + }, + { + "name": "Cr", + "top": 94, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--37 + inches; dark calcareous shale." } ] ] diff --git a/inst/extdata/OSD/N/NEKKEN.json b/inst/extdata/OSD/N/NEKKEN.json index 7cd63d636f..5fabde3192 100644 --- a/inst/extdata/OSD/N/NEKKEN.json +++ b/inst/extdata/OSD/N/NEKKEN.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NEMADJI.json b/inst/extdata/OSD/N/NEMADJI.json index 9ce6b4f3cb..fe330b5046 100644 --- a/inst/extdata/OSD/N/NEMADJI.json +++ b/inst/extdata/OSD/N/NEMADJI.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "irregular", + "narrative": "0--1/2 to 0 inches; undecomposed and slightly decomposed organic debris; abrupt irregular boundary. (0 to 3 inches thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/N/NEOPIT.json b/inst/extdata/OSD/N/NEOPIT.json index 624e9aa8f9..3a5d8b6f55 100644 --- a/inst/extdata/OSD/N/NEOPIT.json +++ b/inst/extdata/OSD/N/NEOPIT.json @@ -186,75 +186,6 @@ "topography": "wavy", "narrative": "E/B--15 to 20 inches; 80 percent brown (10YR 5/3) fine sandy loam (E'), very pale brown (10YR 7/3) dry; weak medium platy structure; friable; surrounds remnants of brown (7.5YR 4/4) fine sandy loam (Bt); moderate fine angular blocky structure; firm; common roots; common distinct dark reddish brown (5YR 3/4) clay films on faces of peds; about 2 percent gravel and 1 percent cobbles; strongly acid; clear wavy boundary." }, - { - "name": "1", - "top": 51, - "bottom": 66, - "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 3, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, - "texture_class": "fine sandy loam", - "structure": "weak medium platy", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "very strongly acid", - "eff_class": "NA", - "distinctness": "clear", - "topography": "wavy", - "narrative": "(B/E)1--20 to 26 inches; 70 percent brown (7.5YR 4/4) fine sandy loam (Bt); moderate fine angular blocky structure; firm; penetrated by tongues of brown (10YR 5/3) fine sandy loam (E'), very pale brown (10YR 7/3) dry; weak medium platy structure; friable; few roots; many distinct dark reddish brown (5YR 3/4) clay films on faces of peds; few fine prominent yellowish red (5YR 4/6) masses of iron accumulation; about 3 percent gravel and 1 percent cobbles; very strongly acid; clear wavy boundary." - }, - { - "name": "2", - "top": 66, - "bottom": 91, - "dry_hue": "7.5YR", - "dry_value": 7, - "dry_chroma": 3, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, - "texture_class": "sandy loam", - "structure": "weak medium platy", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "very strongly acid", - "eff_class": "NA", - "distinctness": "gradual", - "topography": "wavy", - "narrative": "(B/E)2--26 to 36 inches; 80 percent brown (7.5YR 4/4) sandy loam (Bt); moderate medium subangular blocky structure; firm; penetrated by tongues of brown (7.5YR 5/3) sandy loam (E'), pink (7.5YR 7/3) dry; weak medium platy structure; friable; few roots; many distinct dark reddish brown (5YR 3/3) clay films on faces of peds; few fine prominent yellowish red (5YR 5/6) masses of iron accumulation; few fine distinct and prominent dark reddish brown (5YR 2/2) concretions iron-manganese oxides; about 10 percent gravel and 2 percent cobbles; very strongly acid; gradual wavy boundary." - }, - { - "name": "3", - "top": 91, - "bottom": 170, - "dry_hue": "10YR", - "dry_value": 7, - "dry_chroma": 3, - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 4, - "texture_class": "sandy loam", - "structure": "weak medium platy", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "gravelly", - "pH": "NA", - "pH_class": "strongly acid", - "eff_class": "NA", - "distinctness": "gradual", - "topography": "wavy", - "narrative": "(B/E)3--36 to 67 inches; 85 percent dark yellowish brown (10YR 4/4) gravelly sandy loam (Bt); weak medium subangular blocky structure; friable; breaks to moderate medium plates along horizontal cleavage planes inherited from the parent material; penetrated by tongues of brown (10YR 5/3) gravelly sandy loam (E'), very pale brown (10YR 7/3) dry; weak medium platy structure; friable; few roots; few prominent reddish brown (5YR 4/3) clay films on faces of peds; few fine prominent red (2.5YR 4/6) and common medium prominent yellowish red (5YR 5/6) masses of iron accumulation; few fine prominent dark reddish brown (5YR 2/2) concretions iron-manganese oxides; about 16 percent gravel and 7 percent cobbles; strongly acid; gradual wavy boundary. (Glossic horizon - 10 to 70 inches thick)" - }, { "name": "C", "top": 170, diff --git a/inst/extdata/OSD/N/NESSEN.json b/inst/extdata/OSD/N/NESSEN.json index 7789ce3f9a..c78e1bb954 100644 --- a/inst/extdata/OSD/N/NESSEN.json +++ b/inst/extdata/OSD/N/NESSEN.json @@ -74,7 +74,7 @@ { "name": "A", "top": 0, - "bottom": "NA", + "bottom": 10, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 1, diff --git a/inst/extdata/OSD/N/NETRAC.json b/inst/extdata/OSD/N/NETRAC.json index 4840894a68..bdbc78044f 100644 --- a/inst/extdata/OSD/N/NETRAC.json +++ b/inst/extdata/OSD/N/NETRAC.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0l", - "top": "NA", - "bottom": "NA", + "name": "O1", + "top": 3, + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Al", "top": 0, - "bottom": 2, + "bottom": 5, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": "NA", @@ -119,8 +119,8 @@ }, { "name": "Cl", - "top": 2, - "bottom": 7, + "top": 5, + "bottom": 18, "dry_hue": "l0YR", "dry_value": 8, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "2Alb", - "top": 7, - "bottom": "NA", + "top": 18, + "bottom": 25, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "2B2b", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 53, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -188,8 +188,8 @@ }, { "name": "2C2", - "top": "NA", - "bottom": 60, + "top": 53, + "bottom": 152, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 3, diff --git a/inst/extdata/OSD/N/NEVINE.json b/inst/extdata/OSD/N/NEVINE.json index 4041104a3a..5759e6de24 100644 --- a/inst/extdata/OSD/N/NEVINE.json +++ b/inst/extdata/OSD/N/NEVINE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NEWAUKUM.json b/inst/extdata/OSD/N/NEWAUKUM.json index a01d9f4f59..13cbe27403 100644 --- a/inst/extdata/OSD/N/NEWAUKUM.json +++ b/inst/extdata/OSD/N/NEWAUKUM.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -120,7 +120,7 @@ { "name": "Bwl", "top": 23, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Bw2", - "top": "NA", + "top": 41, "bottom": 64, "dry_hue": "l0YR", "dry_value": 6, @@ -166,7 +166,7 @@ { "name": "Bw3", "top": 64, - "bottom": "NA", + "bottom": 104, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 4, @@ -188,8 +188,8 @@ }, { "name": "BC", - "top": "NA", - "bottom": "NA", + "top": 104, + "bottom": 130, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 6, @@ -211,7 +211,7 @@ }, { "name": "C", - "top": "NA", + "top": 130, "bottom": 152, "dry_hue": "7.5YR", "dry_value": 7, diff --git a/inst/extdata/OSD/N/NEWBELL.json b/inst/extdata/OSD/N/NEWBELL.json index 89e898fd5a..ec6d76bbe0 100644 --- a/inst/extdata/OSD/N/NEWBELL.json +++ b/inst/extdata/OSD/N/NEWBELL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NEWFLAT.json b/inst/extdata/OSD/N/NEWFLAT.json index f8ae489d2b..a43d398b47 100644 --- a/inst/extdata/OSD/N/NEWFLAT.json +++ b/inst/extdata/OSD/N/NEWFLAT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NEWFOUND.json b/inst/extdata/OSD/N/NEWFOUND.json index 2c9b195170..81873a34d9 100644 --- a/inst/extdata/OSD/N/NEWFOUND.json +++ b/inst/extdata/OSD/N/NEWFOUND.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 6, + "bottom": 4, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--2 1/4 to 1 1/2 inches; slightly decomposed plant remains. (1/4 to 1 inch thick)" + }, + { + "name": "O2", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1 1/2 to 0 inches; black (5YR 2/1); medium acid; mostly decomposed plant remains. (1/2 to 2 1/4 inches thick)" + }, { "name": "A2", "top": 0, diff --git a/inst/extdata/OSD/N/NEWSKAH.json b/inst/extdata/OSD/N/NEWSKAH.json index c99807ec82..9ad63a7975 100644 --- a/inst/extdata/OSD/N/NEWSKAH.json +++ b/inst/extdata/OSD/N/NEWSKAH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NICKOLNA.json b/inst/extdata/OSD/N/NICKOLNA.json index 37148c83be..2984f0843c 100644 --- a/inst/extdata/OSD/N/NICKOLNA.json +++ b/inst/extdata/OSD/N/NICKOLNA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NIKISHKA.json b/inst/extdata/OSD/N/NIKISHKA.json index b0b256ced2..18f6ba7a34 100644 --- a/inst/extdata/OSD/N/NIKISHKA.json +++ b/inst/extdata/OSD/N/NIKISHKA.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 9, + "bottom": 8, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--3 1/2 to 3 inches; forest litter. (0 to 2 inches thick)" + }, { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NINOT.json b/inst/extdata/OSD/N/NINOT.json index 10228f9ffa..ced348ab0e 100644 --- a/inst/extdata/OSD/N/NINOT.json +++ b/inst/extdata/OSD/N/NINOT.json @@ -74,7 +74,7 @@ { "name": "A1", "top": 0, - "bottom": "NA", + "bottom": 8, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -96,8 +96,8 @@ }, { "name": "A2", - "top": 3, - "bottom": 7, + "top": 8, + "bottom": 18, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "Bw", - "top": 7, - "bottom": 10, + "top": 18, + "bottom": 25, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "Bk1", - "top": 10, - "bottom": 13, + "top": 25, + "bottom": 33, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, @@ -165,8 +165,8 @@ }, { "name": "Bk2", - "top": 13, - "bottom": 26, + "top": 33, + "bottom": 66, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 2, @@ -188,8 +188,8 @@ }, { "name": "Bk3", - "top": 26, - "bottom": 32, + "top": 66, + "bottom": 81, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 2, @@ -211,8 +211,8 @@ }, { "name": "Bk4", - "top": 32, - "bottom": 60, + "top": 81, + "bottom": 152, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, diff --git a/inst/extdata/OSD/N/NISENE.json b/inst/extdata/OSD/N/NISENE.json index 4dd92cfd29..4ccfdb6912 100644 --- a/inst/extdata/OSD/N/NISENE.json +++ b/inst/extdata/OSD/N/NISENE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NITPAC.json b/inst/extdata/OSD/N/NITPAC.json index d7d3bea215..248a380534 100644 --- a/inst/extdata/OSD/N/NITPAC.json +++ b/inst/extdata/OSD/N/NITPAC.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Btss2--36 to 53 cm; brown (7.5YR 5/4) clay, brown (7.5YR 4/4) moist; strong fine and medium prismatic structure parting to strong medium and coarse angular blocky; very hard, firm, very sticky and very plastic; common very fine and few fine roots; common very fine tubular pores; vertical cracks 0.5 to 1.5 centimeters wide and 5 to 8 cm5 to 8 cm apart extend through horizon; few slickensides; few wedge-shaped peds tilted 30 degrees from the horizontal; many faint and distinct clay films on faces of peds and lining pores; 10 percent gravel; neutral (pH 7.2); clear wavy boundary. (13 to 30 cm thick)" }, + { + "name": "Bt", + "top": 53, + "bottom": 66, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "strong fine and medium angular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 7.6, + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Bt--53 to 66 vm; light yellowish brown (10YR 6/4) gravelly clay loam, brown (7.5YR 5/4) moist; strong fine and medium angular blocky structure; very hard, friable, very sticky and very plastic; few very fine roots; common very fine and few fine tubular pores; many faint and distinct clay films on faces of peds and lining pores; 20 percent gravel; slightly alkaline (pH 7.6); abrupt wavy boundary. (0 to 13 cm thick)" + }, { "name": "Bqm", "top": 66, diff --git a/inst/extdata/OSD/N/NIZINA.json b/inst/extdata/OSD/N/NIZINA.json index 012a641a78..d79771c177 100644 --- a/inst/extdata/OSD/N/NIZINA.json +++ b/inst/extdata/OSD/N/NIZINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NODUR.json b/inst/extdata/OSD/N/NODUR.json index f615ce6ee2..5919c58025 100644 --- a/inst/extdata/OSD/N/NODUR.json +++ b/inst/extdata/OSD/N/NODUR.json @@ -117,6 +117,29 @@ "topography": "smooth", "narrative": "A2--5 to 10 cm; pale brown (10YR 6/3) sandy loam, brown (10YR 4/3) moist; moderate thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine and few medium roots; many fine vesicular pores; 5 percent gravel; neutral (pH 7.2); abrupt smooth boundary. (3 to 8 cm thick)" }, + { + "name": "Btn", + "top": 10, + "bottom": 41, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "strong fine and medium columnar", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Btn--10 to 41; yellowish brown (10YR 5/4) clay, dark yellowish brown 10YR 4/4) moist; light brownish gray (10YR 6/2) bleached cap on columns and dark grayish brown (10YR 4/2) organic stains on ped surfaces; strong fine and medium columnar structure; extremely hard, firm, moderately sticky and very plastic; common very fine and few fine exped roots; continuous moderately thick clay films on ped faces; 5 percent gravel; moderately alkaline (pH 8.2); clear smooth boundary. (25 to 30 cm thick)" + }, { "name": "Bqk1", "top": 41, diff --git a/inst/extdata/OSD/N/NOIL.json b/inst/extdata/OSD/N/NOIL.json index 7b92a235a8..d5b3d39b3e 100644 --- a/inst/extdata/OSD/N/NOIL.json +++ b/inst/extdata/OSD/N/NOIL.json @@ -231,6 +231,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C2--37 to 43 inches; yellowish brown (10YR 5/4) extremely gravelly sandy loam, dark yellowish brown (10YR 4/4) moist; weak very fine and fine subangular blocky structure parting to single grain; soft, friable, nonsticky and nonplastic; few very fine roots throughout and few medium roots in cracks; few very fine irregular pores; 4 percent fine mica flakes; 35 percent subangular schist gravel, 15 percent subangular schist cobbles and 10 percent subangular schist flagstones; moderately acid (pH 6.0); clear wavy boundary. (combined thickness of C horizons is 0 to 19 inches thick)" + }, + { + "name": "Cr", + "top": 109, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--43+ inches; weathered schist bedrock" } ] ] diff --git a/inst/extdata/OSD/N/NORA.json b/inst/extdata/OSD/N/NORA.json index 5a1c4b5022..f796bb5d83 100644 --- a/inst/extdata/OSD/N/NORA.json +++ b/inst/extdata/OSD/N/NORA.json @@ -166,7 +166,7 @@ { "name": "C", "top": 137, - "bottom": "NA", + "bottom": 203, "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 3, diff --git a/inst/extdata/OSD/N/NORCAN.json b/inst/extdata/OSD/N/NORCAN.json index 96238db242..2ffca3523a 100644 --- a/inst/extdata/OSD/N/NORCAN.json +++ b/inst/extdata/OSD/N/NORCAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NORDICOL.json b/inst/extdata/OSD/N/NORDICOL.json index 23fadb108a..b03b5096fd 100644 --- a/inst/extdata/OSD/N/NORDICOL.json +++ b/inst/extdata/OSD/N/NORDICOL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NORLING.json b/inst/extdata/OSD/N/NORLING.json index 01d056996b..f2075bed95 100644 --- a/inst/extdata/OSD/N/NORLING.json +++ b/inst/extdata/OSD/N/NORLING.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NOTNED.json b/inst/extdata/OSD/N/NOTNED.json index a38ea78da2..e02d46fe3c 100644 --- a/inst/extdata/OSD/N/NOTNED.json +++ b/inst/extdata/OSD/N/NOTNED.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/N/NOYO.json b/inst/extdata/OSD/N/NOYO.json index d4cf442e04..1f73524445 100644 --- a/inst/extdata/OSD/N/NOYO.json +++ b/inst/extdata/OSD/N/NOYO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/N/NUVALDE.json b/inst/extdata/OSD/N/NUVALDE.json index bbd3d38b6a..2729830fcb 100644 --- a/inst/extdata/OSD/N/NUVALDE.json +++ b/inst/extdata/OSD/N/NUVALDE.json @@ -117,6 +117,29 @@ "topography": "smooth", "narrative": "A--15 to 33 cm (6 to 13 in); dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate very fine subangular blocky structure; hard, firm, sticky; many fine roots; few fine pores; 15 percent calcium carbonate equivalent; violently effervescent; moderately alkaline; gradual smooth boundary. Combined thickness of the A horizon is 25 to 51 cm (10 to 20 in)" }, + { + "name": "Bw", + "top": 33, + "bottom": 53, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "moderate very fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bw--33 to 53 (13 to 21 in); brown (10YR 5/3) clay, brown (10YR 4/3) moist; moderate very fine subangular blocky structure; hard, firm, sticky; few fine roots; few fine pores; 20 percent calcium carbonate equivalent; violently effervescent; moderately alkaline; gradual wavy boundary. Thickness of the Bw horizon is 10 to 46 cm (4 to 18 in)" + }, { "name": "Bk1", "top": 53, diff --git a/inst/extdata/OSD/O/OAKDEN.json b/inst/extdata/OSD/O/OAKDEN.json index 0baa2c0f74..3b188b868c 100644 --- a/inst/extdata/OSD/O/OAKDEN.json +++ b/inst/extdata/OSD/O/OAKDEN.json @@ -142,7 +142,7 @@ }, { "name": "R", - "top": "NA", + "top": 28, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/O/OAKES.json b/inst/extdata/OSD/O/OAKES.json index eca6ab11f9..aec9adff83 100644 --- a/inst/extdata/OSD/O/OAKES.json +++ b/inst/extdata/OSD/O/OAKES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OBADIA.json b/inst/extdata/OSD/O/OBADIA.json index 1d7e1ce673..616ae2dcaf 100644 --- a/inst/extdata/OSD/O/OBADIA.json +++ b/inst/extdata/OSD/O/OBADIA.json @@ -97,7 +97,7 @@ { "name": "Bt", "top": 3, - "bottom": "NA", + "bottom": 20, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, diff --git a/inst/extdata/OSD/O/OBIE.json b/inst/extdata/OSD/O/OBIE.json index 56a6826704..6fac51f2f9 100644 --- a/inst/extdata/OSD/O/OBIE.json +++ b/inst/extdata/OSD/O/OBIE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OBRAY.json b/inst/extdata/OSD/O/OBRAY.json index 51691ccabf..e185e2c37f 100644 --- a/inst/extdata/OSD/O/OBRAY.json +++ b/inst/extdata/OSD/O/OBRAY.json @@ -187,9 +187,9 @@ "narrative": "C2ca--39 to 52 inches; brown (7.5YR 5/4) silty clay, brown (7.5YR 5/3) moist; weak medium prismatic structure that parts to moderate medium angular blocky structure; very hard, very firm, sticky, very plastic; moderately calcareous; mildly alkaline (pH 7.6); gradual irregular boundary. (13 to 16 inches thick)" }, { - "name": "to", - "top": 152, - "bottom": "NA", + "name": "C2ca", + "top": 132, + "bottom": 152, "dry_hue": "lOYR", "dry_value": 7, "dry_chroma": 3, diff --git a/inst/extdata/OSD/O/OBSKEL.json b/inst/extdata/OSD/O/OBSKEL.json index c7f1ee0843..c900f1d8a0 100644 --- a/inst/extdata/OSD/O/OBSKEL.json +++ b/inst/extdata/OSD/O/OBSKEL.json @@ -234,7 +234,7 @@ }, { "name": "Cr", - "top": "NA", + "top": 141, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/O/ODIN.json b/inst/extdata/OSD/O/ODIN.json index 5fa4ec38c3..db246fb73f 100644 --- a/inst/extdata/OSD/O/ODIN.json +++ b/inst/extdata/OSD/O/ODIN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/ODO.json b/inst/extdata/OSD/O/ODO.json index acb9d1598e..e3f313af7f 100644 --- a/inst/extdata/OSD/O/ODO.json +++ b/inst/extdata/OSD/O/ODO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OFFENBACHER.json b/inst/extdata/OSD/O/OFFENBACHER.json index 1f75409a7f..4cff0042d8 100644 --- a/inst/extdata/OSD/O/OFFENBACHER.json +++ b/inst/extdata/OSD/O/OFFENBACHER.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OGARTY.json b/inst/extdata/OSD/O/OGARTY.json index a94741781c..8fd4c36299 100644 --- a/inst/extdata/OSD/O/OGARTY.json +++ b/inst/extdata/OSD/O/OGARTY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--1 1/2 to 1/2 inch; forest litter." + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0a--1/2 inch to 0; decomposed litter." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/O/OHANA.json b/inst/extdata/OSD/O/OHANA.json index 4c09812820..c1188488d7 100644 --- a/inst/extdata/OSD/O/OHANA.json +++ b/inst/extdata/OSD/O/OHANA.json @@ -71,6 +71,98 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed organic litter including charcoal from clearcut burn and roots; abrupt smooth boundary. (0.5 to 2 inches thick)" + }, + { + "name": "Oe", + "top": 1, + "bottom": 13, + "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", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.8, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oe--1/2 to 5 inches; moderately decomposed organic material, dark grayish brown (10YR 4/2) dry; moderately acid (pH 5.8); abrupt wavy boundary. (3 to 6 inches thick)" + }, + { + "name": "E", + "top": 13, + "bottom": 14, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "broken", + "narrative": "E--5 to 5 1/2 inches; dark grayish brown (10YR 4/2) very paragravelly medial sandy loam, light brownish gray (10YR 6/2) dry; weak fine subangular blocky structure; soft, very friable, slightly sticky, nonplastic and weakly smeary; 40 percent pumice fragments (0.5 to 2 inches in diameter); moderately acid (pH 6.0); abrupt broken boundary. (0 to 2 inches thick)" + }, + { + "name": "Bs1", + "top": 14, + "bottom": 28, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "sandy loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bs1--5 1/2 to 11 inches; dark brown (7.5YR 3/4) very paragravelly medial sandy loam, light brown (7.5YR 6/4) dry; weak fine subangular blocky structure parting to weak fine granular; slightly hard, friable, slightly sticky, slightly plastic and weakly smeary; common very fine, fine, medium, and few coarse roots; common fine pores; 50 percent pumice fragments (0.5 to 4 inches in diameter); moderately acid (pH 6.0); clear wavy boundary. (5 to 8 inches thick)" + }, { "name": "2Bs2", "top": 28, diff --git a/inst/extdata/OSD/O/OHIANUI.json b/inst/extdata/OSD/O/OHIANUI.json index 63c832c5bd..7752a0cd6c 100644 --- a/inst/extdata/OSD/O/OHIANUI.json +++ b/inst/extdata/OSD/O/OHIANUI.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 2, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "loamy sand", + "structure": "weak very fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 6.7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--0 to 8 millimeters (0 to 3 inches); very dark brown (10YR 2/2) very gravelly ashy loamy sand, black (10YR 2/1) moist; weak very fine granular structure; soft, very friable, nonsmeary, nonsticky and nonplastic; many very fine and fine roots; many very fine irregular pores; 50 percent gravel-size cinders; surface covered by 95 percent gravel-size cinders; hydrophobic when dry; neutral (pH 6.7); abrupt smooth boundary. (5 to 10 centimeters {2 to 4 inches} thick)" + }, { "name": "A2", "top": 8, diff --git a/inst/extdata/OSD/O/OHMAN.json b/inst/extdata/OSD/O/OHMAN.json index 80794b51eb..5f9e440c17 100644 --- a/inst/extdata/OSD/O/OHMAN.json +++ b/inst/extdata/OSD/O/OHMAN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OJIBWAY.json b/inst/extdata/OSD/O/OJIBWAY.json index 2157ba2edf..cc3cd174c0 100644 --- a/inst/extdata/OSD/O/OJIBWAY.json +++ b/inst/extdata/OSD/O/OJIBWAY.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "0e--2 inches to 0; fresh and partly decomposed organic litter composed of needles, leaves, bark, moss, and twigs; abrupt smooth boundary. (1 to 3 inches thick)" }, + { + "name": "A1", + "top": 0, + "bottom": 1, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.8, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--0 to 1/2 inch; light gray (2.5Y 7/2) very fine sandy loam (volcanic ash), grayish brown (2.5Y 5/2) moist; weak very fine and fine subangular blocky structure; soft very friable, nonsticky and nonplastic; common very fine, fine, medium, and coarse roots; neutral (pH 6.8); abrupt smooth boundary. (0 to 1 inch thick)" + }, + { + "name": "A2", + "top": 1, + "bottom": 13, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "A2--1/2 to 5 inches; dark brown (7.5YR 4/4) gravelly loam, dark reddish brown (5YR 3/2) moist; weak medium granular and weak fine subangular blocky structure; slightly hard, friable, nonsticky and slightly plastic; common very fine, fine, medium, and coarse roots; 25 percent angular pebbles and 5 percent angular cobbles; NaF pH 9.9; slightly acid (pH 6.4); clear wavy boundary. (5 to 7 inches thick)" + }, { "name": "Bw1", "top": 13, diff --git a/inst/extdata/OSD/O/OKEECHOBEE.json b/inst/extdata/OSD/O/OKEECHOBEE.json index bfe54628c5..473a31702a 100644 --- a/inst/extdata/OSD/O/OKEECHOBEE.json +++ b/inst/extdata/OSD/O/OKEECHOBEE.json @@ -95,7 +95,7 @@ "narrative": "Oap--0 to 8 inches; black (10YR 2/1) muck; moderate fine and medium granular structure; friable; less than 5 percent rubbed fiber; 10 percent mineral material; medium acid; clear wavy boundary. (6 to 12 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 20, "bottom": 71, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OLANCHA.json b/inst/extdata/OSD/O/OLANCHA.json index 9e6324c0b8..ac4cd214c0 100644 --- a/inst/extdata/OSD/O/OLANCHA.json +++ b/inst/extdata/OSD/O/OLANCHA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/4 inch to 0; decomposing sagebrush litter." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/O/OLEO.json b/inst/extdata/OSD/O/OLEO.json index 0d45d28b0e..2a70fd6253 100644 --- a/inst/extdata/OSD/O/OLEO.json +++ b/inst/extdata/OSD/O/OLEO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OLEQUA.json b/inst/extdata/OSD/O/OLEQUA.json index 8a588da112..795cbffe35 100644 --- a/inst/extdata/OSD/O/OLEQUA.json +++ b/inst/extdata/OSD/O/OLEQUA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OLOKUI.json b/inst/extdata/OSD/O/OLOKUI.json index d8305435d5..b971051c56 100644 --- a/inst/extdata/OSD/O/OLOKUI.json +++ b/inst/extdata/OSD/O/OLOKUI.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -139,6 +139,52 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "A2g--4 to 11 inches; very dark gray (10YR 3/2) silty clay loam, many medium and coarse distinct dark reddish brown (5YR 2/2) mottles along cleavage planes and in pores; moderate medium and coarse subangular structure; friable, sticky and plastic; many roots; many very fine and fine pores; many glistening specks; very strongly acid (pH 4.8); abrupt wavy boundary. (5 to 12 inches thick)" + }, + { + "name": "Birm", + "top": 28, + "bottom": 29, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Birm--11 to 11 1/2 inches; horizontal dark reddish brown (5YR 2/2) ironstone sheet; very hard, fine cracks in places. Ironstone sheet has a trowled surface and is laminar. (1/8 to 1 inch thick)" + }, + { + "name": "C", + "top": 29, + "bottom": 91, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--11 1/2 to 36 inches; soft variegated brown and dark reddish brown saprolite; can be crushed to silt loam that is smeary when wet; common discontinuous ironstone sheets 1/8 to 1/2 inch thick oriented vertically as well as horizontally in this horizon. Many feet thick." } ] ] diff --git a/inst/extdata/OSD/O/OLOMOUNT.json b/inst/extdata/OSD/O/OLOMOUNT.json index fbb23c6f74..6d7bcd3a32 100644 --- a/inst/extdata/OSD/O/OLOMOUNT.json +++ b/inst/extdata/OSD/O/OLOMOUNT.json @@ -71,10 +71,33 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 6, + "bottom": 5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--2 1/2 to 2 inches; leaves, needles and mosses." + }, { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OLPE.json b/inst/extdata/OSD/O/OLPE.json index 95ccca8a0f..6ecefaf69c 100644 --- a/inst/extdata/OSD/O/OLPE.json +++ b/inst/extdata/OSD/O/OLPE.json @@ -143,7 +143,7 @@ { "name": "Bt1", "top": 48, - "bottom": "NA", + "bottom": 64, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/O/OLYIC.json b/inst/extdata/OSD/O/OLYIC.json index 5ae6f64fe3..ed04279333 100644 --- a/inst/extdata/OSD/O/OLYIC.json +++ b/inst/extdata/OSD/O/OLYIC.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O1--1/4 inch to 0; needles, leaves, twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/O/OMULGA.json b/inst/extdata/OSD/O/OMULGA.json index 7ebdb1aa45..ecf81a1661 100644 --- a/inst/extdata/OSD/O/OMULGA.json +++ b/inst/extdata/OSD/O/OMULGA.json @@ -232,6 +232,29 @@ "topography": "wavy", "narrative": "2B't1--109 to 127 cm (43 to 50 inches); yellowish brown (10YR 5/6) silty clay loam; moderate coarse subangular blocky structure; friable; many distinct light yellowish brown (10YR 6/4) clay films on faces of peds; common prominent light brownish gray (2.5Y 6/2) clay depletions on vertical faces of peds; many coarse distinct strong brown (7.5YR 5/8) masses with accumulated iron oxide; about 2 percent rock fragments; very strongly acid; clear wavy boundary." }, + { + "name": "2B't2", + "top": 127, + "bottom": 157, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "silty clay", + "structure": "moderate coarse angular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "2B't2--127 to 157 (50 to 62 inches); yellowish brown (10YR 5/6) silty clay; moderate coarse angular blocky structure; firm; common distinct light yellowish brown (10YR 6/4) and common prominent yellowish red (5YR 4/6) clay films on faces of peds; many prominent light brownish gray (2.5Y 6/2) clay depletions on vertical faces of peds; about 1 percent rock fragments; very strongly acid; gradual wavy boundary." + }, { "name": "2B't3", "top": 157, diff --git a/inst/extdata/OSD/O/OOSEN.json b/inst/extdata/OSD/O/OOSEN.json index 83ee1bcc65..2c082a0604 100644 --- a/inst/extdata/OSD/O/OOSEN.json +++ b/inst/extdata/OSD/O/OOSEN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", - "top": "NA", - "bottom": 3, + "name": "O1", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/ORAID.json b/inst/extdata/OSD/O/ORAID.json index 5f772a5ee9..eeffbeea00 100644 --- a/inst/extdata/OSD/O/ORAID.json +++ b/inst/extdata/OSD/O/ORAID.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/ORDNANCE.json b/inst/extdata/OSD/O/ORDNANCE.json index 7b37993133..662fce014c 100644 --- a/inst/extdata/OSD/O/ORDNANCE.json +++ b/inst/extdata/OSD/O/ORDNANCE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/ORENDA.json b/inst/extdata/OSD/O/ORENDA.json index 1c8158b234..85282e6202 100644 --- a/inst/extdata/OSD/O/ORENDA.json +++ b/inst/extdata/OSD/O/ORENDA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/ORIF.json b/inst/extdata/OSD/O/ORIF.json index 49668d9821..dcb75f260e 100644 --- a/inst/extdata/OSD/O/ORIF.json +++ b/inst/extdata/OSD/O/ORIF.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "2C1--30 to 102 cm (12 to 40 in); very pale brown (10YR 7/4) extremely gravelly sand, light yellowish brown (10YR 6/4) moist; single grain; loose, soft; few roots; 85 percent water-rounded limestone pebbles and few cobbles; few very thin strata of sandy loam; violently effervescent; moderately alkaline; abrupt smooth boundary. Thickness is 51 to 305 cm (20 to 120 in)." + }, + { + "name": "3C2", + "top": 102, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "soft", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "3C2--102 to 203 (40 to 80 in); very pale brown (10YR 7/3) coarse sand, light yellowish brown (10YR 6/4) moist; single grain; loose, soft; few roots; 2 percent water-rounded limestone pebbles and cobbles; few very thin strata of sandy loam; violently effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/O/ORLAND.json b/inst/extdata/OSD/O/ORLAND.json index 34fa80ed3e..18652a013e 100644 --- a/inst/extdata/OSD/O/ORLAND.json +++ b/inst/extdata/OSD/O/ORLAND.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "C2--19 to 39 inches; similar to above but loam texture with some gravel and a few roots; mildly alkaline; abrupt, smooth lower boundary; 10 to 30 inches thick." + }, + { + "name": "D", + "top": 99, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "D--39 + inches; grayish brown (2.5Y 5/2) very gravelly sand, dark grayish brown (2.5Y 4/2) when moist; structureless; loose dry and moist; slightly alkaline; many feet thick." } ] ] diff --git a/inst/extdata/OSD/O/ORNBAUN.json b/inst/extdata/OSD/O/ORNBAUN.json index da9ef31be2..0dbcfda1f2 100644 --- a/inst/extdata/OSD/O/ORNBAUN.json +++ b/inst/extdata/OSD/O/ORNBAUN.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OROGNEN.json b/inst/extdata/OSD/O/OROGNEN.json index b24005c612..c10b20a15f 100644 --- a/inst/extdata/OSD/O/OROGNEN.json +++ b/inst/extdata/OSD/O/OROGNEN.json @@ -208,6 +208,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "2BCt1--34 to 52 inches; yellowish red (5YR 4/6) gravelly clay loam, yellowish red (5YR 4/6) and brown (7.5YR 4/4) moist; massive; slightly hard, firm, sticky and plastic; few very fine tubular pores; common moderately thick clay films bridging sand grains; 25 percent gravel 2 to 5mm in size; moderately alkaline (pH 8.0); gradual smooth boundary. (10 to 20 inches thick)" + }, + { + "name": "2BCt2", + "top": 132, + "bottom": 157, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 6, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2BCt2--52 t 62 inches; yellowish red (5YR 4/6) gravelly clay loam, yellowish red (5YR 4/6, 5/8) moist; massive; slightly hard, firm, sticky and plastic; few very fine tubular pores; common thin and moderately thick clay films bridging sand grains; 25 percent gravel 2 to 5mm in size; moderately alkaline (pH 8.0)." } ] ] diff --git a/inst/extdata/OSD/O/ORSET.json b/inst/extdata/OSD/O/ORSET.json index b7ae2c458b..33502f6d9c 100644 --- a/inst/extdata/OSD/O/ORSET.json +++ b/inst/extdata/OSD/O/ORSET.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/ORWIG.json b/inst/extdata/OSD/O/ORWIG.json index cd7e89f1ca..83ba7e0e0d 100644 --- a/inst/extdata/OSD/O/ORWIG.json +++ b/inst/extdata/OSD/O/ORWIG.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "Oe--2 inches to 0; dark brown (10YR 3/3) moist; loose, partially decomposed organic litter composed of needles, leaves, twigs, bark, and cones; abrupt smooth boundary. (1/2 to 3 inches thick)" }, + { + "name": "E", + "top": 0, + "bottom": 1, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "weak very fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "E--0 to 1/4 inch; light gray (2.5Y 7/2) very fine sandy loam (volcanic ash) grayish brown (2.5Y 5/2) moist, weak very fine granular structure; soft, very friable, nonsticky and nonplastic; common roots, slightly acid (pH 6.4) abrupt smooth boundary. (1 to 1 inch thick)" + }, + { + "name": "Bw1", + "top": 1, + "bottom": 10, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "sandy loam", + "structure": "weak fine and medium granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.2, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw1--1/4 to 4 inches; light yellowish brown (10YR 6/4) sandy loam, dark yellowish brown (10YR 4/4) moist; weak fine and medium granular structure; soft, very friable, slightly sticky and nonplastic; many very fine, fine, common medium, and few coarse roots; few very fine and fine discontinuous pores; slightly acid dark yellowish brown (10YR 4/4) moist; weak fine and medium granular structure; soft, very friable, slightly sticky and nonplastic; many very fine, fine, common medium, and few coarse roots; few very fine and fine discontinuous pores; slightly acid (pH 6.2); clear wavy boundary. (3 to 6 inches thick)" + }, { "name": "Bw2", "top": 10, diff --git a/inst/extdata/OSD/O/OSO.json b/inst/extdata/OSD/O/OSO.json index ab1f39abf3..e4cfd5687b 100644 --- a/inst/extdata/OSD/O/OSO.json +++ b/inst/extdata/OSD/O/OSO.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OSSIPEE.json b/inst/extdata/OSD/O/OSSIPEE.json index d96e7be9d4..52a6717b71 100644 --- a/inst/extdata/OSD/O/OSSIPEE.json +++ b/inst/extdata/OSD/O/OSSIPEE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e1", + "name": "Oe1", "top": 0, "bottom": 30, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0e1--0 to 12 inches; dark reddish brown (5YR 2/2), broken face and rubbed, hemic material; about 60 percent fibers, 35 percent rubbed; moderate medium and coarse granular structure; nonsticky; 2 percent coarse fragments; extremely acid; clear smooth boundary." }, { - "name": "0e2", + "name": "Oe2", "top": 30, "bottom": 46, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0e2--12 to 18 inches; dark reddish brown (5YR 2/2), broken face and rubbed, hemic material; about 60 percent fibers, 30 percent rubbed; moderate very coarse granular structure; nonsticky; 2 percent coarse fragments; extremely acid; clear smooth boundary. (4 to 20 inches thick)" }, { - "name": "0e3", + "name": "Oe3", "top": 46, "bottom": 64, "dry_hue": "NA", diff --git a/inst/extdata/OSD/O/OTANYA.json b/inst/extdata/OSD/O/OTANYA.json index 82c00d8291..abc8470c51 100644 --- a/inst/extdata/OSD/O/OTANYA.json +++ b/inst/extdata/OSD/O/OTANYA.json @@ -232,6 +232,29 @@ "topography": "wavy", "narrative": "B't1--152 to 198 cm (60 to 78 in); brownish yellow (10YR 6/8), sandy clay loam; weak coarse prismatic parting to weak medium and coarse subangular blocky structure; firm, hard; few very fine roots; few very fine tubular pores; 25 percent distinct brownish yellow (10YR 6/8) clay films on surfaces of peds; 5 percent medium cylindrical ironstone nodules; 2 percent medium cylindrical red (2.5YR 4/6) plinthite nodules; 2 percent fine distinct light brownish gray (10YR 6/2) iron depletions with sharp boundaries on surfaces along root channels; 2 percent fine prominent yellowish red (5YR 5/6) masses of oxidized iron with sharp boundaries on vertical surfaces of peds; 3 percent fine and medium distinct reddish yellow (7.5YR 6/8) masses of oxidized iron with sharp boundaries on surfaces of peds; 8 percent medium prominent red (2.5YR 4/8) masses of oxidized iron with sharp boundaries on surfaces of peds; very strongly acid; gradual wavy boundary. (combined thickness of the B't horizons is 51 to 96 cm [20 to 38 in] thick)" }, + { + "name": "B't2", + "top": 198, + "bottom": 279, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 6, + "texture_class": "sandy clay loam", + "structure": "weak coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "B't2--198 to 279 (78 to 110 in); brownish yellow (10YR 6/6) and 15 percent pale brown (10YR 6/3) and 25 percent light brownish gray (10YR 6/2), sandy clay loam; weak coarse subangular blocky structure; firm, hard; few very fine roots; few very fine tubular pores; 25 percent distinct brownish yellow (10YR 6/8) clay films on surfaces of peds; 5 percent medium cylindrical ironstone nodules; 2 percent medium cylindrical red (2.5YR 4/6) plinthite nodules; 2 percent fine prominent yellowish red (5YR 5/8) masses of oxidized iron with sharp boundaries on surfaces of peds; 3 percent fine distinct light brownish gray (10YR 6/2) iron depletions with sharp boundaries on surfaces along root channels; 5 percent fine and medium distinct reddish yellow (7.5YR 6/8) masses of oxidized iron with sharp boundaries on surfaces of peds; 8 percent medium prominent red (2.5YR 4/8) masses of oxidized iron with sharp boundaries on surfaces of peds; very strongly acid; gradual wavy boundary." + }, { "name": "B't3", "top": 279, diff --git a/inst/extdata/OSD/O/OUTLAND.json b/inst/extdata/OSD/O/OUTLAND.json index 0d3ea94ad4..f3cae128f1 100644 --- a/inst/extdata/OSD/O/OUTLAND.json +++ b/inst/extdata/OSD/O/OUTLAND.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/O/OVIATT.json b/inst/extdata/OSD/O/OVIATT.json index 6783b6b852..33f8e70de9 100644 --- a/inst/extdata/OSD/O/OVIATT.json +++ b/inst/extdata/OSD/O/OVIATT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PACIFICO.json b/inst/extdata/OSD/P/PACIFICO.json index 9925af9dd0..43d9b9d364 100644 --- a/inst/extdata/OSD/P/PACIFICO.json +++ b/inst/extdata/OSD/P/PACIFICO.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "0", - "top": "NA", + "name": "O", + "top": 1, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/P/PAHRANAGAT.json b/inst/extdata/OSD/P/PAHRANAGAT.json index 663e8287fb..7b9e6342b5 100644 --- a/inst/extdata/OSD/P/PAHRANAGAT.json +++ b/inst/extdata/OSD/P/PAHRANAGAT.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "Ag--10 to 41 cm; grayish brown (10YR 5/2) silty clay loam, very dark brown (10YR 2/2) moist; few fine distinct dark brown (7.5YR 3/4) mottles; strong fine subangular blocky structure; slightly hard, friable, moderately sticky and very plastic; common very fine through coarse roots; common very fine through coarse tubular pores; common medium dark gray (10YR 4/1) and black (10YR 2/1) worm casts; strongly effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (25 to 36 cm thick)" }, + { + "name": "2Cg", + "top": 41, + "bottom": 64, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.4, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "2Cg--41 to 64; light gray (10YR 7/2) very fine sandy loam, dark grayish brown (10YR 4/2) moist; few fine faint brown (7.5YR 4/4) mottles; massive; slightly hard, very friable, slightly sticky and slightly plastic; common fine and medium roots; common medium and coarse tubular pores; common medium dark gray (10YR 4/1) and black (10YR 2/1) worm casts; strongly effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (3 to 25 cm thick)" + }, { "name": "3Agb", "top": 64, diff --git a/inst/extdata/OSD/P/PAHREAH.json b/inst/extdata/OSD/P/PAHREAH.json index cc0d509c75..c376d78a83 100644 --- a/inst/extdata/OSD/P/PAHREAH.json +++ b/inst/extdata/OSD/P/PAHREAH.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "NA", "narrative": "Oe--1 inch to 0; undecomposed and partly decomposed conifer needles and twigs." }, + { + "name": "A1", + "top": 0, + "bottom": 1, + "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": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 7.6, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--0 to 1/2 inch; brown (7.5YR 5/4) very gravelly loam, dark brown (10YR 3/3) moist; crushed; weak very fine granular structure; soft, very friable, nonsticky and slightly plastic; common very fine and fine roots; common very fine pores; 50 percent fine to medium pebbles, mildly alkaline (pH 7.6); clear smooth boundary. (1/2 to 3 inches thick.)" + }, + { + "name": "A2", + "top": 1, + "bottom": 13, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 8, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A2--1/2 to 5 inches; brown (7.5YR 5/2) very gravelly loam, dark brown (7.5YR 3/2) moist, crushed; weak medium subangular blocky structure parting to weak, very fine granular; soft, friable, nonsticky and slightly plastic; common very fine, fine and medium and few coarse roots; few fine pores; few thin clay films in pores; 40 percent fine pebbles; strongly calcareous; mildly alkaline (pH 8.0); abrupt wavy boundary. (3 to 7 inches thick.)" + }, { "name": "Bw", "top": 13, diff --git a/inst/extdata/OSD/P/PALMICH.json b/inst/extdata/OSD/P/PALMICH.json index 5e3cb60791..590acd5eac 100644 --- a/inst/extdata/OSD/P/PALMICH.json +++ b/inst/extdata/OSD/P/PALMICH.json @@ -120,7 +120,7 @@ { "name": "AB", "top": 15, - "bottom": "NA", + "bottom": 43, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "Bw1", - "top": "NA", + "top": 43, "bottom": 71, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/P/PALOMARIN.json b/inst/extdata/OSD/P/PALOMARIN.json index b7bfc34fd7..d618d9926e 100644 --- a/inst/extdata/OSD/P/PALOMARIN.json +++ b/inst/extdata/OSD/P/PALOMARIN.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PAPEEK.json b/inst/extdata/OSD/P/PAPEEK.json index abb02e623e..1fb2e48ecc 100644 --- a/inst/extdata/OSD/P/PAPEEK.json +++ b/inst/extdata/OSD/P/PAPEEK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PARA.json b/inst/extdata/OSD/P/PARA.json index 06315025e1..8fc969ae63 100644 --- a/inst/extdata/OSD/P/PARA.json +++ b/inst/extdata/OSD/P/PARA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PARADISE.json b/inst/extdata/OSD/P/PARADISE.json index 0986bc40c3..415c036538 100644 --- a/inst/extdata/OSD/P/PARADISE.json +++ b/inst/extdata/OSD/P/PARADISE.json @@ -97,7 +97,7 @@ { "name": "A2", "top": 15, - "bottom": "NA", + "bottom": 48, "dry_hue": "10YR", "dry_value": 2, "dry_chroma": 2, @@ -119,7 +119,7 @@ }, { "name": "Bg", - "top": "NA", + "top": 48, "bottom": 97, "dry_hue": "10YR", "dry_value": 6, diff --git a/inst/extdata/OSD/P/PARADISE_SPRING.json b/inst/extdata/OSD/P/PARADISE_SPRING.json index 539eb5c331..70cea76d3e 100644 --- a/inst/extdata/OSD/P/PARADISE_SPRING.json +++ b/inst/extdata/OSD/P/PARADISE_SPRING.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Btk -- 14 to 19 inches; pale brown (10YR 6/3) gravelly sandy clay loam, light olive brown (2.5Y 5/4) moist; moderate fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots throughout; violently effervescent (calcium carbonate equivalent of 5 to 10 percent); 15 percent gravel and 5 percent cobbles; moderately alkaline (pH 8.2); abrupt irregular boundary. (0 to 15 inches thick.)" + }, + { + "name": "R", + "top": 48, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 19+ inches; unweathered and highly fractured metamorphosed basalt and schist bedrock with pockets of weathered bedrock material of high excavation difficulty." } ] ] diff --git a/inst/extdata/OSD/P/PARAGON.json b/inst/extdata/OSD/P/PARAGON.json index 7eafe8dad3..6227634c8d 100644 --- a/inst/extdata/OSD/P/PARAGON.json +++ b/inst/extdata/OSD/P/PARAGON.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PARKINSON.json b/inst/extdata/OSD/P/PARKINSON.json index 6dd83b9640..2567557998 100644 --- a/inst/extdata/OSD/P/PARKINSON.json +++ b/inst/extdata/OSD/P/PARKINSON.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C1ca--12 to 24 inches; very pale brown (10YR 8/3) gravelly loam, which is high in coarse sand; pale brown (10YR 5.5/3) when moist; weak, medium and fine subangular blocky structure; firm; slightly sticky; slightly plastic; strongly calcareous; mildly or moderately alkaline (pH 8.4 thymol blue); clear wavy boundary. (10 to 14 inches thick)" + }, + { + "name": "C2ca", + "top": 61, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 8, + "moist_chroma": 2, + "texture_class": "coarse sand", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2ca--24 + inches; white (10YR 8/2) gravelly loam, which is high in coarse sand; very pale brown (10YR 7/3) when moist; massive; hard; friable; slightly sticky; slightly plastic; very strongly calcareous; moderately or strongly alkaline (pH 8.6 tb)." } ] ] diff --git a/inst/extdata/OSD/P/PARKS.json b/inst/extdata/OSD/P/PARKS.json index eacec5e426..0868428448 100644 --- a/inst/extdata/OSD/P/PARKS.json +++ b/inst/extdata/OSD/P/PARKS.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PARKWASH.json b/inst/extdata/OSD/P/PARKWASH.json index e7c72f12d5..93602b146e 100644 --- a/inst/extdata/OSD/P/PARKWASH.json +++ b/inst/extdata/OSD/P/PARKWASH.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--10 to 19 inches; very pale brown (10YR 7/3) fine sand, light yellowish brown (10YR 6/4); massive; soft, very friable, nonsticky, and nonplastic; few very fine and fine roots; common very fine interstitial pores; no effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary." + }, + { + "name": "R", + "top": 48, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--19 + inches; Navajo Formation sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/P/PARTOV.json b/inst/extdata/OSD/P/PARTOV.json index 04f3d36407..46779cff87 100644 --- a/inst/extdata/OSD/P/PARTOV.json +++ b/inst/extdata/OSD/P/PARTOV.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PASTUREROCK.json b/inst/extdata/OSD/P/PASTUREROCK.json index cc3f1e79a5..7fc26e829e 100644 --- a/inst/extdata/OSD/P/PASTUREROCK.json +++ b/inst/extdata/OSD/P/PASTUREROCK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 2, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi-- 0 to 2 centimeter (0 to 1 inch); slightly decomposed oak leaves and herbaceous litter; moderately acid (pH 6.0). (0 to 4 centimeters thick)" + }, { "name": "A", "top": 2, diff --git a/inst/extdata/OSD/P/PAVILION.json b/inst/extdata/OSD/P/PAVILION.json index 0ec2cb2e44..b9b7a7fad5 100644 --- a/inst/extdata/OSD/P/PAVILION.json +++ b/inst/extdata/OSD/P/PAVILION.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0p", + "name": "Op", "top": 0, "bottom": 23, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0p -- 0 to 9 inches; black (10YR 2/1) broken face and rubbed sapric material; about 5 percent fiber, less than 2 percent rubbed; moderate fine and medium granular structure; very friable; common roots; neutral; clear smooth boundary. (6 to 12 inches thick.)" }, { - "name": "0a1", + "name": "Oa1", "top": 23, "bottom": 33, "dry_hue": "NA", @@ -140,29 +140,6 @@ "topography": "smooth", "narrative": "2Cg1 -- 13 to 43 inches; dark grayish brown (10YR 4/2) fine sandy loam; massive; friable; common medium prominent yellowish brown (10YR 5/6) masses of iron accumulations and faint dark gray (2.5Y 4/1) iron depletions; neutral; clear smooth boundary." }, - { - "name": "2", - "top": 109, - "bottom": 137, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 4, - "moist_chroma": 2, - "texture_class": "fine sandy loam", - "structure": "massive", - "dry_rupture": "NA", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "neutral", - "eff_class": "NA", - "distinctness": "clear", - "topography": "smooth", - "narrative": "2Cg 2-- 43 to 54 inches; dark grayish brown (10YR 4/2) fine sandy loam; massive; friable; common medium distinct dark yellowish brown (10YR 4/4) masses of iron accumulations; clear smooth boundary; neutral." - }, { "name": "2Cg3", "top": 137, diff --git a/inst/extdata/OSD/P/PAWCATUCK.json b/inst/extdata/OSD/P/PAWCATUCK.json index b7a308d66c..2c2598f54f 100644 --- a/inst/extdata/OSD/P/PAWCATUCK.json +++ b/inst/extdata/OSD/P/PAWCATUCK.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cseg2--127 to 200 centimeters; black (10YR 2/1) loamy sand, dark gray (10YR 4/1) dry; single grain; loose; 10 percent gravel; total salts 20,000 ppm; slightly acid (pH 6.3), ultra acid (pH 2.8) oxidized pH. (Combined thickness of Cseg horizons is 20 to 75 centimeters). & The lab and/or field method for total salts in the Typical Pedon is not known but is retained for historical purposes. Total salt content previously reported in the RIC is generally more than 10,000 ppm, but total salt content ranges from 1,000 to 40,000 ppm." + }, + { + "name": "centimeters", + "top": "NA", + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "1. Histosols--have organic materials that total 40 centimeters or more between the soil surface and a depth of 50 centimeters - the zone from a depth of 0 to 117 centimeters (Oese horizons)." } ] ] diff --git a/inst/extdata/OSD/P/PEAHKE.json b/inst/extdata/OSD/P/PEAHKE.json index 422ba36b34..945858d697 100644 --- a/inst/extdata/OSD/P/PEAHKE.json +++ b/inst/extdata/OSD/P/PEAHKE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PELEE.json b/inst/extdata/OSD/P/PELEE.json index 138e485d63..5b868c4aea 100644 --- a/inst/extdata/OSD/P/PELEE.json +++ b/inst/extdata/OSD/P/PELEE.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1-1/2 inch to 1/2 inch; leaves, needles and twigs." + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 inch to 0; decomposed organic material." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/P/PELELIU.json b/inst/extdata/OSD/P/PELELIU.json index 40c3ab087e..88cbe58daa 100644 --- a/inst/extdata/OSD/P/PELELIU.json +++ b/inst/extdata/OSD/P/PELELIU.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", - "top": "NA", - "bottom": 3, + "name": "O1", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PEMENE.json b/inst/extdata/OSD/P/PEMENE.json index 320fe18a6c..8ea1c7d5f0 100644 --- a/inst/extdata/OSD/P/PEMENE.json +++ b/inst/extdata/OSD/P/PEMENE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PENDOLA.json b/inst/extdata/OSD/P/PENDOLA.json index e54f5337a9..64d0dd82ea 100644 --- a/inst/extdata/OSD/P/PENDOLA.json +++ b/inst/extdata/OSD/P/PENDOLA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PEND_OREILLE.json b/inst/extdata/OSD/P/PEND_OREILLE.json index 1a9d7a7f92..b7a3ab8c9d 100644 --- a/inst/extdata/OSD/P/PEND_OREILLE.json +++ b/inst/extdata/OSD/P/PEND_OREILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; slightly decomposed needles and twigs. (0.5 to 2 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PERDIN.json b/inst/extdata/OSD/P/PERDIN.json index af7a124e6a..68ca337609 100644 --- a/inst/extdata/OSD/P/PERDIN.json +++ b/inst/extdata/OSD/P/PERDIN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PERFA.json b/inst/extdata/OSD/P/PERFA.json index 0bb749796e..bf5c4e1b3c 100644 --- a/inst/extdata/OSD/P/PERFA.json +++ b/inst/extdata/OSD/P/PERFA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PERSIS.json b/inst/extdata/OSD/P/PERSIS.json index 96df765ccc..e54a48eb9c 100644 --- a/inst/extdata/OSD/P/PERSIS.json +++ b/inst/extdata/OSD/P/PERSIS.json @@ -71,6 +71,98 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 9, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--3 1/2 to 1/2 inches; mosses, needles, partially decomposed wood fragments. (1 to 5 inches thick)" + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 inch to 0; decomposed forest litter (1/2 to 7 inches thick)" + }, + { + "name": "E", + "top": 0, + "bottom": 4, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "moderate fine and very fine subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.2, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "E--0 to 1 1/2 inches; brown (7.5YR 4/2) sandy loam, pinkish gray (7.5YR 6/2) dry; moderate fine and very fine subangular blocky structure; soft, very friable, slightly sticky, slightly plastic; weakly smeary; common very fine, fine, and medium roots; many very fine tubular pores; 2 percent rounded pebbles; NaF pH 9.2; extremely acid (pH 4.2); abrupt smooth boundary. (0 to 5 inches thick)" + }, + { + "name": "Bhs", + "top": 4, + "bottom": 10, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "moderate fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.4, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "irregular", + "narrative": "Bhs--1 1/2 to 4 inches; dark reddish brown (5YR 3/2) sandy loam, reddish brown (5YR 4/3) dry; moderate fine subangular blocky structure; slightly hard friable, slightly sticky, slightly plastic; weakly smeary; common very fine and fine roots, few medium roots; many very fine tubular pores; 2 percent rounded pebbles; NaF pH 11.5; extremely acid (pH 4.4); clear irregular boundary. (2 to 7 inches thick)" + }, { "name": "Bs1", "top": 10, diff --git a/inst/extdata/OSD/P/PERVINA.json b/inst/extdata/OSD/P/PERVINA.json index 1299a429a1..ef36e70ccb 100644 --- a/inst/extdata/OSD/P/PERVINA.json +++ b/inst/extdata/OSD/P/PERVINA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PESHEKEE.json b/inst/extdata/OSD/P/PESHEKEE.json index 39fbe022fb..32bfa57a3c 100644 --- a/inst/extdata/OSD/P/PESHEKEE.json +++ b/inst/extdata/OSD/P/PESHEKEE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PETTY.json b/inst/extdata/OSD/P/PETTY.json index 52a1e18f7c..e0a477912e 100644 --- a/inst/extdata/OSD/P/PETTY.json +++ b/inst/extdata/OSD/P/PETTY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PHILIPPA.json b/inst/extdata/OSD/P/PHILIPPA.json index 76bc3169bf..80bdc5d9a2 100644 --- a/inst/extdata/OSD/P/PHILIPPA.json +++ b/inst/extdata/OSD/P/PHILIPPA.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 5, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--2 to 1/2 inch; mosses, twigs, needles." + }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oa--1/2 inch to 0; decomposed forest litter; abrupt smooth boundary." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/P/PHILLCHER.json b/inst/extdata/OSD/P/PHILLCHER.json index 2f2c7865ea..b2f43b79ae 100644 --- a/inst/extdata/OSD/P/PHILLCHER.json +++ b/inst/extdata/OSD/P/PHILLCHER.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PHIPPS.json b/inst/extdata/OSD/P/PHIPPS.json index 79ca136d93..f6915ec41a 100644 --- a/inst/extdata/OSD/P/PHIPPS.json +++ b/inst/extdata/OSD/P/PHIPPS.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", - "top": "NA", - "bottom": 5, + "name": "O2", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PIDCOKE.json b/inst/extdata/OSD/P/PIDCOKE.json index 7f121d5bed..9c8c991345 100644 --- a/inst/extdata/OSD/P/PIDCOKE.json +++ b/inst/extdata/OSD/P/PIDCOKE.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--18 to 33 cm (7 to 13 in); grayish brown (10YR 5/2) gravelly clay loam, dark grayish brown (10YR 4/2) moist; weak fine subangular blocky; hard, friable; common very fine and fine roots; common fine concretions and few films and threads of calcium carbonate; about 25 percent by volume fossil shells from 3 to 38 mm (1/8 to 1 1/2 in across); strongly effervescent; moderately alkaline; abrupt smooth boundary. (Thickness is 15 to 20 cm [6 to 8 in].)" + }, + { + "name": "R", + "top": 33, + "bottom": 76, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "indurated", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--33 to 76 (13 to 30 in); indurated fossiliferous limestone; massive and unfractured; hardness of about 3 by Mohs scale." } ] ] diff --git a/inst/extdata/OSD/P/PIKADEN.json b/inst/extdata/OSD/P/PIKADEN.json index ecebdf8bc9..74b115f783 100644 --- a/inst/extdata/OSD/P/PIKADEN.json +++ b/inst/extdata/OSD/P/PIKADEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PILLERY.json b/inst/extdata/OSD/P/PILLERY.json index f54bb4a190..87e3738eec 100644 --- a/inst/extdata/OSD/P/PILLERY.json +++ b/inst/extdata/OSD/P/PILLERY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PILLIKEN.json b/inst/extdata/OSD/P/PILLIKEN.json index 86b3d47dc3..97dd79749e 100644 --- a/inst/extdata/OSD/P/PILLIKEN.json +++ b/inst/extdata/OSD/P/PILLIKEN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 1/2 inches to 0; decomposing conifer needles." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/P/PINCHER.json b/inst/extdata/OSD/P/PINCHER.json index 23be5c64bd..1c31b1938a 100644 --- a/inst/extdata/OSD/P/PINCHER.json +++ b/inst/extdata/OSD/P/PINCHER.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PINEHURST.json b/inst/extdata/OSD/P/PINEHURST.json index 0c6400fa30..caddebc718 100644 --- a/inst/extdata/OSD/P/PINEHURST.json +++ b/inst/extdata/OSD/P/PINEHURST.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PINHEAD.json b/inst/extdata/OSD/P/PINHEAD.json index 9cf15794f3..aeaf55e906 100644 --- a/inst/extdata/OSD/P/PINHEAD.json +++ b/inst/extdata/OSD/P/PINHEAD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PINOLE.json b/inst/extdata/OSD/P/PINOLE.json index 9720b554ee..f9c4f51301 100644 --- a/inst/extdata/OSD/P/PINOLE.json +++ b/inst/extdata/OSD/P/PINOLE.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PINOTY.json b/inst/extdata/OSD/P/PINOTY.json index 04121a4837..883af49135 100644 --- a/inst/extdata/OSD/P/PINOTY.json +++ b/inst/extdata/OSD/P/PINOTY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 1, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Oi--2 inches to 1/2 inch; needles, leaves, and twigs." }, + { + "name": "Oa", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 inch to 0; decomposed organic material." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/P/PIPP.json b/inst/extdata/OSD/P/PIPP.json index 180f71f644..7afde72436 100644 --- a/inst/extdata/OSD/P/PIPP.json +++ b/inst/extdata/OSD/P/PIPP.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PIPPIN.json b/inst/extdata/OSD/P/PIPPIN.json index 9374d05059..21cd25f8f4 100644 --- a/inst/extdata/OSD/P/PIPPIN.json +++ b/inst/extdata/OSD/P/PIPPIN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PIPPOD.json b/inst/extdata/OSD/P/PIPPOD.json index 61c9973ff5..874d131696 100644 --- a/inst/extdata/OSD/P/PIPPOD.json +++ b/inst/extdata/OSD/P/PIPPOD.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PIRODEL.json b/inst/extdata/OSD/P/PIRODEL.json index 25db18e4b2..4931ae0ee7 100644 --- a/inst/extdata/OSD/P/PIRODEL.json +++ b/inst/extdata/OSD/P/PIRODEL.json @@ -120,7 +120,7 @@ { "name": "Bkl", "top": 23, - "bottom": "NA", + "bottom": 46, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Bk2", - "top": "NA", + "top": 46, "bottom": 74, "dry_hue": "7.5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/P/PISHPISHEE.json b/inst/extdata/OSD/P/PISHPISHEE.json index f26e89a50c..ec7d52f504 100644 --- a/inst/extdata/OSD/P/PISHPISHEE.json +++ b/inst/extdata/OSD/P/PISHPISHEE.json @@ -231,6 +231,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "BCt--55 to 64 inches; brown (10YR 5/3) very gravelly loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular pores; common thin clay films on ped faces and common moderately thick clay films lining pores; 45 percent gravel; slightly acid (pH 6.5); clear wavy boundary." + }, + { + "name": "Ct", + "top": 163, + "bottom": 173, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "sand", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "extremely gravelly", + "pH": 6.5, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Ct--64 to 68+ inches; dark yellowish brown (10YR 4/4) extremely gravelly loam, dark brown (10YR 3/3) moist; weak fine subangular blocky structure to single grain; slightly hard, friable, slightly sticky and slightly plastic; common fine and medium tubular pores; common thin clay films on ped faces and coatings on sand and fine gravels; 75 percent gravel; slightly acid (pH 6.5)." } ] ] diff --git a/inst/extdata/OSD/P/PITTMAN.json b/inst/extdata/OSD/P/PITTMAN.json index be80b2a574..84da9435db 100644 --- a/inst/extdata/OSD/P/PITTMAN.json +++ b/inst/extdata/OSD/P/PITTMAN.json @@ -120,7 +120,7 @@ { "name": "C2", "top": 15, - "bottom": "NA", + "bottom": 48, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "Ckl", - "top": "NA", + "top": 48, "bottom": 58, "dry_hue": "7.5YR", "dry_value": 6, @@ -235,7 +235,7 @@ { "name": "Ck3", "top": 127, - "bottom": "NA", + "bottom": 155, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, diff --git a/inst/extdata/OSD/P/PIUMPSHA.json b/inst/extdata/OSD/P/PIUMPSHA.json index 3356bd10a6..b72856abe2 100644 --- a/inst/extdata/OSD/P/PIUMPSHA.json +++ b/inst/extdata/OSD/P/PIUMPSHA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PLASKETT.json b/inst/extdata/OSD/P/PLASKETT.json index c72a0e088e..fd97db6c64 100644 --- a/inst/extdata/OSD/P/PLASKETT.json +++ b/inst/extdata/OSD/P/PLASKETT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PLEGOMIR.json b/inst/extdata/OSD/P/PLEGOMIR.json index ce72ae1d09..43d0fdfb7d 100644 --- a/inst/extdata/OSD/P/PLEGOMIR.json +++ b/inst/extdata/OSD/P/PLEGOMIR.json @@ -120,7 +120,7 @@ { "name": "Bqk", "top": 13, - "bottom": "NA", + "bottom": 33, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 4, diff --git a/inst/extdata/OSD/P/POCATY.json b/inst/extdata/OSD/P/POCATY.json index 5c2612ec03..1cad9f08d3 100644 --- a/inst/extdata/OSD/P/POCATY.json +++ b/inst/extdata/OSD/P/POCATY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 30, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 12 inches; very dark brown (10YR 2/2) peat (fibric material) comprised of partially decomposed leaves, stems, and roots; about 75 percent fiber rubbed; massive; many fine and medium roots; weak sulfide odor; strongly acid; gradual smooth boundary. (0 to 16 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 30, "bottom": 51, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0e--12 to 20 inches; very dark brown (10YR 2/2) mucky peat (hemic material); about 35 percent fiber rubbed; massive; many fine and medium roots; moderate sulfide odor; moderately acid; clear smooth boundary. (6 to 16 inches thick)" }, { - "name": "0a1", + "name": "Oa1", "top": 51, "bottom": 104, "dry_hue": "NA", @@ -141,7 +141,7 @@ "narrative": "0a1--20 to 41 inches; black (10YR 2/1) muck (sapric material); about 15 percent fiber rubbed; massive; common fine and medium roots; flows easily between fingers when squeezed; moderate sulfide odor; slightly acid; clear smooth boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 104, "bottom": 122, "dry_hue": "NA", @@ -164,7 +164,7 @@ "narrative": "0a2--41 to 48 inches; black (10YR 2/1) muck (sapric material); less than 5 percent fiber rubbed; massive; few fine and medium roots; flows easily between fingers when squeezed; moderate sulfide odor; slightly acid; clear smooth boundary." }, { - "name": "0a3", + "name": "Oa3", "top": 122, "bottom": 152, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/POLEPATCH.json b/inst/extdata/OSD/P/POLEPATCH.json index 9984ecd675..7e3244de12 100644 --- a/inst/extdata/OSD/P/POLEPATCH.json +++ b/inst/extdata/OSD/P/POLEPATCH.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/POLLARD.json b/inst/extdata/OSD/P/POLLARD.json index 018ef180c5..ff8c4271b9 100644 --- a/inst/extdata/OSD/P/POLLARD.json +++ b/inst/extdata/OSD/P/POLLARD.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/POLUM.json b/inst/extdata/OSD/P/POLUM.json index 03b6c4a4dc..bd8278dbb8 100644 --- a/inst/extdata/OSD/P/POLUM.json +++ b/inst/extdata/OSD/P/POLUM.json @@ -162,6 +162,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--43 to 61 cm; light brownish gray (10YR 6/2) very gravelly loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, very friable; slightly sticky and slightly plastic; common very fine and few fine and medium roots; common very fine tubular pores; 40 percent gravel; violently effervescent, common fine and medium carbonate filaments; thin carbonate coats on gravel, moderately alkaline (pH 8.4); clear smooth boundary. (18 to 46 thick)" + }, + { + "name": "Bk2", + "top": 61, + "bottom": 152, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bk2--61 to 152; light brownish gray (10YR 6/2) very gravelly loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine and few fine tubular pores; 55 percent gravel; strongly effervescent, common fine carbonate filaments, thin carbonate coats on gravel; moderately alkaline (pH 8.2)." } ] ] diff --git a/inst/extdata/OSD/P/PONTO.json b/inst/extdata/OSD/P/PONTO.json index 5b6c09b3e6..0a319c38a9 100644 --- a/inst/extdata/OSD/P/PONTO.json +++ b/inst/extdata/OSD/P/PONTO.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PORTOLA.json b/inst/extdata/OSD/P/PORTOLA.json index e306ff01f9..ad0e45ca0f 100644 --- a/inst/extdata/OSD/P/PORTOLA.json +++ b/inst/extdata/OSD/P/PORTOLA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/POTCHUB.json b/inst/extdata/OSD/P/POTCHUB.json index d92a70fd47..dc41a8c384 100644 --- a/inst/extdata/OSD/P/POTCHUB.json +++ b/inst/extdata/OSD/P/POTCHUB.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 18, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PRATHER.json b/inst/extdata/OSD/P/PRATHER.json index 09103a6a71..3cf37d7d79 100644 --- a/inst/extdata/OSD/P/PRATHER.json +++ b/inst/extdata/OSD/P/PRATHER.json @@ -119,7 +119,7 @@ }, { "name": "Bt1", - "top": "NA", + "top": 36, "bottom": 66, "dry_hue": "10YR", "dry_value": 5, diff --git a/inst/extdata/OSD/P/PREWITT.json b/inst/extdata/OSD/P/PREWITT.json index 43f7185f15..72167c952a 100644 --- a/inst/extdata/OSD/P/PREWITT.json +++ b/inst/extdata/OSD/P/PREWITT.json @@ -116,6 +116,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "AC--4 to 14 inches; dark reddish gray (5YR 4/2) clay loam, dark reddish gray (5YR 3/2) moist; weak medium subangular blocky structure breaking to medium granular peds under pressure; hard, friable; calcareous; clear smooth boundary." + }, + { + "name": "C", + "top": 36, + "bottom": 127, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--14 to 50 + inches; reddish gray (5YR 5/2) stratified clay loam and silty clay loam, with some very fine sandy loam, dark reddish gray (5YR 4/2) moist; massive; hard, friable; calcareous." } ] ] diff --git a/inst/extdata/OSD/P/PRIETO.json b/inst/extdata/OSD/P/PRIETO.json index bb752cf7c2..e88fb53db5 100644 --- a/inst/extdata/OSD/P/PRIETO.json +++ b/inst/extdata/OSD/P/PRIETO.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "BCg--25 to 35 inches; light gray (2.5Y 7/2) cobbly silty clay; massive; friable; few quartz crystals; about 15 percent, by volume, cobbles; common medium distinct yellowish brown (10YR 5/6) masses of iron accumulation; common medium dark gray (10YR 4/1) areas of iron depletions; moderately acid; abrupt smooth boundary. (Combined thickness of the B horizons is 20 to 35 inches)." + }, + { + "name": "R", + "top": 89, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--35+ inches; metamorphosed volcanic mudstone bedrock." } ] ] diff --git a/inst/extdata/OSD/P/PRONG.json b/inst/extdata/OSD/P/PRONG.json index 4713c81a51..db41c27026 100644 --- a/inst/extdata/OSD/P/PRONG.json +++ b/inst/extdata/OSD/P/PRONG.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PROSPECT.json b/inst/extdata/OSD/P/PROSPECT.json index 014ec05eba..768ab44bff 100644 --- a/inst/extdata/OSD/P/PROSPECT.json +++ b/inst/extdata/OSD/P/PROSPECT.json @@ -185,6 +185,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bk--14 to 24 inches; pale yellow (2.5Y 8/2) stony and gravelly silt loam, light brownish gray (2.5Y 6/2) moist; weak coarse and medium subangular blocky structure; slightly firm in place but loose and very friable when disturbed; strongly calcareous with a large amount of soft floury segregated lime carbonate; clear boundary. (8 to 12 inches thick)" + }, + { + "name": "C", + "top": 61, + "bottom": 76, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "stony", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--24 to 30+ inches; light gray, friable, calcareous, stony gravelly loam till." } ] ] diff --git a/inst/extdata/OSD/P/PSUYAAH.json b/inst/extdata/OSD/P/PSUYAAH.json index 00ad0c870c..415c2e295c 100644 --- a/inst/extdata/OSD/P/PSUYAAH.json +++ b/inst/extdata/OSD/P/PSUYAAH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PTARMIGAN.json b/inst/extdata/OSD/P/PTARMIGAN.json index ee2139fee7..d45047880b 100644 --- a/inst/extdata/OSD/P/PTARMIGAN.json +++ b/inst/extdata/OSD/P/PTARMIGAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 inches to 1 inch; undecomposed organic material mainly roots, leaves, and stems of alpine grasses and sedges." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PUAULU.json b/inst/extdata/OSD/P/PUAULU.json index d340e77de7..85ef33d926 100644 --- a/inst/extdata/OSD/P/PUAULU.json +++ b/inst/extdata/OSD/P/PUAULU.json @@ -509,7 +509,7 @@ "narrative": "9Bw3--110 to 121 centimeters (43.5 to 47.5 inches); dark reddish brown (5YR 2/2) medial silty clay loam; weak fine subangular blocky structure; friable, moderately sticky and slightly plastic, weakly smeary; very few very fine and fine roots; many very fine and fine interstitial pores; strongly acid (pH 5.5); clear wavy boundary. (0 to 13 centimeters (0 to 5 inches) thick)" }, { - "name": "10Bw4", + "name": "1OBw4", "top": 121, "bottom": 130, "dry_hue": "NA", @@ -532,7 +532,7 @@ "narrative": "10Bw4--121 to 130 centimeters (47.5 to 51 inches); dark brown (7.5YR 3/3) medial sandy clay loam; massive; friable, weakly brittle; moderately sticky and slightly plastic, moderately smeary; very few very fine and fine roots; many very fine and fine interstitial pores; 5 percent gravel; moderately acid (pH 5.6); clear smooth boundary. (0 to 13 centimeters (0 to 5 inches) thick)" }, { - "name": "10Bw5", + "name": "1OBw5", "top": 130, "bottom": 135, "dry_hue": "NA", @@ -555,7 +555,7 @@ "narrative": "10Bw5--130 to 135 centimeters (51 to 53 inches); dark brown (7.5YR 3/3) medial sandy clay loam; massive; friable, moderately sticky and slightly plastic, moderately smeary; very few very fine and fine roots; many very fine and fine interstitial pores; moderately acid (pH 5.6); clear wavy boundary. (0 to 8 centimeters (0 to 3 inches) thick)" }, { - "name": "10Bw6", + "name": "1OBw6", "top": 135, "bottom": 152, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PUGET.json b/inst/extdata/OSD/P/PUGET.json index 941902ed59..9f646e07df 100644 --- a/inst/extdata/OSD/P/PUGET.json +++ b/inst/extdata/OSD/P/PUGET.json @@ -74,7 +74,7 @@ { "name": "Al", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,7 +96,7 @@ }, { "name": "A2", - "top": "NA", + "top": 3, "bottom": 18, "dry_hue": "2.5Y", "dry_value": 7, @@ -120,7 +120,7 @@ { "name": "Bg1", "top": 18, - "bottom": "NA", + "bottom": 43, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "Bg2", - "top": "NA", + "top": 43, "bottom": 64, "dry_hue": "5Y", "dry_value": 6, @@ -166,7 +166,7 @@ { "name": "Bg3", "top": 64, - "bottom": "NA", + "bottom": 79, "dry_hue": "5Y", "dry_value": 7, "dry_chroma": 2, @@ -188,7 +188,7 @@ }, { "name": "Bg4", - "top": "NA", + "top": 79, "bottom": 102, "dry_hue": "5Y", "dry_value": 7, diff --git a/inst/extdata/OSD/P/PUICE.json b/inst/extdata/OSD/P/PUICE.json index 12844fe1d5..c35d179f16 100644 --- a/inst/extdata/OSD/P/PUICE.json +++ b/inst/extdata/OSD/P/PUICE.json @@ -120,7 +120,7 @@ { "name": "Bkl", "top": 15, - "bottom": "NA", + "bottom": 33, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "Bk2", - "top": "NA", + "top": 33, "bottom": 58, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/P/PULANTAT.json b/inst/extdata/OSD/P/PULANTAT.json index 19cb1a814e..1598b4ef0c 100644 --- a/inst/extdata/OSD/P/PULANTAT.json +++ b/inst/extdata/OSD/P/PULANTAT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/P/PURCHES.json b/inst/extdata/OSD/P/PURCHES.json index 3517f5c976..10c8a9fd0e 100644 --- a/inst/extdata/OSD/P/PURCHES.json +++ b/inst/extdata/OSD/P/PURCHES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--3 to 2 inches; partially decomposed forest litter." }, { - "name": "02", + "name": "O2", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/P/PUSTOI.json b/inst/extdata/OSD/P/PUSTOI.json index 398e0a3a71..6d0ed222f1 100644 --- a/inst/extdata/OSD/P/PUSTOI.json +++ b/inst/extdata/OSD/P/PUSTOI.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 0, "dry_hue": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "01--3 to 0 inches; dark reddish hrown (5YR 2/2) partially decomposed organic mat of leaves, stems, and roots with a considerable admixture of silt loam, abrupt smooth boundary." }, + { + "name": "A11", + "top": 0, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "coarse sandy loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A11--0 to 2 1/2 inches; dark reddish brown (5YR 2/2) coarse sandy loam; weak fine granular structure; very friable; many roots, abrupt smooth boundary." + }, + { + "name": "A12", + "top": 6, + "bottom": 13, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak very fine subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A12--2 1/2 to 5 inches; very dark brown (10YR 2/2) silt loam with a few, discontinuous diagonal streaks of black (10YR 2/1); very weak very fine subangular blocky structure; very friable, but smeary and releases water when rubbed; roots common; abrupt smooth boundary." + }, { "name": "C3", "top": 13, diff --git a/inst/extdata/OSD/P/PUTT.json b/inst/extdata/OSD/P/PUTT.json index d67cccbbb6..d6a2c0cd8b 100644 --- a/inst/extdata/OSD/P/PUTT.json +++ b/inst/extdata/OSD/P/PUTT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": "NA", "dry_hue": "NA", diff --git a/inst/extdata/OSD/Q/QENI.json b/inst/extdata/OSD/Q/QENI.json index e58a1d4b26..081aa8878e 100644 --- a/inst/extdata/OSD/Q/QENI.json +++ b/inst/extdata/OSD/Q/QENI.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 15, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Q/QUARTZVILLE.json b/inst/extdata/OSD/Q/QUARTZVILLE.json index 2359f57e14..dd67e0253a 100644 --- a/inst/extdata/OSD/Q/QUARTZVILLE.json +++ b/inst/extdata/OSD/Q/QUARTZVILLE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "A1", - "top": 1, - "bottom": 4, + "top": 3, + "bottom": 10, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -119,8 +119,8 @@ }, { "name": "A2", - "top": 4, - "bottom": 10, + "top": 10, + "bottom": 25, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "BA", - "top": 10, - "bottom": 18, + "top": 25, + "bottom": 46, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "Bw1", - "top": 18, - "bottom": 33, + "top": 46, + "bottom": 84, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -188,8 +188,8 @@ }, { "name": "Bw2", - "top": 33, - "bottom": 41, + "top": 84, + "bottom": 104, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, @@ -211,8 +211,8 @@ }, { "name": "BC", - "top": 41, - "bottom": 59, + "top": 104, + "bottom": 150, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, @@ -234,8 +234,8 @@ }, { "name": "C", - "top": 59, - "bottom": 66, + "top": 150, + "bottom": 168, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/Q/QUEMADO.json b/inst/extdata/OSD/Q/QUEMADO.json index 77c5b1626a..f5f0c72b6d 100644 --- a/inst/extdata/OSD/Q/QUEMADO.json +++ b/inst/extdata/OSD/Q/QUEMADO.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "Bt--13 to 31 cm (5 to 12 in); reddish brown (5YR 4/4) very gravelly sandy loam; dark reddish brown (5YR 3/4) moist; weak granular structure; hard, friable, slightly sticky and nonplastic; few faint clay films on surfaces of peds and coarse fragments; about 55 percent rounded gravel; neutral; abrupt wavy boundary. (13 to 31 cm [5 to 12 in] thick)" }, + { + "name": "Bkkm1", + "top": 31, + "bottom": 61, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "strongly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "diffuse", + "topography": "irregular", + "narrative": "Bkkm1--31 to 61 (12 to 24 in); pinkish white (7.5YR 8/2) strongly cemented calcium carbonate, having few fractures; finely laminated and indurated in upper part; about 50 percent embedded rounded siliceous gravel; moderately alkaline; diffuse irregular boundary. (10 to 46 cm [4 to 18 in] thick)" + }, { "name": "Bkkm2", "top": 61, diff --git a/inst/extdata/OSD/Q/QUETICO.json b/inst/extdata/OSD/Q/QUETICO.json index 11e73681ae..bace9f418d 100644 --- a/inst/extdata/OSD/Q/QUETICO.json +++ b/inst/extdata/OSD/Q/QUETICO.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--0 to 1/2 inches; undecomposed plant remains. (1/2 to 1 inch thick)" + }, + { + "name": "Oa", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0a--1/2 to 1 inches; black (5YR 2/1) mostly decomposed plant remains; very strongly acid. (1/4 to 3/4 inch thick)" + }, { "name": "Bs", "top": 3, diff --git a/inst/extdata/OSD/Q/QUIETUS.json b/inst/extdata/OSD/Q/QUIETUS.json index 992078ccca..87ffeeae3d 100644 --- a/inst/extdata/OSD/Q/QUIETUS.json +++ b/inst/extdata/OSD/Q/QUIETUS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/Q/QUILLAYUTE.json b/inst/extdata/OSD/Q/QUILLAYUTE.json index 7d827196b2..c7b8a8a09b 100644 --- a/inst/extdata/OSD/Q/QUILLAYUTE.json +++ b/inst/extdata/OSD/Q/QUILLAYUTE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Q/QUINLIVEN.json b/inst/extdata/OSD/Q/QUINLIVEN.json index e2962d73da..f09fd59589 100644 --- a/inst/extdata/OSD/Q/QUINLIVEN.json +++ b/inst/extdata/OSD/Q/QUINLIVEN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RACKER.json b/inst/extdata/OSD/R/RACKER.json index 91f9494704..8584cc6f24 100644 --- a/inst/extdata/OSD/R/RACKER.json +++ b/inst/extdata/OSD/R/RACKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RADER.json b/inst/extdata/OSD/R/RADER.json index 57978dde9a..1a0321fa2a 100644 --- a/inst/extdata/OSD/R/RADER.json +++ b/inst/extdata/OSD/R/RADER.json @@ -209,6 +209,29 @@ "topography": "smooth", "narrative": "Bt2--99 to 132 cm (39 to 52 in); light gray (2.5Y 7/2) sandy clay, light brownish gray (2.5Y 6/2) moist; moderate coarse prismatic structure parting to moderate coarse angular blocky; extremely hard, very firm, very sticky and very plastic; few roots on prism faces; common clay films; few pressure faces 3 to 8 cm (1 to 3 in) across; few black concretions; common fine and medium distinct of strong brown (7.5YR 5/6) and olive yellow (2.5Y 6/6) masses of iron accumulation; strongly acid; gradual smooth boundary. (30 to 61 cm [12 to 24 in] thick)" }, + { + "name": "Btz", + "top": 132, + "bottom": 179, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 8, + "texture_class": "sandy clay loam", + "structure": "moderate coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Btz--132 to 179 (52 to 67 in); distinctly mottled yellowish brown (10YR 5/8), strong brown (7.5YR 5/6), and light gray (2.5Y 7/2) sandy clay loam; coatings of gray (10YR 6/1) and pale olive (5Y 6/3) on ped faces; moderate coarse prismatic structure parting to weak coarse angular blocky; extremely hard, very firm, sticky and plastic; few roots on prism faces; common clay films; common black stains along root channels; few threads and films of neutral salts; neutral; gradual smooth boundary. (25 to 51 cm [10 to 20 in] thick)" + }, { "name": "BCz", "top": 179, diff --git a/inst/extdata/OSD/R/RADNOR.json b/inst/extdata/OSD/R/RADNOR.json index a3ec91fe40..1db6cae699 100644 --- a/inst/extdata/OSD/R/RADNOR.json +++ b/inst/extdata/OSD/R/RADNOR.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "B2g -- 14 to 30 inches; white (2.5Y 8/1) silty clay loam, gray (2.5Y 5/1) moist; common faint to prominent fine brown and yellow mottles; weak medium blocky structure; hard, firm; noncalcareous; clear lower boundary. (8 to 20 inches thick)" + }, + { + "name": "Cg", + "top": 76, + "bottom": 102, + "dry_hue": "5Y", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "5Y", + "moist_value": 6, + "moist_chroma": 1, + "texture_class": "silty clay loam", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cg -- 30 to 40+ inches; white (5Y 8/1) thinly stratified silt loam and silty clay loam, gray (5Y 6/1) moist with common prominent fine and faint medium brown and yellowish mottles; hard, firm; alkaline to slightly calcareous." } ] ] diff --git a/inst/extdata/OSD/R/RAGGULCH.json b/inst/extdata/OSD/R/RAGGULCH.json index dfd603d038..163237415f 100644 --- a/inst/extdata/OSD/R/RAGGULCH.json +++ b/inst/extdata/OSD/R/RAGGULCH.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--16 to 18 inches; soft, partly weathered sandstone" + }, + { + "name": "R", + "top": 46, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R-- 18; hard sandstone conglomerate" } ] ] diff --git a/inst/extdata/OSD/R/RAINIER.json b/inst/extdata/OSD/R/RAINIER.json index 3e4228512e..3ab30e417e 100644 --- a/inst/extdata/OSD/R/RAINIER.json +++ b/inst/extdata/OSD/R/RAINIER.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RALEIGH.json b/inst/extdata/OSD/R/RALEIGH.json index 69f9b2ccc2..fca0e61ed1 100644 --- a/inst/extdata/OSD/R/RALEIGH.json +++ b/inst/extdata/OSD/R/RALEIGH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RANDMAN.json b/inst/extdata/OSD/R/RANDMAN.json index 9675c5b4c8..9e343b163d 100644 --- a/inst/extdata/OSD/R/RANDMAN.json +++ b/inst/extdata/OSD/R/RANDMAN.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "01", - "top": "NA", + "name": "O1", + "top": 3, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/R/RANSECT.json b/inst/extdata/OSD/R/RANSECT.json index 5db2788d35..b13b450def 100644 --- a/inst/extdata/OSD/R/RANSECT.json +++ b/inst/extdata/OSD/R/RANSECT.json @@ -97,7 +97,7 @@ { "name": "Bkl", "top": 8, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -119,7 +119,7 @@ }, { "name": "Bk2", - "top": "NA", + "top": 41, "bottom": 61, "dry_hue": "l0YR", "dry_value": 5, diff --git a/inst/extdata/OSD/R/RAPPAHANNOCK.json b/inst/extdata/OSD/R/RAPPAHANNOCK.json index 1ebc58cc7b..f8e7bac14f 100644 --- a/inst/extdata/OSD/R/RAPPAHANNOCK.json +++ b/inst/extdata/OSD/R/RAPPAHANNOCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 41, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0a1--0 to 16 inches; very dark grayish brown (10YR 3/2) sapric material; about 14 percent fiber rubbed; massive; nonsticky; many fine and medium roots; flows easily between the fingers when squeezed; weak sulfide odor; mildly alkaline; clear smooth boundary. (8 to 20 inches thick)" }, { - "name": "0a2", + "name": "Oa2", "top": 41, "bottom": 76, "dry_hue": "NA", @@ -118,7 +118,7 @@ "narrative": "0a2--16 to 30 inches; very dark gray (10YR 3/1) sapric material; about 5 percent fiber rubbed; massive; nonsticky; many fine roots; flows easily between the fingers when squeezed; moderate sulfide odor; moderately alkaline; gradual wavy boundary. (8 to 16 inches thick)" }, { - "name": "0a3", + "name": "Oa3", "top": 76, "bottom": 104, "dry_hue": "NA", @@ -164,7 +164,7 @@ "narrative": "Cg--41 to 63 inches; very dark gray (10YR 3/1) mucky silty clay loam; massive; sticky, slightly plastic; common fibers and few fine roots; flows easily between the fingers when squeezed; moderate sulfide odor; moderately alkaline; gradual wavy boundary. (12 to 24 inches thick)" }, { - "name": "0'a", + "name": "O'a", "top": 160, "bottom": 190, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RARICK.json b/inst/extdata/OSD/R/RARICK.json index 7724befd3f..c2ca7103f8 100644 --- a/inst/extdata/OSD/R/RARICK.json +++ b/inst/extdata/OSD/R/RARICK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 5, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--3 to 2 inches; undecomposed organic material consisting mainly of needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RASBAND.json b/inst/extdata/OSD/R/RASBAND.json index 1a6e042c8f..1a04b73981 100644 --- a/inst/extdata/OSD/R/RASBAND.json +++ b/inst/extdata/OSD/R/RASBAND.json @@ -185,6 +185,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "B3--30 to 36 inches; brown (10YR 4/3) gravelly sandy loam, dark brown (10YR 3/3) moist; moderate fine and medium subangular blocky structure; hard, friable slightly sticky and slightly plastic; few fine roots; very thin patchy clay films; noncalcareous; neutral (pH 7.2 paste); clear smooth boundary. (4 to 30 inches thick)" + }, + { + "name": "C1", + "top": 91, + "bottom": 102, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "loamy coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C1--36 to 40 + inches; brown (10YR 5/3) very gravelly loamy coarse sand, dark brown (10YR 3/3) moist; single grain; loose, nonsticky and nonplastic; few fine roots; noncalcareous; neutral (pH 7.0 paste)." } ] ] diff --git a/inst/extdata/OSD/R/RAUGHT.json b/inst/extdata/OSD/R/RAUGHT.json index 5f9c2cdda9..e2dfa7ce61 100644 --- a/inst/extdata/OSD/R/RAUGHT.json +++ b/inst/extdata/OSD/R/RAUGHT.json @@ -73,8 +73,8 @@ [ { "name": "Oe", - "top": "NA", - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Al", "top": 0, - "bottom": 2, + "bottom": 5, "dry_hue": "5YR", "dry_value": 4, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "A2", - "top": 2, - "bottom": 7, + "top": 5, + "bottom": 18, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "AB", - "top": 7, - "bottom": "NA", + "top": 18, + "bottom": 43, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "BA", - "top": "NA", - "bottom": "NA", + "top": 43, + "bottom": 79, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 4, @@ -188,8 +188,8 @@ }, { "name": "Bt", - "top": "NA", - "bottom": 65, + "top": 79, + "bottom": 165, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/R/RAYNE.json b/inst/extdata/OSD/R/RAYNE.json index 677da3cbcf..41110e39d1 100644 --- a/inst/extdata/OSD/R/RAYNE.json +++ b/inst/extdata/OSD/R/RAYNE.json @@ -189,7 +189,7 @@ { "name": "Bt3", "top": 64, - "bottom": "NA", + "bottom": 91, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RAYOHILL.json b/inst/extdata/OSD/R/RAYOHILL.json index 2b9cdde8fb..9281d803c6 100644 --- a/inst/extdata/OSD/R/RAYOHILL.json +++ b/inst/extdata/OSD/R/RAYOHILL.json @@ -97,7 +97,7 @@ { "name": "Byl", "top": 3, - "bottom": "NA", + "bottom": 33, "dry_hue": "N", "dry_value": 8, "dry_chroma": 0, @@ -119,7 +119,7 @@ }, { "name": "By2", - "top": "NA", + "top": 33, "bottom": 64, "dry_hue": "7.5YR", "dry_value": 8, diff --git a/inst/extdata/OSD/R/REAGAN.json b/inst/extdata/OSD/R/REAGAN.json index 0e6d06e632..ae62c15991 100644 --- a/inst/extdata/OSD/R/REAGAN.json +++ b/inst/extdata/OSD/R/REAGAN.json @@ -208,6 +208,29 @@ "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--94 to 127 cm (37 to 50 in); light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4), moist; weak coarse prismatic structure parts to weak medium subangular blocky; hard, friable, moderately sticky, moderately plastic; 30 percent fine and medium masses and 5 percent fine very weakly cemented concretions of calcium carbonate; violently effervescent; moderately alkaline; diffuse wavy boundary. Combined Thickness of Bk horizons is 51 to more than 152 cm (20 to 60 in)" + }, + { + "name": "Bk3", + "top": 127, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "weak coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "weakly cemented", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bk3--127 to 203 (50 to 80 in); light yellowish brown (10YR 6/4) clay loam; yellowish brown (10YR 5/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable; moderately sticky; moderately plastic; 3 percent fine masses and 2 percent fine very weakly cemented concretions of calcium carbonate; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/R/REALLIS.json b/inst/extdata/OSD/R/REALLIS.json index 993ad24eb1..611d1fded8 100644 --- a/inst/extdata/OSD/R/REALLIS.json +++ b/inst/extdata/OSD/R/REALLIS.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A--0 to 3 cm; light brownish gray (10YR 6/2) sandy loam, dark brown (10YR 3/3) moist; weak medium platy structure; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; many very fine interstitial pores; slightly alkaline (pH 7.6); clear smooth boundary. (3 to 30 cm thick)" }, + { + "name": "Bw", + "top": 3, + "bottom": 23, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "weak medium and coarse subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Bw--3 to 23; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; weak medium and coarse subangular blocky structure; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; common very fine tubular pores; slightly alkaline (pH 7.6); gradual smooth boundary. (15 to 36 cm thick)" + }, { "name": "Bq", "top": 23, diff --git a/inst/extdata/OSD/R/REDFERN.json b/inst/extdata/OSD/R/REDFERN.json index 071a1d9aa7..7100345d46 100644 --- a/inst/extdata/OSD/R/REDFERN.json +++ b/inst/extdata/OSD/R/REDFERN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inches; partially decomposed needles, twigs, and leaves. (0 to 3 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/R/REDFLAT.json b/inst/extdata/OSD/R/REDFLAT.json index c1ba1a9498..20c5c04650 100644 --- a/inst/extdata/OSD/R/REDFLAT.json +++ b/inst/extdata/OSD/R/REDFLAT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/REDHOUSE.json b/inst/extdata/OSD/R/REDHOUSE.json index 1e7eeee93a..84cda2c220 100644 --- a/inst/extdata/OSD/R/REDHOUSE.json +++ b/inst/extdata/OSD/R/REDHOUSE.json @@ -97,7 +97,7 @@ { "name": "Bw1", "top": 13, - "bottom": "NA", + "bottom": 33, "dry_hue": "2.5YR", "dry_value": 5, "dry_chroma": 6, @@ -119,7 +119,7 @@ }, { "name": "Bw2", - "top": "NA", + "top": 33, "bottom": 61, "dry_hue": "2.5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/R/REDRIVER.json b/inst/extdata/OSD/R/REDRIVER.json index a092f0e692..ee4aa28615 100644 --- a/inst/extdata/OSD/R/REDRIVER.json +++ b/inst/extdata/OSD/R/REDRIVER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/REINECKE.json b/inst/extdata/OSD/R/REINECKE.json index 354bb05830..e829e18791 100644 --- a/inst/extdata/OSD/R/REINECKE.json +++ b/inst/extdata/OSD/R/REINECKE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RELEEP.json b/inst/extdata/OSD/R/RELEEP.json index 72287e726b..49f28b0a25 100644 --- a/inst/extdata/OSD/R/RELEEP.json +++ b/inst/extdata/OSD/R/RELEEP.json @@ -231,6 +231,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--102 to 122 cm; grayish brown (2.5Y 5/2) decomposed granite bedrock (grus) that crushes to very gravelly loamy coarse sand; neutral (pH 6.8). (13 to 76 cm thick)" + }, + { + "name": "R", + "top": 122, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--122+ cm; hard granite bedrock." } ] ] diff --git a/inst/extdata/OSD/R/REMEDIOS.json b/inst/extdata/OSD/R/REMEDIOS.json index 3bf75a897e..540a2ffeb6 100644 --- a/inst/extdata/OSD/R/REMEDIOS.json +++ b/inst/extdata/OSD/R/REMEDIOS.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -235,7 +235,7 @@ { "name": "R", "top": 66, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/REMLIK.json b/inst/extdata/OSD/R/REMLIK.json index 2976ca8192..2dd6bbd53e 100644 --- a/inst/extdata/OSD/R/REMLIK.json +++ b/inst/extdata/OSD/R/REMLIK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RENNER.json b/inst/extdata/OSD/R/RENNER.json index 6443e00222..571eb0e9c9 100644 --- a/inst/extdata/OSD/R/RENNER.json +++ b/inst/extdata/OSD/R/RENNER.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "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", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inch; very dark grayish brown (10YR 3/2) and dark grayish brown (10YR 4/2) unaltered and slightly decomposed forest litter. (0 to 1 inch thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/R/RENTSAC.json b/inst/extdata/OSD/R/RENTSAC.json index efdce5fa87..be8e8b7b88 100644 --- a/inst/extdata/OSD/R/RENTSAC.json +++ b/inst/extdata/OSD/R/RENTSAC.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--7 to 18 inches; light brownish gray (2.5Y 6/2) extremely channery loam, dark grayish brown (2.5Y 4/2) moist; weak fine and medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; common medium and fine roots; many fine and very fine pores and few medium pores; 10 percent cobbles, 40 percent channers, 20 percent flagstones; disseminated lime; continuous distinct lime casts coating channers; strongly effervescent; slightly alkaline (pH 7.8); abrupt wavy boundary. (0 to 12 inches thick)" + }, + { + "name": "R", + "top": 46, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--18+ inches; calcareous sandstone." } ] ] diff --git a/inst/extdata/OSD/R/REPARADA.json b/inst/extdata/OSD/R/REPARADA.json index a878f407a9..dfbe1fd00f 100644 --- a/inst/extdata/OSD/R/REPARADA.json +++ b/inst/extdata/OSD/R/REPARADA.json @@ -118,7 +118,7 @@ "narrative": "B2g--8-18 inches; Very dark gray (N 3/) clay; many coarse prominent dark greenish gray (5G 4/1) mottles; massive; firm, slightly sticky, slightly plastic; few fine roots; few partially decomposed plant residues; mildly alkaline; gradual smooth boundary. (6 to 12 inches thick)" }, { - "name": "110C", + "name": "11OC", "top": 46, "bottom": 15, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/REPPART.json b/inst/extdata/OSD/R/REPPART.json index bc155acc58..f8f4835e17 100644 --- a/inst/extdata/OSD/R/REPPART.json +++ b/inst/extdata/OSD/R/REPPART.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/REVEL.json b/inst/extdata/OSD/R/REVEL.json index 8cc5365b25..e4a7d13b07 100644 --- a/inst/extdata/OSD/R/REVEL.json +++ b/inst/extdata/OSD/R/REVEL.json @@ -73,7 +73,7 @@ [ { "name": "Oi", - "top": "NA", + "top": 4, "bottom": 1, "dry_hue": "NA", "dry_value": "NA", @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -143,7 +143,7 @@ { "name": "Bs", "top": 10, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "C", - "top": "NA", + "top": 41, "bottom": 89, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/R/REVIT.json b/inst/extdata/OSD/R/REVIT.json index b55e4962d5..c5cdfbcadf 100644 --- a/inst/extdata/OSD/R/REVIT.json +++ b/inst/extdata/OSD/R/REVIT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/REWARD.json b/inst/extdata/OSD/R/REWARD.json index 573f5be1a3..d7854ce253 100644 --- a/inst/extdata/OSD/R/REWARD.json +++ b/inst/extdata/OSD/R/REWARD.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "C1--24 to 39 inches; grayish brown (10YR 5/2) shaly heavy loam, very dark grayish brown (10YR 3/2) moist; few prominent pockets of light brownish gray (10YR 6/2) heavy loam, very dark grayish brown (10YR 3/2) moist; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine and fine tubular and many very fine interstitial pores; 15 percent shale; strongly effervescent with disseminated lime; segregated lime occurring as filaments or threads; moderately alkaline (pH 8.0); clear smooth boundary. (10 to 20 inches thick)" }, + { + "name": "C2", + "top": 99, + "bottom": 152, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "clay loam", + "structure": "weak coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "C2--39 t 60 inches; pale brown (10YR 6/3) shaly clay loam, dark brown (10YR 3/3) moist; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; many very fine and fine tubular and many very fine interstitial pores; 20 percent shale; strongly effervescent with disseminated lime; segregated lime occurs as filaments or threads; moderately alkaline (pH 8.0); abrupt wavy boundary. (12 to 25 inches thick)" + }, { "name": "R", "top": 152, diff --git a/inst/extdata/OSD/R/RICHARDSON.json b/inst/extdata/OSD/R/RICHARDSON.json index 3d05dfe204..d0762899d5 100644 --- a/inst/extdata/OSD/R/RICHARDSON.json +++ b/inst/extdata/OSD/R/RICHARDSON.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RICHARDVILLE.json b/inst/extdata/OSD/R/RICHARDVILLE.json index 43287251bc..f13bc62db3 100644 --- a/inst/extdata/OSD/R/RICHARDVILLE.json +++ b/inst/extdata/OSD/R/RICHARDVILLE.json @@ -208,6 +208,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "2Bt5--104 to 130 cm (41 to 51 inches); dark yellowish brown (10YR 4/4) sandy clay loam; weak coarse subangular blocky structure; firm; common fine tubular pores; thin discontinuous brown (7.5 4/4) clay films on faces of peds; 5 percent rock fragments; neutral; clear smooth boundary. [8 to 13 cm (3 to 5 inches) thick]" + }, + { + "name": "2C", + "top": 130, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C--130 to 152 (51 to 60 inches); yellowish brown (10YR 5/4) fine sandy loam; fairly well defined vertical and well defined horizontal fracture planes that define plates 2 to 5 inches horizontally and .5 to 1.5 inches vertically; friable; 10 percent rock fragments; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/R/RICHENS.json b/inst/extdata/OSD/R/RICHENS.json index 43888c00f1..88f9d217f0 100644 --- a/inst/extdata/OSD/R/RICHENS.json +++ b/inst/extdata/OSD/R/RICHENS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--1/2 inch to 0; leaves and old grass. (0 to 1 inch thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/R/RICHVILLE.json b/inst/extdata/OSD/R/RICHVILLE.json index cdc7e70120..ecb38a7fcf 100644 --- a/inst/extdata/OSD/R/RICHVILLE.json +++ b/inst/extdata/OSD/R/RICHVILLE.json @@ -185,29 +185,6 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C3r--28 to 39 inches; weathered tuffaceous sandstone that readily breaks down to brown (7.5YR 4/4) loam, light brown (7.5YR 6/4) dry; very hard, extremely firm, slightly sticky and slightly plastic; few very fine and fine roots concentrated in cracks of the weathered bedrock; the weathered rock fragment interiors are noncalcareous and the exteriors are coated with secondary lime as flaked, veining and are strongly calcareous; moderately alkaline (pH 8.4); clear wavy boundary. (11 to 30 inches thick)" - }, - { - "name": "lI4r", - "top": 99, - "bottom": 152, - "dry_hue": "7.5YR", - "dry_value": 6, - "dry_chroma": 4, - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, - "texture_class": "fine sandy loam", - "structure": "massive", - "dry_rupture": "hard", - "moist_rupture": "friable", - "coherence": "NA", - "cf_class": "very gravelly", - "pH": 8.2, - "pH_class": "moderately alkaline", - "eff_class": "NA", - "distinctness": "NA", - "topography": "NA", - "narrative": "lI4r--39 to 60 inches; weathered conglomerate of quartzite and sandstone that breaks down to brown (7.5YR 4/4) very gravelly fine sandy loam, light brown (7.5YR 6/4) dry; massive; very hard, friable, slightly sticky and slightly plastic; few very fine roots; 65 percent gravel; strongly calcareous, lime is disseminated throughout; moderately alkaline (pH 8.2) ." } ] ] diff --git a/inst/extdata/OSD/R/RIDGE.json b/inst/extdata/OSD/R/RIDGE.json index 3b7fd5b5d3..587976791b 100644 --- a/inst/extdata/OSD/R/RIDGE.json +++ b/inst/extdata/OSD/R/RIDGE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; slightly decomposed forest litter. (1/2 to 2 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/R/RIGA.json b/inst/extdata/OSD/R/RIGA.json index a7ff9295da..e9f30a7e3c 100644 --- a/inst/extdata/OSD/R/RIGA.json +++ b/inst/extdata/OSD/R/RIGA.json @@ -117,52 +117,6 @@ "topography": "wavy", "narrative": "E--7 to 14 inches; yellowish brown (10YR 5/4) gravelly silt loam; moderate medium subangular blocky; friable; abundant fine roots; common worm channels; 15 percent gravel; slightly acid, clear wavy boundary. (3 to 8 inches thick)" }, - { - "name": "2t1", - "top": 36, - "bottom": 43, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "7.5YR", - "moist_value": 4, - "moist_chroma": 4, - "texture_class": "silty clay loam", - "structure": "NA", - "dry_rupture": "hard", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "neutral", - "eff_class": "NA", - "distinctness": "clear", - "topography": "wavy", - "narrative": "2t1--14 to 17 inches; brown to dark brown (7.5YR 4/4) clay loam to silty clay loam; moderate medium and coarse blocky; firm, sticky; plentiful roots between peds; yellowish brown (10YR 5/4) silt loam like A2 coats vertical ped faces and surrounds some peds; common pores have clay linings; many light gray to pale olive (5Y 7/2-6/4) weathered shale fragments; 2 percent hard gravel; neutral; clear wavy boundary. (2 to 4 inches thick)" - }, - { - "name": "2t2", - "top": 43, - "bottom": 74, - "dry_hue": "NA", - "dry_value": "NA", - "dry_chroma": "NA", - "moist_hue": "10YR", - "moist_value": 5, - "moist_chroma": 4, - "texture_class": "clay loam", - "structure": "NA", - "dry_rupture": "hard", - "moist_rupture": "firm", - "coherence": "NA", - "cf_class": "NA", - "pH": "NA", - "pH_class": "neutral", - "eff_class": "NA", - "distinctness": "gradual", - "topography": "wavy", - "narrative": "2t2--17 to 29 inches; light olive gray to light gray (5Y 6/2-7/2) clay loam to clay; few medium distinct yellowish brown (10YR 5/4) mottles; moderate to strong coarse blocky; firm; sticky; few roots between peds; prominant brown to dark brown (7.5YR 4/3-10YR 4/3) clay coats on both horizontal and vertical ped faces; few pores with clay linings; many light gray to pale olive (5Y 7/2-6/3) and few reddish brown (5YR 5/3) weathered shale fragments; 2 percent hard gravel; neutral; gradual wavy boundary. (10 to 15 inches thick)" - }, { "name": "R", "top": 74, diff --git a/inst/extdata/OSD/R/RINEARSON.json b/inst/extdata/OSD/R/RINEARSON.json index 8aff761058..8635abb846 100644 --- a/inst/extdata/OSD/R/RINEARSON.json +++ b/inst/extdata/OSD/R/RINEARSON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RINKER.json b/inst/extdata/OSD/R/RINKER.json index 894e479184..3959335f9f 100644 --- a/inst/extdata/OSD/R/RINKER.json +++ b/inst/extdata/OSD/R/RINKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 13, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--5 to 1 inch; accumulation of needles, twigs, and roots." }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RISWOLD.json b/inst/extdata/OSD/R/RISWOLD.json index 036e6cb5c2..d6a847db3d 100644 --- a/inst/extdata/OSD/R/RISWOLD.json +++ b/inst/extdata/OSD/R/RISWOLD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/ROARING.json b/inst/extdata/OSD/R/ROARING.json index 6fc11323b9..51b4ab7e3f 100644 --- a/inst/extdata/OSD/R/ROARING.json +++ b/inst/extdata/OSD/R/ROARING.json @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "Oi--0 to 2 inches; very dark grayish brown (10YR 3/2) moist, loose, slightly decomposed organic litter composed of needles, leaves, twigs, bark, and cones; abrupt smooth boundary." }, + { + "name": "E", + "top": 5, + "bottom": 6, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 1, + "texture_class": "very fine sandy loam", + "structure": "weak fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.2, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "E--2 to 2 1/2 inches; light gray (10YR 7/1) very fine sandy loam, dark gray (10YR 5/1) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine roots; slightly acid (pH 6.2) abrupt wavy boundary. (0 to 1 inch thick)" + }, + { + "name": "Bw1", + "top": 6, + "bottom": 15, + "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 fine and medium granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.2, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw1--2 1/2 to 6 inches; brown (10YR 5/3) silt loam, dark brown (7.5YR 3/4) moist; weak fine and medium granular structure; soft, very friable, slightly sticky and nonplastic; weakly smeary; many very fine, fine, few medium and coarse roots; many very fine and fine pores; slightly acid (pH 6.2); clear wavy boundary. (3 to 5 inches thick)" + }, { "name": "Bw2", "top": 15, diff --git a/inst/extdata/OSD/R/ROBER.json b/inst/extdata/OSD/R/ROBER.json index f267400d4b..027cea0b3d 100644 --- a/inst/extdata/OSD/R/ROBER.json +++ b/inst/extdata/OSD/R/ROBER.json @@ -72,9 +72,32 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oi", + "top": 6, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--2 1/2 inches to 1 inch; leaves, needles and mosses." + }, + { + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/ROBOZO.json b/inst/extdata/OSD/R/ROBOZO.json index 863583c69f..018dd24dd6 100644 --- a/inst/extdata/OSD/R/ROBOZO.json +++ b/inst/extdata/OSD/R/ROBOZO.json @@ -120,7 +120,7 @@ { "name": "Bk1", "top": 13, - "bottom": "NA", + "bottom": 36, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, @@ -142,7 +142,7 @@ }, { "name": "Bk2", - "top": "NA", + "top": 36, "bottom": 71, "dry_hue": "10YR", "dry_value": 8, diff --git a/inst/extdata/OSD/R/ROCCONDA.json b/inst/extdata/OSD/R/ROCCONDA.json index 3cd2dae8c4..5d6c89656d 100644 --- a/inst/extdata/OSD/R/ROCCONDA.json +++ b/inst/extdata/OSD/R/ROCCONDA.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt--3 to 13 cm; light gray (2.5Y 7/2) very channery clay, light olive brown (2.5Y 5/4) moist; moderate fine subangular blocky structure parting to strong fine granular; slightly hard, friable, sticky and plastic; common very fine and fine roots; many very fine through medium tubular and interstitial pores; common faint clay films lining pores; slightly effervescent; 50 percent channers; moderately alkaline (pH 8.2); abrupt wavy boundary. (8 to 30 cm thick)" + }, + { + "name": "R", + "top": 13, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--13 up to 38 cm; flagstone size fractured siltstone; roots extended into vertical fractures; common thin carbonate coats and few thin silica coats on vertical and tilted fracture planes." } ] ] diff --git a/inst/extdata/OSD/R/ROCKCASTLE.json b/inst/extdata/OSD/R/ROCKCASTLE.json index 01cbd6b8af..2a8195cde3 100644 --- a/inst/extdata/OSD/R/ROCKCASTLE.json +++ b/inst/extdata/OSD/R/ROCKCASTLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--3 to 1 inches; loose leaf and twig litter of mixed hardwoods and pines." }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/ROCKMILL.json b/inst/extdata/OSD/R/ROCKMILL.json index 3b8b4bd4eb..a570915a22 100644 --- a/inst/extdata/OSD/R/ROCKMILL.json +++ b/inst/extdata/OSD/R/ROCKMILL.json @@ -118,7 +118,7 @@ "narrative": "Bg--33 to 46 cm (13 to 18 inches); grayish brown (10YR 5/2) silty clay loam; moderate fine subangular blocky structure; friable; common fine roots; black (10YR 2/1) and very dark grayish brown (10YR 3/2) organic coatings on faces of peds; moderately acid; abrupt wavy boundary. [10 to 63 cm (4 to 25 inches) thick]" }, { - "name": "0a1", + "name": "Oa1", "top": 46, "bottom": 58, "dry_hue": "NA", @@ -141,7 +141,7 @@ "narrative": "0a1--46 to 58 cm (18 to 23 inches); black (10YR 2/1) broken face and rubbed muck (sapric material); 5 percent fiber when broken, 0 percent rubbed; moderate coarse prismatic structure parting to weak medium platy; friable; few fine roots; gray (10YR 5/1) coatings and fillings of mineral soil on vertical surfaces; moderately acid; clear smooth boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 58, "bottom": 102, "dry_hue": "NA", @@ -164,7 +164,7 @@ "narrative": "0a2--58 to 102 cm (23 to 40 inches); black (10YR 2/1) broken face and rubbed muck (sapric material); 10 percent fiber when broken, 5 percent rubbed; moderate coarse prismatic structure parting to moderate medium platy; friable; few fine roots; strongly acid; clear smooth boundary." }, { - "name": "0a3", + "name": "Oa3", "top": 102, "bottom": 203, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RODGERPEAK.json b/inst/extdata/OSD/R/RODGERPEAK.json index dcaff553a8..5795a840c8 100644 --- a/inst/extdata/OSD/R/RODGERPEAK.json +++ b/inst/extdata/OSD/R/RODGERPEAK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi-- 0 to 1 centimeter (0 to 0.5 inch); fresh and slightly decomposed redwood needles, salal leaves twigs, humus and angular pebbles (50 percent gravel pavement); very strongly acid (pH 4.5). (0 to 3 centimeters thick)" + }, { "name": "A", "top": 1, diff --git a/inst/extdata/OSD/R/ROGGER.json b/inst/extdata/OSD/R/ROGGER.json index 7ddbb92c46..fc28348f55 100644 --- a/inst/extdata/OSD/R/ROGGER.json +++ b/inst/extdata/OSD/R/ROGGER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/ROLETTE.json b/inst/extdata/OSD/R/ROLETTE.json index bd176b71fd..081d294564 100644 --- a/inst/extdata/OSD/R/ROLETTE.json +++ b/inst/extdata/OSD/R/ROLETTE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/ROLLA.json b/inst/extdata/OSD/R/ROLLA.json index cc6506110e..1b694b010a 100644 --- a/inst/extdata/OSD/R/ROLLA.json +++ b/inst/extdata/OSD/R/ROLLA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/ROLO.json b/inst/extdata/OSD/R/ROLO.json index b43a180a58..f939c01505 100644 --- a/inst/extdata/OSD/R/ROLO.json +++ b/inst/extdata/OSD/R/ROLO.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/ROMANOSE.json b/inst/extdata/OSD/R/ROMANOSE.json index 6e880299be..1cda4520c6 100644 --- a/inst/extdata/OSD/R/ROMANOSE.json +++ b/inst/extdata/OSD/R/ROMANOSE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RONSEL.json b/inst/extdata/OSD/R/RONSEL.json index 2b6ecc80f7..eeba9309cc 100644 --- a/inst/extdata/OSD/R/RONSEL.json +++ b/inst/extdata/OSD/R/RONSEL.json @@ -72,8 +72,8 @@ "HORIZONS": [ [ { - "name": "0e", - "top": "NA", + "name": "Oe", + "top": 3, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", @@ -143,7 +143,7 @@ { "name": "2BC", "top": 20, - "bottom": "NA", + "bottom": 43, "dry_hue": "2.5YR", "dry_value": 5, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "2C", - "top": "NA", + "top": 43, "bottom": 152, "dry_hue": "2.5Y", "dry_value": 6, diff --git a/inst/extdata/OSD/R/ROOP.json b/inst/extdata/OSD/R/ROOP.json index 1f52845647..d828dcd26d 100644 --- a/inst/extdata/OSD/R/ROOP.json +++ b/inst/extdata/OSD/R/ROOP.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/ROXER.json b/inst/extdata/OSD/R/ROXER.json index 3082e4826b..0ca562f180 100644 --- a/inst/extdata/OSD/R/ROXER.json +++ b/inst/extdata/OSD/R/ROXER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RUCH.json b/inst/extdata/OSD/R/RUCH.json index 3e33928492..c64628034d 100644 --- a/inst/extdata/OSD/R/RUCH.json +++ b/inst/extdata/OSD/R/RUCH.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 2, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--3/4 inch to 0; partially decomposed litter of leaves, needles and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/R/RUGLES.json b/inst/extdata/OSD/R/RUGLES.json index a124f5df9b..99f4c18e29 100644 --- a/inst/extdata/OSD/R/RUGLES.json +++ b/inst/extdata/OSD/R/RUGLES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/R/RULE.json b/inst/extdata/OSD/R/RULE.json index a7efe366d6..64ab77a20f 100644 --- a/inst/extdata/OSD/R/RULE.json +++ b/inst/extdata/OSD/R/RULE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--3 to 1 inch; undecomposed organic material principally needles, bark, and twigs." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RUMSEY.json b/inst/extdata/OSD/R/RUMSEY.json index b70e6217d8..dca2bd7203 100644 --- a/inst/extdata/OSD/R/RUMSEY.json +++ b/inst/extdata/OSD/R/RUMSEY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RUSSIAN.json b/inst/extdata/OSD/R/RUSSIAN.json index 2cc1981920..ccbdd0f20c 100644 --- a/inst/extdata/OSD/R/RUSSIAN.json +++ b/inst/extdata/OSD/R/RUSSIAN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", - "top": 20, - "bottom": "NA", + "name": "Ap", + "top": 0, + "bottom": 20, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, diff --git a/inst/extdata/OSD/R/RUSTLERPEAK.json b/inst/extdata/OSD/R/RUSTLERPEAK.json index c1bb662eee..80d0d55d99 100644 --- a/inst/extdata/OSD/R/RUSTLERPEAK.json +++ b/inst/extdata/OSD/R/RUSTLERPEAK.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RUSTYBUTTE.json b/inst/extdata/OSD/R/RUSTYBUTTE.json index 45bb27645d..55bb06b914 100644 --- a/inst/extdata/OSD/R/RUSTYBUTTE.json +++ b/inst/extdata/OSD/R/RUSTYBUTTE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/R/RYORP.json b/inst/extdata/OSD/R/RYORP.json index 543822fe89..de9e507370 100644 --- a/inst/extdata/OSD/R/RYORP.json +++ b/inst/extdata/OSD/R/RYORP.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SAAR.json b/inst/extdata/OSD/S/SAAR.json index 21b90e1bf6..9cf7ec3d55 100644 --- a/inst/extdata/OSD/S/SAAR.json +++ b/inst/extdata/OSD/S/SAAR.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--4 to 1 inches; partially decomposed branches and needles. (2 to 6 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SACH.json b/inst/extdata/OSD/S/SACH.json index a9090f19ab..c41e5d1024 100644 --- a/inst/extdata/OSD/S/SACH.json +++ b/inst/extdata/OSD/S/SACH.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SADDLEPEAK.json b/inst/extdata/OSD/S/SADDLEPEAK.json index a3f5dddae4..d4af34970e 100644 --- a/inst/extdata/OSD/S/SADDLEPEAK.json +++ b/inst/extdata/OSD/S/SADDLEPEAK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SAG.json b/inst/extdata/OSD/S/SAG.json index 5847c92c8d..042fd31f56 100644 --- a/inst/extdata/OSD/S/SAG.json +++ b/inst/extdata/OSD/S/SAG.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SALLISAW.json b/inst/extdata/OSD/S/SALLISAW.json index 146c928150..0f5623e7df 100644 --- a/inst/extdata/OSD/S/SALLISAW.json +++ b/inst/extdata/OSD/S/SALLISAW.json @@ -74,7 +74,7 @@ { "name": "A", "top": 0, - "bottom": "NA", + "bottom": 25, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "BA", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 41, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,7 +119,7 @@ }, { "name": "Bt", - "top": "NA", + "top": 41, "bottom": 91, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/S/SALT_LAKE.json b/inst/extdata/OSD/S/SALT_LAKE.json index 3ef3be5779..c69d0d7632 100644 --- a/inst/extdata/OSD/S/SALT_LAKE.json +++ b/inst/extdata/OSD/S/SALT_LAKE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SANCHEZ.json b/inst/extdata/OSD/S/SANCHEZ.json index 90c7109813..e7cd2af0fb 100644 --- a/inst/extdata/OSD/S/SANCHEZ.json +++ b/inst/extdata/OSD/S/SANCHEZ.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SANDUN.json b/inst/extdata/OSD/S/SANDUN.json index ece2509275..abc485da77 100644 --- a/inst/extdata/OSD/S/SANDUN.json +++ b/inst/extdata/OSD/S/SANDUN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SANPITCH.json b/inst/extdata/OSD/S/SANPITCH.json index 98f61c6164..05ce6e7e14 100644 --- a/inst/extdata/OSD/S/SANPITCH.json +++ b/inst/extdata/OSD/S/SANPITCH.json @@ -209,6 +209,29 @@ "topography": "smooth", "narrative": "C4--24 to 37 inches; pinkish gray (7.5YR 6/2) gravelly loam, brown (7.5YR 5/3) moist; massive; hard, friable, sticky, plastic; common fine, few medium roots; few fine pores; 35 percent gravel; strongly calcareous, lime is disseminated; strongly alkaline (pH 8.6); abrupt smooth boundary. (13 to 25 inches thick)" }, + { + "name": "C5", + "top": 94, + "bottom": 107, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 6, + "moist_chroma": 3, + "texture_class": "loam", + "structure": "moderate medium platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 8.6, + "pH_class": "strongly alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "C5--37 to 42 degrees; pinkish white (7.5YR 8/2) gravelly loam, light brown (7.5YR 6/3) moist; moderate medium platy structure; very hard, friable, slightly sticky, plastic; few fine and medium roots; few fine pores; 35 percent gravel; very strongly calcareous, lime is disseminated and accumulated in soft rounded accretions; strongly alkaline (pH 8.6); clear smooth boundary. (O to 6 inches thick)" + }, { "name": "C6", "top": 107, diff --git a/inst/extdata/OSD/S/SANTA_CLARA.json b/inst/extdata/OSD/S/SANTA_CLARA.json index a369e4877b..eae4612877 100644 --- a/inst/extdata/OSD/S/SANTA_CLARA.json +++ b/inst/extdata/OSD/S/SANTA_CLARA.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "C--23 to 30 inches; yellow (10YR 7/6) with few faint very pale brown (10YR 8/3) mottles; massive; friable, slightly sticky, slightly plastic; very few fine roots; violent effervescence with dilute HCL; clear smooth boundary. This horizon is mainly soft limestone. (6 to 10 inches thick)" + }, + { + "name": "R", + "top": 76, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--30 plus inches; hard fragmental limestone." } ] ] diff --git a/inst/extdata/OSD/S/SANTA_MARTA.json b/inst/extdata/OSD/S/SANTA_MARTA.json index 5add0df616..18eaf55df7 100644 --- a/inst/extdata/OSD/S/SANTA_MARTA.json +++ b/inst/extdata/OSD/S/SANTA_MARTA.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--37 to 57 inches; highly fractured serpentinite bedrock that can be excavated by hand tools." + }, + { + "name": "R", + "top": 145, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--57+ inches; hard consolidated serpentinite bedrock." } ] ] diff --git a/inst/extdata/OSD/S/SAN_ISABEL.json b/inst/extdata/OSD/S/SAN_ISABEL.json index a3b7a837dd..3c6a74730c 100644 --- a/inst/extdata/OSD/S/SAN_ISABEL.json +++ b/inst/extdata/OSD/S/SAN_ISABEL.json @@ -142,7 +142,7 @@ }, { "name": "IIC", - "top": "NA", + "top": 48, "bottom": 152, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/S/SAN_SIMEON.json b/inst/extdata/OSD/S/SAN_SIMEON.json index ace86aad97..526aa7d052 100644 --- a/inst/extdata/OSD/S/SAN_SIMEON.json +++ b/inst/extdata/OSD/S/SAN_SIMEON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SAN_TIMOTEO.json b/inst/extdata/OSD/S/SAN_TIMOTEO.json index d849b48921..39f22b704b 100644 --- a/inst/extdata/OSD/S/SAN_TIMOTEO.json +++ b/inst/extdata/OSD/S/SAN_TIMOTEO.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0i--1/8 to 0 inch; dark brown litter from low shrubs, partially decomposed." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/S/SARKAR.json b/inst/extdata/OSD/S/SARKAR.json index cf46b9920c..b70cefaa5b 100644 --- a/inst/extdata/OSD/S/SARKAR.json +++ b/inst/extdata/OSD/S/SARKAR.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 13, + "bottom": 11, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--5 to 4 1/2 inches; living mosses and undecomposed forest litter." + }, + { + "name": "Oe", + "top": 11, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2.5, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Oe--4 1/2 inches to 0; black (5YR 2.5/1) partially decomposed forest litter; many fine, medium, and coarse roots; extremely acid (pH 4.0); abrupt wavy boundary. (1 to 10 inches thick)" + }, { "name": "E", "top": 0, diff --git a/inst/extdata/OSD/S/SASKA.json b/inst/extdata/OSD/S/SASKA.json index a114084b6a..50760518d4 100644 --- a/inst/extdata/OSD/S/SASKA.json +++ b/inst/extdata/OSD/S/SASKA.json @@ -74,7 +74,7 @@ { "name": "Oi and Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "NA", "narrative": "Oi and Oe--2 inches to 0; undecomposed and partially decomposed forest litter. (1 to 3 inches thick)" }, + { + "name": "E", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "loamy sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "broken", + "narrative": "E--0 to l/2 inch; light gray (10YR 7/l) loamy sand, dark gray (10YR 4/1) moist; single grain; loose; nonsticky and nonplastic; 5 percent pebbles, stones scattered on surface; abrupt broken boundary. (0 to 1 inch thick)" + }, + { + "name": "Bs1", + "top": 1, + "bottom": 15, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "sandy loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.3, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bs1--1/2 to 6 inches; brown (10YR 5/3) sandy loam, dark brown (7.5YR 3/4) moist; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; many very fine and fine, common medium, and few coarse roots; common very fine tubular pores; 5 percent pebbles; slightly acid (pH 6.3); clear wavy boundary." + }, { "name": "Bs2", "top": 15, diff --git a/inst/extdata/OSD/S/SAUK.json b/inst/extdata/OSD/S/SAUK.json index c50b0800e9..672a00222f 100644 --- a/inst/extdata/OSD/S/SAUK.json +++ b/inst/extdata/OSD/S/SAUK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--4 to 1 inch; leaves, conifer needles and twigs; abrupt smooth boundary." }, { - "name": "0a", + "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SAUVOLA.json b/inst/extdata/OSD/S/SAUVOLA.json index 43ed1981a9..d0e03352ca 100644 --- a/inst/extdata/OSD/S/SAUVOLA.json +++ b/inst/extdata/OSD/S/SAUVOLA.json @@ -73,8 +73,8 @@ [ { "name": "Oe", - "top": "NA", - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "A", "top": 0, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 3, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "ABt", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 46, "dry_hue": "l0YR", "dry_value": 3, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "Bt1", - "top": "NA", - "bottom": 26, + "top": 46, + "bottom": 66, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "Bt2", - "top": 26, - "bottom": 32, + "top": 66, + "bottom": 81, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -188,8 +188,8 @@ }, { "name": "Bt3", - "top": 32, - "bottom": 43, + "top": 81, + "bottom": 109, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -211,8 +211,8 @@ }, { "name": "BC", - "top": 43, - "bottom": 60, + "top": 109, + "bottom": 152, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, diff --git a/inst/extdata/OSD/S/SAVOIA.json b/inst/extdata/OSD/S/SAVOIA.json index 1c056d53cf..6e0e3bdb47 100644 --- a/inst/extdata/OSD/S/SAVOIA.json +++ b/inst/extdata/OSD/S/SAVOIA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O2", + "top": 0, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01 & 02-- inch to 0, mixture of ponderosa pine needles, twigs, and grass." + }, { "name": "A11", "top": 0, diff --git a/inst/extdata/OSD/S/SAWABE.json b/inst/extdata/OSD/S/SAWABE.json index e600ed928e..def18bad57 100644 --- a/inst/extdata/OSD/S/SAWABE.json +++ b/inst/extdata/OSD/S/SAWABE.json @@ -141,9 +141,9 @@ "narrative": "A2--5 to 8 inches; light gray (10YR 7/1) gravelly silt loam, dark grayish-brown (10YR 4/2) moist; massive; soft, very friable, slightly sticky, slightly plastic; common very fine, and few fine roots; many very fine interstitial pores; many clean sand grains; neutral (pH 6.8); abrupt wavy boundary. (2 to 4 4 inches thick.)" }, { - "name": "to", - "top": 30, - "bottom": "NA", + "name": "Bt1", + "top": 20, + "bottom": 30, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/S/SAWATCH.json b/inst/extdata/OSD/S/SAWATCH.json index 08959c57f2..267bff3206 100644 --- a/inst/extdata/OSD/S/SAWATCH.json +++ b/inst/extdata/OSD/S/SAWATCH.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 15, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SAXON.json b/inst/extdata/OSD/S/SAXON.json index 061b3aab06..ff7413316c 100644 --- a/inst/extdata/OSD/S/SAXON.json +++ b/inst/extdata/OSD/S/SAXON.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SCALEROCK.json b/inst/extdata/OSD/S/SCALEROCK.json index d73cc5fc1c..868cb25fec 100644 --- a/inst/extdata/OSD/S/SCALEROCK.json +++ b/inst/extdata/OSD/S/SCALEROCK.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SCAR.json b/inst/extdata/OSD/S/SCAR.json index f0a1bf2c8a..b6493783d9 100644 --- a/inst/extdata/OSD/S/SCAR.json +++ b/inst/extdata/OSD/S/SCAR.json @@ -166,7 +166,7 @@ { "name": "Bs2", "top": 23, - "bottom": "NA", + "bottom": 30, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 6, @@ -188,7 +188,7 @@ }, { "name": "Cl", - "top": "NA", + "top": 30, "bottom": 53, "dry_hue": "N", "dry_value": 7, diff --git a/inst/extdata/OSD/S/SCHROCK.json b/inst/extdata/OSD/S/SCHROCK.json index f5b14a8624..a186f596cb 100644 --- a/inst/extdata/OSD/S/SCHROCK.json +++ b/inst/extdata/OSD/S/SCHROCK.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SCOGG.json b/inst/extdata/OSD/S/SCOGG.json index 92c0dc91aa..addf743a95 100644 --- a/inst/extdata/OSD/S/SCOGG.json +++ b/inst/extdata/OSD/S/SCOGG.json @@ -97,7 +97,7 @@ { "name": "C", "top": 8, - "bottom": "NA", + "bottom": 38, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, @@ -119,7 +119,7 @@ }, { "name": "Cg1", - "top": "NA", + "top": 38, "bottom": 61, "dry_hue": "10YR", "dry_value": 6, diff --git a/inst/extdata/OSD/S/SCOON.json b/inst/extdata/OSD/S/SCOON.json index 40b73bab6f..a4f2b042d8 100644 --- a/inst/extdata/OSD/S/SCOON.json +++ b/inst/extdata/OSD/S/SCOON.json @@ -142,7 +142,7 @@ }, { "name": "2Bqkm", - "top": "NA", + "top": 41, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/S/SCOTTIES.json b/inst/extdata/OSD/S/SCOTTIES.json index 88dfaa4010..ab5e1a69c2 100644 --- a/inst/extdata/OSD/S/SCOTTIES.json +++ b/inst/extdata/OSD/S/SCOTTIES.json @@ -97,7 +97,7 @@ { "name": "Bwl", "top": 3, - "bottom": "NA", + "bottom": 28, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 3, @@ -119,8 +119,8 @@ }, { "name": "2Bw2", - "top": "NA", - "bottom": "NA", + "top": 28, + "bottom": 48, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "2Cl", - "top": "NA", + "top": 48, "bottom": 79, "dry_hue": "l0YR", "dry_value": 5, diff --git a/inst/extdata/OSD/S/SCOUT.json b/inst/extdata/OSD/S/SCOUT.json index 1d77d2ce66..e2a93f0555 100644 --- a/inst/extdata/OSD/S/SCOUT.json +++ b/inst/extdata/OSD/S/SCOUT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SCRABBLERS.json b/inst/extdata/OSD/S/SCRABBLERS.json index bd61ef850e..240ede478c 100644 --- a/inst/extdata/OSD/S/SCRABBLERS.json +++ b/inst/extdata/OSD/S/SCRABBLERS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "A--0.5 to 6 inches; pale brown (10YR 6/3) ashy very fine sandy loam, brown (10YR 4/3) moist; weak fine and fine subangular blocky structure; soft, friable, slightly sticky and slightly plastic and weakly smeary; common fine and medium, and few coarse roots; many fine pores; 2 percent gravel; slightly acid (pH 6.2); clear wavy boundary. (4 to 7 inches thick)" }, + { + "name": "Bw", + "top": 15, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "very fine sandy loam", + "structure": "weak fine and medium subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bw--6 and 11 inches; light yellowish brown (10YR 6/4) ashy very fine sandy loam, dark yellowish brown (10YR 4/4) moist; weak fine and medium subangular blocky structure; soft, friable, slightly sticky, slightly plastic and weakly smeary; common fine and medium, and few coarse roots; many fine pores; 3 percent gravel; slightly acid (pH 6.4); clear wavy boundary. (3 to 7 inches thick)" + }, { "name": "2BC", "top": 28, diff --git a/inst/extdata/OSD/S/SCRAPY.json b/inst/extdata/OSD/S/SCRAPY.json index 96cc45e615..cbeae461c3 100644 --- a/inst/extdata/OSD/S/SCRAPY.json +++ b/inst/extdata/OSD/S/SCRAPY.json @@ -143,7 +143,7 @@ { "name": "R", "top": 30, - "bottom": "NA", + "bottom": 12, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SCULLY.json b/inst/extdata/OSD/S/SCULLY.json index 07ca11578f..4ca23aa610 100644 --- a/inst/extdata/OSD/S/SCULLY.json +++ b/inst/extdata/OSD/S/SCULLY.json @@ -189,7 +189,7 @@ { "name": "Bk5", "top": 132, - "bottom": "NA", + "bottom": 201, "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 4, diff --git a/inst/extdata/OSD/S/SEASIDE.json b/inst/extdata/OSD/S/SEASIDE.json index 03c32b112d..22213603ca 100644 --- a/inst/extdata/OSD/S/SEASIDE.json +++ b/inst/extdata/OSD/S/SEASIDE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; litter of manzanita leaves and twigs over an organic mat of lichens and moss." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/S/SEBORUCO.json b/inst/extdata/OSD/S/SEBORUCO.json index 33bf2531b6..cbe4350620 100644 --- a/inst/extdata/OSD/S/SEBORUCO.json +++ b/inst/extdata/OSD/S/SEBORUCO.json @@ -208,6 +208,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C--26 to 31 inches; red (2.5YR 4/8) loam; massive; friable; few very fine, fine, and medium roots; about 2 percent by volume, pebbles; few fine and medium soft masses of calcium carbonate; violently effervescent; moderately alkaline; abrupt wavy boundary. (2 to 4 inches thick)" + }, + { + "name": "R", + "top": 79, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--31+ inches; hard consolidated unweathered limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/S/SEHOME.json b/inst/extdata/OSD/S/SEHOME.json index 8b4de46070..bfb383d618 100644 --- a/inst/extdata/OSD/S/SEHOME.json +++ b/inst/extdata/OSD/S/SEHOME.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SEITZ.json b/inst/extdata/OSD/S/SEITZ.json index 971bc5e353..99489c8f0e 100644 --- a/inst/extdata/OSD/S/SEITZ.json +++ b/inst/extdata/OSD/S/SEITZ.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 10, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SEKIL.json b/inst/extdata/OSD/S/SEKIL.json index 96f1653e5d..b15ced00d4 100644 --- a/inst/extdata/OSD/S/SEKIL.json +++ b/inst/extdata/OSD/S/SEKIL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inches; undecomposed leaves, pine needles, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SELEVIN.json b/inst/extdata/OSD/S/SELEVIN.json index 7a5fed4b64..53b1c5c872 100644 --- a/inst/extdata/OSD/S/SELEVIN.json +++ b/inst/extdata/OSD/S/SELEVIN.json @@ -120,7 +120,7 @@ { "name": "2Bt1", "top": 13, - "bottom": "NA", + "bottom": 33, "dry_hue": "2.5YR", "dry_value": 3, "dry_chroma": 4, @@ -142,8 +142,8 @@ }, { "name": "2Bt2", - "top": "NA", - "bottom": "NA", + "top": 33, + "bottom": 48, "dry_hue": "2.5YR", "dry_value": 4, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "2Btk", - "top": "NA", + "top": 48, "bottom": 58, "dry_hue": "2.5YR", "dry_value": 4, diff --git a/inst/extdata/OSD/S/SELWAY.json b/inst/extdata/OSD/S/SELWAY.json index 71ed1e1b42..7642b45017 100644 --- a/inst/extdata/OSD/S/SELWAY.json +++ b/inst/extdata/OSD/S/SELWAY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SEMIAHMOO.json b/inst/extdata/OSD/S/SEMIAHMOO.json index d00218543d..45226e7525 100644 --- a/inst/extdata/OSD/S/SEMIAHMOO.json +++ b/inst/extdata/OSD/S/SEMIAHMOO.json @@ -210,7 +210,7 @@ "narrative": "2Cg--135 to 155 centimeters; dark grayish brown (10YR 4/2) silty clay, light brownish gray (10YR 6/2) dry; massive; very hard, firm, sticky and plastic; few herbaceous and woody fibers; very strongly acid (pH 5.0); abrupt smooth boundary. (0 to many feet thick)" }, { - "name": "30e", + "name": "3Oe", "top": 155, "bottom": 165, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SENA.json b/inst/extdata/OSD/S/SENA.json index 806cb42ff4..a6ad0bd1c0 100644 --- a/inst/extdata/OSD/S/SENA.json +++ b/inst/extdata/OSD/S/SENA.json @@ -97,7 +97,7 @@ { "name": "Akz2", "top": 3, - "bottom": "NA", + "bottom": 10, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, diff --git a/inst/extdata/OSD/S/SERALIN.json b/inst/extdata/OSD/S/SERALIN.json index 1f4b0e2f6e..93f3fbf536 100644 --- a/inst/extdata/OSD/S/SERALIN.json +++ b/inst/extdata/OSD/S/SERALIN.json @@ -143,7 +143,7 @@ { "name": "R", "top": 36, - "bottom": "NA", + "bottom": 14, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SERPENTANO.json b/inst/extdata/OSD/S/SERPENTANO.json index fde30b8c3b..560ee0e813 100644 --- a/inst/extdata/OSD/S/SERPENTANO.json +++ b/inst/extdata/OSD/S/SERPENTANO.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHADELEAF.json b/inst/extdata/OSD/S/SHADELEAF.json index 3a6a70e790..14d0a5f34a 100644 --- a/inst/extdata/OSD/S/SHADELEAF.json +++ b/inst/extdata/OSD/S/SHADELEAF.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--1/2 inch to 0; loose duff and litter of conifer needles. (0 to 3 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/S/SHAKER.json b/inst/extdata/OSD/S/SHAKER.json index 1127b48d56..648c1c788a 100644 --- a/inst/extdata/OSD/S/SHAKER.json +++ b/inst/extdata/OSD/S/SHAKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SHAMEL.json b/inst/extdata/OSD/S/SHAMEL.json index 3c4f6642fa..e1b2ec133d 100644 --- a/inst/extdata/OSD/S/SHAMEL.json +++ b/inst/extdata/OSD/S/SHAMEL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHANTOWN.json b/inst/extdata/OSD/S/SHANTOWN.json index b47c5f2bcd..6926f94df5 100644 --- a/inst/extdata/OSD/S/SHANTOWN.json +++ b/inst/extdata/OSD/S/SHANTOWN.json @@ -117,6 +117,29 @@ "topography": "wavy", "narrative": "A2--5 to 18 cm; grayish brown (10YR 5/2) coarse sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; many very fine roots; many very fine tubular pores; 10 percent gravel; slightly alkaline (pH 7.6); abrupt wavy boundary. (8 to 18 cm thick)" }, + { + "name": "A3", + "top": 18, + "bottom": 28, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "coarse sandy loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "slightly alkaline", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A3--18 to 28; brown (10YR 5/3) coarse sandy loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; many very fine roots; many very fine interstitial and tubular pores; 10 percent gravel; slightly alkaline (pH 7.6); abrupt wavy boundary. (8 to 15 cm thick)" + }, { "name": "Bw1", "top": 28, diff --git a/inst/extdata/OSD/S/SHARPSHOOTER.json b/inst/extdata/OSD/S/SHARPSHOOTER.json index 0e88fbd849..bee0095885 100644 --- a/inst/extdata/OSD/S/SHARPSHOOTER.json +++ b/inst/extdata/OSD/S/SHARPSHOOTER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHARROTT.json b/inst/extdata/OSD/S/SHARROTT.json index 328f84a793..ce7b4bcad0 100644 --- a/inst/extdata/OSD/S/SHARROTT.json +++ b/inst/extdata/OSD/S/SHARROTT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SHASTACOSTA.json b/inst/extdata/OSD/S/SHASTACOSTA.json index d3b7b61298..44385f88d1 100644 --- a/inst/extdata/OSD/S/SHASTACOSTA.json +++ b/inst/extdata/OSD/S/SHASTACOSTA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; partially decomposed needles, leaves, twigs and woody materials." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/S/SHASTINA.json b/inst/extdata/OSD/S/SHASTINA.json index ac5415f66a..57f5c27e94 100644 --- a/inst/extdata/OSD/S/SHASTINA.json +++ b/inst/extdata/OSD/S/SHASTINA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 10, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SHEEPHEAD.json b/inst/extdata/OSD/S/SHEEPHEAD.json index e1e6a347f4..316a09215e 100644 --- a/inst/extdata/OSD/S/SHEEPHEAD.json +++ b/inst/extdata/OSD/S/SHEEPHEAD.json @@ -139,6 +139,29 @@ "distinctness": "diffuse", "topography": "irregular", "narrative": "Cr--8 to 51 inches; light yellowish brown (10YR 6/4) fractured foliar micaeous schist; common medium and coarse roots along fracture planes; diffuse irregular boundary. (10 to 48 inches thick)" + }, + { + "name": "R", + "top": 130, + "bottom": 145, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--51 t 57 inches; pale yellow (2.5Y 7/4) fractured foliar micaceous schist." } ] ] diff --git a/inst/extdata/OSD/S/SHELTON.json b/inst/extdata/OSD/S/SHELTON.json index a99619907d..53fe88f90e 100644 --- a/inst/extdata/OSD/S/SHELTON.json +++ b/inst/extdata/OSD/S/SHELTON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHERLOCK.json b/inst/extdata/OSD/S/SHERLOCK.json index a5ab0889f7..b8bbc1ff96 100644 --- a/inst/extdata/OSD/S/SHERLOCK.json +++ b/inst/extdata/OSD/S/SHERLOCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SHERVAL.json b/inst/extdata/OSD/S/SHERVAL.json index ea5bd1e08f..7905daa30a 100644 --- a/inst/extdata/OSD/S/SHERVAL.json +++ b/inst/extdata/OSD/S/SHERVAL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHIMA.json b/inst/extdata/OSD/S/SHIMA.json index c7cef47562..bfccb8a647 100644 --- a/inst/extdata/OSD/S/SHIMA.json +++ b/inst/extdata/OSD/S/SHIMA.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "Oap --0 to 20 centimeters (0 to 8 inches); black (10YR 2/1) muck, black (10YR 2/1) rubbed, very dark gray (10YR 3/1) dry; less than 5 percent tule and reed fibers before rubbing and a trace after rubbing; weak fine granular structure; slightly hard, loose, nonsticky and nonplastic; very strongly acid (pH 4.6); gradual smooth boundary. (20 to 25 centimeters (8 to 10 inches) thick)" }, + { + "name": "Oa", + "top": 20, + "bottom": 53, + "dry_hue": "10YR", + "dry_value": 3, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "weak fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Oa --20 to 53 (8 to 21) inches; black (10YR 2/1) muck, black (10YR 2/1) rubbed, very dark gray (10YR 3/1) dry; less than 5 percent tule and reed fibers before rubbing and a trace after rubbing; weak coarse prismatic and weak fine granular structure; soft, very friable, nonsticky and nonplastic; very strongly acid (pH 4.5); clear wavy boundary. (20 to 64 centimeters (8 to 25 inches) thick). There is a lens of ashy material (burned peat) 0.5 to 1.5 inches thick between the Oa and 2C1 horizon which is brown (7.5YR 4/4) with many medium prominent yellowish red (5YR 4/8) mottles. It is slightly acid (pH 6.5)." + }, { "name": "2C1", "top": 53, diff --git a/inst/extdata/OSD/S/SHINEBERGER.json b/inst/extdata/OSD/S/SHINEBERGER.json index 20e718492e..549f812e76 100644 --- a/inst/extdata/OSD/S/SHINEBERGER.json +++ b/inst/extdata/OSD/S/SHINEBERGER.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A--0 to 20 cm; brown (10YR 5/3) gravelly sandy loam, brown (10YR 4/3) moist; moderate fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine, fine and medium roots; common fine and medium irregular pores; 20 percent gravel; finely disseminated calcium carbonate; strongly effervescent; moderately alkaline (pH 8.0); clear smooth boundary. (8 to 20 cm thick)" }, + { + "name": "BCk", + "top": 20, + "bottom": 43, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "diffuse", + "topography": "wavy", + "narrative": "BCk--20 to 43; pale brown (10YR 6/3) gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common fine and medium roots; common medium irregular pores; 30 percent gravel; finely disseminated calcium carbonate and 90 percent fine distinct irregular calcium carbonate coats around rock fragments; strongly effervescent; moderately alkaline (pH 8.2); diffuse wavy boundary." + }, { "name": "Cr", "top": 43, diff --git a/inst/extdata/OSD/S/SHINGLEMILL.json b/inst/extdata/OSD/S/SHINGLEMILL.json index fd0fe6478d..46568d2ccf 100644 --- a/inst/extdata/OSD/S/SHINGLEMILL.json +++ b/inst/extdata/OSD/S/SHINGLEMILL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SHOESTRING.json b/inst/extdata/OSD/S/SHOESTRING.json index 4f88c28604..508542dc86 100644 --- a/inst/extdata/OSD/S/SHOESTRING.json +++ b/inst/extdata/OSD/S/SHOESTRING.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": 1, - "bottom": 3, + "top": 3, + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,8 +119,8 @@ }, { "name": "E", - "top": 3, - "bottom": 6, + "top": 8, + "bottom": 15, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 1, @@ -142,8 +142,8 @@ }, { "name": "Bhs", - "top": 6, - "bottom": 8, + "top": 15, + "bottom": 20, "dry_hue": "10YR", "dry_value": 3, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "2Bs1", - "top": 8, - "bottom": 11, + "top": 20, + "bottom": 28, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 1, @@ -188,8 +188,8 @@ }, { "name": "3Bs2", - "top": 11, - "bottom": 21, + "top": 28, + "bottom": 53, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 6, @@ -211,8 +211,8 @@ }, { "name": "3Bw", - "top": 21, - "bottom": 27, + "top": 53, + "bottom": 69, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, @@ -234,8 +234,8 @@ }, { "name": "4C1", - "top": 27, - "bottom": 35, + "top": 69, + "bottom": 89, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -257,8 +257,8 @@ }, { "name": "4C2", - "top": 35, - "bottom": 63, + "top": 89, + "bottom": 160, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 1, diff --git a/inst/extdata/OSD/S/SHOOFLIN.json b/inst/extdata/OSD/S/SHOOFLIN.json index d339dde935..836a7bcf15 100644 --- a/inst/extdata/OSD/S/SHOOFLIN.json +++ b/inst/extdata/OSD/S/SHOOFLIN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SHUKSAN.json b/inst/extdata/OSD/S/SHUKSAN.json index 4ad410cc53..60a2b0f84e 100644 --- a/inst/extdata/OSD/S/SHUKSAN.json +++ b/inst/extdata/OSD/S/SHUKSAN.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 18, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SIFTON.json b/inst/extdata/OSD/S/SIFTON.json index 8a226d58bc..f7c2962d3e 100644 --- a/inst/extdata/OSD/S/SIFTON.json +++ b/inst/extdata/OSD/S/SIFTON.json @@ -97,7 +97,7 @@ { "name": "All", "top": 13, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "Al2", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 41, "dry_hue": "l0YR", "dry_value": 4, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "2Cl", - "top": "NA", + "top": 41, "bottom": 61, "dry_hue": "l0YR", "dry_value": 4, diff --git a/inst/extdata/OSD/S/SIMNASHO.json b/inst/extdata/OSD/S/SIMNASHO.json index e3c2e067d3..71dea1c829 100644 --- a/inst/extdata/OSD/S/SIMNASHO.json +++ b/inst/extdata/OSD/S/SIMNASHO.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SINCLAIR.json b/inst/extdata/OSD/S/SINCLAIR.json index 6e771923ce..65d7455806 100644 --- a/inst/extdata/OSD/S/SINCLAIR.json +++ b/inst/extdata/OSD/S/SINCLAIR.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 7, + "bottom": 2, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--2 3/4 inches to 3/4 inch; needles, leaves, bark, and wood fragments." + }, + { + "name": "O2", + "top": 2, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.2, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "02--3/4 inch to 0; black (5YR 2/1) partially decayed needles, leaves, bark, and wood fragments; strongly acid (pH 5.2); abrupt wavy boundary. (1/2 to 1 1/2 inches thick)" + }, { "name": "A2", "top": 0, diff --git a/inst/extdata/OSD/S/SINLOC.json b/inst/extdata/OSD/S/SINLOC.json index 089d286192..7ef288dd2a 100644 --- a/inst/extdata/OSD/S/SINLOC.json +++ b/inst/extdata/OSD/S/SINLOC.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak very fine granular", + "dry_rupture": "loose", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.6, + "pH_class": "strongly alkaline", + "eff_class": "violently effervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A11--0 to 1/2 inch; dark grayish brown (10YR 4/2) silt loam, light brownish gray (10YR 6/2) dry; weak very fine granular structure; loose, very friable, nonsticky and slightly plastic; many roots; salt crust on horizon surface and on soil particles and peds; violently effervescent; strongly alkaline (pH 8.6); abrupt smooth boundary. (1/4 to 3/4 inches thick)" + }, + { + "name": "A12", + "top": 1, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.8, + "pH_class": "strongly alkaline", + "eff_class": "violently effervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A12--1/2 to 3 inches; dark grayish brown (10YR 4/2) silt loam, light brownish gray (10YR 6/2) dry; weak fine granular structure; soft, very friable, nonsticky and slightly plastic; many roots; violently effervescent; strongly alkaline (pH 8.8); abrupt smooth boundary. (2 to 6 inches thick)" + }, { "name": "B2", "top": 8, diff --git a/inst/extdata/OSD/S/SINNICE.json b/inst/extdata/OSD/S/SINNICE.json index 61b53da701..eed09dfe7d 100644 --- a/inst/extdata/OSD/S/SINNICE.json +++ b/inst/extdata/OSD/S/SINNICE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/4 inch to 0; leaves, twigs, and needles." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/S/SINONA.json b/inst/extdata/OSD/S/SINONA.json index 44a7adfc00..f98811d711 100644 --- a/inst/extdata/OSD/S/SINONA.json +++ b/inst/extdata/OSD/S/SINONA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SITKUM.json b/inst/extdata/OSD/S/SITKUM.json index 809151f6ab..614a9e25a5 100644 --- a/inst/extdata/OSD/S/SITKUM.json +++ b/inst/extdata/OSD/S/SITKUM.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SIZER.json b/inst/extdata/OSD/S/SIZER.json index 9e5d8493de..e7373a43d4 100644 --- a/inst/extdata/OSD/S/SIZER.json +++ b/inst/extdata/OSD/S/SIZER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SKAGWAY.json b/inst/extdata/OSD/S/SKAGWAY.json index cd09b74bea..5760b8806e 100644 --- a/inst/extdata/OSD/S/SKAGWAY.json +++ b/inst/extdata/OSD/S/SKAGWAY.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SKALAN.json b/inst/extdata/OSD/S/SKALAN.json index 07daca8942..89f7b339be 100644 --- a/inst/extdata/OSD/S/SKALAN.json +++ b/inst/extdata/OSD/S/SKALAN.json @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "Oi--0 to 0.5 inches; undecomposed needles, twigs, leaves and cones" }, + { + "name": "Oe", + "top": 1, + "bottom": 5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--0.5 to 2; partially decomposed needles, twigs, leaves and cones." + }, { "name": "A", "top": 5, diff --git a/inst/extdata/OSD/S/SKAMANIA.json b/inst/extdata/OSD/S/SKAMANIA.json index 5ccef4004b..98b8bbc1cd 100644 --- a/inst/extdata/OSD/S/SKAMANIA.json +++ b/inst/extdata/OSD/S/SKAMANIA.json @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SKATE.json b/inst/extdata/OSD/S/SKATE.json index ebf4936ec1..9386ae8b78 100644 --- a/inst/extdata/OSD/S/SKATE.json +++ b/inst/extdata/OSD/S/SKATE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0l and 02", - "top": "NA", - "bottom": "NA", + "name": "O1 and O2", + "top": 9, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -143,7 +143,7 @@ { "name": "B22ir", "top": 18, - "bottom": "NA", + "bottom": 38, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 8, @@ -165,7 +165,7 @@ }, { "name": "2B2irb", - "top": "NA", + "top": 38, "bottom": 99, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/S/SKIYOU.json b/inst/extdata/OSD/S/SKIYOU.json index 4523473dda..fa0ac489a7 100644 --- a/inst/extdata/OSD/S/SKIYOU.json +++ b/inst/extdata/OSD/S/SKIYOU.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 1/2 inches to 0; undecomposed leaves, branches, and twigs." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/S/SKOOKER.json b/inst/extdata/OSD/S/SKOOKER.json index 7c321bc97a..86c41ed087 100644 --- a/inst/extdata/OSD/S/SKOOKER.json +++ b/inst/extdata/OSD/S/SKOOKER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SKOOKUMHOUSE.json b/inst/extdata/OSD/S/SKOOKUMHOUSE.json index 73b6f03813..2f6761dcd6 100644 --- a/inst/extdata/OSD/S/SKOOKUMHOUSE.json +++ b/inst/extdata/OSD/S/SKOOKUMHOUSE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SKYHAVEN.json b/inst/extdata/OSD/S/SKYHAVEN.json index 1d7bc22ef5..db5fc6ce53 100644 --- a/inst/extdata/OSD/S/SKYHAVEN.json +++ b/inst/extdata/OSD/S/SKYHAVEN.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "Bky2--28 to 37 inches; white (N 8/) very gravelly loam, pink (7.5YR 7/4) moist; massive; slightly hard, friable, sticky and plastic; few very fine and fine roots; common very fine interstitial and tubular pores; 35 percent white (N 8/) hard caliche fragments; few fine gypsum crystals; 90 percent calcium carbonate equivalent; moderately alkaline (pH 8.3) abrupt wavy boundary. (5 to l0 inches thick)" + }, + { + "name": "Bkm", + "top": 94, + "bottom": "NA", + "dry_hue": "N", + "dry_value": 8, + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 7, + "moist_chroma": 4, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "indurated", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bkm--37 to to 60 inches; white (N 8/) indurated lime hardpan, pink (7.5YR 7/4) moist." } ] ] diff --git a/inst/extdata/OSD/S/SKYKOMISH.json b/inst/extdata/OSD/S/SKYKOMISH.json index 6da8c6de16..6ea91b5433 100644 --- a/inst/extdata/OSD/S/SKYKOMISH.json +++ b/inst/extdata/OSD/S/SKYKOMISH.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -117,6 +117,52 @@ "topography": "NA", "narrative": "Oa--3 inches to 0; decomposed forest litter." }, + { + "name": "A", + "top": 0, + "bottom": 6, + "dry_hue": "7.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "loam", + "structure": "moderate coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A--0 to 2 1/2 inches; dark reddish brown (5YR 3/3) gravelly loam, dark brown (7.5YR 4/4) dry; black (5YR 2/1) stains on 70 percent of ped surface; moderate coarse subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic, weakly smeary; common very fine, fine, medium and coarse roots; common very fine discontinuous pores; 17 percent rounded and angular pebbles; very strongly acid (pH 5.0); abrupt smooth boundary. (1 to 11 inches thick)" + }, + { + "name": "Bs1", + "top": 6, + "bottom": 30, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 8, + "texture_class": "loam", + "structure": "weak coarse subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bs1--2 1/2 to 12 inches; yellowish red (5YR 4/8) gravelly loam, light brown (7.5YR 6/4) dry; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic, weakly smeary; few very fine, fine, medium and coarse roots; common very fine discontinuous pores; 20 percent rounded and angular pebbles; medium acid (pH 6.0); clear wavy boundary. (5 to 13 inches thick)" + }, { "name": "Bs2", "top": 30, diff --git a/inst/extdata/OSD/S/SKYMOR.json b/inst/extdata/OSD/S/SKYMOR.json index 496aa8a0cd..e64cdb5567 100644 --- a/inst/extdata/OSD/S/SKYMOR.json +++ b/inst/extdata/OSD/S/SKYMOR.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SLEEPER.json b/inst/extdata/OSD/S/SLEEPER.json index c8861de733..c31cd4f283 100644 --- a/inst/extdata/OSD/S/SLEEPER.json +++ b/inst/extdata/OSD/S/SLEEPER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SLODUC.json b/inst/extdata/OSD/S/SLODUC.json index cc29870363..8a6dc7fca5 100644 --- a/inst/extdata/OSD/S/SLODUC.json +++ b/inst/extdata/OSD/S/SLODUC.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 25, "bottom": 18, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--10 to 7 inches; dark reddish brown (5YR 3/2) peat; 90 percent fiber, 60 percent rubbed; primarily moss and forest litter; many fine and medium roots; extremely acid (pH 4.0 Truog); clear wavy boundary. (0 to 4 inches thick)" }, { - "name": "0a", + "name": "Oa", "top": 18, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SLY.json b/inst/extdata/OSD/S/SLY.json index 6b99063d59..c34d732a7e 100644 --- a/inst/extdata/OSD/S/SLY.json +++ b/inst/extdata/OSD/S/SLY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 2, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.75 inches; slightly decomposed needles, leaves, and twigs." }, { - "name": "0e", + "name": "Oe", "top": 2, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SMACKOUT.json b/inst/extdata/OSD/S/SMACKOUT.json index 9516ec1790..ef7f3ce30d 100644 --- a/inst/extdata/OSD/S/SMACKOUT.json +++ b/inst/extdata/OSD/S/SMACKOUT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SMELTER.json b/inst/extdata/OSD/S/SMELTER.json index fe46636b6a..7c2ca276d2 100644 --- a/inst/extdata/OSD/S/SMELTER.json +++ b/inst/extdata/OSD/S/SMELTER.json @@ -166,7 +166,7 @@ { "name": "BC", "top": 89, - "bottom": "NA", + "bottom": 155, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 4, diff --git a/inst/extdata/OSD/S/SMOKEY.json b/inst/extdata/OSD/S/SMOKEY.json index 2a93240126..2a430caf51 100644 --- a/inst/extdata/OSD/S/SMOKEY.json +++ b/inst/extdata/OSD/S/SMOKEY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SNILEC.json b/inst/extdata/OSD/S/SNILEC.json index 198592cc64..e72472389b 100644 --- a/inst/extdata/OSD/S/SNILEC.json +++ b/inst/extdata/OSD/S/SNILEC.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "A", - "top": 1, - "bottom": 5, + "top": 3, + "bottom": 13, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "AB", - "top": 5, - "bottom": 10, + "top": 13, + "bottom": 25, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, @@ -142,8 +142,8 @@ }, { "name": "2Bt1", - "top": 10, - "bottom": 18, + "top": 25, + "bottom": 46, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -165,8 +165,8 @@ }, { "name": "2Bt2", - "top": 18, - "bottom": 37, + "top": 46, + "bottom": 94, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, @@ -188,8 +188,8 @@ }, { "name": "2Bt3", - "top": 37, - "bottom": 53, + "top": 94, + "bottom": 135, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 2, @@ -211,8 +211,8 @@ }, { "name": "2Bt4", - "top": 53, - "bottom": 61, + "top": 135, + "bottom": 155, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 3, diff --git a/inst/extdata/OSD/S/SNILLOC.json b/inst/extdata/OSD/S/SNILLOC.json index f1c4aea5ce..272610f7a8 100644 --- a/inst/extdata/OSD/S/SNILLOC.json +++ b/inst/extdata/OSD/S/SNILLOC.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Ap1", + "top": 0, + "bottom": 5, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "very fine sandy loam", + "structure": "moderate very fine and fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.2, + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Ap1--0 to 5 (0 to 2 inches); pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; moderate very fine and fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; common very fine and few fine continuous irregularly shaped pores; violently effervescent; calcium carbonate disseminated; moderately alkaline (pH 8.2); abrupt smooth boundary." + }, { "name": "Ap2", "top": 5, diff --git a/inst/extdata/OSD/S/SNOWBRIER.json b/inst/extdata/OSD/S/SNOWBRIER.json index cecbef2616..221df9a72f 100644 --- a/inst/extdata/OSD/S/SNOWBRIER.json +++ b/inst/extdata/OSD/S/SNOWBRIER.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SOAKPAK.json b/inst/extdata/OSD/S/SOAKPAK.json index 803ffdaa63..9ac9b8a343 100644 --- a/inst/extdata/OSD/S/SOAKPAK.json +++ b/inst/extdata/OSD/S/SOAKPAK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SOCO.json b/inst/extdata/OSD/S/SOCO.json index 9c1cd36bf8..690c374d97 100644 --- a/inst/extdata/OSD/S/SOCO.json +++ b/inst/extdata/OSD/S/SOCO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SODACREEK.json b/inst/extdata/OSD/S/SODACREEK.json index d0f41d4d24..a08b972cca 100644 --- a/inst/extdata/OSD/S/SODACREEK.json +++ b/inst/extdata/OSD/S/SODACREEK.json @@ -94,6 +94,52 @@ "topography": "NA", "narrative": "Oi--1 to 0 inches; undecomposed forest litter." }, + { + "name": "E", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "fine sandy loam", + "structure": "weak fine crumb", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "bouldery", + "pH": 6.6, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "E--0 to 1/4 inches; gray (10YR 6/1) bouldery fine sandy loam, dark gray (10YR 4/1) moist; weak fine crumb structure; soft, very friable, nonsticky and nonplastic; few very fine roots, few fine tubular pores; 3 percent surface boulders; neutral (pH 6.6); abrupt smooth boundary. (1/4 to 1/2 inch thick)" + }, + { + "name": "Bw1", + "top": 1, + "bottom": 23, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "fine sandy loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "bouldery", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bw1--1/4 to 9 inches; pale brown (10YR 6/3) bouldery fine sandy loam, dark brown (10YR 4/3) moist; weak medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; many fine medium and coarse roots; common fine and medium tubular pores; 5 percent hard pebbles, 5 percent soft pebbles, 5 percent cobbles and 5 percent boulders; slightly acid (0H 6.2) gradual wavy boundary. (7 to 10 inches thick)" + }, { "name": "Bw2", "top": 23, diff --git a/inst/extdata/OSD/S/SOLLER.json b/inst/extdata/OSD/S/SOLLER.json index 5524655785..3e01563f31 100644 --- a/inst/extdata/OSD/S/SOLLER.json +++ b/inst/extdata/OSD/S/SOLLER.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cr--12 to 26 inches; white (10YR 8/1) partially weathered limestone that can be penetrated with the spade. (10 to 16 inches thick)" + }, + { + "name": "R", + "top": 66, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R-26+ inches; hard fragmental limestone." } ] ] diff --git a/inst/extdata/OSD/S/SOMERS.json b/inst/extdata/OSD/S/SOMERS.json index cfa1460a72..b193b04d26 100644 --- a/inst/extdata/OSD/S/SOMERS.json +++ b/inst/extdata/OSD/S/SOMERS.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "BC--22 to 30 inches; very pale brown (10YR 7/3) dry; stratified or varied silt loam and silty clay loam; pale brown (10YR 6/3) moist; breaks out into weak fine blocks; slightly hard, slightly firm; calcareous; abrupt lower boundary. (6 to 10 inches thick)" + }, + { + "name": "2C", + "top": 76, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 2, + "texture_class": "loamy fine sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C--30 + inches; light gray (10YR 7/2) to light brownish gray (10YR 6/2) moist; loamy fine sand; single grain; loose; calcareous." } ] ] diff --git a/inst/extdata/OSD/S/SONADORA.json b/inst/extdata/OSD/S/SONADORA.json index fe305f32c6..ba834b2b08 100644 --- a/inst/extdata/OSD/S/SONADORA.json +++ b/inst/extdata/OSD/S/SONADORA.json @@ -208,6 +208,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "C -- 21 to 36 inches; 35 percent grayish brown (10YR 5/2), 35 percent yellowish brown (10YR 5/6), and 30 percent very dark grayish brown (10YR 3/2) clay loam; massive; friable; sticky; slightly plastic; few very fine roots; strongly acid; clear smooth boundary." + }, + { + "name": "R", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 36+ inches; horizontally fractured dark gray (10YR 4/1) mudstone bedrock." } ] ] diff --git a/inst/extdata/OSD/S/SORENSEN.json b/inst/extdata/OSD/S/SORENSEN.json index 63c26ad13b..e2463d04f7 100644 --- a/inst/extdata/OSD/S/SORENSEN.json +++ b/inst/extdata/OSD/S/SORENSEN.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 28, + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "Oa", - "top": 1, - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -120,7 +120,7 @@ { "name": "E", "top": 0, - "bottom": 1, + "bottom": 3, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 2, @@ -142,8 +142,8 @@ }, { "name": "Bs1", - "top": 1, - "bottom": 6, + "top": 3, + "bottom": 15, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 6, @@ -165,8 +165,8 @@ }, { "name": "Bs2", - "top": 6, - "bottom": 9, + "top": 15, + "bottom": 23, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 6, @@ -188,8 +188,8 @@ }, { "name": "BC", - "top": 9, - "bottom": 18, + "top": 23, + "bottom": 46, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 4, @@ -211,8 +211,8 @@ }, { "name": "C1", - "top": 18, - "bottom": 25, + "top": 46, + "bottom": 64, "dry_hue": "5Y", "dry_value": 7, "dry_chroma": 3, @@ -234,8 +234,8 @@ }, { "name": "C2", - "top": 25, - "bottom": 60, + "top": 64, + "bottom": 152, "dry_hue": "5Y", "dry_value": 8, "dry_chroma": 3, diff --git a/inst/extdata/OSD/S/SPEAKER.json b/inst/extdata/OSD/S/SPEAKER.json index 978066f880..112857f654 100644 --- a/inst/extdata/OSD/S/SPEAKER.json +++ b/inst/extdata/OSD/S/SPEAKER.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 2, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O--3/4 inch to 0; duff layer." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/S/SPILYAY.json b/inst/extdata/OSD/S/SPILYAY.json index adc50db436..116550269d 100644 --- a/inst/extdata/OSD/S/SPILYAY.json +++ b/inst/extdata/OSD/S/SPILYAY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SPOKEL.json b/inst/extdata/OSD/S/SPOKEL.json index 5e1995ad99..887a919595 100644 --- a/inst/extdata/OSD/S/SPOKEL.json +++ b/inst/extdata/OSD/S/SPOKEL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; fresh and partially decomposed needles and twigs; neutral (pH 6.6)." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SPONIKER.json b/inst/extdata/OSD/S/SPONIKER.json index 78ba4e300b..2a89be5e0c 100644 --- a/inst/extdata/OSD/S/SPONIKER.json +++ b/inst/extdata/OSD/S/SPONIKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SPRAY.json b/inst/extdata/OSD/S/SPRAY.json index b40cc321c2..850644be56 100644 --- a/inst/extdata/OSD/S/SPRAY.json +++ b/inst/extdata/OSD/S/SPRAY.json @@ -97,7 +97,7 @@ { "name": "Bt", "top": 15, - "bottom": "NA", + "bottom": 43, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,7 +119,7 @@ }, { "name": "C", - "top": "NA", + "top": 43, "bottom": 152, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/S/SPRINGSTEEN.json b/inst/extdata/OSD/S/SPRINGSTEEN.json index 40ea526a77..074de3ee4c 100644 --- a/inst/extdata/OSD/S/SPRINGSTEEN.json +++ b/inst/extdata/OSD/S/SPRINGSTEEN.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SPRIPAR.json b/inst/extdata/OSD/S/SPRIPAR.json index d3659e6abf..3f4cddfb51 100644 --- a/inst/extdata/OSD/S/SPRIPAR.json +++ b/inst/extdata/OSD/S/SPRIPAR.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "Bw -- 2 to 5 inches; light yellowish brown (2.5Y 6/4) very cobbly sandy loam, light olive brown (2.5Y 5/4) moist; moderate fine and medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; strongly effervescent (calcium carbonate equivalent of 1 to 5 percent); 10 percent gravel and 40 percent cobbles; slightly alkaline (pH 7.6); abrupt irregular boundary. (3 to 14 inches thick)" + }, + { + "name": "R", + "top": 13, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 5+ inches; unweathered and highly fractured metamorphosed basalt and schist bedrock with pockets of weathered bedrock material of high excavation difficulty." } ] ] diff --git a/inst/extdata/OSD/S/SQUALICUM.json b/inst/extdata/OSD/S/SQUALICUM.json index 343949025d..d18e5b176a 100644 --- a/inst/extdata/OSD/S/SQUALICUM.json +++ b/inst/extdata/OSD/S/SQUALICUM.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "A", "top": 0, - "bottom": 3, + "bottom": 8, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -119,8 +119,8 @@ }, { "name": "Bs1", - "top": 3, - "bottom": "NA", + "top": 8, + "bottom": 43, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 6, @@ -142,8 +142,8 @@ }, { "name": "Bs2", - "top": "NA", - "bottom": 30, + "top": 43, + "bottom": 76, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 6, @@ -165,8 +165,8 @@ }, { "name": "C", - "top": 30, - "bottom": 44, + "top": 76, + "bottom": 112, "dry_hue": "2.5Y", "dry_value": 7, "dry_chroma": 4, @@ -188,8 +188,8 @@ }, { "name": "2Cr", - "top": 44, - "bottom": 60, + "top": 112, + "bottom": 152, "dry_hue": "5Y", "dry_value": 7, "dry_chroma": 2, diff --git a/inst/extdata/OSD/S/SQUALLY.json b/inst/extdata/OSD/S/SQUALLY.json index fb40301ea7..f3adb20484 100644 --- a/inst/extdata/OSD/S/SQUALLY.json +++ b/inst/extdata/OSD/S/SQUALLY.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0l", - "top": "NA", - "bottom": "NA", + "name": "O1", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Al", "top": 0, - "bottom": "NA", + "bottom": 25, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -119,8 +119,8 @@ }, { "name": "B2", - "top": "NA", - "bottom": 63, + "top": 25, + "bottom": 160, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 6, @@ -142,8 +142,8 @@ }, { "name": "C", - "top": 63, - "bottom": 75, + "top": 160, + "bottom": 190, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 3, diff --git a/inst/extdata/OSD/S/SQUAMSCOTT.json b/inst/extdata/OSD/S/SQUAMSCOTT.json index 0c41999483..0415289bfa 100644 --- a/inst/extdata/OSD/S/SQUAMSCOTT.json +++ b/inst/extdata/OSD/S/SQUAMSCOTT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0e--0 to 2 inches; dark reddish brown (5YR 3/3) hemic material; 35 percent fibers, rubbed; many very fine and fine roots; extremely acid; abrupt wavy boundary." }, { - "name": "0a", + "name": "Oa", "top": 5, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SQUIRES.json b/inst/extdata/OSD/S/SQUIRES.json index 1e563b263c..d8fd3c7458 100644 --- a/inst/extdata/OSD/S/SQUIRES.json +++ b/inst/extdata/OSD/S/SQUIRES.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/ST._HELENS.json b/inst/extdata/OSD/S/ST._HELENS.json index dc7344b6f0..e4d253f8cc 100644 --- a/inst/extdata/OSD/S/ST._HELENS.json +++ b/inst/extdata/OSD/S/ST._HELENS.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/ST._MARTIN.json b/inst/extdata/OSD/S/ST._MARTIN.json index 31295c6e40..5d48537d81 100644 --- a/inst/extdata/OSD/S/ST._MARTIN.json +++ b/inst/extdata/OSD/S/ST._MARTIN.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STABLER.json b/inst/extdata/OSD/S/STABLER.json index 12c5d49918..ee67e045df 100644 --- a/inst/extdata/OSD/S/STABLER.json +++ b/inst/extdata/OSD/S/STABLER.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; leaves, partially decomposed needles and twigs." + }, + { + "name": "Oa", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oa--1/2 to 1 inch; decomposed organic material." + }, { "name": "Ac1", "top": 3, diff --git a/inst/extdata/OSD/S/STAINKY.json b/inst/extdata/OSD/S/STAINKY.json index b665dc2e91..cad374c2cd 100644 --- a/inst/extdata/OSD/S/STAINKY.json +++ b/inst/extdata/OSD/S/STAINKY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STANDUP.json b/inst/extdata/OSD/S/STANDUP.json index 6581da5553..a2fb7fd9c8 100644 --- a/inst/extdata/OSD/S/STANDUP.json +++ b/inst/extdata/OSD/S/STANDUP.json @@ -120,7 +120,7 @@ { "name": "2Bw1", "top": 13, - "bottom": "NA", + "bottom": 48, "dry_hue": "l0YR", "dry_value": 7, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "2Bw2", - "top": "NA", + "top": 48, "bottom": 66, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/S/STANEY.json b/inst/extdata/OSD/S/STANEY.json index 2e3176b5a3..67bde02dae 100644 --- a/inst/extdata/OSD/S/STANEY.json +++ b/inst/extdata/OSD/S/STANEY.json @@ -118,7 +118,7 @@ "narrative": "Oe--2 to 4 inches; black (5YR 2.5/1, broken face and pressed) sedge peat (60 percent fibers unrubbed, 40 percent rubbed); liquid removed by squeezing is turbid; nonsticky and slightly plastic; very strongly acid (pH 4.5); clear wavy boundary. (0 to 5 inches thick)" }, { - "name": "0'i1", + "name": "O'i1", "top": 10, "bottom": 58, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/STAVE.json b/inst/extdata/OSD/S/STAVE.json index 303b7b6530..50c34108c1 100644 --- a/inst/extdata/OSD/S/STAVE.json +++ b/inst/extdata/OSD/S/STAVE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "01--1 1/2 to 0 inches; dark reddish brown (5YR 2/2) mat of organic materials; many roots; clear smooth boundary." + }, { "name": "C1", "top": 0, @@ -116,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "C2g--5 to 18 inches; dark gray (5YR 4/1) medium sand; few fine faint mottles of yellowish brown; single grain; loose; moderately alkaline; gradual boundary." + }, + { + "name": "C2g", + "top": 46, + "bottom": 51, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "fine sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2g--18 to 20 + inches; dark gray (5YR 4/1) layered medium sand and fine sand; few coarse prominent mottles of reddish brown; single grain; loose; moderately alkaline (Note: Below 20 inches, soils is too wet to bring up with auger or spade, but no gravel or stones occur)." } ] ] diff --git a/inst/extdata/OSD/S/STECOAH.json b/inst/extdata/OSD/S/STECOAH.json index 2ea4a746fc..5407726361 100644 --- a/inst/extdata/OSD/S/STECOAH.json +++ b/inst/extdata/OSD/S/STECOAH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/STEINMETZ.json b/inst/extdata/OSD/S/STEINMETZ.json index 7130495dd0..4558a5c507 100644 --- a/inst/extdata/OSD/S/STEINMETZ.json +++ b/inst/extdata/OSD/S/STEINMETZ.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STELLTOWN.json b/inst/extdata/OSD/S/STELLTOWN.json index 6c5f114793..15aad7ecb5 100644 --- a/inst/extdata/OSD/S/STELLTOWN.json +++ b/inst/extdata/OSD/S/STELLTOWN.json @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "Bt1--28 to 69 cm (11 to 27 in); brownish yellow (10YR 6/6) sandy loam; few fine distinct yellowish brown (10YR 5/8) iron accumulations, common fine and medium prominent light brownish gray (10YR 6/2) iron depletions; light brownish gray(10YR 6/2) iron depletions on surfaces along root channels; moderate medium and moderate coarse subangular blocky structure; friable; few very fine and fine, very few medium roots; few patchy clay films; strongly acid; clear wavy boundary." }, + { + "name": "Bt2", + "top": 69, + "bottom": 104, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "sandy loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "irregular", + "narrative": "Bt2--69 to 104 cn (27 to 41 in); yellowish brown (10YR 5/6) sandy loam; few medium faint yellowish red (5YR 5/6) iron accumulations on faces of peds, many medium prominent gray (10YR 6/1) iron depletions along ped seams; few fine black(10YR 2/1) manganese accumulations; moderate medium subangular blocky structure; firm; few very fine and fine roots; common distinct clay films on seams; about 4 percent plinthite; very strongly acid; clear irregular boundary." + }, { "name": "Bt3", "top": 104, diff --git a/inst/extdata/OSD/S/STEWAH.json b/inst/extdata/OSD/S/STEWAH.json index 618966d00c..9dfb62b79a 100644 --- a/inst/extdata/OSD/S/STEWAH.json +++ b/inst/extdata/OSD/S/STEWAH.json @@ -254,6 +254,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "2C2--52 to 60 inches; light yellowish brown (10YR 6/4) extremely paracobbly silt loam, dark yellowish brown (10YR 4/4) moist; massive; moderately hard, friable, nonsticky and slightly plastic; few very fine roots; 14 percent gravel, 16 percent paragravel and 66 percent paracobbles; moderately acid (pH 5.9); clear wavy boundary. (Combined thickness of 2C horizons is 8 to 21 inches)" + }, + { + "name": "2Cr", + "top": 152, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "silt", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Cr--60+ inches; fractured siltite." } ] ] diff --git a/inst/extdata/OSD/S/STICES.json b/inst/extdata/OSD/S/STICES.json index 78749605b4..cc9315fda8 100644 --- a/inst/extdata/OSD/S/STICES.json +++ b/inst/extdata/OSD/S/STICES.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/STIEN.json b/inst/extdata/OSD/S/STIEN.json index 600e39a9c4..1af49b49e9 100644 --- a/inst/extdata/OSD/S/STIEN.json +++ b/inst/extdata/OSD/S/STIEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; needles, leaves, and twigs. (0 to 1.5 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/STIMSON.json b/inst/extdata/OSD/S/STIMSON.json index 4e5687c19d..6d7d87599e 100644 --- a/inst/extdata/OSD/S/STIMSON.json +++ b/inst/extdata/OSD/S/STIMSON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STONEMAN.json b/inst/extdata/OSD/S/STONEMAN.json index 67f481aa8f..3380f996cb 100644 --- a/inst/extdata/OSD/S/STONEMAN.json +++ b/inst/extdata/OSD/S/STONEMAN.json @@ -189,7 +189,7 @@ { "name": "2Bkq3", "top": 109, - "bottom": "NA", + "bottom": 152, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 3, diff --git a/inst/extdata/OSD/S/STOPATOE.json b/inst/extdata/OSD/S/STOPATOE.json index 98c8a9c751..44f9910023 100644 --- a/inst/extdata/OSD/S/STOPATOE.json +++ b/inst/extdata/OSD/S/STOPATOE.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "Bt1--36 to 53 cm; yellowish brown (10YR 5/4) very gravelly loam, dark yellowish brown (10YR 3/4) moist; moderate fine subangular blocky structure; slightly hard, friable, moderately sticky and slightly plastic; common very fine and fine roots; common very fine, few fine and medium tubular pores; few faint clay films on faces of peds and lining pores; 30 percent gravel and 5 percent cobbles; neutral (pH 6.8); clear smooth boundary. (8 to 25 cm thick)" }, + { + "name": "Bt2", + "top": 53, + "bottom": 79, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "moderate fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Bt2--53 to 79; brown (7.5YR 5/4) very gravelly clay loam, brown (7.5YR 4/4) moist; moderate fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; common very fine and few fine tubular pores; common distinct clay films on faces of peds and lining pores; 30 percent gravel and 5 percent cobbles; neutral (pH 7.0); abrupt smooth boundary. (13 to 50 cm thick)" + }, { "name": "Cr", "top": 79, diff --git a/inst/extdata/OSD/S/STRAIGHT.json b/inst/extdata/OSD/S/STRAIGHT.json index 6b3f50ef2b..5c46e9a16f 100644 --- a/inst/extdata/OSD/S/STRAIGHT.json +++ b/inst/extdata/OSD/S/STRAIGHT.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STRANDLINE.json b/inst/extdata/OSD/S/STRANDLINE.json index f21b7dafb7..b228e548ce 100644 --- a/inst/extdata/OSD/S/STRANDLINE.json +++ b/inst/extdata/OSD/S/STRANDLINE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/STRINGAM.json b/inst/extdata/OSD/S/STRINGAM.json index 5c16ee5268..4233ed1a7c 100644 --- a/inst/extdata/OSD/S/STRINGAM.json +++ b/inst/extdata/OSD/S/STRINGAM.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inches; undecomposed needles and twigs. (0 to 3 inches thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/S/STUMBLE.json b/inst/extdata/OSD/S/STUMBLE.json index 2e3c09235a..f5c19610b5 100644 --- a/inst/extdata/OSD/S/STUMBLE.json +++ b/inst/extdata/OSD/S/STUMBLE.json @@ -143,7 +143,7 @@ { "name": "C3", "top": 74, - "bottom": "NA", + "bottom": 150, "dry_hue": "10YR", "dry_value": 6, "dry_chroma": 2, diff --git a/inst/extdata/OSD/S/SUCCESS.json b/inst/extdata/OSD/S/SUCCESS.json index 731fa539f8..2da63fbc2c 100644 --- a/inst/extdata/OSD/S/SUCCESS.json +++ b/inst/extdata/OSD/S/SUCCESS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 10, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 4 inches; slightly decomposed plant material with many coarse, medium, and fine roots." }, { - "name": "0a", + "name": "Oa", "top": 10, "bottom": 23, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SUEY.json b/inst/extdata/OSD/S/SUEY.json index e2f91b8568..6ed4c28931 100644 --- a/inst/extdata/OSD/S/SUEY.json +++ b/inst/extdata/OSD/S/SUEY.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SULOAF.json b/inst/extdata/OSD/S/SULOAF.json index d39751eaa5..05a0b00684 100644 --- a/inst/extdata/OSD/S/SULOAF.json +++ b/inst/extdata/OSD/S/SULOAF.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SUNNYHAY.json b/inst/extdata/OSD/S/SUNNYHAY.json index 0c9a068122..92c272d17e 100644 --- a/inst/extdata/OSD/S/SUNNYHAY.json +++ b/inst/extdata/OSD/S/SUNNYHAY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; undecomposed litter of grasses, sedges, and forbs. (0 to 2 inches thick)" + }, + { + "name": "Oa1", + "top": 1, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2.5, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.4, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Oa1--1/2 to 4 inches; dark reddish brown (5YR 2.5/2) muck; common fine roots; extremely acid (pH 4.4); gradual wavy boundary. (1 to 5 inches thick)" + }, { "name": "Oa2", "top": 10, diff --git a/inst/extdata/OSD/S/SUNTRANA.json b/inst/extdata/OSD/S/SUNTRANA.json index e54af10cbd..31671d2188 100644 --- a/inst/extdata/OSD/S/SUNTRANA.json +++ b/inst/extdata/OSD/S/SUNTRANA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SUPAN.json b/inst/extdata/OSD/S/SUPAN.json index 4874fa947b..04a504abd7 100644 --- a/inst/extdata/OSD/S/SUPAN.json +++ b/inst/extdata/OSD/S/SUPAN.json @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "irregular", "narrative": "B3--36 to 42 inches; brown (7.5YR 5/4) gravelly loam, dark reddish brown (5YR 4/3) moist; massive; hard, friable, slightly sticky, slightly plastic; few roots; few very fine pores; thin continuous clay films in some pores; many partly weathered rock fragments; slightly acid; abrupt irregular boundary. (6 to 20 inches thick)" + }, + { + "name": "R", + "top": 107, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--42 + inches; partly weathered but hard volcanic breccia with few, widely spaced, narrow, and nearly vertical cracks." } ] ] diff --git a/inst/extdata/OSD/S/SUPERVISOR.json b/inst/extdata/OSD/S/SUPERVISOR.json index 20b1618289..c8e1684d2c 100644 --- a/inst/extdata/OSD/S/SUPERVISOR.json +++ b/inst/extdata/OSD/S/SUPERVISOR.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SUR.json b/inst/extdata/OSD/S/SUR.json index 6108b56bb8..d6c218740c 100644 --- a/inst/extdata/OSD/S/SUR.json +++ b/inst/extdata/OSD/S/SUR.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SURRENCY.json b/inst/extdata/OSD/S/SURRENCY.json index a05aba38bc..00e883679d 100644 --- a/inst/extdata/OSD/S/SURRENCY.json +++ b/inst/extdata/OSD/S/SURRENCY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SUTHER.json b/inst/extdata/OSD/S/SUTHER.json index 65bc40555b..741432957c 100644 --- a/inst/extdata/OSD/S/SUTHER.json +++ b/inst/extdata/OSD/S/SUTHER.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "B22t--24 to 36 inches; pale brown (10YR 6/3) gravelly clay, yellowish brown (10YR 5/6) with many fine distinct mottles of dark grayish brown (10YR 4/2) moist; massive; very hard, very firm, sticky, very plastic; common fine tubular pores; many moderately thick clay films on peds, in pores, and as bridges; medium acid (pH 6.0). (8 to 14 inches thick)." + }, + { + "name": "C", + "top": 91, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--36 + inches; weathered and shattered sandstone." } ] ] diff --git a/inst/extdata/OSD/S/SWEDNA.json b/inst/extdata/OSD/S/SWEDNA.json index c04e492b27..cdede0765c 100644 --- a/inst/extdata/OSD/S/SWEDNA.json +++ b/inst/extdata/OSD/S/SWEDNA.json @@ -74,7 +74,7 @@ { "name": "Oi/C", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SWEETBRIAR.json b/inst/extdata/OSD/S/SWEETBRIAR.json index ac4cc812ed..aa48e2c8a4 100644 --- a/inst/extdata/OSD/S/SWEETBRIAR.json +++ b/inst/extdata/OSD/S/SWEETBRIAR.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SWEM.json b/inst/extdata/OSD/S/SWEM.json index ab7889d6bb..c45d629973 100644 --- a/inst/extdata/OSD/S/SWEM.json +++ b/inst/extdata/OSD/S/SWEM.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 0.5 inch; slightly decomposed loose litter of needles and twigs." }, { - "name": "0e", + "name": "Oe", "top": 1, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SWIFT.json b/inst/extdata/OSD/S/SWIFT.json index e2e5691160..70e833ccc0 100644 --- a/inst/extdata/OSD/S/SWIFT.json +++ b/inst/extdata/OSD/S/SWIFT.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/S/SWIFTON.json b/inst/extdata/OSD/S/SWIFTON.json index 29d44b4f4e..5b7fafd005 100644 --- a/inst/extdata/OSD/S/SWIFTON.json +++ b/inst/extdata/OSD/S/SWIFTON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/S/SWINOMISH.json b/inst/extdata/OSD/S/SWINOMISH.json index 951d91ccec..d2d3c97e63 100644 --- a/inst/extdata/OSD/S/SWINOMISH.json +++ b/inst/extdata/OSD/S/SWINOMISH.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TABERNASH.json b/inst/extdata/OSD/T/TABERNASH.json index cba0520d6b..5d12e5e336 100644 --- a/inst/extdata/OSD/T/TABERNASH.json +++ b/inst/extdata/OSD/T/TABERNASH.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 to 1/2 inch; pine needles and twigs." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1/2 inch to 0; partially decomposed organic matter." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/T/TABLEROCK.json b/inst/extdata/OSD/T/TABLEROCK.json index 82e7d64ea2..e276a234af 100644 --- a/inst/extdata/OSD/T/TABLEROCK.json +++ b/inst/extdata/OSD/T/TABLEROCK.json @@ -73,8 +73,8 @@ [ { "name": "O", - "top": "NA", - "bottom": "NA", + "top": 4, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TABOR.json b/inst/extdata/OSD/T/TABOR.json index 09c0352fbc..5bbaf71abe 100644 --- a/inst/extdata/OSD/T/TABOR.json +++ b/inst/extdata/OSD/T/TABOR.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "Ap--0 to 15 cm (0 to 6 in); brown (10YR 4/3) fine sandy loam, pale brown (10YR 6/3) dry; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; many fine roots; 5 percent siliceous pebbles; common medium prominent strong brown (7.5YR 4/6) masses of iron accumulation; strongly acid; clear smooth boundary." }, + { + "name": "E", + "top": 15, + "bottom": 36, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "fine sandy loam", + "structure": "moderate medium and fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "E--15 to 36 (6 to 14 in); brown (10YR 5/3) fine sandy loam, pale brown (10YR 6/3) dry; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; many fine roots; 6 percent siliceous pebbles; common fine distinct dark yellowish brown (10YR 3/4) masses of iron accumulation; strongly acid, clear wavy boundary. (Combined thickness of the A and E horizons is 25 to 46 cm [10 to 18 in].)" + }, { "name": "Btss1", "top": 36, @@ -208,6 +231,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "BCtg1--170 to 183 cm (67 to 72 in); light gray (10YR 7/2) sandy clay loam, very pale brown (10YR 8/2) dry; weak coarse angular blocky structure; hard, firm, sticky and plastic; few fine roots; few fine pores; few patchy very dark grayish brown (10YR 3/2) clay films; few distinct brown (10YR 4/3) sand coats along surfaces of peds; few distinct grayish brown (10YR 5/2) clay films on vertical surfaces of peds; 8 percent siliceous pebbles; common coarse prominent dark yellowish brown (10YR 4/6) and common medium prominent brownish yellow (10YR 6/6) masses of iron accumulation; neutral; gradual smooth boundary." + }, + { + "name": "BCtg2", + "top": 183, + "bottom": 203, + "dry_hue": "10YR", + "dry_value": 8, + "dry_chroma": 1, + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, + "texture_class": "sandy clay loam", + "structure": "weak coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "BCtg2--183 to 203 (72 to 80 in); light gray (10YR 7/1) sandy clay loam, white (10YR 8/1) dry; weak coarse angular blocky structure; hard, friable, sticky and plastic; few fine roots; few fine pores; few patchy dark grayish brown (10YR 4/2) clay films on vertical ped faces; thick continuous prominent light yellowish brown (10YR 6/4) coats on vertical surfaces of peds; few siliceous pebbles; many coarse prominent yellowish red (5YR 5/8) and common medium prominent red (10R 4/6) masses of iron accumulation; neutral; gradual smooth boundary. (Combined thickness of the BC horizons is 0 to 76 cm [0 to 30 in].)" } ] ] diff --git a/inst/extdata/OSD/T/TAHAND.json b/inst/extdata/OSD/T/TAHAND.json index d25e6c3f5c..b527bc3ac8 100644 --- a/inst/extdata/OSD/T/TAHAND.json +++ b/inst/extdata/OSD/T/TAHAND.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TAKOTNA.json b/inst/extdata/OSD/T/TAKOTNA.json index 404f3cc619..00cbda0302 100644 --- a/inst/extdata/OSD/T/TAKOTNA.json +++ b/inst/extdata/OSD/T/TAKOTNA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "01--2 to 0 inches; Black (5YR 2/1) partially decomposed organic materials; many roots; very strongly acid; clear smooth boundary." }, + { + "name": "A1", + "top": 0, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "weak very fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A1--0 to 2 1/2 inches; Very dark grayish brown (10YR 3/2) very fine sandy loam; weak very fine granular structure; very friable; roots common; strongly acid; clear smooth boundary." + }, + { + "name": "C1", + "top": 6, + "bottom": 71, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "very fine sand", + "structure": "weak thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C1--2 1/2 to 28 inches; Olive gray (5Y 4/2) very fine sand, with thin strata of silt loam and fine sand; weak thin platy structure; very friable; roots common to 10 inches, few below; buried woody materials; neutral; gradual boundary." + }, { "name": "C2", "top": 71, diff --git a/inst/extdata/OSD/T/TALLAC.json b/inst/extdata/OSD/T/TALLAC.json index ebcdedd39a..14845c5f81 100644 --- a/inst/extdata/OSD/T/TALLAC.json +++ b/inst/extdata/OSD/T/TALLAC.json @@ -185,6 +185,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw2--81 to 109 cm; yellowish brown (10YR 5/6) very gravelly coarse sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine, fine and medium and few coarse roots; many very fine interstitial pores; 40 percent gravel and 1 percent cobbles; moderately acid (pH 5.8); abrupt smooth boundary. (28 to 46 cm thick)" + }, + { + "name": "Bqm", + "top": 109, + "bottom": 168, + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "coarse sandy loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "weakly cemented", + "cf_class": "very gravelly", + "pH": 5.5, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bqm--109 to 168; yellowish brown (10YR 5/4) and brown (7.5YR 5/4) very gravelly coarse sandy loam, dark brown (10YR 4/3 and 7.5YR 4/4) moist; massive; hard, firm, nonsticky and nonplastic; weakly cemented; few fine, medium and coarse roots; most of the roots are matted on the surface; 50 percent gravel, 1 percent cobbles; strongly acid (pH 5.5)." } ] ] diff --git a/inst/extdata/OSD/T/TALLADEGA.json b/inst/extdata/OSD/T/TALLADEGA.json index dd0327a2a3..016c5b331b 100644 --- a/inst/extdata/OSD/T/TALLADEGA.json +++ b/inst/extdata/OSD/T/TALLADEGA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TALLOWBOX.json b/inst/extdata/OSD/T/TALLOWBOX.json index 03562211b8..a7c9494fa6 100644 --- a/inst/extdata/OSD/T/TALLOWBOX.json +++ b/inst/extdata/OSD/T/TALLOWBOX.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TALLS.json b/inst/extdata/OSD/T/TALLS.json index b7203360d3..b741d662a2 100644 --- a/inst/extdata/OSD/T/TALLS.json +++ b/inst/extdata/OSD/T/TALLS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TAMELY.json b/inst/extdata/OSD/T/TAMELY.json index 186461ca9a..dc61a79a9c 100644 --- a/inst/extdata/OSD/T/TAMELY.json +++ b/inst/extdata/OSD/T/TAMELY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TAMFLAT.json b/inst/extdata/OSD/T/TAMFLAT.json index be94b6af05..9009f2db6e 100644 --- a/inst/extdata/OSD/T/TAMFLAT.json +++ b/inst/extdata/OSD/T/TAMFLAT.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TAMFORD.json b/inst/extdata/OSD/T/TAMFORD.json index 007f5a0619..6e8a2c550d 100644 --- a/inst/extdata/OSD/T/TAMFORD.json +++ b/inst/extdata/OSD/T/TAMFORD.json @@ -94,6 +94,29 @@ "topography": "NA", "narrative": "A1 -- 0-6 inches, reddish gray (5YR 5/2) clay loam, dark reddish brown (5YR 3/2) moist; weak fine blocky structure; very" }, + { + "name": "AC1", + "top": 15, + "bottom": 76, + "dry_hue": "2.5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "2.5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "weak coarse b+ocky", + "dry_rupture": "soft", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "AC1 -- 6-30, reddish brown (2.5YR 4/4) clay, dark reddish brown (2.5YR 3/4) moist; weak coarse b+ocky structure; extremely hard, extremely firm; co*mon intersecting slickensides; few soft masses" + }, { "name": "AC2", "top": 76, diff --git a/inst/extdata/OSD/T/TAMPICO.json b/inst/extdata/OSD/T/TAMPICO.json index 8d1c2340b5..d94628306c 100644 --- a/inst/extdata/OSD/T/TAMPICO.json +++ b/inst/extdata/OSD/T/TAMPICO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TANGLE.json b/inst/extdata/OSD/T/TANGLE.json index ad528704f8..a18c776c6f 100644 --- a/inst/extdata/OSD/T/TANGLE.json +++ b/inst/extdata/OSD/T/TANGLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--2 to 1 inches; fresh pine needles and twigs." }, { - "name": "02", + "name": "O2", "top": 3, "bottom": 0, "dry_hue": "NA", @@ -254,6 +254,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "BCt--43 to 57 inches; dark yellowish brown (10YR 4/6) cobbly sandy clay loam, dark yellowish brown (10YR 4/4) moist; strong medium angular blocky structure; slightly hard, friable, sticky and plastic; few very fine and fine roots; few very fine tubular pores; many thick clay films on peds, in pores, and as bridges; slightly acid (pH 6.5); abrupt wavy boundary. (13 to 32 inches thick)" + }, + { + "name": "R", + "top": 145, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--57+ inches; hard, highly fractured serpentinized peridotite." } ] ] diff --git a/inst/extdata/OSD/T/TANGOE.json b/inst/extdata/OSD/T/TANGOE.json index 64854fffd3..721e613075 100644 --- a/inst/extdata/OSD/T/TANGOE.json +++ b/inst/extdata/OSD/T/TANGOE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TARAL.json b/inst/extdata/OSD/T/TARAL.json index cb6fcaf8f1..862c947e8b 100644 --- a/inst/extdata/OSD/T/TARAL.json +++ b/inst/extdata/OSD/T/TARAL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TARKIO.json b/inst/extdata/OSD/T/TARKIO.json index 5dd81a3010..4f0746b00e 100644 --- a/inst/extdata/OSD/T/TARKIO.json +++ b/inst/extdata/OSD/T/TARKIO.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TATLUM.json b/inst/extdata/OSD/T/TATLUM.json index 857c5dd428..3f22cca861 100644 --- a/inst/extdata/OSD/T/TATLUM.json +++ b/inst/extdata/OSD/T/TATLUM.json @@ -143,7 +143,7 @@ { "name": "Cg3", "top": 107, - "bottom": "NA", + "bottom": 152, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TATOUCHE.json b/inst/extdata/OSD/T/TATOUCHE.json index a753910906..3f230329a7 100644 --- a/inst/extdata/OSD/T/TATOUCHE.json +++ b/inst/extdata/OSD/T/TATOUCHE.json @@ -74,7 +74,7 @@ { "name": "O", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TAWAH.json b/inst/extdata/OSD/T/TAWAH.json index 5aae3fe10c..6984977027 100644 --- a/inst/extdata/OSD/T/TAWAH.json +++ b/inst/extdata/OSD/T/TAWAH.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TEBAY.json b/inst/extdata/OSD/T/TEBAY.json index 7b5c49f518..a5f69ffdec 100644 --- a/inst/extdata/OSD/T/TEBAY.json +++ b/inst/extdata/OSD/T/TEBAY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TECOLOTE.json b/inst/extdata/OSD/T/TECOLOTE.json index 75254b4c1b..4f3259c9bf 100644 --- a/inst/extdata/OSD/T/TECOLOTE.json +++ b/inst/extdata/OSD/T/TECOLOTE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TEEWEE.json b/inst/extdata/OSD/T/TEEWEE.json index 6db9c7d504..fe423e45a2 100644 --- a/inst/extdata/OSD/T/TEEWEE.json +++ b/inst/extdata/OSD/T/TEEWEE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TEKLANIKA.json b/inst/extdata/OSD/T/TEKLANIKA.json index 8e44de0314..a6b455549d 100644 --- a/inst/extdata/OSD/T/TEKLANIKA.json +++ b/inst/extdata/OSD/T/TEKLANIKA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TELAY.json b/inst/extdata/OSD/T/TELAY.json index 7c99ff76ef..bb8e12a986 100644 --- a/inst/extdata/OSD/T/TELAY.json +++ b/inst/extdata/OSD/T/TELAY.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TELCHER.json b/inst/extdata/OSD/T/TELCHER.json index 3113f0da2d..0b9a7aecf8 100644 --- a/inst/extdata/OSD/T/TELCHER.json +++ b/inst/extdata/OSD/T/TELCHER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 2 inches; slightly decomposed organic litter." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TELOGIA.json b/inst/extdata/OSD/T/TELOGIA.json index a628503c48..037b1b148e 100644 --- a/inst/extdata/OSD/T/TELOGIA.json +++ b/inst/extdata/OSD/T/TELOGIA.json @@ -231,6 +231,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 48 inches; about 34 percent olive yellow (2.5Y 6/8), about 33 percent light olive brown (2.5Y 5/4), and about 33 percent light gray (2.5Y 7/2) clay loam; massive; firm; very sticky, very plastic; many white (10YR 8/1) limestone concretions; the areas of olive yellow and olive brown are masses of iron accumulation and the areas of light gray are iron depletions; moderately alkaline." + }, + { + "name": "R", + "top": 122, + "bottom": 140, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 8, + "moist_chroma": 1, + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--48 to 55+ inches; white (5Y 8/1) moderately hard limestone that is rippable my mechanized equipment; about 40 percent, by volume, hard limestone boulders; solution holes filled with clay comprise about 10 percent of the pedon." } ] ] diff --git a/inst/extdata/OSD/T/TENAS.json b/inst/extdata/OSD/T/TENAS.json index 54f76c1c23..2620899749 100644 --- a/inst/extdata/OSD/T/TENAS.json +++ b/inst/extdata/OSD/T/TENAS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TENERIFFE.json b/inst/extdata/OSD/T/TENERIFFE.json index 31b15ca086..67ffb4f9fc 100644 --- a/inst/extdata/OSD/T/TENERIFFE.json +++ b/inst/extdata/OSD/T/TENERIFFE.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TENEX.json b/inst/extdata/OSD/T/TENEX.json index 9cd880ed17..dff47806bb 100644 --- a/inst/extdata/OSD/T/TENEX.json +++ b/inst/extdata/OSD/T/TENEX.json @@ -70,6 +70,53 @@ ] ], "HORIZONS": [ - {} + [ + { + "name": "O", + "top": "NA", + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02 l\"-O--Black, highly decomposed organic layer from the forest vegetation; slightly cemented when dry." + }, + { + "name": "1O", + "top": 40, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "hard", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Competing Series and their Differentiae: These are the Brody, Craddock, Evaro, Holloway, Homestead, Huckleberry, and Wessel series. Brody and Huckleberry soils have hard rock strata between depths of 20 to 40 inches. Craddock, Evaro, Holloway and Wessel soils have B horizons developed in a mantle less than 20 inches thick and high in volcanic glass, also, Craddock, Evaro and Holloway soils have a buried light gray or white A2 horizon. Wessel soils have limestone bedrock between depths of 20 and 40 inches. Homestead solls have less than 20 percent clay in the 10- to 40-inch control section and their B horizon is developed in a loess mantle." + } + ] ] } diff --git a/inst/extdata/OSD/T/TENNEYCANYON.json b/inst/extdata/OSD/T/TENNEYCANYON.json index 903e6bc245..0ad7ecf1e7 100644 --- a/inst/extdata/OSD/T/TENNEYCANYON.json +++ b/inst/extdata/OSD/T/TENNEYCANYON.json @@ -208,6 +208,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C--60 to 65 inches; yellow (10YR 7/6) gravelly fine sand, yellowish brown (10YR 5/6) moist; single grain; loose, loose, nonsticky, and nonplastic; few very fine roots; many very fine interstitial pores; 20 percent gravel and paragravel; slight effervescent; slightly alkaline (pH 7.7); abrupt wavy boundary. (3 to 10 inches thick)" + }, + { + "name": "R", + "top": 165, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--65 + inches; Navajo Formation sandstone bedrock." } ] ] diff --git a/inst/extdata/OSD/T/TENSAS.json b/inst/extdata/OSD/T/TENSAS.json index fcb247d432..0300eb311d 100644 --- a/inst/extdata/OSD/T/TENSAS.json +++ b/inst/extdata/OSD/T/TENSAS.json @@ -256,7 +256,7 @@ "narrative": "2Bw'2--56 to 70 inches; light olive brown (2.5Y 5/3) silt loam; weak medium subangular blocky structure; friable, slightly sticky, nonplastic; many fine and medium roots throughout; many fine moderate continuity dendritic tubular pores; 1 percent fine faint irregular grayish brown (10YR 5/2) iron depletions on surfaces along root channels; 1 percent fine spherical iron-manganese concretions; 15 percent medium distinct irregular yellowish brown (10YR 5/6) masses of oxidized iron on faces of peds; slightly acid; diffuse smooth boundary." }, { - "name": "1", + "name": "2Bg\"1", "top": 178, "bottom": 193, "dry_hue": "NA", @@ -279,7 +279,7 @@ "narrative": "2Bg\"1--70 to 76 inches; gray (5Y 5/1) silty clay loam; weak medium subangular blocky structure; friable, slightly sticky, moderately plastic; many fine and medium roots throughout; many fine moderate continuity dendritic tubular pores; 1 percent fine faint irregular gray (5Y 6/1) iron depletions on surfaces along root channels; 25 percent medium prominent irregular yellowish brown (10YR 5/4) masses of oxidized iron on faces of peds; moderately acid; diffuse smooth boundary." }, { - "name": "2", + "name": "2Bg\"2", "top": 193, "bottom": 218, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TERRABELLA.json b/inst/extdata/OSD/T/TERRABELLA.json index 3ad81c9aad..2b01be5737 100644 --- a/inst/extdata/OSD/T/TERRABELLA.json +++ b/inst/extdata/OSD/T/TERRABELLA.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TETHRICK.json b/inst/extdata/OSD/T/TETHRICK.json index a532e54b6a..1b0d7d39d7 100644 --- a/inst/extdata/OSD/T/TETHRICK.json +++ b/inst/extdata/OSD/T/TETHRICK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; duff layer of fir needles, leaves, twigs and bark." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/T/TEX.json b/inst/extdata/OSD/T/TEX.json index 3a338f8e92..08b6bcd1a1 100644 --- a/inst/extdata/OSD/T/TEX.json +++ b/inst/extdata/OSD/T/TEX.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; undecomposed, undecomposed organic material like that of the horizon above." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TEXLA.json b/inst/extdata/OSD/T/TEXLA.json index d308cffefe..e9a2cbde40 100644 --- a/inst/extdata/OSD/T/TEXLA.json +++ b/inst/extdata/OSD/T/TEXLA.json @@ -117,6 +117,75 @@ "topography": "wavy", "narrative": "E--10 to 23 cm (4 to 9 in); light yellowish brown (10YR 6/4) silt loam; weak medium subangular blocky structure; slightly hard, very friable; common fine and medium roots; many medium pores; 1 percent fine dark yellowish brown (10YR 4/6) iron accumulations with sharp boundaries lining pores; 1 percent faint light brownish gray (10YR 6/2) iron depletions with sharp boundaries adjacent to iron accumulations; very strongly acid; gradual wavy boundary. (8 to 25 cm [3 to 10 in] thick)" }, + { + "name": "Bt/E", + "top": 23, + "bottom": 56, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 6, + "texture_class": "silty clay loam", + "structure": "moderate medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt/E--23 to 56 (9 to 22 in); yellowish brown (10YR 5/6) silty clay loam (Bt); moderate medium prismatic structure parting to moderate medium subangular blocky; hard, friable; many coarse and medium, and few fine roots; many medium pores; 5 percent faint yellowish brown (10YR 5/6) clay films on surfaces of prisms; 40 percent pale brown (10YR 6/3) albic material (E) on surface of prisms; 5 percent distinct reddish yellow (7.5YR 6/8) iron accumulations with sharp boundaries lining pores; 1 percent distinct light brownish gray (10YR 6/2) iron depletions with sharp boundaries adjacent to iron accumulations; few crawfish krotovina filled with grayish brown (10YR 5/2) loam; very strongly acid; gradual wavy boundary. (25 to 64 cm [10 to 25 in] thick)" + }, + { + "name": "Bt", + "top": 56, + "bottom": 84, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "moderate medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt--56 to 84 (22 to 33 in); grayish brown (10YR 5/2) clay; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, very firm; few fine roots along ped faces; common fine pores; 20 percent fine and medium prominent strong brown (7.5YR 5/6) iron accumulations with sharp boundaries in matrix; 5 percent fine and medium prominent red (2.5YR 4/6) iron accumulations with sharp boundaries on ped exteriors; 2 percent fine faint gray (10YR 6/1) iron depletions with sharp boundaries in matrix; common pressure faces; few crawfish krotovinas filled with light gray (10YR 7/1) clay loam; very strongly acid; gradual wavy boundary. (13 to 51 cm [5 to 20 in] thick)" + }, + { + "name": "Btss", + "top": 84, + "bottom": 119, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 1, + "texture_class": "clay loam", + "structure": "moderate medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Btss--84 to 119 (33 to 47 in); gray (10YR 6/1) clay; moderate medium prismatic structure parting to moderate medium angular blocky; very hard, very firm; few fine roots along ped faces; many fine and medium pores; common medium prominent red (2.5YR 4/6) and common medium distinct yellowish brown (10YR 5/6) iron accumulations with sharp boundaries; 20 percent prominent pressure faces; 15 percent distinct slickensides; few crawfish krotovinas filled with light gray (10YR 7/1) clay and clay loam; very strongly acid; gradual wavy boundary. (combined thickness of the Btss and Btssg horizon is 64 to 140 [25 to 55 in])" + }, { "name": "Btg", "top": 119, diff --git a/inst/extdata/OSD/T/THETIS.json b/inst/extdata/OSD/T/THETIS.json index 78358ebb5b..6b9312bb75 100644 --- a/inst/extdata/OSD/T/THETIS.json +++ b/inst/extdata/OSD/T/THETIS.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/THIRSTYGULCH.json b/inst/extdata/OSD/T/THIRSTYGULCH.json index 243f9f2c4e..432eed312e 100644 --- a/inst/extdata/OSD/T/THIRSTYGULCH.json +++ b/inst/extdata/OSD/T/THIRSTYGULCH.json @@ -165,7 +165,7 @@ }, { "name": "R", - "top": "NA", + "top": 47, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/T/THISTLEBURN.json b/inst/extdata/OSD/T/THISTLEBURN.json index 772841cfa8..7d48614bb0 100644 --- a/inst/extdata/OSD/T/THISTLEBURN.json +++ b/inst/extdata/OSD/T/THISTLEBURN.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 inch to 0; slightly decomposed needles, leaves, and twigs." + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/T/THISTLEDEW.json b/inst/extdata/OSD/T/THISTLEDEW.json index d90c839446..b51ad6ca25 100644 --- a/inst/extdata/OSD/T/THISTLEDEW.json +++ b/inst/extdata/OSD/T/THISTLEDEW.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a", + "name": "Oa", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/THORNTON.json b/inst/extdata/OSD/T/THORNTON.json index 388e4a5f43..9812658189 100644 --- a/inst/extdata/OSD/T/THORNTON.json +++ b/inst/extdata/OSD/T/THORNTON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 3, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--2 to 1 inch; leaves, twigs, and needles." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THRASH.json b/inst/extdata/OSD/T/THRASH.json index dd11e6fb37..b904ba28c3 100644 --- a/inst/extdata/OSD/T/THRASH.json +++ b/inst/extdata/OSD/T/THRASH.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", - "top": "NA", - "bottom": "NA", + "name": "O2", + "top": 3, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THREECHOP.json b/inst/extdata/OSD/T/THREECHOP.json index 3e5c36cba2..6e2b105e7e 100644 --- a/inst/extdata/OSD/T/THREECHOP.json +++ b/inst/extdata/OSD/T/THREECHOP.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THREEFORKS.json b/inst/extdata/OSD/T/THREEFORKS.json index 8e3f9b2ced..9cf4279be1 100644 --- a/inst/extdata/OSD/T/THREEFORKS.json +++ b/inst/extdata/OSD/T/THREEFORKS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THREETREES.json b/inst/extdata/OSD/T/THREETREES.json index ee230514f2..3e090e40d8 100644 --- a/inst/extdata/OSD/T/THREETREES.json +++ b/inst/extdata/OSD/T/THREETREES.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THURLONI.json b/inst/extdata/OSD/T/THURLONI.json index dbd2247f19..fa0e9d0e2d 100644 --- a/inst/extdata/OSD/T/THURLONI.json +++ b/inst/extdata/OSD/T/THURLONI.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/THURMONT.json b/inst/extdata/OSD/T/THURMONT.json index c11b9f4a6e..64bc3d9b90 100644 --- a/inst/extdata/OSD/T/THURMONT.json +++ b/inst/extdata/OSD/T/THURMONT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 2 inches; partially decomposed and fresh leaves twigs of deciduous trees." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TIEFORT.json b/inst/extdata/OSD/T/TIEFORT.json index fc828de219..201a91b33d 100644 --- a/inst/extdata/OSD/T/TIEFORT.json +++ b/inst/extdata/OSD/T/TIEFORT.json @@ -162,6 +162,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Btk2 -- 15 to 28 inches; light yellowish brown (10YR 6/4) very gravelly sandy clay loam, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, friable, sticky and slightly plastic; many very fine, common medium roots; fine irregular threads of carbonate throughout; many distinct continuous clay films on faces of peds and in pores; strongly effervescent; 35 percent gravel and 5 percent cobbles; moderately alkaline (pH 8.2); clear wavy boundary. (Combined thickness of the Bt horizon is 14 to 24 inches)" + }, + { + "name": "R", + "top": 71, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R -- 28+ inches; unweathered, fractured basaltic bedrock with pockets of weathered bedrock material of moderate excavation difficulty." } ] ] diff --git a/inst/extdata/OSD/T/TIGUA.json b/inst/extdata/OSD/T/TIGUA.json index 199eb2c433..87560c2b76 100644 --- a/inst/extdata/OSD/T/TIGUA.json +++ b/inst/extdata/OSD/T/TIGUA.json @@ -116,6 +116,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--10 to 50 inches; pinkish gray (5YR 6/2) clay, reddish gray (5YR 5/2) moist; few parallel piped structural aggregates; extremely hard, extremely firm; contains a few cracks 1-1/2 cm wide extending from upper boundary to 30 inches; bedding planes that become more pronounced with depth; few salt deposits; effervescent; moderately alkaline; abrupt wavy boundary. (35 to 60 inches thick)" + }, + { + "name": "2C2", + "top": 127, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 2, + "texture_class": "very fine sandy loam", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "2C2--50 to 60+ inches; light gray (10YR 7/2) stratified silt loam, very fine sandy loam, and silt, grayish brown (10YR 5/2) moist; structureless; soft; friable; effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/T/TIHONET.json b/inst/extdata/OSD/T/TIHONET.json index c9694fc88b..ae52561284 100644 --- a/inst/extdata/OSD/T/TIHONET.json +++ b/inst/extdata/OSD/T/TIHONET.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 1, + "texture_class": "NA", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe -- 0 to 1 centimeter; black (10YR 2/1) moist, moderately decomposed plant material; weak fine granular structure; very friable; many fine roots throughout and many very fine roots throughout; strongly acid; abrupt smooth boundary. (0 to 15 centimeters thick.)" + }, { "name": "^A", "top": 1, diff --git a/inst/extdata/OSD/T/TILLICUM.json b/inst/extdata/OSD/T/TILLICUM.json index 04cc98df6e..7e9a67919c 100644 --- a/inst/extdata/OSD/T/TILLICUM.json +++ b/inst/extdata/OSD/T/TILLICUM.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -120,7 +120,7 @@ { "name": "Bw", "top": 20, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "BC", - "top": "NA", + "top": 41, "bottom": 61, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/T/TIMBERLY.json b/inst/extdata/OSD/T/TIMBERLY.json index 044840c377..4f06147ffc 100644 --- a/inst/extdata/OSD/T/TIMBERLY.json +++ b/inst/extdata/OSD/T/TIMBERLY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O1--1/2 inch to 0; loose litter of leaves, needles, etc." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/T/TINKER.json b/inst/extdata/OSD/T/TINKER.json index 68fa5180a7..22a93ce513 100644 --- a/inst/extdata/OSD/T/TINKER.json +++ b/inst/extdata/OSD/T/TINKER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TIPTOP.json b/inst/extdata/OSD/T/TIPTOP.json index ee03d7a88a..549a557e61 100644 --- a/inst/extdata/OSD/T/TIPTOP.json +++ b/inst/extdata/OSD/T/TIPTOP.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--l/2 to 0 inch; undecomposed forest litter. (l/2 to 1 inch thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/T/TISCH.json b/inst/extdata/OSD/T/TISCH.json index c7251901de..3a8f3161cd 100644 --- a/inst/extdata/OSD/T/TISCH.json +++ b/inst/extdata/OSD/T/TISCH.json @@ -97,7 +97,7 @@ { "name": "A3", "top": 18, - "bottom": "NA", + "bottom": 30, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "Cl", - "top": "NA", - "bottom": "NA", + "top": 30, + "bottom": 43, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 2, @@ -142,7 +142,7 @@ }, { "name": "C2", - "top": "NA", + "top": 43, "bottom": 66, "dry_hue": "l0YR", "dry_value": 7, diff --git a/inst/extdata/OSD/T/TISHAR.json b/inst/extdata/OSD/T/TISHAR.json index 82727cd506..1fb4761048 100644 --- a/inst/extdata/OSD/T/TISHAR.json +++ b/inst/extdata/OSD/T/TISHAR.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TIVY.json b/inst/extdata/OSD/T/TIVY.json index 281121ddbc..190f010ffe 100644 --- a/inst/extdata/OSD/T/TIVY.json +++ b/inst/extdata/OSD/T/TIVY.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "irregular", "narrative": "B2t--12 to 26 inches; brown (10YR 5/3) heavy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure with few to common thin clay films on ped faces and as coatings in tubular pores; hard, friable, slightly sticky; some angular gravel fragments of parent rock; few fine roots; many medium and fine tubular pores; slightly acid (pH 6.5); clear irregular boundary." + }, + { + "name": "C", + "top": 66, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C--26 + inches; gray to light gray with yellowish streaks, variably weathered and broken hornblende schist; rock fabric clearly visible; joint planes nearly vertical; some dark brown clay coatings on fracture planes in the upper part; a few roots penetrate along these breaks; several feet to unweathered rock (R)." } ] ] diff --git a/inst/extdata/OSD/T/TOAGS.json b/inst/extdata/OSD/T/TOAGS.json index 6652002a64..18f5bf6bd4 100644 --- a/inst/extdata/OSD/T/TOAGS.json +++ b/inst/extdata/OSD/T/TOAGS.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "C1--24 to 42 inches (61 to 107 centimeters); grayish brown (10YR 5/2) gravelly coarse sand, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; loose, loose, nonsticky and nonplastic; common very fine roots; many very fine irregular pores; 20 percent gravel; neutral (pH 6.6); clear wavy boundary." + }, + { + "name": "C2", + "top": 107, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "coarse sand", + "structure": "single grain", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--42 to 60 (107 to 152 centimeters); light brownish gray (10YR 6/2) gravelly coarse sand, light yellowish brown (10YR 6/4) moist; single grain; loose, loose, nonsticky and nonplastic; many very fine irregular pores; 10 percent gravel; neutral (pH 6.7)." } ] ] diff --git a/inst/extdata/OSD/T/TOKEEN.json b/inst/extdata/OSD/T/TOKEEN.json index 05ec88bb97..f39a5df0f4 100644 --- a/inst/extdata/OSD/T/TOKEEN.json +++ b/inst/extdata/OSD/T/TOKEEN.json @@ -117,6 +117,52 @@ "topography": "wavy", "narrative": "Oe--11 to 0 inches; very dusky red (10R 2.5/2) forest litter; many fine and common medium and coarse roots; extremely acid (pH 4.0); abrupt wavy boundary. (5 to 11 inches thick)" }, + { + "name": "E", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "sandy loam", + "structure": "weak fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 4, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "broken", + "narrative": "E--0 to 1/2 inch; very dark gray (5YR 3/1) gravelly sandy loam; weak fine granular structure; very friable, nonsticky, nonplastic; 30 percent coarse fragments; few fine, medium, and coarse roots; extremely acid (pH 4.0); abrupt broken boundary. (0 to 1 inch thick)" + }, + { + "name": "Bhs", + "top": 1, + "bottom": 5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "N", + "moist_value": 2, + "moist_chroma": 0, + "texture_class": "sandy loam", + "structure": "weak very fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 4.5, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Bhs--1/2 to 2 inches; black (N 2/0) to dark reddish brown (2.5 YR 2/4) gravelly sandy loam; weak very fine granular structure; very friable, slightly sticky, slightly plastic; 30 percent coarse fragments; few fine and medium roots; very strongly acid (pH 4.5); abrupt wavy boundary. (1 to 3 inches thick)" + }, { "name": "Bs1", "top": 5, diff --git a/inst/extdata/OSD/T/TOKLAT.json b/inst/extdata/OSD/T/TOKLAT.json index 1363d49d9e..e71ed61fdd 100644 --- a/inst/extdata/OSD/T/TOKLAT.json +++ b/inst/extdata/OSD/T/TOKLAT.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "smooth", "narrative": "Oe--2 inches to 0; dark brown (7.5YR 3/2) mat of partially decomposed forest litter; many roots; abrupt smooth boundary." }, + { + "name": "A", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak very fine granular", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A--0 to 1/2 inch; dark grayish brown (10YR 4/2) silt loam; weak very fine granular structure; very friable; many roots; very strongly acid; abrupt smooth boundary." + }, + { + "name": "E", + "top": 1, + "bottom": 38, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 7, + "moist_chroma": 1, + "texture_class": "loamy very fine sand", + "structure": "weak very thin platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "E--1/2 to 15 inches; light gray (10YR 7/1) loamy very fine sand; weak very thin platy structure; very friable; common roots; strongly acid; abrupt smooth boundary." + }, { "name": "Bsm", "top": 38, diff --git a/inst/extdata/OSD/T/TOLSONA.json b/inst/extdata/OSD/T/TOLSONA.json index d0c59f96f3..7244da91d3 100644 --- a/inst/extdata/OSD/T/TOLSONA.json +++ b/inst/extdata/OSD/T/TOLSONA.json @@ -97,7 +97,7 @@ { "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TOLSTOI.json b/inst/extdata/OSD/T/TOLSTOI.json index 065a1145b6..6802f2599f 100644 --- a/inst/extdata/OSD/T/TOLSTOI.json +++ b/inst/extdata/OSD/T/TOLSTOI.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--4 to 2 inches; undecomposed forest litter." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TOMAST.json b/inst/extdata/OSD/T/TOMAST.json index 741b752e02..baf6acd37d 100644 --- a/inst/extdata/OSD/T/TOMAST.json +++ b/inst/extdata/OSD/T/TOMAST.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", - "top": "NA", - "bottom": 0, + "name": "O1", + "top": 2, + "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TONSINA.json b/inst/extdata/OSD/T/TONSINA.json index f1fa59c89d..bac1dcd7b5 100644 --- a/inst/extdata/OSD/T/TONSINA.json +++ b/inst/extdata/OSD/T/TONSINA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TOP.json b/inst/extdata/OSD/T/TOP.json index 68a8e0ba60..05bacd8713 100644 --- a/inst/extdata/OSD/T/TOP.json +++ b/inst/extdata/OSD/T/TOP.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; slightly decomposed needles, twigs, grass." + }, + { + "name": "Oe", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oe--1/2 to 1 inch; moderately decomposed needles and grass." + }, { "name": "A1", "top": 3, diff --git a/inst/extdata/OSD/T/TOPIA.json b/inst/extdata/OSD/T/TOPIA.json index f864e6d901..ca35362474 100644 --- a/inst/extdata/OSD/T/TOPIA.json +++ b/inst/extdata/OSD/T/TOPIA.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Bt3--56 to 69 cm (22 to 27 in); reddish brown (5YR 4/3) clay, dark reddish brown (5YR 3/3) moist; weak fine and medium angular blocky structure very hard, very firm, sticky and plastic; few fine roots; patchy clay films on peds; few distinct pressure faces; dark organic stains on few peds; few vertical streaks of darker clay; estimated 2 percent by volume of 1 to 2 mm weakly cemented limestone fragments; few larger fragments; strongly effervescent; moderately alkaline; clear wavy boundary. Thickness is 0 to 23 cm (0 to 9 in)" }, + { + "name": "Bt4", + "top": 69, + "bottom": 76, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "clay", + "structure": "weak fine and medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "weakly cemented", + "cf_class": "very gravelly", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violently effervescent", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "Bt4--69 to 76 (27 to 30 in); reddish brown (5YR 4/4) very gravelly clay, dark reddish brown (5YR 3/4) moist; weak fine and medium subangular blocky structure; very hard, firm; few fine roots; estimated 50 percent by volume of weakly cemented limestone pebbles; many of the fragments are coated with clay; violently effervescent; moderately alkaline; abrupt wavy boundary. Thickness is 0 to 20 cm (0 to 8 in)" + }, { "name": "2Cr", "top": 76, diff --git a/inst/extdata/OSD/T/TOPSEY.json b/inst/extdata/OSD/T/TOPSEY.json index 5912c5fbf2..7ada8052e0 100644 --- a/inst/extdata/OSD/T/TOPSEY.json +++ b/inst/extdata/OSD/T/TOPSEY.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--48 to 71 cm (19 to 28 in); light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; few fine distict (10YR 5/8) yellowish brown and few fine faint (2.5Y 7/4) pale brown mottles; weak medium and coarse subangular blocky structure parting to moderate very fine subangular blocky; hard, friable; few fine roots; common fine tubular pores; common fine and medium and few coarse soft masses of calcium carbonate; about 5 percent fossil shells from 1/10 inch to 1 1/2 inches across; few thin grayish shale fragments; violent effervescence; moderately alkaline; gradual smooth boundary. Thickness is 15 to 64 cm (6 to 25 in)" + }, + { + "name": "2Cd", + "top": 71, + "bottom": 203, + "dry_hue": "2.5Y", + "dry_value": 7, + "dry_chroma": 4, + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "silty clay loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "violent effervescence", + "distinctness": "NA", + "topography": "NA", + "narrative": "2Cd-- 71 to 203 (28 to 80 in); pale yellow (2.5Y 7/4) marl with silty clay loam texture, light yellowish brown (2.5Y 6/4) moist interbedded with yellowish brown (10YR 5/8) and light gray (10YR 7/2) thin discontinuous shaly strata; massive; very hard, firm; few fine roots; common fine and medium soft masses of calcium carbonate, mainly in the upper part; about 2 percent fossil shells 1/10 inch to 1 1/2 inches across; violent effervescence; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/T/TORNERO.json b/inst/extdata/OSD/T/TORNERO.json index bd9d478413..19d7bb0552 100644 --- a/inst/extdata/OSD/T/TORNERO.json +++ b/inst/extdata/OSD/T/TORNERO.json @@ -117,6 +117,29 @@ "topography": "smooth", "narrative": "Bk1--20 to 51 cm (8 to 20 in); light yellowish brown (2.5Y 6/3) clay, light olive brown (2.5Y 5/3) moist; moderate fine and medium subangular blocky structure; soft, very friable, very sticky and very plastic; common fine and medium roots throughout; 28 percent calcium carbonate by volume as finely disseminated carbonates throughout; violently effervescent; moderately alkaline; gradual smooth boundary." }, + { + "name": "Bk2", + "top": 51, + "bottom": 80, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 3, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "sandy clay loam", + "structure": "weak coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "violently effervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Bk2--51 to 80 (20 to 31 in); light yellowish brown (2.5Y 6/3) sandy clay loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; slightly hard, friable, moderately sticky and moderately plastic; common fine roots throughout; 22 percent calcium carbonate by volume as finely disseminated carbonates throughout; violently effervescent; strongly alkaline; gradual smooth boundary. (Combined thickness of the Bk horizons is 15 to 102 cm [6 to 40 in].)" + }, { "name": "2Ab", "top": 80, diff --git a/inst/extdata/OSD/T/TORPEDO_LAKE.json b/inst/extdata/OSD/T/TORPEDO_LAKE.json index f803285bcb..3b8cfb9807 100644 --- a/inst/extdata/OSD/T/TORPEDO_LAKE.json +++ b/inst/extdata/OSD/T/TORPEDO_LAKE.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TOSCA.json b/inst/extdata/OSD/T/TOSCA.json index 9aea3438dd..b2e3ff3279 100644 --- a/inst/extdata/OSD/T/TOSCA.json +++ b/inst/extdata/OSD/T/TOSCA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TOURNQUIST.json b/inst/extdata/OSD/T/TOURNQUIST.json index 079433d1ad..7c425ef320 100644 --- a/inst/extdata/OSD/T/TOURNQUIST.json +++ b/inst/extdata/OSD/T/TOURNQUIST.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TRADEDOLLAR.json b/inst/extdata/OSD/T/TRADEDOLLAR.json index 63ff87b688..b33859cd0d 100644 --- a/inst/extdata/OSD/T/TRADEDOLLAR.json +++ b/inst/extdata/OSD/T/TRADEDOLLAR.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "E", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": "NA", @@ -119,7 +119,7 @@ }, { "name": "Bhs", - "top": "NA", + "top": 3, "bottom": 10, "dry_hue": "l0YR", "dry_value": 6, @@ -166,7 +166,7 @@ { "name": "Bs2", "top": 20, - "bottom": "NA", + "bottom": 33, "dry_hue": "7.5YR", "dry_value": 7, "dry_chroma": 6, @@ -188,7 +188,7 @@ }, { "name": "Bs3", - "top": "NA", + "top": 33, "bottom": 56, "dry_hue": "5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/T/TRAMWAY.json b/inst/extdata/OSD/T/TRAMWAY.json index b54fdf5827..e76976bde9 100644 --- a/inst/extdata/OSD/T/TRAMWAY.json +++ b/inst/extdata/OSD/T/TRAMWAY.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TRAPPER.json b/inst/extdata/OSD/T/TRAPPER.json index a97d0e5424..83833e4b46 100644 --- a/inst/extdata/OSD/T/TRAPPER.json +++ b/inst/extdata/OSD/T/TRAPPER.json @@ -70,6 +70,30 @@ ] ], "HORIZONS": [ - {} + [ + { + "name": "O", + "top": 1, + "bottom": "NA", + "dry_hue": "lOYR", + "dry_value": 3, + "dry_chroma": 1, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01 & l-O\"--Leaves and twigs of conifers and very dark gray (lOYR 3/1) organic mat, black (lOYR 02 2/1) moist; many very fine and medium roots; neutral (pH 7.0)." + } + ] ] } diff --git a/inst/extdata/OSD/T/TREEN.json b/inst/extdata/OSD/T/TREEN.json index 9269c014dd..ff05628f5c 100644 --- a/inst/extdata/OSD/T/TREEN.json +++ b/inst/extdata/OSD/T/TREEN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TRITON.json b/inst/extdata/OSD/T/TRITON.json index c8e1d118d2..ea7e08d96d 100644 --- a/inst/extdata/OSD/T/TRITON.json +++ b/inst/extdata/OSD/T/TRITON.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1 1/2 to 1/2 inches; needles, leaves, twigs, bark and wood fragments." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 6, + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "02--1/2 inch to 0; dark reddish brown (5YR 2/2) decomposing organic litter (pH 6.0); abrupt smooth boundary." + }, { "name": "B21ir", "top": 0, diff --git a/inst/extdata/OSD/T/TROUTVILLE.json b/inst/extdata/OSD/T/TROUTVILLE.json index 77a577cb18..1654b8ac64 100644 --- a/inst/extdata/OSD/T/TROUTVILLE.json +++ b/inst/extdata/OSD/T/TROUTVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 3 inches; undecomposed needles, bark, twigs, and grasses. (1 to 3 inches thick)" }, { - "name": "0e", + "name": "Oe", "top": 8, "bottom": 10, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TROUT_BAY.json b/inst/extdata/OSD/T/TROUT_BAY.json index ae9436e25e..14a1e2672b 100644 --- a/inst/extdata/OSD/T/TROUT_BAY.json +++ b/inst/extdata/OSD/T/TROUT_BAY.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0a1", + "name": "Oa1", "top": 0, "bottom": 18, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0a1--0 to 18 centimeters; black (10YR 2/1) broken face and rubbed muck; about 20 percent fiber, less than 5 percent rubbed; moderate medium granular structure; slightly sticky; strongly acid, (pH 5.5 in water); clear wavy boundary." }, { - "name": "0a2", + "name": "Oa2", "top": 18, "bottom": 48, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TROUT_CREEK.json b/inst/extdata/OSD/T/TROUT_CREEK.json index fd7436b908..6180dfa86b 100644 --- a/inst/extdata/OSD/T/TROUT_CREEK.json +++ b/inst/extdata/OSD/T/TROUT_CREEK.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "B2t--7 to 20 inches; variegated light olive brown (2.5Y 5/3) and reddish brown (2.5YR 5/3) light clay, olive brown (2.5Y 4/3) and reddish brown (2.5YR 4/3) moist; strong fine angular blocky structure; slightly hard, firm; thin continuous wax-like coatings on some faces of peds and discontinuous wax-like coatings and fillings on the inside of root channels and pores; noncalcareous; mildly alkaline (pH 7.6); clear smooth boundary. (8 to 41 inches thick)" }, + { + "name": "B3ca", + "top": 51, + "bottom": 61, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "weak fine subangular and angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 8, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "B3ca--20 to 24 variegated grayish brown (2.5Y 5/2) and reddish brown (5YR 5/3) light clay, dark grayish brown (2.5Y 4/2) and reddish brown (5YR 4/3) moist; weak fine subangular and angular blocky structure; slightly hard, very friable, sticky, plastic; peds are extremely hard, very firm; few thin glossy patches on some faces of peds and discontinuous glossy coatings on the inside of root channels and pores; visible secondary calcium carbonate occurring as concretions and in thin seams and streaks; calcareous; moderately alkaline (pH 8.0); gradual smooth boundary. (3 to 8 inches thick)" + }, { "name": "C1ca", "top": 61, diff --git a/inst/extdata/OSD/T/TRUEFISSURE.json b/inst/extdata/OSD/T/TRUEFISSURE.json index dd26abe35d..2b4acc9195 100644 --- a/inst/extdata/OSD/T/TRUEFISSURE.json +++ b/inst/extdata/OSD/T/TRUEFISSURE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; slightly decomposed needles, leaves and twigs; loose." }, { - "name": "0a", + "name": "Oa", "top": 3, "bottom": 8, "dry_hue": "NA", @@ -189,7 +189,7 @@ { "name": "2Bw3", "top": 61, - "bottom": "NA", + "bottom": 107, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 4, diff --git a/inst/extdata/OSD/T/TRUMAN.json b/inst/extdata/OSD/T/TRUMAN.json index a16bf304be..b89fb4f7aa 100644 --- a/inst/extdata/OSD/T/TRUMAN.json +++ b/inst/extdata/OSD/T/TRUMAN.json @@ -208,6 +208,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "BC1--91 to 107 cm (36 to 42 inches); brownish yellow (10YR 6/6) silt loam; weak medium and thick platy-like varves; very friable; few fine distinct light brownish gray (10YR 6/2) Fe depletions; strongly effervescent; slightly alkaline; clear smooth boundary." + }, + { + "name": "BC2", + "top": 107, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 6, + "moist_chroma": 4, + "texture_class": "silt loam", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "BC2--107 to 152 (42 to 60 inches); light yellowish brown (10YR 6/4) silt loam; weak medium and thick platy-like varves; very friable; many fine faint light brownish gray (10YR 6/2) Fe depletions and many fine faint yellowish brown (10YR 5/8) Fe concentrations; strongly effervescent; slightly alkaline. . [Combined thickness of BC horizon is 0 to 66 cm (0 to 26 inches thick)]" } ] ] diff --git a/inst/extdata/OSD/T/TSADAKA.json b/inst/extdata/OSD/T/TSADAKA.json index fb1b984528..e33da53cdd 100644 --- a/inst/extdata/OSD/T/TSADAKA.json +++ b/inst/extdata/OSD/T/TSADAKA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 20, - "bottom": "NA", + "bottom": 8, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TSANA.json b/inst/extdata/OSD/T/TSANA.json index cb98f826fb..00ebd1d827 100644 --- a/inst/extdata/OSD/T/TSANA.json +++ b/inst/extdata/OSD/T/TSANA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TSIRKU.json b/inst/extdata/OSD/T/TSIRKU.json index b6fd92ee72..9ebcc3dc48 100644 --- a/inst/extdata/OSD/T/TSIRKU.json +++ b/inst/extdata/OSD/T/TSIRKU.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TUCKERVILLE.json b/inst/extdata/OSD/T/TUCKERVILLE.json index 18c700e664..ab5d2d1a14 100644 --- a/inst/extdata/OSD/T/TUCKERVILLE.json +++ b/inst/extdata/OSD/T/TUCKERVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TUFFIT.json b/inst/extdata/OSD/T/TUFFIT.json index 2593f989e6..99730b0235 100644 --- a/inst/extdata/OSD/T/TUFFIT.json +++ b/inst/extdata/OSD/T/TUFFIT.json @@ -162,6 +162,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Cca--29 to 48 inches; very pale brown (10YR 8/4) dry; to pale brown (10YR 6/3) moist; silty very fine sandy loam; friable, no definite structure; slightly to medium alkaline reaction; calcareous. (14 to 20 inches thick)" + }, + { + "name": "CD", + "top": 122, + "bottom": "NA", + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "CD-- 48 + inches; pale yellow, gray or very pale brown stratified silty to sandy parent alluvium. Range in thickness is several feet." } ] ] diff --git a/inst/extdata/OSD/T/TULERT.json b/inst/extdata/OSD/T/TULERT.json index b38d254830..522ba318b1 100644 --- a/inst/extdata/OSD/T/TULERT.json +++ b/inst/extdata/OSD/T/TULERT.json @@ -73,7 +73,7 @@ [ { "name": "Al2", - "top": "NA", + "top": 3, "bottom": 8, "dry_hue": "7.5YR", "dry_value": 6, @@ -120,7 +120,7 @@ { "name": "Bl2", "top": 20, - "bottom": "NA", + "bottom": 38, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "IIB2ltcab", - "top": "NA", + "top": 38, "bottom": 51, "dry_hue": "7.5YR", "dry_value": 5, @@ -189,7 +189,7 @@ { "name": "IIB23tcab", "top": 66, - "bottom": "NA", + "bottom": 79, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -211,7 +211,7 @@ }, { "name": "IIB3cab", - "top": "NA", + "top": 79, "bottom": 97, "dry_hue": "7.5YR", "dry_value": 7, diff --git a/inst/extdata/OSD/T/TULIK.json b/inst/extdata/OSD/T/TULIK.json index e4458942b6..88ff2fefab 100644 --- a/inst/extdata/OSD/T/TULIK.json +++ b/inst/extdata/OSD/T/TULIK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TUPUKNUK.json b/inst/extdata/OSD/T/TUPUKNUK.json index ca5b75b9f8..a9f357db04 100644 --- a/inst/extdata/OSD/T/TUPUKNUK.json +++ b/inst/extdata/OSD/T/TUPUKNUK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 10, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TUQUE.json b/inst/extdata/OSD/T/TUQUE.json index af77013eff..10fcd91b8c 100644 --- a/inst/extdata/OSD/T/TUQUE.json +++ b/inst/extdata/OSD/T/TUQUE.json @@ -162,6 +162,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "C--48 to 61 cm (19 to 24 inches); strong brown (7.5YR 5/6) gravelly clay; massive; firm; slightly sticky, slightly plastic; 30 percent, by volume, limestone gravel; moderately alkaline; violently effervescent; gradual wavy boundary. (0 to 20 centimeters, 0 to 8 inches thick)" + }, + { + "name": "Cr", + "top": 61, + "bottom": 152, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "soft", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--61 to 152+ cm (24 to 60+ inches); soft limestone bedrock." } ] ] diff --git a/inst/extdata/OSD/T/TURNERVILLE.json b/inst/extdata/OSD/T/TURNERVILLE.json index 6ce03a2de5..1fbc37952a 100644 --- a/inst/extdata/OSD/T/TURNERVILLE.json +++ b/inst/extdata/OSD/T/TURNERVILLE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; undecomposed forest litter." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/T/TUSIP.json b/inst/extdata/OSD/T/TUSIP.json index 64d6d92244..c8d3b88b12 100644 --- a/inst/extdata/OSD/T/TUSIP.json +++ b/inst/extdata/OSD/T/TUSIP.json @@ -74,7 +74,7 @@ { "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TUXEKAN.json b/inst/extdata/OSD/T/TUXEKAN.json index e95d531042..92fcf340f6 100644 --- a/inst/extdata/OSD/T/TUXEKAN.json +++ b/inst/extdata/OSD/T/TUXEKAN.json @@ -71,9 +71,55 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 11, + "bottom": 10, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--11 to 10-1/2 inches; undecomposed forest litter." + }, + { + "name": "Oe", + "top": 10, + "bottom": 0.5, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 4, + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe--10-1/2 to 2 inches; very dusky red (2.5YR 2/2) mucky peat; many fine, medium, and coarse roots; extremely acid (pH 4.0); abrupt smooth boundary. (3 to 10 inches thick)" + }, { "name": "Oa", - "top": 5, + "top": 2, "bottom": 0, "dry_hue": "NA", "dry_value": "NA", @@ -97,7 +143,7 @@ { "name": "E", "top": 0, - "bottom": 3, + "bottom": 1, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -119,8 +165,8 @@ }, { "name": "Bhs", - "top": 3, - "bottom": 8, + "top": 1, + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -142,8 +188,8 @@ }, { "name": "Bs", - "top": 8, - "bottom": 13, + "top": 3, + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -165,8 +211,8 @@ }, { "name": "C1", - "top": 13, - "bottom": 41, + "top": 5, + "bottom": 16, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -188,8 +234,8 @@ }, { "name": "2C2", - "top": 41, - "bottom": 152, + "top": 16, + "bottom": 60, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TWINSI.json b/inst/extdata/OSD/T/TWINSI.json index 48b019fa66..8a9842ad22 100644 --- a/inst/extdata/OSD/T/TWINSI.json +++ b/inst/extdata/OSD/T/TWINSI.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/T/TYSON.json b/inst/extdata/OSD/T/TYSON.json index 3de9240706..cbeb3f2150 100644 --- a/inst/extdata/OSD/T/TYSON.json +++ b/inst/extdata/OSD/T/TYSON.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/U/UFFENS.json b/inst/extdata/OSD/U/UFFENS.json index 9b5ce43de8..066ac50114 100644 --- a/inst/extdata/OSD/U/UFFENS.json +++ b/inst/extdata/OSD/U/UFFENS.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "E", + "top": 0, + "bottom": 1, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak thin platy", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.7, + "pH_class": "strongly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "E--0 to 1/2 inches; light gray (10YR 7/2) silt loam, grayish brown (10YR 5/2) moist; weak thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common fine pores; strongly effervescent; strongly alkaline (pH 8.7); clear smooth boundary. (1/2 to 6 inches thick)" + }, + { + "name": "Btn1", + "top": 1, + "bottom": 8, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "sandy clay loam", + "structure": "moderate medium columnar", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 9.3, + "pH_class": "very strongly alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Btn1--1/2 to 3 inches; light brownish gray (2.5Y 6/2) sandy clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium columnar structure that parts to weak fine blocky; very hard, firm, slightly sticky and plastic; few fine roots; many fine vesicular pores; common thin clay films on faces of peds; strongly effervescent; very strongly alkaline (pH 9.3); clear smooth boundary. (2 to 13 inches thick)" + }, { "name": "Btn2", "top": 8, diff --git a/inst/extdata/OSD/U/UGAK.json b/inst/extdata/OSD/U/UGAK.json index a59c8099d4..e7a1170798 100644 --- a/inst/extdata/OSD/U/UGAK.json +++ b/inst/extdata/OSD/U/UGAK.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--1 1/2 inches to 0; dark brown (7.5YR 3/2) mat of partially decayed organic materials; abrupt smooth boundary. (1 to 4 inches thick)" + }, { "name": "C", "top": 0, diff --git a/inst/extdata/OSD/U/ULHALF.json b/inst/extdata/OSD/U/ULHALF.json index 41f65cccc2..93a8bc8d4e 100644 --- a/inst/extdata/OSD/U/ULHALF.json +++ b/inst/extdata/OSD/U/ULHALF.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/U/ULRICHER.json b/inst/extdata/OSD/U/ULRICHER.json index 71b23661fb..cc5d4b9932 100644 --- a/inst/extdata/OSD/U/ULRICHER.json +++ b/inst/extdata/OSD/U/ULRICHER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/U/UMATILLA.json b/inst/extdata/OSD/U/UMATILLA.json index d6b3355b65..2b64da5dc8 100644 --- a/inst/extdata/OSD/U/UMATILLA.json +++ b/inst/extdata/OSD/U/UMATILLA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/U/UMIAT.json b/inst/extdata/OSD/U/UMIAT.json index 254e16106b..8001ba963a 100644 --- a/inst/extdata/OSD/U/UMIAT.json +++ b/inst/extdata/OSD/U/UMIAT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 20, "bottom": 8, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "01--8 to 3 inches; dark reddish brown (5YR 2/2) partially decomposed hypnum moss; many roots; abrupt smooth boundary. (20 to 8 cm)" }, { - "name": "02", + "name": "O2", "top": 8, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/U/UNAKWIK.json b/inst/extdata/OSD/U/UNAKWIK.json index b3e8cabe0c..00ed62bba0 100644 --- a/inst/extdata/OSD/U/UNAKWIK.json +++ b/inst/extdata/OSD/U/UNAKWIK.json @@ -94,6 +94,121 @@ "topography": "smooth", "narrative": "Oil--0 to 3 inches; dark reddish brown (5YR 3/3 broken face, 5YR 3/4 pressed and rubbed) fibric peat, 90 percent fibers, 75 percent rubbed; many fine roots; very strongly acid; clear smooth boundary." }, + { + "name": "Oe1", + "top": 8, + "bottom": 14, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Oel--3 to 5 1/2 inches; dark reddish brown (5YR 3/3 broken face, pressed, and rubbed) hemic peat; 80 percent fibers, 50 percent rubbed; many fine roots; very strongly acid; clear smooth boundary." + }, + { + "name": "Oe2", + "top": 14, + "bottom": 28, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe2--5 1/2 to 11 inches; dark reddish brown (5YR 3/2 broken face, 5YR 3/3 pressed and rubbed) hemic peat; 50 percent fibers, 40 percent rubbed; few roots; strongly acid; abrupt smooth boundary." + }, + { + "name": "IICI", + "top": 28, + "bottom": 29, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "fine sandy loam", + "structure": "massive", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "IICI--11 to 11 1/2 inches; dark grayish brown (10YR 4/2) fine sandy loam; massive; loose; few roots; strongly acid; abrupt smooth boundary." + }, + { + "name": "Oe3", + "top": 29, + "bottom": 70, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oe3--11 1/2 to 27 1/2 inches; dark reddish brown (5YR 3/2 broken face, 5YR 3/3 pressed and rubbed) hemic peat; 60 percent fibers, 30 percent rubbed; few roots; strongly acid; abrupt smooth boundary." + }, + { + "name": "IIC2", + "top": 70, + "bottom": 71, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "IIC2--27 1/2 to 28 inches; volcanic ash. Similar to horizon IICI." + }, { "name": "Oe4", "top": 71, diff --git a/inst/extdata/OSD/U/UNCAS.json b/inst/extdata/OSD/U/UNCAS.json index a21ed52a23..c5073f0eef 100644 --- a/inst/extdata/OSD/U/UNCAS.json +++ b/inst/extdata/OSD/U/UNCAS.json @@ -74,7 +74,7 @@ { "name": "Op", "top": 0, - "bottom": "NA", + "bottom": 18, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 1, diff --git a/inst/extdata/OSD/U/UNGENE.json b/inst/extdata/OSD/U/UNGENE.json index 3565d019af..bc0e4866d8 100644 --- a/inst/extdata/OSD/U/UNGENE.json +++ b/inst/extdata/OSD/U/UNGENE.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Bk2--36 to 76 cm; very pale brown (10YR 7/3) very gravelly loamy coarse sand, brown (10YR 5/3) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine, fine and common medium roots; many very fine and fine interstitial pores; many distinct secondary calcium carbonate coats on the bottom of rock fragments; 55 percent gravel; violently effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (38 to 50 cm thick)" }, + { + "name": "C", + "top": 76, + "bottom": 132, + "dry_hue": "10YR", + "dry_value": 7, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "loamy coarse sand", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.4, + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "C--76 to 132 cn thick; very pale brown (10YR 7/3) loamy coarse sand, brown (10YR 5/3) moist; massive, soft, very friable, nonsticky and nonplastic; many very fine, fine and few medium roots; many very fine tubular and interstitial pores; 10 percent gravel; strongly effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (46 to 58 cm thick)" + }, { "name": "Ck", "top": 132, diff --git a/inst/extdata/OSD/U/UPDEGRAFF.json b/inst/extdata/OSD/U/UPDEGRAFF.json index 82bcd14d73..5a6d5762d4 100644 --- a/inst/extdata/OSD/U/UPDEGRAFF.json +++ b/inst/extdata/OSD/U/UPDEGRAFF.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/U/UPSATA.json b/inst/extdata/OSD/U/UPSATA.json index b90409fd86..dde23b2929 100644 --- a/inst/extdata/OSD/U/UPSATA.json +++ b/inst/extdata/OSD/U/UPSATA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/U/UPTMOR.json b/inst/extdata/OSD/U/UPTMOR.json index 1bd63da6f8..6d4b6164c3 100644 --- a/inst/extdata/OSD/U/UPTMOR.json +++ b/inst/extdata/OSD/U/UPTMOR.json @@ -73,8 +73,8 @@ [ { "name": "Oe", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/U/URANDA.json b/inst/extdata/OSD/U/URANDA.json index 2f9761e577..3fd1466396 100644 --- a/inst/extdata/OSD/U/URANDA.json +++ b/inst/extdata/OSD/U/URANDA.json @@ -208,6 +208,29 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "C1--46 to 54 inches; light olive brown (2.5Y 5/4) sandy loam, light yellowish brown (2.5Y 6/4) dry; many fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; hard, very friable, nonsticky and nonplastic; about 5 percent rock fragments; slight effervescence; strongly alkaline, gradual wavy boundary. (0 to 12 inches)" + }, + { + "name": "C2", + "top": 137, + "bottom": 203, + "dry_hue": "2.5Y", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 4, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly alkaline", + "eff_class": "slight effervescence", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--54 to 80; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; common fine prominent yellowish brown (10YR 5/6)redoximorphic concentrations and many medium distinct light olive brown (2.5Y 5/3) redoximorphic depletions; massive; hard, firm, slightly sticky and slightly plastic; about 2 percent rock fragments; slight effervescence; strongly alkaline." } ] ] diff --git a/inst/extdata/OSD/U/USTIBUCK.json b/inst/extdata/OSD/U/USTIBUCK.json index 177ba3858b..36c9bd67ed 100644 --- a/inst/extdata/OSD/U/USTIBUCK.json +++ b/inst/extdata/OSD/U/USTIBUCK.json @@ -116,6 +116,52 @@ "distinctness": "gradual", "topography": "smooth", "narrative": "Bss--25 to 79 cm (10 to 31 in); reddish brown (5YR 5/3) clay, reddish brown (5YR 4/3) moist; strong fine angular blocky structure; very hard, firm; few slickensides; common medium distinct dark reddish gray (5YR 4/2) iron depletions with diffuse boundaries; common fine very dark gray (N 3/) iron-manganese nodules; cracks 5 cm (2 in) wide; noneffervescent; slightly alkaline; gradual smooth boundary. (Thickness of the Bss horizon is 18 to 104 cm [7 to 41 in])" + }, + { + "name": "C", + "top": 79, + "bottom": 124, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silty clay", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "noneffervescent", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "C--79 to 124 (31 to 49 in); reddish brown (5YR 5/4) and reddish gray (5YR 5/2) silty clay; reddish brown (5YR 4/4) and dark reddish gray (5YR 4/2) moist; massive; very hard, firm; common fine very dark gray (N 3/) iron-manganese nodules; noneffervescent; moderately alkaline; gradual smooth boundary. (Thickness of the C horizon is 0 to 135 cm [0 to 53 in])" + }, + { + "name": "Ab", + "top": 124, + "bottom": 203, + "dry_hue": "5YR", + "dry_value": 4, + "dry_chroma": 1, + "moist_hue": "5YR", + "moist_value": 3, + "moist_chroma": 1, + "texture_class": "silty clay", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "noneffervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "Ab--124 to 203 (49 to 80 in); dark gray (5YR 4/1) silty clay; very dark gray (5YR 3/1) moist; massive; noneffervescent; moderately alkaline. (0 to 76 cm [0 to 30 in] thick)" } ] ] diff --git a/inst/extdata/OSD/U/UVALDE.json b/inst/extdata/OSD/U/UVALDE.json index a141628bb3..a79808e89c 100644 --- a/inst/extdata/OSD/U/UVALDE.json +++ b/inst/extdata/OSD/U/UVALDE.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A--0 to 43 cm (0 to 17 in); dark grayish brown (10YR 4/2) silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky and granular structure; hard, friable; 20 percent calcium carbonate equivalent; calcareous; moderately alkaline; gradual smooth boundary. Thickness is 25 to 51 cm (10 to 20 in)" }, + { + "name": "Bk1", + "top": 43, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "silty clay loam", + "structure": "moderate fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bk1--43 tp 86 cm (17 to 34 in); brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; moderate fine subangular blocky structure; hard, firm; few fine roots; few fine pores; few films and threads of segregated calcium carbonate; 30 percent calcium carbonate equivalent; calcareous; moderately alkaline; gradual wavy boundary. Thickness is 20 to 66 cm (8 to 26 in)" + }, { "name": "Bk2", "top": 86, diff --git a/inst/extdata/OSD/V/VABUS.json b/inst/extdata/OSD/V/VABUS.json index f429123b2e..c2288d3c63 100644 --- a/inst/extdata/OSD/V/VABUS.json +++ b/inst/extdata/OSD/V/VABUS.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VAILTON.json b/inst/extdata/OSD/V/VAILTON.json index 66704d6152..39649cd7ac 100644 --- a/inst/extdata/OSD/V/VAILTON.json +++ b/inst/extdata/OSD/V/VAILTON.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 3, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0e--l-1/2 inches to 0; needles, twigs and bark chips." + }, { "name": "Al", "top": 0, @@ -97,7 +120,7 @@ { "name": "A2", "top": 23, - "bottom": "NA", + "bottom": 46, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -119,7 +142,7 @@ }, { "name": "Bwl", - "top": "NA", + "top": 46, "bottom": 71, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/V/VALENCIA.json b/inst/extdata/OSD/V/VALENCIA.json index a9c4a9d2e1..0d226678c6 100644 --- a/inst/extdata/OSD/V/VALENCIA.json +++ b/inst/extdata/OSD/V/VALENCIA.json @@ -97,7 +97,7 @@ { "name": "Bw", "top": 20, - "bottom": "NA", + "bottom": 43, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 4, @@ -119,7 +119,7 @@ }, { "name": "Bk", - "top": "NA", + "top": 43, "bottom": 71, "dry_hue": "7.5YR", "dry_value": 6, @@ -143,7 +143,7 @@ { "name": "2Btkbl", "top": 71, - "bottom": "NA", + "bottom": 79, "dry_hue": "5YR", "dry_value": 6, "dry_chroma": 4, @@ -165,7 +165,7 @@ }, { "name": "2Btkb2", - "top": "NA", + "top": 79, "bottom": 99, "dry_hue": "5YR", "dry_value": 5, diff --git a/inst/extdata/OSD/V/VANANDA.json b/inst/extdata/OSD/V/VANANDA.json index 2a522cf53b..4709787f36 100644 --- a/inst/extdata/OSD/V/VANANDA.json +++ b/inst/extdata/OSD/V/VANANDA.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A11", + "top": 0, + "bottom": 1, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "silt", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "A11--0 to 1/4 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; massive crust in hexagonal shapes 2 to 4 inches in diameter; light brownish gray on top side with many clear silt grains; grayish brown on underside with clusters of granules and very fine plates adhering; hard, friable, very sticky, very plastic; noncalcareous; abrupt boundary. (1/8 to 1 inch thick)" + }, + { + "name": "A12", + "top": 1, + "bottom": 10, + "dry_hue": "2.5Y", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "2.5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "strong thin platy", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 8.3, + "pH_class": "moderately alkaline", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A12--1/4 to 4 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate grading to strong thin platy structure, plates crumble to moderate very fine subangular blocks; hard, firm, very sticky, very plastic; slightly calcareous; many very fine roots; moderately alkaline; (pH 8.3); clear smooth boundary. (2 to 6 inches thick)" + }, { "name": "B2", "top": 10, diff --git a/inst/extdata/OSD/V/VANDAMME.json b/inst/extdata/OSD/V/VANDAMME.json index 3a7a744a2c..e4b57e3a72 100644 --- a/inst/extdata/OSD/V/VANDAMME.json +++ b/inst/extdata/OSD/V/VANDAMME.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VANELLA.json b/inst/extdata/OSD/V/VANELLA.json index e4af8fa575..5cc6ef642f 100644 --- a/inst/extdata/OSD/V/VANELLA.json +++ b/inst/extdata/OSD/V/VANELLA.json @@ -185,6 +185,52 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--61 to 81 cm (24 to 32 inches); strong brown (7.5YR 5/6) gravelly loam; moderate medium subangular blocky structure; friable, slightly sticky, nonplastic; few fine through coarse roots; common faint clay films on faces of peds; 17 percent sandstone gravel and 8 percent cobbles; very strongly acid; clear wavy boundary." + }, + { + "name": "Bt2", + "top": 81, + "bottom": 130, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "clay loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "cobbly", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bt2--81 to 130 (32 to 51 inches); yellowish red (5YR 4/6) cobbly clay loam; moderate medium subangular blocky structure; firm, slightly sticky, slightly plastic; few fine and medium roots; many distinct clay films on faces of peds; 17 percent sandstone cobbles and 5 percent gravel; very strongly acid; clear wavy boundary." + }, + { + "name": "Bt3", + "top": 130, + "bottom": 165, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5YR", + "moist_value": 4, + "moist_chroma": 8, + "texture_class": "clay loam", + "structure": "moderate medium subangular blocky", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "cobbly", + "pH": "NA", + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bt3--130 to 165 (51 to 65 inches); red (2.5YR 4/8) cobbly clay loam; moderate medium subangular blocky structure; firm, slightly sticky, slightly plastic; many distinct clay films on faces of peds; 17 percent sandstone cobbles and 5 percent gravel; very strongly acid. (Thickness of the Bt horizon is more than 89 cm)" } ] ] diff --git a/inst/extdata/OSD/V/VANEPPS.json b/inst/extdata/OSD/V/VANEPPS.json index 725f9fa3c5..05aec629da 100644 --- a/inst/extdata/OSD/V/VANEPPS.json +++ b/inst/extdata/OSD/V/VANEPPS.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oe", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "0i & Oe--1/2 to 0 inches; litter; abrupt wavy boundary. (0 to 1/2 inches thick)" + }, { "name": "A", "top": 0, @@ -116,6 +139,29 @@ "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bw--8 to 28 inches; olive (5Y 5/3) very cobbly loam, dark olive gray (5Y 3/2) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common very fine roots; common very fine tubular pores; 30 percent pebbles, 20 percent cobbles, (fresh face on rocks N5/; phenocryists 5Y 6/4, 5Y 4/3; weathering rhine, 5Y 5/3); (NaF pH 9.8); slightly acid (pH 6.4); abrupt wavy boundary. (12 to 30 inches thick)" + }, + { + "name": "Cr", + "top": 71, + "bottom": "NA", + "dry_hue": "5Y", + "dry_value": 5, + "dry_chroma": 1, + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 1, + "texture_class": "loam", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "very cobbly", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr--28 + inches; weathered serpentine breaking to gray (5Y 5/1), olive gray (5Y 5/2) very cobbly loam, dark gray (5Y 4/1) moist; fresh face on rocks 5Y 2/2, weathering rhine 5Y 5/3, few fine distinct (10YR 5/6) weathering pockets on rock fragments; massive very hard, very firm, nonsticky, nonplastic; 25 percent hard pebbles, 25 percent hard cobbles, (NaF pH 9.2); slightly acid (pH 6.4)." } ] ] diff --git a/inst/extdata/OSD/V/VANNOY.json b/inst/extdata/OSD/V/VANNOY.json index 2f312e7e99..114cba5c4c 100644 --- a/inst/extdata/OSD/V/VANNOY.json +++ b/inst/extdata/OSD/V/VANNOY.json @@ -73,8 +73,8 @@ [ { "name": "O", - "top": "NA", - "bottom": "NA", + "top": 2, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VANOCKER.json b/inst/extdata/OSD/V/VANOCKER.json index fc2ac7acf6..870bf18375 100644 --- a/inst/extdata/OSD/V/VANOCKER.json +++ b/inst/extdata/OSD/V/VANOCKER.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 2.5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/V/VANZANDT.json b/inst/extdata/OSD/V/VANZANDT.json index f8491ae704..5d1b974dc1 100644 --- a/inst/extdata/OSD/V/VANZANDT.json +++ b/inst/extdata/OSD/V/VANZANDT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -94,6 +94,52 @@ "topography": "NA", "narrative": "Oi--1 inch to 0; undecomposed needles, leaves and twigs; many medium roots." }, + { + "name": "A", + "top": 0, + "bottom": 4, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 2, + "moist_hue": "7.5YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "weak fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 5.2, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "A--0 to 1 1/2 inches; dark brown (7.5YR 3/2) very gravelly silt loam, brown (7.5YR 5/2) dry; weak fine granular structure; soft, very friable, slightly sticky, slightly plastic, and weakly smeary; common medium and coarse roots; many fine irregular pores; 25 percent hard pebbles and 20 percent channers; strongly acid (pH 5.2); clear smooth boundary. (1/2 to 2 inches thick)" + }, + { + "name": "Bs1", + "top": 4, + "bottom": 25, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "very gravelly", + "pH": 5.8, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Bs1--1 1/2 to 10 inches; dark brown (7.5YR 4/4) very gravelly loam, light yellowish brown (10YR 6/4) dry; weak fine subangular blocky structure; soft, very friable, slightly sticky, slightly plastic; and weakly smeary; many very fine, fine, medium, and coarse roots; many fine irregular pores; 25 percent hard pebbles and 10 percent channers; NaF pH 11.0, moderately acid (pH 5.8); abrupt smooth boundary. (4 to 11 inches thick)" + }, { "name": "Bs2", "top": 25, diff --git a/inst/extdata/OSD/V/VARELUM.json b/inst/extdata/OSD/V/VARELUM.json index acf2d2eaa0..75b67e731f 100644 --- a/inst/extdata/OSD/V/VARELUM.json +++ b/inst/extdata/OSD/V/VARELUM.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VASSAR.json b/inst/extdata/OSD/V/VASSAR.json index e42068efbf..d98a1189ee 100644 --- a/inst/extdata/OSD/V/VASSAR.json +++ b/inst/extdata/OSD/V/VASSAR.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; undecomposed coniferous needles and twigs." }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "10YR", diff --git a/inst/extdata/OSD/V/VERLOT.json b/inst/extdata/OSD/V/VERLOT.json index 5b2a833947..5308af594f 100644 --- a/inst/extdata/OSD/V/VERLOT.json +++ b/inst/extdata/OSD/V/VERLOT.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.4, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "01--1 1/2 inches to 0; partially decomposed leaves, twigs, and needles; strongly acid (pH 5.4); abrupt smooth boundary." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/V/VERNONIA.json b/inst/extdata/OSD/V/VERNONIA.json index ac094cb3f2..7b495c46fa 100644 --- a/inst/extdata/OSD/V/VERNONIA.json +++ b/inst/extdata/OSD/V/VERNONIA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VIBORAS.json b/inst/extdata/OSD/V/VIBORAS.json index cb4fb43972..ebaa7aa911 100644 --- a/inst/extdata/OSD/V/VIBORAS.json +++ b/inst/extdata/OSD/V/VIBORAS.json @@ -94,6 +94,29 @@ "topography": "smooth", "narrative": "A--0 to 8 cm (0 to 3 in); brown (7.5YR 4/2) clay, dark brown (7.5YR 3/2) moist; moderate medium angular blocky structure; very hard, very firm, very sticky and very plastic; many fine roots; few fine pores; surface has 12mm (0.5 in) mulch of brown (7.5YR 5/2) clay loam; few rounded pebbles on the surface; noncalcareous matrix, but parts of some peds are calcareous; moderately alkaline; clear smooth boundary. (0 to 25 cm [0 to 10 in])" }, + { + "name": "Bn", + "top": 8, + "bottom": "NA", + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 3, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "moderate coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "stronlgly effervescent", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bn--8 tp 23 cm (3 to 9 in); reddish brown (5YR 5/3) clay, reddish brown (5YR 4/3) moist; moderate coarse angular blocky structure; very hard, very firm, very sticky and very plastic; common fine roots; few fine pores; shiny pressure faces on ped surfaces; few waterworn pebbles and fragments of snail shells; few streaks of A material from above; 10 percent calcium carbonate equivalent; 3.0 dS/m; ESP is 18; stronlgly effervescent; slightly saline; moderately alkaline; clear wavy boundary. (0 to 61 cm [0 to 24 in])" + }, { "name": "Bnz", "top": 23, diff --git a/inst/extdata/OSD/V/VIEQUES.json b/inst/extdata/OSD/V/VIEQUES.json index 3de8177108..32b1f59eba 100644 --- a/inst/extdata/OSD/V/VIEQUES.json +++ b/inst/extdata/OSD/V/VIEQUES.json @@ -139,6 +139,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C--15 to 38 inches; yellowish brown (10YR 5/4) very gravelly coarse sand; single grained, loose; very friable; about 60 percent, by volume, coarse fragments of partially weathered plutonic rocks; neutral; abrupt smooth boundary. (20 to 30 inches thick)" + }, + { + "name": "R", + "top": 97, + "bottom": 127, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "R--38 to 50+ inches; consolidated granitic rock." } ] ] diff --git a/inst/extdata/OSD/V/VISION.json b/inst/extdata/OSD/V/VISION.json index f0cf16dfec..ffb0994c45 100644 --- a/inst/extdata/OSD/V/VISION.json +++ b/inst/extdata/OSD/V/VISION.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1/2 inch; forest litter of partially decomposed twigs and needles." + }, + { + "name": "A1", + "top": 1, + "bottom": 8, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 2, + "moist_chroma": 2, + "texture_class": "loam", + "structure": "weak fine platy", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "gravelly", + "pH": 6.4, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A1--1/2 to 3 inches; dark grayish brown (10YR 4/2) gravelly loam, very dark brown (10YR 2/2) moist; weak fine platy structure parting to weak fine granular; soft, very friable, slightly sticky and slightly plastic; many fine and very fine roots; many very fine pores; 13 percent angular pebbles, 5 percent cobbles; slightly acid (pH 6.4); abrupt smooth boundary." + }, { "name": "A2", "top": 8, diff --git a/inst/extdata/OSD/V/VISTA.json b/inst/extdata/OSD/V/VISTA.json index 1ee3ff4a7d..d2705f0ee9 100644 --- a/inst/extdata/OSD/V/VISTA.json +++ b/inst/extdata/OSD/V/VISTA.json @@ -208,6 +208,29 @@ "distinctness": "clear", "topography": "irregular", "narrative": "Cr1--89 to 112 cm (35 to 44 inches); yellowish brown (10YR 5/4) and very pale brown (10YR 7/4) weathered quartz diorite grus composed mostly of plagioclase feldspar, biotite, hornblende, and some quartz; clear irregular boundary. (12 to 25 cm thick)" + }, + { + "name": "Cr2", + "top": 112, + "bottom": 155, + "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", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cr2--112 to 155 (44 to 61 inches); brown (10YR 5/3) and very pale brown (10YR 7/3) grus, similar to above, but lacking stains on mineral grains." } ] ] diff --git a/inst/extdata/OSD/V/VOCA.json b/inst/extdata/OSD/V/VOCA.json index e4263bd5ad..e1bb9619bb 100644 --- a/inst/extdata/OSD/V/VOCA.json +++ b/inst/extdata/OSD/V/VOCA.json @@ -140,6 +140,52 @@ "topography": "wavy", "narrative": "Bt1--28 to 42 cm (11 to 17 in); yellowish red (5YR 5/6) very gravelly sandy clay loam, yellowish red (5YR 4/6) moist; weak medium subangular blocky structure; hard, firm; common very fine, fine, medium roots; common very fine and fine pores; 5 percent clay films on vertical faces of peds; 45 percent, 2 to 5 mm, quartz gravel; moderately acid; clear wavy boundary." }, + { + "name": "Bt2", + "top": 42, + "bottom": 55, + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 8, + "moist_hue": "2.5YR", + "moist_value": 4, + "moist_chroma": 8, + "texture_class": "clay", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "wavy", + "narrative": "Bt2--42 to 55 (17 to 22 in); red (2.5YR 5/8) gravelly clay, red (2.5YR 4/8) moist; moderate medium subangular blocky structure; hard, firm; common very fine and fine roots; common very fine and fine pores; 5 percent prominent very dark gray (10YR 3/1) organic stains on vertical faces of peds; 15 percent clay films on vertical faces of peds; 20 percent, 2 to 5 mm, quartz gravel; moderately acid; clear wavy boundary. (Combined thickness of the Bt horizon is 46 to 114 cm [18 to 45 in])" + }, + { + "name": "Bt3", + "top": 55, + "bottom": 87, + "dry_hue": "2.5YR", + "dry_value": 5, + "dry_chroma": 8, + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "clay", + "structure": "moderate medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt3--55 to 87 (22 to 34 in); red (2.5YR 5/8) gravelly clay, red (2.5YR 4/8)) moist; moderate medium subangular blocky structure; hard, firm; common very fine and fine roots; common very fine and fine pores; 15 percent clay films on vertical faces of peds; 20 percent, 2 to 5 mm, quartz gravel; common fine mica flakes; moderately acid; gradual wavy boundary. (Combined thickness of the Bt horizon is 46 to 114 cm [18 to 45 in])" + }, { "name": "BCt", "top": 87, diff --git a/inst/extdata/OSD/V/VOIGHT.json b/inst/extdata/OSD/V/VOIGHT.json index 59b6349b55..cf040a455a 100644 --- a/inst/extdata/OSD/V/VOIGHT.json +++ b/inst/extdata/OSD/V/VOIGHT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 25, "bottom": 18, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "0i--10 to 7 inches; accumulation of needles, twigs, leaves, and bark." }, { - "name": "0a", + "name": "Oa", "top": 18, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VOLPERIE.json b/inst/extdata/OSD/V/VOLPERIE.json index 28166da197..ecd184a082 100644 --- a/inst/extdata/OSD/V/VOLPERIE.json +++ b/inst/extdata/OSD/V/VOLPERIE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/V/VOORHIES.json b/inst/extdata/OSD/V/VOORHIES.json index dd2af96e78..64f55b0a3b 100644 --- a/inst/extdata/OSD/V/VOORHIES.json +++ b/inst/extdata/OSD/V/VOORHIES.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WADELL.json b/inst/extdata/OSD/W/WADELL.json index 1880faacdb..3bad2bfa43 100644 --- a/inst/extdata/OSD/W/WADELL.json +++ b/inst/extdata/OSD/W/WADELL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, "bottom": 5, "dry_hue": "NA", @@ -95,9 +95,9 @@ "narrative": "01--1 to 2 inches; twigs, needles and leaves." }, { - "name": "02", + "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WAFLA.json b/inst/extdata/OSD/W/WAFLA.json index d91af1e2eb..9e65f116c2 100644 --- a/inst/extdata/OSD/W/WAFLA.json +++ b/inst/extdata/OSD/W/WAFLA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WAGONTOWN.json b/inst/extdata/OSD/W/WAGONTOWN.json index f764192925..be51a2f086 100644 --- a/inst/extdata/OSD/W/WAGONTOWN.json +++ b/inst/extdata/OSD/W/WAGONTOWN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WAHKEENA.json b/inst/extdata/OSD/W/WAHKEENA.json index c51a025660..2372e49e13 100644 --- a/inst/extdata/OSD/W/WAHKEENA.json +++ b/inst/extdata/OSD/W/WAHKEENA.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 3, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "O1--1/2 inch to 1; loose litter of needles, leaves, twigs, cones, etc." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/W/WAIALEALE.json b/inst/extdata/OSD/W/WAIALEALE.json index 99037e6305..2af054746a 100644 --- a/inst/extdata/OSD/W/WAIALEALE.json +++ b/inst/extdata/OSD/W/WAIALEALE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "02", + "name": "O2", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "5YR", "dry_value": 2, "dry_chroma": 2, diff --git a/inst/extdata/OSD/W/WALDBILLIG.json b/inst/extdata/OSD/W/WALDBILLIG.json index b4e45eedad..01c31d7a83 100644 --- a/inst/extdata/OSD/W/WALDBILLIG.json +++ b/inst/extdata/OSD/W/WALDBILLIG.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WALLER.json b/inst/extdata/OSD/W/WALLER.json index 9cfb7187fd..09a23bc4ee 100644 --- a/inst/extdata/OSD/W/WALLER.json +++ b/inst/extdata/OSD/W/WALLER.json @@ -208,6 +208,52 @@ "distinctness": "gradual", "topography": "wavy", "narrative": "Bt/E2--94 to 126 cm, (37 to 50 in); yellowish brown (10YR 5/8) and 15 percent light brownish gray (2.5Y 6/2), clay loam; moderate medium prismatic structure parting to moderate medium subangular blocky; firm, hard; common very fine and fine roots; common very fine and fine tubular pores; 15 percent by volume albic tongues; 20 percent faint yellowish brown (10YR 5/6) clay films on faces of peds; 17 percent fine and medium prominent red (2.5YR 5/6) masses of oxidized iron in matrix with sharp boundaries; 11 percent medium prominent red (2.5YR 4/6) masses of oxidized iron in matrix with clear boundaries; 10 percent medium and coarse prominent gray (2.5Y 6/1) iron depletions in matrix with clear boundaries; 3 percent medium spherical red (2.5YR 5/6) ironstone nodules; 2 percent medium spherical red (10R 5/6) plinthite nodules; red (2.5YR 4/6) redox concentrations are brittle but plinthite; strongly acid; gradual wavy boundary." + }, + { + "name": "Btg/E1", + "top": 126, + "bottom": 165, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "clay loam", + "structure": "weak medium prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Btg/E1--126 to 165 (50 to 65 in); light brownish gray (2.5Y 6/2), clay loam; weak medium prismatic structure parting to weak medium subangular blocky; firm, hard; few very fine and fine roots; common very fine tubular pores; 15 percent by volume albic tongues; 10 percent faint strong brown (7.5YR 5/8) clay films on faces of peds; 14 percent fine and medium prominent red (2.5YR 5/6) masses of oxidized iron in matrix with sharp boundaries; 7 percent fine and medium prominent light gray (2.5Y 7/1) iron depletions in matrix with clear boundaries; 7 percent fine and medium prominent strong brown (7.5YR 5/8) masses of oxidized iron in matrix with clear boundaries; 6 percent fine and medium prominent red (2.5YR 4/6) masses of oxidized iron in matrix with sharp boundaries; 2 percent medium red (10R 4/6) plinthite nodules; strong brown (7.5YR 5/8) redox concentrations are brittle but plinthite; strongly acid; gradual wavy boundary. (Combined thickness of the Btg/E horizons is 33 to 96 cm [13 to 38 in])" + }, + { + "name": "Btg/E2", + "top": 165, + "bottom": 203, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 7, + "moist_chroma": 2, + "texture_class": "sandy clay loam", + "structure": "weak medium and coarse prismatic", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Btg/E2--165 to 203 (65 to 80 in); light gray (2.5Y 7/2), sandy clay loam; weak medium and coarse prismatic structure parting to weak medium subangular blocky; firm, hard; few very fine and fine roots; common very fine tubular pores; 15 percent by volume albic tongues; 8 percent faint light gray (5Y 7/1) clay films on faces of peds; 23 percent fine and medium prominent strong brown (7.5YR 5/8) masses of oxidized iron in matrix with clear boundaries; 10 percent fine prominent red (2.5YR 5/6) masses of oxidized iron in matrix with sharp boundaries; 8 percent medium and coarse prominent light gray (5Y 7/1) iron depletions on faces of peds with diffuse boundaries; strongly acid." } ] ] diff --git a/inst/extdata/OSD/W/WALONG.json b/inst/extdata/OSD/W/WALONG.json index 45af99213e..2de53f7542 100644 --- a/inst/extdata/OSD/W/WALONG.json +++ b/inst/extdata/OSD/W/WALONG.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "A1", + "top": 0, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "sandy loam", + "structure": "weak fine granular", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.5, + "pH_class": "mildly alkaline", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "A1--0 to 2 1/2 inch; dark grayish brown (120YR 4/2) sandy loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; common fine tubular pores; fragments 2 to 20 mm in diameter are approximately 15 percent; mildly alkaline (pH 7.5); gradual smooth boundary. (1 to 8 inches thick)" + }, + { + "name": "A2", + "top": 6, + "bottom": 36, + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 3, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 3, + "texture_class": "sandy loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7, + "pH_class": "neutral", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "A2--2 1/2 to 14 inches; brown (10YR 4/3) sandy loam, dark brown (10YR 3/3) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; many medium tubular pores; fragments 2 to 10 mm in diameter are approximately 15 percent neutral (pH 7.0); gradual smooth boundary. (9 to 20 inches thick)" + }, { "name": "Bw", "top": 36, diff --git a/inst/extdata/OSD/W/WALVILLE.json b/inst/extdata/OSD/W/WALVILLE.json index 4499143389..ff4ce4d332 100644 --- a/inst/extdata/OSD/W/WALVILLE.json +++ b/inst/extdata/OSD/W/WALVILLE.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0l and 02", + "name": "O1 and O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "All", "top": 0, - "bottom": "NA", + "bottom": 30, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -119,8 +119,8 @@ }, { "name": "Al2", - "top": "NA", - "bottom": "NA", + "top": 30, + "bottom": 43, "dry_hue": "7.5YR", "dry_value": 5, "dry_chroma": 4, @@ -142,7 +142,7 @@ }, { "name": "B2", - "top": "NA", + "top": 43, "bottom": 114, "dry_hue": "7.5YR", "dry_value": 6, diff --git a/inst/extdata/OSD/W/WAMDUSKA.json b/inst/extdata/OSD/W/WAMDUSKA.json index 9d4ef40cdb..2e9df11471 100644 --- a/inst/extdata/OSD/W/WAMDUSKA.json +++ b/inst/extdata/OSD/W/WAMDUSKA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WAMPOO.json b/inst/extdata/OSD/W/WAMPOO.json index 16b56106e3..e51ef547f8 100644 --- a/inst/extdata/OSD/W/WAMPOO.json +++ b/inst/extdata/OSD/W/WAMPOO.json @@ -166,7 +166,7 @@ { "name": "Btk1", "top": 41, - "bottom": "NA", + "bottom": 53, "dry_hue": "5YR", "dry_value": 5, "dry_chroma": 4, @@ -188,7 +188,7 @@ }, { "name": "Bqkm", - "top": "NA", + "top": 53, "bottom": 56, "dry_hue": "7.5YR", "dry_value": 7, diff --git a/inst/extdata/OSD/W/WAPAL.json b/inst/extdata/OSD/W/WAPAL.json index 21cb0307e6..2d5efd366c 100644 --- a/inst/extdata/OSD/W/WAPAL.json +++ b/inst/extdata/OSD/W/WAPAL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 4, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WAPSHILLA.json b/inst/extdata/OSD/W/WAPSHILLA.json index ea21c2bd19..a15f2dd4d2 100644 --- a/inst/extdata/OSD/W/WAPSHILLA.json +++ b/inst/extdata/OSD/W/WAPSHILLA.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WARDA.json b/inst/extdata/OSD/W/WARDA.json index 328747a452..abfe1a7ca1 100644 --- a/inst/extdata/OSD/W/WARDA.json +++ b/inst/extdata/OSD/W/WARDA.json @@ -232,6 +232,29 @@ "topography": "wavy", "narrative": "Bt5--48 to 56 inches; dark grayish brown (10YR 4/2) sandy clay loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; hard, friable; common fine and medium pores; few thin faint clay films on surfaces of peds; few fine faint dark yellowish brown (10YR 5/6) masses of iron accumulation; slightly acid; clear wavy boundary. (The combined thickness of the Bt horizon is 55 to 80 inches)" }, + { + "name": "BC1", + "top": 163, + "bottom": "NA", + "dry_hue": "10YR", + "dry_value": 4, + "dry_chroma": 2, + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 2, + "texture_class": "fine sandy loam", + "structure": "weak medium subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "BC1--56 6to 64 inches; dark grayish brown (10YR 4/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; slightly hard, friable; few fine and medium pores; common medium distinct yellowish brown (10YR 5/6) masses of iron accumulation; strongly acid; gradual wavy boundary. (5 to 15 inches thick)" + }, { "name": "BC2", "top": 163, diff --git a/inst/extdata/OSD/W/WARRENTON.json b/inst/extdata/OSD/W/WARRENTON.json index 1cd39fae6c..bc133fd7ee 100644 --- a/inst/extdata/OSD/W/WARRENTON.json +++ b/inst/extdata/OSD/W/WARRENTON.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0", + "name": "O", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WASHOUGAL.json b/inst/extdata/OSD/W/WASHOUGAL.json index 1253d49bd8..e9e78ab239 100644 --- a/inst/extdata/OSD/W/WASHOUGAL.json +++ b/inst/extdata/OSD/W/WASHOUGAL.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WASHPASS.json b/inst/extdata/OSD/W/WASHPASS.json index 8e002a0b71..dfaafd2217 100644 --- a/inst/extdata/OSD/W/WASHPASS.json +++ b/inst/extdata/OSD/W/WASHPASS.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WASILLA.json b/inst/extdata/OSD/W/WASILLA.json index 9fdd30642e..8f10d24048 100644 --- a/inst/extdata/OSD/W/WASILLA.json +++ b/inst/extdata/OSD/W/WASILLA.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WATERFALL.json b/inst/extdata/OSD/W/WATERFALL.json index 07c710d946..5574539c23 100644 --- a/inst/extdata/OSD/W/WATERFALL.json +++ b/inst/extdata/OSD/W/WATERFALL.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WAUMBEK.json b/inst/extdata/OSD/W/WAUMBEK.json index c455067da4..4972bf9d46 100644 --- a/inst/extdata/OSD/W/WAUMBEK.json +++ b/inst/extdata/OSD/W/WAUMBEK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0e", + "name": "Oe", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WEATHERFORD.json b/inst/extdata/OSD/W/WEATHERFORD.json index 137ed04562..e3c0a4a306 100644 --- a/inst/extdata/OSD/W/WEATHERFORD.json +++ b/inst/extdata/OSD/W/WEATHERFORD.json @@ -162,6 +162,29 @@ "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--71 to 114 cm (28 to 45 in); reddish yellow (5YR 6/8) sandy clay loam, yellowish red (5YR 5/8) moist; weak coarse subangular blocky structure; very hard, friable; few fine roots; few fine pores; few faint clay films on all faces of peds; moderately acid; clear wavy boundary. Thickness is 20 to 51 cm (8 to 20 in)" + }, + { + "name": "Cd", + "top": 114, + "bottom": 203, + "dry_hue": "7.5YR", + "dry_value": 8, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 7, + "moist_chroma": 4, + "texture_class": "sand", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Cd--114 to 203 (45 to 80 in); pink (7.5YR 8/4) noncemented sandstone bedrock, pink (7.5YR 7/4) moist; massive; slightly acid." } ] ] diff --git a/inst/extdata/OSD/W/WEBILE.json b/inst/extdata/OSD/W/WEBILE.json index 4ced7cc28d..fb9dacfc64 100644 --- a/inst/extdata/OSD/W/WEBILE.json +++ b/inst/extdata/OSD/W/WEBILE.json @@ -140,6 +140,29 @@ "topography": "smooth", "narrative": "Oa1 -- 41 to 71 centimeters (16 to 28 inches); sapric material, dark yellowish brown (10YR 4/4) muck, very dark brown (10YR 2/2) rubbed; 40 percent fibers unrubbed and less than 5 percent rubbed; weak thin platy structure; thin discontinuous lens, 1 inch thick of gray (10YR 5/1) mineral material; cracks are 2.5 centimeters wide and 25 to 35 centimeters apart; very strongly acid (pH 4.6); gradual smooth boundary. (64 to 89 centimeters thick)" }, + { + "name": "Oa2", + "top": 71, + "bottom": 89, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 3, + "moist_chroma": 4, + "texture_class": "NA", + "structure": "weak thick platy", + "dry_rupture": "NA", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 4.6, + "pH_class": "very strongly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Oa2 -- 71 to 89 (28 to 35 inches); sapric material, dark yellowish brown (10YR 3/4) muck, very dark brown (10YR 2/2) rubbed; 40 percent fibers unrubbed, less than 10 percent rubbed; weak thick platy structure; very friable, slightly sticky and nonplastic; thin discontinuous lens, 2.5 centimeter thick of gray (10YR 5/1) mineral material; very strongly acid (pH 4.6); gradual smooth boundary. (13 to 25 centimeters thick)" + }, { "name": "Oa3", "top": 89, diff --git a/inst/extdata/OSD/W/WELCOME.json b/inst/extdata/OSD/W/WELCOME.json index 5d123c3a60..52d817dd0f 100644 --- a/inst/extdata/OSD/W/WELCOME.json +++ b/inst/extdata/OSD/W/WELCOME.json @@ -97,7 +97,7 @@ { "name": "Oa", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -166,7 +166,7 @@ { "name": "Bs2", "top": 15, - "bottom": "NA", + "bottom": 48, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -188,7 +188,7 @@ }, { "name": "C1", - "top": "NA", + "top": 48, "bottom": 69, "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/W/WELLSDALE.json b/inst/extdata/OSD/W/WELLSDALE.json index 5484660a76..df5ccc8458 100644 --- a/inst/extdata/OSD/W/WELLSDALE.json +++ b/inst/extdata/OSD/W/WELLSDALE.json @@ -166,7 +166,7 @@ { "name": "Bt2", "top": 86, - "bottom": "NA", + "bottom": 145, "dry_hue": "7.5YR", "dry_value": 6, "dry_chroma": 6, diff --git a/inst/extdata/OSD/W/WELOY.json b/inst/extdata/OSD/W/WELOY.json index 13685a8ea2..6e30250bd8 100644 --- a/inst/extdata/OSD/W/WELOY.json +++ b/inst/extdata/OSD/W/WELOY.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WEMINUCHE.json b/inst/extdata/OSD/W/WEMINUCHE.json index 70bd0b5f52..29c8f23bd8 100644 --- a/inst/extdata/OSD/W/WEMINUCHE.json +++ b/inst/extdata/OSD/W/WEMINUCHE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WESSEL.json b/inst/extdata/OSD/W/WESSEL.json index 4b8789f1f1..7fbeb3db42 100644 --- a/inst/extdata/OSD/W/WESSEL.json +++ b/inst/extdata/OSD/W/WESSEL.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01 and 02", + "name": "O1 and O2", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WESTE.json b/inst/extdata/OSD/W/WESTE.json index 09a69c680a..6b42cbc5f5 100644 --- a/inst/extdata/OSD/W/WESTE.json +++ b/inst/extdata/OSD/W/WESTE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 6, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "Oi--2 1/2 inches to 0; decomposed fir and pine needles, cones, twigs and 1 to 4 inch limbs; abrupt smooth boundary. (O to 3 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/W/WESTOLA.json b/inst/extdata/OSD/W/WESTOLA.json index c848c349ad..651b07a984 100644 --- a/inst/extdata/OSD/W/WESTOLA.json +++ b/inst/extdata/OSD/W/WESTOLA.json @@ -139,6 +139,29 @@ "distinctness": "clear", "topography": "smooth", "narrative": "C1--28 to 102 cm (11 to 40 in); reddish brown (5YR 5/4) fine sandy loam, reddish brown (5YR 4/4) moist; massive; soft, very friable; few fine roots; common distinct strata of loamy fine sand and fine sand 3 to 13mm thick, common distinct strata of dark reddish brown (5YR 3/3) loam and fine sandy loam 1 to 2mm thick; strongly effervescent; moderately alkaline; clear smooth boundary. Thickness is 0 to 122 cm (0 to 48 in)" + }, + { + "name": "C2", + "top": 102, + "bottom": 203, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "fine sandy loam", + "structure": "massive", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "moderately alkaline", + "eff_class": "strongly effervescent", + "distinctness": "NA", + "topography": "NA", + "narrative": "C2--102 to 203 (40 to 80 in); reddish brown (5YR 5/4) loam, reddish brown (5YR 4/4) moist; massive; soft, very friable; common distinct strata of yellowish red (5YR 4/6) fine sandy loam and dark reddish brown (5YR 3/4) silt loam 1 to 2mm thick; strongly effervescent; moderately alkaline." } ] ] diff --git a/inst/extdata/OSD/W/WESTPLAIN.json b/inst/extdata/OSD/W/WESTPLAIN.json index e91aae0f75..4a087ca694 100644 --- a/inst/extdata/OSD/W/WESTPLAIN.json +++ b/inst/extdata/OSD/W/WESTPLAIN.json @@ -141,9 +141,9 @@ "narrative": "AC--14 to 17 inches; brown (10YR 5/3) very gravelly clay loam, dark brown (10YR 3/3) moist; massive; hard, friable; common medium distinct strong brown (7.5YR 5/6) redoximorphic iron concretions; 50 percent gravel; calcareous; moderately alkaline; abrupt wavy boundary. (0 to 6 inches thick)" }, { - "name": "17", - "top": 152, - "bottom": "NA", + "name": "2Cg", + "top": 43, + "bottom": 152, "dry_hue": "10YR", "dry_value": 7, "dry_chroma": 2, diff --git a/inst/extdata/OSD/W/WESTWEGO.json b/inst/extdata/OSD/W/WESTWEGO.json index bb2e754f4d..70c0e25957 100644 --- a/inst/extdata/OSD/W/WESTWEGO.json +++ b/inst/extdata/OSD/W/WESTWEGO.json @@ -187,7 +187,7 @@ "narrative": "B23bg--17 to 21 inches; dark gray (5Y 4/1) clay; common fine" }, { - "name": "II02bg", + "name": "IIO2bg", "top": 53, "bottom": 91, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WETMORE.json b/inst/extdata/OSD/W/WETMORE.json index 36cddb2ce7..fd1466468c 100644 --- a/inst/extdata/OSD/W/WETMORE.json +++ b/inst/extdata/OSD/W/WETMORE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WHETSTONE.json b/inst/extdata/OSD/W/WHETSTONE.json index 46ae0b91b1..3492b352c6 100644 --- a/inst/extdata/OSD/W/WHETSTONE.json +++ b/inst/extdata/OSD/W/WHETSTONE.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 10, - "bottom": "NA", + "bottom": 5, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -97,7 +97,7 @@ { "name": "O2", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WHISPERING.json b/inst/extdata/OSD/W/WHISPERING.json index 5b983194fe..c54a89af2e 100644 --- a/inst/extdata/OSD/W/WHISPERING.json +++ b/inst/extdata/OSD/W/WHISPERING.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WHITEHORSE.json b/inst/extdata/OSD/W/WHITEHORSE.json index b539d27004..371ccaa474 100644 --- a/inst/extdata/OSD/W/WHITEHORSE.json +++ b/inst/extdata/OSD/W/WHITEHORSE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WHITESTONE.json b/inst/extdata/OSD/W/WHITESTONE.json index d346c28f71..5a19b0ffc7 100644 --- a/inst/extdata/OSD/W/WHITESTONE.json +++ b/inst/extdata/OSD/W/WHITESTONE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WHORLED.json b/inst/extdata/OSD/W/WHORLED.json index be07942964..3690e2dff2 100644 --- a/inst/extdata/OSD/W/WHORLED.json +++ b/inst/extdata/OSD/W/WHORLED.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WIGTON.json b/inst/extdata/OSD/W/WIGTON.json index 9a55a0c024..63cf2ea9bb 100644 --- a/inst/extdata/OSD/W/WIGTON.json +++ b/inst/extdata/OSD/W/WIGTON.json @@ -119,7 +119,7 @@ }, { "name": "C", - "top": "NA", + "top": 48, "bottom": 152, "dry_hue": "10YR", "dry_value": 7, diff --git a/inst/extdata/OSD/W/WILDCAT.json b/inst/extdata/OSD/W/WILDCAT.json index d360d61bd0..cc3b24d935 100644 --- a/inst/extdata/OSD/W/WILDCAT.json +++ b/inst/extdata/OSD/W/WILDCAT.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -140,6 +140,29 @@ "topography": "wavy", "narrative": "E2--3 to 8 inches; light gray (10YR 7/2) loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable, nonsticky and slightly plastic; plentiful fine and few medium roots; many fine interstitial and few fine tubular pores; common gravel, cobbles and stones; neutral (pH 6.7); abrupt wavy boundary . (3 to 10 inches thick.)" }, + { + "name": "Bt1", + "top": 20, + "bottom": 46, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "2.5Y", + "moist_value": 5, + "moist_chroma": 2, + "texture_class": "clay", + "structure": "strong medium and coarse angular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.6, + "pH_class": "moderately acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt1--8 to 18 soils; mottled brown (7.5YR 5/4), red (2.5YR 4/6) and light brownish gray (2.5Y 6/2) clay, brown (7.5YR 4/4), dark red (2.5YR 3/6) and grayish brown (2.5Y 5/2) moist; mottles are many fine and medium and distinct; weak medium prismatic structure breaking to strong medium and coarse angular blocky structure; extremely hard, very firm, sticky and very plastic; plentiful fine, medium and coarse roots; few fine tubular pores; common pressure faces; continuous moderately thick clay films on ped faces; few gravel and cobbles; moderately acid (pH 5.6); gradual wavy boundary. (8 to 15 inches thick.)" + }, { "name": "Bt2", "top": 46, diff --git a/inst/extdata/OSD/W/WILHOIT.json b/inst/extdata/OSD/W/WILHOIT.json index 34088c7380..26111b4bcb 100644 --- a/inst/extdata/OSD/W/WILHOIT.json +++ b/inst/extdata/OSD/W/WILHOIT.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 0, - "bottom": "NA", + "bottom": 3, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -96,8 +96,8 @@ }, { "name": "A1", - "top": 1, - "bottom": 4, + "top": 3, + "bottom": 10, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 2, @@ -119,8 +119,8 @@ }, { "name": "A2", - "top": 4, - "bottom": 15, + "top": 10, + "bottom": 38, "dry_hue": "10YR", "dry_value": 4, "dry_chroma": 3, @@ -142,8 +142,8 @@ }, { "name": "BA", - "top": 15, - "bottom": 33, + "top": 38, + "bottom": 84, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, @@ -165,8 +165,8 @@ }, { "name": "Bw", - "top": 33, - "bottom": 43, + "top": 84, + "bottom": 109, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", @@ -188,8 +188,8 @@ }, { "name": "BC", - "top": 43, - "bottom": 52, + "top": 109, + "bottom": 132, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 4, @@ -211,7 +211,7 @@ }, { "name": "Cr", - "top": 52, + "top": 132, "bottom": "NA", "dry_hue": "NA", "dry_value": "NA", diff --git a/inst/extdata/OSD/W/WILKESON.json b/inst/extdata/OSD/W/WILKESON.json index 73b624b4b8..9f6e3aeef4 100644 --- a/inst/extdata/OSD/W/WILKESON.json +++ b/inst/extdata/OSD/W/WILKESON.json @@ -97,7 +97,7 @@ { "name": "A2", "top": 10, - "bottom": "NA", + "bottom": 25, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -119,8 +119,8 @@ }, { "name": "BA", - "top": "NA", - "bottom": "NA", + "top": 25, + "bottom": 46, "dry_hue": "l0YR", "dry_value": 5, "dry_chroma": 3, @@ -142,7 +142,7 @@ }, { "name": "Bt1", - "top": "NA", + "top": 46, "bottom": 69, "dry_hue": "l0YR", "dry_value": 6, diff --git a/inst/extdata/OSD/W/WILLABY.json b/inst/extdata/OSD/W/WILLABY.json index 1d0113e337..ba15b525ce 100644 --- a/inst/extdata/OSD/W/WILLABY.json +++ b/inst/extdata/OSD/W/WILLABY.json @@ -71,6 +71,52 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 1, + "bottom": 6, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--1/2 to 2 1/2 inches; accumulation of leaves, needles, twigs and moss." + }, + { + "name": "O2", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "02--1/4 inch to 0; decomposed organic material." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/W/WINDY.json b/inst/extdata/OSD/W/WINDY.json index fec358f77c..db7742c3dd 100644 --- a/inst/extdata/OSD/W/WINDY.json +++ b/inst/extdata/OSD/W/WINDY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 2, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--3/4 to 0 inches; fresh and partially decomposed red fir litter; abrupt, wavy boundary. (1/2 to 3 inches thick)" + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/W/WINEDALE.json b/inst/extdata/OSD/W/WINEDALE.json index 9306d1aaae..2508a58901 100644 --- a/inst/extdata/OSD/W/WINEDALE.json +++ b/inst/extdata/OSD/W/WINEDALE.json @@ -186,6 +186,29 @@ "topography": "wavy", "narrative": "2BCtss --23 to 37 inches; light yellowish brown (10YR 6/4) clay, brown (10YR 5/3) moist; strong medium subangular blocky structure parting to moderate medium subangular blocky; common fine distinct brownish yellow (10YR 6/8) mottles; very hard, very firm; few fine roots; few fine pores; common large intersecting slickensides; few thin discontinuous clay films on faces of peds; extremely acid; gradual wavy boundary. (4 to 13 inches thick)" }, + { + "name": "2C1", + "top": 94, + "bottom": 130, + "dry_hue": "10YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "10YR", + "moist_value": 5, + "moist_chroma": 3, + "texture_class": "clay", + "structure": "massive", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "2C1 --37 to 51; light yellowish brown (10YR 6/4) clay and soft shale that has clay texture, brown (10YR 5/3) moist; common fine distinct brownish yellow (10YR 6/8) mottles; massive; weakly bedded; very hard, very firm; few fine roots; common pressure faces; 40 percent weakly consolidated shale fragments; extremely acid; gradual wavy boundary. (7 to 16 inches thick)" + }, { "name": "2C2", "top": 130, diff --git a/inst/extdata/OSD/W/WINNEDUMAH.json b/inst/extdata/OSD/W/WINNEDUMAH.json index 5b53502900..13d75ed49a 100644 --- a/inst/extdata/OSD/W/WINNEDUMAH.json +++ b/inst/extdata/OSD/W/WINNEDUMAH.json @@ -189,7 +189,7 @@ { "name": "2Btkb", "top": 86, - "bottom": "NA", + "bottom": 117, "dry_hue": "2.5Y", "dry_value": 6, "dry_chroma": 2, diff --git a/inst/extdata/OSD/W/WINNEMUCCA.json b/inst/extdata/OSD/W/WINNEMUCCA.json index e559ef8d4d..31c0d890ff 100644 --- a/inst/extdata/OSD/W/WINNEMUCCA.json +++ b/inst/extdata/OSD/W/WINNEMUCCA.json @@ -163,6 +163,29 @@ "topography": "wavy", "narrative": "Bt1--18 to 24 inches; reddish brown (5YR 5/4) very cobbly clay loam, reddish brown (5YR 4/4) moist; moderate medium subangular blocky structure; slightly hard, firm, sticky and plastic; common very fine roots; few coarse interstitial pores; few thin clay films on faces of peds; 50 percent cobbles; 5 percent gravel and 5 percent stones; slightly acid (pH 6.5); gradual wavy boundary. (5 to 10 inches thick)" }, + { + "name": "Bt2", + "top": 61, + "bottom": 71, + "dry_hue": "5YR", + "dry_value": 5, + "dry_chroma": 4, + "moist_hue": "5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "clay loam", + "structure": "weak fine subangular blocky", + "dry_rupture": "hard", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "extremely cobbly", + "pH": 6.5, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "wavy", + "narrative": "Bt2--24 to 28; reddish brown (5YR 5/4) extremely cobbly clay loam, reddish brown (5YR 4/4) moist; weak fine subangular blocky structure; slightly hard, firm, slightly sticky and slightly plastic; few very fine roots; few coarse interstitial pores; few thin clay films in pores; 55 percent cobbles, 10 percent stones and 5 percent gravel; slightly acid (pH 6.5); gradual wavy boundary. (3 to 8 inches thick)" + }, { "name": "C", "top": 71, diff --git a/inst/extdata/OSD/W/WINOPEE.json b/inst/extdata/OSD/W/WINOPEE.json index c2f584c8b5..b4c70ffdc9 100644 --- a/inst/extdata/OSD/W/WINOPEE.json +++ b/inst/extdata/OSD/W/WINOPEE.json @@ -71,6 +71,98 @@ ], "HORIZONS": [ [ + { + "name": "O1", + "top": 5, + "bottom": 4, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "01--2 to 1 1/2 inches; needles and twigs." + }, + { + "name": "O2", + "top": 4, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "02--1 1/2 inches to 0; decomposed organic materials; abrupt smooth boundary." + }, + { + "name": "A2", + "top": 0, + "bottom": 4, + "dry_hue": "N", + "dry_value": 7, + "dry_chroma": "NA", + "moist_hue": "N", + "moist_value": 5, + "moist_chroma": "NA", + "texture_class": "loamy sand", + "structure": "weak very fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 5.4, + "pH_class": "strongly acid", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "wavy", + "narrative": "A2--0 to 1 1/2 inches; gray (N 5/ ) loamy sand, light gray (N 7/ ) dry; weak very fine granular structure; very soft, very friable, nonsticky, nonplastic; many very fine roots; many very fine irregular pores; strongly acid (pH 5.4); abrupt wavy boundary. (1 to 2 inches thick)" + }, + { + "name": "Bir", + "top": 4, + "bottom": 8, + "dry_hue": "7.5YR", + "dry_value": 5, + "dry_chroma": 6, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 4, + "texture_class": "sand", + "structure": "weak very fine granular", + "dry_rupture": "soft", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 6.2, + "pH_class": "slightly acid", + "eff_class": "NA", + "distinctness": "clear", + "topography": "smooth", + "narrative": "Bir--1 1/2 to 3 inches; dark brown (7.5YR 4/4) sand, strong brown (7.5YR 5/6) dry; weak very fine granular structure; very soft, very friable, nonsticky, nonplastic; many very fine roots; many very fine irregular pores; slightly acid (pH 6.2); clear smooth boundary. (2 to 6 inches thick)" + }, { "name": "C1", "top": 8, diff --git a/inst/extdata/OSD/W/WISHARD.json b/inst/extdata/OSD/W/WISHARD.json index 117c040108..37acef3730 100644 --- a/inst/extdata/OSD/W/WISHARD.json +++ b/inst/extdata/OSD/W/WISHARD.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 1, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WISHBONE.json b/inst/extdata/OSD/W/WISHBONE.json index 86e8abff0d..086a31e41e 100644 --- a/inst/extdata/OSD/W/WISHBONE.json +++ b/inst/extdata/OSD/W/WISHBONE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 3, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 1 inch; needles, twigs, and grass. (0.5 to 1 inch thick)" }, { - "name": "0e", + "name": "Oe", "top": 3, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WISHKAH.json b/inst/extdata/OSD/W/WISHKAH.json index 75cd7e13d3..c562c53394 100644 --- a/inst/extdata/OSD/W/WISHKAH.json +++ b/inst/extdata/OSD/W/WISHKAH.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 13, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WITTENBERG.json b/inst/extdata/OSD/W/WITTENBERG.json index 15940637db..d1f6a47c50 100644 --- a/inst/extdata/OSD/W/WITTENBERG.json +++ b/inst/extdata/OSD/W/WITTENBERG.json @@ -74,7 +74,7 @@ { "name": "O1", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WOHLY.json b/inst/extdata/OSD/W/WOHLY.json index cbce5e760e..aa9e6c4ceb 100644 --- a/inst/extdata/OSD/W/WOHLY.json +++ b/inst/extdata/OSD/W/WOHLY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 0, + "bottom": 1, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--0 to 1 centimeter (0 to 0.5 inches); litter of tanoak, live oak and madrone." + }, { "name": "A", "top": 1, diff --git a/inst/extdata/OSD/W/WOLFPEAK.json b/inst/extdata/OSD/W/WOLFPEAK.json index c4f030517b..dcc0c25c45 100644 --- a/inst/extdata/OSD/W/WOLFPEAK.json +++ b/inst/extdata/OSD/W/WOLFPEAK.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 1, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WOLLARD.json b/inst/extdata/OSD/W/WOLLARD.json index 3615d58b62..d85080e637 100644 --- a/inst/extdata/OSD/W/WOLLARD.json +++ b/inst/extdata/OSD/W/WOLLARD.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 10, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WOODCHOPPER.json b/inst/extdata/OSD/W/WOODCHOPPER.json index 005406c8ca..b034cd8412 100644 --- a/inst/extdata/OSD/W/WOODCHOPPER.json +++ b/inst/extdata/OSD/W/WOODCHOPPER.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WOODLEAF.json b/inst/extdata/OSD/W/WOODLEAF.json index 958d86d163..e91b9c06c9 100644 --- a/inst/extdata/OSD/W/WOODLEAF.json +++ b/inst/extdata/OSD/W/WOODLEAF.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Oi--1/2 to 0 inches; partially decomposed twigs and needles." + }, { "name": "A1", "top": 0, diff --git a/inst/extdata/OSD/W/WOODROCK.json b/inst/extdata/OSD/W/WOODROCK.json index 42deadb692..ab3c8a723b 100644 --- a/inst/extdata/OSD/W/WOODROCK.json +++ b/inst/extdata/OSD/W/WOODROCK.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", @@ -95,7 +95,7 @@ "narrative": "0i--0 to 2 inches; Undecomposed organic material chiefly needles, bark, twigs, and leaves." }, { - "name": "0e", + "name": "Oe", "top": 5, "bottom": 8, "dry_hue": "NA", diff --git a/inst/extdata/OSD/W/WOODSEYE.json b/inst/extdata/OSD/W/WOODSEYE.json index cebed9e28c..51d8f21799 100644 --- a/inst/extdata/OSD/W/WOODSEYE.json +++ b/inst/extdata/OSD/W/WOODSEYE.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/W/WRIGHTSVILLE.json b/inst/extdata/OSD/W/WRIGHTSVILLE.json index 80b003d1a6..78ef06d1bc 100644 --- a/inst/extdata/OSD/W/WRIGHTSVILLE.json +++ b/inst/extdata/OSD/W/WRIGHTSVILLE.json @@ -209,6 +209,29 @@ "topography": "smooth", "narrative": "Btg1--58 to 99 cm (23 to 39 in); gray (10YR 5/1) silty clay; weak medium prismatic structure parting to strong medium subangular blocky; firm; few fine roots; few fine pores; continuous distinct clay films on faces of peds; about 10 percent of matrix composed of tongues 0.5 to 1 inch wide , interfingers and small pockets of light gray (10YR 7/2) silt loam clay depletions; light gray (10YR 7/2) clay depletions on prism faces; common medium distinct strong brown (7.5YR 5/6) masses of iron accumulation in matrix; extremely acid; gradual smooth boundary. (13 to 46 cm [5 to 18 in] thick)" }, + { + "name": "Btg2", + "top": 99, + "bottom": 124, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "2.5Y", + "moist_value": 6, + "moist_chroma": 2, + "texture_class": "silty clay loam", + "structure": "weak medium prismatic", + "dry_rupture": "NA", + "moist_rupture": "firm", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "extremely acid", + "eff_class": "NA", + "distinctness": "gradual", + "topography": "smooth", + "narrative": "Btg2--99 to 124 (39 to 49 in); light brownish gray (2.5Y 6/2) silty clay loam; weak medium prismatic structure parting to strong medium subangular blocky; firm; few fine roots; many patchy distinct clay films on faces of peds; small pockets of light gray (10YR 7/2) silt loam clay depletions in matrix and on prism faces; many medium distinct strong brown (7.5YR 5/8) masses of iron accumulation in matrix; extremely acid; gradual smooth boundary. (20 to 33 cm [8 to 13 in] thick)" + }, { "name": "Btg3", "top": 124, diff --git a/inst/extdata/OSD/X/XANA.json b/inst/extdata/OSD/X/XANA.json index e62b364489..e476326024 100644 --- a/inst/extdata/OSD/X/XANA.json +++ b/inst/extdata/OSD/X/XANA.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/X/XANADU.json b/inst/extdata/OSD/X/XANADU.json index c6854f9535..77c0bf3ec1 100644 --- a/inst/extdata/OSD/X/XANADU.json +++ b/inst/extdata/OSD/X/XANADU.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/X/XYNO.json b/inst/extdata/OSD/X/XYNO.json index ffa3aa93f8..106c1a468b 100644 --- a/inst/extdata/OSD/X/XYNO.json +++ b/inst/extdata/OSD/X/XYNO.json @@ -97,7 +97,7 @@ { "name": "C", "top": 5, - "bottom": "NA", + "bottom": 28, "dry_hue": "10YR", "dry_value": 5, "dry_chroma": 3, diff --git a/inst/extdata/OSD/Y/YAHNE.json b/inst/extdata/OSD/Y/YAHNE.json index 627e43938f..1991b90890 100644 --- a/inst/extdata/OSD/Y/YAHNE.json +++ b/inst/extdata/OSD/Y/YAHNE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "Oi", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "0i--1/2 to 0 inch; forest litter; abrupt smooth boundary. (1/2 to l inch thick)" + }, { "name": "A", "top": 0, @@ -97,7 +120,7 @@ { "name": "2AE", "top": 20, - "bottom": "NA", + "bottom": 41, "dry_hue": "l0YR", "dry_value": 6, "dry_chroma": 3, @@ -119,7 +142,7 @@ }, { "name": "2Bt1", - "top": "NA", + "top": 41, "bottom": 84, "dry_hue": "l0YR", "dry_value": 5, diff --git a/inst/extdata/OSD/Y/YAINAX.json b/inst/extdata/OSD/Y/YAINAX.json index dab19368c0..bbad641396 100644 --- a/inst/extdata/OSD/Y/YAINAX.json +++ b/inst/extdata/OSD/Y/YAINAX.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YANEY.json b/inst/extdata/OSD/Y/YANEY.json index 1eaf8fb6d8..13dcaee02e 100644 --- a/inst/extdata/OSD/Y/YANEY.json +++ b/inst/extdata/OSD/Y/YANEY.json @@ -281,7 +281,7 @@ { "name": "Cn2", "top": 137, - "bottom": "NA", + "bottom": 279, "dry_hue": "10YR", "dry_value": 8, "dry_chroma": 2, diff --git a/inst/extdata/OSD/Y/YAP.json b/inst/extdata/OSD/Y/YAP.json index 78df8cd5b3..8e6d693143 100644 --- a/inst/extdata/OSD/Y/YAP.json +++ b/inst/extdata/OSD/Y/YAP.json @@ -97,7 +97,7 @@ { "name": "O2", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YAWKOLA.json b/inst/extdata/OSD/Y/YAWKOLA.json index 238b3a84cc..ecd2323914 100644 --- a/inst/extdata/OSD/Y/YAWKOLA.json +++ b/inst/extdata/OSD/Y/YAWKOLA.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YELLOWHOUND.json b/inst/extdata/OSD/Y/YELLOWHOUND.json index a4ee614494..37278ee08e 100644 --- a/inst/extdata/OSD/Y/YELLOWHOUND.json +++ b/inst/extdata/OSD/Y/YELLOWHOUND.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YENSUS.json b/inst/extdata/OSD/Y/YENSUS.json index 0ddb0b58de..ac966f08a7 100644 --- a/inst/extdata/OSD/Y/YENSUS.json +++ b/inst/extdata/OSD/Y/YENSUS.json @@ -74,7 +74,7 @@ { "name": "Oe", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YEOMAN.json b/inst/extdata/OSD/Y/YEOMAN.json index 02e82914c9..d016f25888 100644 --- a/inst/extdata/OSD/Y/YEOMAN.json +++ b/inst/extdata/OSD/Y/YEOMAN.json @@ -139,6 +139,29 @@ "distinctness": "NA", "topography": "NA", "narrative": "Bw--16 to 26 inches; light brown (7.5YR 6/3) gravelly loam, brown (7.5YR 4/3) moist; weak coarse prismatic structure parting to moderate fine blocky; soft, friable; noncalcareous; neutral (pH 7.0), clear lower boundary. (8 to 15 inches thick)" + }, + { + "name": "Bk", + "top": 66, + "bottom": 86, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "10YR", + "moist_value": 8, + "moist_chroma": 2, + "texture_class": "silt loam", + "structure": "massive", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "gravelly", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "Bk--26 to 34 + inches; very pale brown (10YR 8/2) gravelly and stony silt loam, pale brown (10YR 6/3) moist; massive in place but separates to weak fine subangular blocks or lumps when disturbed; calcareous including abundant fine floury lime segregation. (12 to 16 inches thick)" } ] ] diff --git a/inst/extdata/OSD/Y/YOHN.json b/inst/extdata/OSD/Y/YOHN.json index f594ee9f14..fbdd2fc47b 100644 --- a/inst/extdata/OSD/Y/YOHN.json +++ b/inst/extdata/OSD/Y/YOHN.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YOLLABOLLY.json b/inst/extdata/OSD/Y/YOLLABOLLY.json index 9a33023350..774c703f41 100644 --- a/inst/extdata/OSD/Y/YOLLABOLLY.json +++ b/inst/extdata/OSD/Y/YOLLABOLLY.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "O", + "top": 1, + "bottom": 0, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "NA", + "moist_value": "NA", + "moist_chroma": "NA", + "texture_class": "NA", + "structure": "NA", + "dry_rupture": "loose", + "moist_rupture": "loose", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "0--1/2 to 0 inch; loose litter of pine needles and twigs. (1/2 to 3 inches thick)" + }, { "name": "A", "top": 0, diff --git a/inst/extdata/OSD/Y/YOREL.json b/inst/extdata/OSD/Y/YOREL.json index 0577338858..e12d15b6c6 100644 --- a/inst/extdata/OSD/Y/YOREL.json +++ b/inst/extdata/OSD/Y/YOREL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Y/YORKTOWN.json b/inst/extdata/OSD/Y/YORKTOWN.json index fc598e9b72..0eca272669 100644 --- a/inst/extdata/OSD/Y/YORKTOWN.json +++ b/inst/extdata/OSD/Y/YORKTOWN.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 5, "bottom": 0, "dry_hue": "NA", diff --git a/inst/extdata/OSD/Y/YUCCABUTTE.json b/inst/extdata/OSD/Y/YUCCABUTTE.json index 118ece3f47..85b70e876b 100644 --- a/inst/extdata/OSD/Y/YUCCABUTTE.json +++ b/inst/extdata/OSD/Y/YUCCABUTTE.json @@ -71,6 +71,29 @@ ], "HORIZONS": [ [ + { + "name": "A", + "top": 0, + "bottom": 1, + "dry_hue": "7.5YR", + "dry_value": 6, + "dry_chroma": 4, + "moist_hue": "7.5YR", + "moist_value": 4, + "moist_chroma": 6, + "texture_class": "loam", + "structure": "moderate thick platy", + "dry_rupture": "hard", + "moist_rupture": "friable", + "coherence": "NA", + "cf_class": "NA", + "pH": 7.6, + "pH_class": "slightly alkaline", + "eff_class": "very slightly effervescent", + "distinctness": "abrupt", + "topography": "smooth", + "narrative": "A -- 0 to 1 centimeter (0 to 0.5 inch); light brown (7.5YR 6/4) loam, strong brown (7.5YR 4/6) moist; moderate thick platy structure; slightly hard, very friable, nonsticky and slightly plastic; few very fine and fine roots; few very fine, fine, medium and coarse vesicular pores; 3 percent fine gravel and 2 percent medium and coarse gravel; very slightly effervescent, slightly alkaline (pH 7.6); abrupt smooth boundary. (1 to 5 centimeters thick)" + }, { "name": "Bt1", "top": 1, diff --git a/inst/extdata/OSD/Y/YUKON.json b/inst/extdata/OSD/Y/YUKON.json index 2b2b6a29e6..7a40aae3fd 100644 --- a/inst/extdata/OSD/Y/YUKON.json +++ b/inst/extdata/OSD/Y/YUKON.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 20, "bottom": 0, "dry_hue": "NA", @@ -162,6 +162,29 @@ "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--11 to 16 inches; dark grayish brown (2.5Y 4/2) very fine sandy loam; common medium distinct mottles of dark gray (10YR 4/1) and olive (5Y 4/3); weak very thin platy structure; very friable; roots common; calcareous; abrupt smooth boundary." + }, + { + "name": "C3", + "top": 41, + "bottom": 51, + "dry_hue": "NA", + "dry_value": "NA", + "dry_chroma": "NA", + "moist_hue": "5Y", + "moist_value": 4, + "moist_chroma": 2, + "texture_class": "very fine sand", + "structure": "NA", + "dry_rupture": "NA", + "moist_rupture": "NA", + "coherence": "NA", + "cf_class": "NA", + "pH": "NA", + "pH_class": "NA", + "eff_class": "NA", + "distinctness": "NA", + "topography": "NA", + "narrative": "C3--16 to 20 + inches; olive gray (5Y 4/2) very fine sand; common medium distinct mottles of olive brown (2.5Y 4/4) and very dark gray (5Y 3/1); frozen (July, 1965); few roots; calcareous." } ] ] diff --git a/inst/extdata/OSD/Y/YULEE.json b/inst/extdata/OSD/Y/YULEE.json index e789da4dbf..ca5c59603f 100644 --- a/inst/extdata/OSD/Y/YULEE.json +++ b/inst/extdata/OSD/Y/YULEE.json @@ -72,7 +72,7 @@ "HORIZONS": [ [ { - "name": "0i", + "name": "Oi", "top": 0, "bottom": 5, "dry_hue": "NA", diff --git a/inst/extdata/OSD/Z/ZAKME.json b/inst/extdata/OSD/Z/ZAKME.json index 96601f3e4a..bb379cda7e 100644 --- a/inst/extdata/OSD/Z/ZAKME.json +++ b/inst/extdata/OSD/Z/ZAKME.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Z/ZENI.json b/inst/extdata/OSD/Z/ZENI.json index 8642a48752..8c2b9c4874 100644 --- a/inst/extdata/OSD/Z/ZENI.json +++ b/inst/extdata/OSD/Z/ZENI.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 3, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Z/ZING.json b/inst/extdata/OSD/Z/ZING.json index cea729081c..bb4662cd53 100644 --- a/inst/extdata/OSD/Z/ZING.json +++ b/inst/extdata/OSD/Z/ZING.json @@ -73,8 +73,8 @@ [ { "name": "Oi", - "top": "NA", - "bottom": "NA", + "top": 4, + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Z/ZYMER.json b/inst/extdata/OSD/Z/ZYMER.json index 1b8fe8268d..afdc1afcec 100644 --- a/inst/extdata/OSD/Z/ZYMER.json +++ b/inst/extdata/OSD/Z/ZYMER.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 8, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Z/ZYNBAR.json b/inst/extdata/OSD/Z/ZYNBAR.json index bff2e04a0a..053fe2269c 100644 --- a/inst/extdata/OSD/Z/ZYNBAR.json +++ b/inst/extdata/OSD/Z/ZYNBAR.json @@ -74,7 +74,7 @@ { "name": "Oi", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA", diff --git a/inst/extdata/OSD/Z/ZYZYL.json b/inst/extdata/OSD/Z/ZYZYL.json index dc5b53b616..d31f70f80e 100644 --- a/inst/extdata/OSD/Z/ZYZYL.json +++ b/inst/extdata/OSD/Z/ZYZYL.json @@ -72,9 +72,9 @@ "HORIZONS": [ [ { - "name": "01", + "name": "O1", "top": 5, - "bottom": "NA", + "bottom": 0, "dry_hue": "NA", "dry_value": "NA", "dry_chroma": "NA",